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