Files

48 lines
1.2 KiB
Go
Raw Permalink 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 {
auth.ConfigBase `json:"-"`
2021-07-24 11:16:34 +01:00
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
SSHPublicKeyClaimName string
FullNameClaimName string
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 OAuth2Config to a serialized format.
2021-07-24 11:16:34 +01:00
func (source *Source) ToDB() ([]byte, error) {
return json.Marshal(source)
}
func init() {
2022-01-02 21:12:35 +08:00
auth.RegisterTypeConfig(auth.OAuth2, &Source{})
2021-07-24 11:16:34 +01:00
}