mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-30 17:34:13 +01:00
34 lines
658 B
Go
34 lines
658 B
Go
|
// Copyright Earl Warren <contact@earl-warren.org>
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package remote
|
||
|
|
||
|
import (
|
||
|
"code.gitea.io/gitea/models/auth"
|
||
|
"code.gitea.io/gitea/modules/json"
|
||
|
)
|
||
|
|
||
|
type Source struct {
|
||
|
URL string
|
||
|
MatchingSource string
|
||
|
|
||
|
// reference to the authSource
|
||
|
authSource *auth.Source
|
||
|
}
|
||
|
|
||
|
func (source *Source) FromDB(bs []byte) error {
|
||
|
return json.UnmarshalHandleDoubleEncode(bs, &source)
|
||
|
}
|
||
|
|
||
|
func (source *Source) ToDB() ([]byte, error) {
|
||
|
return json.Marshal(source)
|
||
|
}
|
||
|
|
||
|
func (source *Source) SetAuthSource(authSource *auth.Source) {
|
||
|
source.authSource = authSource
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
auth.RegisterTypeConfig(auth.Remote, &Source{})
|
||
|
}
|