Files
Atay-Makhzan/services/auth/source/oauth2/source.go
T

52 lines
1.3 KiB
Go
Raw Normal View History

2021-07-24 11:16:34 +01:00
// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2021-07-24 11:16:34 +01:00
package oauth2
import (
2022-01-02 21:12:35 +08:00
"code.gitea.io/gitea/models/auth"
"code.gitea.io/gitea/modules/json"
2021-07-24 11:16:34 +01:00
)
// Source holds configuration for the OAuth2 login source.
type Source struct {
Provider string
ClientID string
ClientSecret string
OpenIDConnectAutoDiscoveryURL string
CustomURLMapping *CustomURLMapping
IconURL string
2023-02-08 07:44:42 +01:00
Scopes []string
RequiredClaimName string
RequiredClaimValue string
GroupClaimName string
AdminGroup string
GroupTeamMap string
GroupTeamMapRemoval bool
RestrictedGroup string
SkipLocalTwoFA bool `json:",omitempty"`
2021-07-24 11:16:34 +01:00
2022-01-02 21:12:35 +08:00
// reference to the authSource
authSource *auth.Source
2021-07-24 11:16:34 +01:00
}
// FromDB fills up an OAuth2Config from serialized format.
func (source *Source) FromDB(bs []byte) error {
return json.UnmarshalHandleDoubleEncode(bs, &source)
2021-07-24 11:16:34 +01:00
}
// ToDB exports an SMTPConfig to a serialized format.
func (source *Source) ToDB() ([]byte, error) {
return json.Marshal(source)
}
2022-01-02 21:12:35 +08:00
// SetAuthSource sets the related AuthSource
func (source *Source) SetAuthSource(authSource *auth.Source) {
source.authSource = authSource
2021-07-24 11:16:34 +01:00
}
func init() {
2022-01-02 21:12:35 +08:00
auth.RegisterTypeConfig(auth.OAuth2, &Source{})
2021-07-24 11:16:34 +01:00
}