2024-02-25 11:32:59 +01:00
|
|
|
// Copyright Earl Warren <contact@earl-warren.org>
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package remote
|
|
|
|
|
|
|
|
import (
|
2025-03-27 19:40:14 +00:00
|
|
|
"forgejo.org/models/auth"
|
|
|
|
"forgejo.org/modules/json"
|
2024-02-25 11:32:59 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
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{})
|
|
|
|
}
|