2021-07-24 10:16:34 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-07-24 10:16:34 +00:00
|
|
|
|
|
|
|
package pam
|
|
|
|
|
|
|
|
import (
|
2022-01-02 13:12:35 +00:00
|
|
|
"code.gitea.io/gitea/models/auth"
|
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 PAM login source.
|
|
|
|
type Source struct {
|
2021-09-27 01:02:01 +00:00
|
|
|
ServiceName string // pam service (e.g. system-auth)
|
|
|
|
EmailDomain string
|
|
|
|
SkipLocalTwoFA bool `json:",omitempty"` // Skip Local 2fa for users authenticated with this source
|
2021-07-24 10:16:34 +00:00
|
|
|
|
2022-01-02 13:12:35 +00:00
|
|
|
// reference to the authSource
|
|
|
|
authSource *auth.Source
|
2021-07-24 10:16:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// FromDB fills up a PAMConfig from serialized format.
|
|
|
|
func (source *Source) FromDB(bs []byte) error {
|
2021-12-10 01:27:50 +00:00
|
|
|
return json.UnmarshalHandleDoubleEncode(bs, &source)
|
2021-07-24 10:16:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ToDB exports a PAMConfig to a serialized format.
|
|
|
|
func (source *Source) ToDB() ([]byte, error) {
|
|
|
|
return json.Marshal(source)
|
|
|
|
}
|
|
|
|
|
2022-01-02 13:12:35 +00:00
|
|
|
// SetAuthSource sets the related AuthSource
|
|
|
|
func (source *Source) SetAuthSource(authSource *auth.Source) {
|
|
|
|
source.authSource = authSource
|
2021-07-24 10:16:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2022-01-02 13:12:35 +00:00
|
|
|
auth.RegisterTypeConfig(auth.PAM, &Source{})
|
2021-07-24 10:16:34 +00:00
|
|
|
}
|