2021-07-24 10:16:34 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package oauth2
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/models"
|
2021-09-24 11:32:56 +00:00
|
|
|
"code.gitea.io/gitea/models/login"
|
2021-07-24 16:03:58 +00:00
|
|
|
"code.gitea.io/gitea/modules/json"
|
2021-07-24 10:16:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ________ _____ __ .__ ________
|
|
|
|
// \_____ \ / _ \ __ ___/ |_| |__ \_____ \
|
|
|
|
// / | \ / /_\ \| | \ __\ | \ / ____/
|
|
|
|
// / | \/ | \ | /| | | Y \/ \
|
|
|
|
// \_______ /\____|__ /____/ |__| |___| /\_______ \
|
|
|
|
// \/ \/ \/ \/
|
|
|
|
|
|
|
|
// Source holds configuration for the OAuth2 login source.
|
|
|
|
type Source struct {
|
|
|
|
Provider string
|
|
|
|
ClientID string
|
|
|
|
ClientSecret string
|
|
|
|
OpenIDConnectAutoDiscoveryURL string
|
|
|
|
CustomURLMapping *CustomURLMapping
|
|
|
|
IconURL string
|
2021-09-27 01:02:01 +00:00
|
|
|
SkipLocalTwoFA bool `json:",omitempty"`
|
2021-07-24 10:16:34 +00:00
|
|
|
|
|
|
|
// reference to the loginSource
|
2021-09-24 11:32:56 +00:00
|
|
|
loginSource *login.Source
|
2021-07-24 10:16:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// FromDB fills up an OAuth2Config from serialized format.
|
|
|
|
func (source *Source) FromDB(bs []byte) error {
|
|
|
|
return models.JSONUnmarshalHandleDoubleEncode(bs, &source)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToDB exports an SMTPConfig to a serialized format.
|
|
|
|
func (source *Source) ToDB() ([]byte, error) {
|
|
|
|
return json.Marshal(source)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetLoginSource sets the related LoginSource
|
2021-09-24 11:32:56 +00:00
|
|
|
func (source *Source) SetLoginSource(loginSource *login.Source) {
|
2021-07-24 10:16:34 +00:00
|
|
|
source.loginSource = loginSource
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2021-09-24 11:32:56 +00:00
|
|
|
login.RegisterTypeConfig(login.OAuth2, &Source{})
|
2021-07-24 10:16:34 +00:00
|
|
|
}
|