2021-07-24 15:46:34 +05:30
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2021-07-24 15:46:34 +05:30
|
|
|
|
|
|
|
package oauth2
|
|
|
|
|
|
|
|
import (
|
2022-01-02 18:42:35 +05:30
|
|
|
"code.gitea.io/gitea/models/auth"
|
2021-07-24 21:33:58 +05:30
|
|
|
"code.gitea.io/gitea/modules/json"
|
2021-07-24 15:46:34 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
// 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 14:07:11 +05:30
|
|
|
|
2023-02-08 12:14:42 +05:30
|
|
|
Scopes []string
|
|
|
|
RequiredClaimName string
|
|
|
|
RequiredClaimValue string
|
|
|
|
GroupClaimName string
|
|
|
|
AdminGroup string
|
|
|
|
GroupTeamMap string
|
|
|
|
GroupTeamMapRemoval bool
|
|
|
|
RestrictedGroup string
|
|
|
|
SkipLocalTwoFA bool `json:",omitempty"`
|
2021-07-24 15:46:34 +05:30
|
|
|
|
2022-01-02 18:42:35 +05:30
|
|
|
// reference to the authSource
|
|
|
|
authSource *auth.Source
|
2021-07-24 15:46:34 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// FromDB fills up an OAuth2Config from serialized format.
|
|
|
|
func (source *Source) FromDB(bs []byte) error {
|
2021-12-10 06:57:50 +05:30
|
|
|
return json.UnmarshalHandleDoubleEncode(bs, &source)
|
2021-07-24 15:46:34 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// ToDB exports an SMTPConfig to a serialized format.
|
|
|
|
func (source *Source) ToDB() ([]byte, error) {
|
|
|
|
return json.Marshal(source)
|
|
|
|
}
|
|
|
|
|
2022-01-02 18:42:35 +05:30
|
|
|
// SetAuthSource sets the related AuthSource
|
|
|
|
func (source *Source) SetAuthSource(authSource *auth.Source) {
|
|
|
|
source.authSource = authSource
|
2021-07-24 15:46:34 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2022-01-02 18:42:35 +05:30
|
|
|
auth.RegisterTypeConfig(auth.OAuth2, &Source{})
|
2021-07-24 15:46:34 +05:30
|
|
|
}
|