2021-09-27 23:38:06 +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 setting
|
|
|
|
|
2022-03-29 21:38:27 +00:00
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
|
|
|
|
"github.com/go-fed/httpsig"
|
|
|
|
)
|
2021-09-27 23:38:06 +00:00
|
|
|
|
|
|
|
// Federation settings
|
|
|
|
var (
|
|
|
|
Federation = struct {
|
2022-05-02 13:35:45 +00:00
|
|
|
Enabled bool
|
|
|
|
ShareUserStatistics bool
|
2022-05-09 17:47:40 +00:00
|
|
|
Algorithms []string
|
|
|
|
DigestAlgorithm string
|
|
|
|
GetHeaders []string
|
|
|
|
PostHeaders []string
|
2021-09-27 23:38:06 +00:00
|
|
|
}{
|
2022-05-02 13:35:45 +00:00
|
|
|
Enabled: true,
|
|
|
|
ShareUserStatistics: true,
|
2022-05-09 17:47:40 +00:00
|
|
|
Algorithms: []string{"rsa-sha256", "rsa-sha512"},
|
|
|
|
DigestAlgorithm: "SHA-256",
|
|
|
|
GetHeaders: []string{"(request-target)", "Date"},
|
|
|
|
PostHeaders: []string{"(request-target)", "Date", "Digest"},
|
2021-09-27 23:38:06 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func newFederationService() {
|
|
|
|
if err := Cfg.Section("federation").MapTo(&Federation); err != nil {
|
|
|
|
log.Fatal("Failed to map Federation settings: %v", err)
|
2022-03-29 21:38:27 +00:00
|
|
|
} else if !httpsig.IsSupportedDigestAlgorithm(Federation.DigestAlgorithm) {
|
|
|
|
log.Fatal("unsupported digest algorithm: %s", Federation.DigestAlgorithm)
|
|
|
|
return
|
2021-09-27 23:38:06 +00:00
|
|
|
}
|
|
|
|
}
|