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