2020-08-10 13:18:04 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import "github.com/matrix-org/gomatrixserverlib"
|
|
|
|
|
|
|
|
type FederationAPI struct {
|
|
|
|
Matrix *Global `yaml:"-"`
|
|
|
|
|
2020-08-13 11:16:37 +00:00
|
|
|
InternalAPI InternalAPIOptions `yaml:"internal_api"`
|
|
|
|
ExternalAPI ExternalAPIOptions `yaml:"external_api"`
|
2020-08-10 13:18:04 +00:00
|
|
|
|
|
|
|
// List of paths to X509 certificates used by the external federation listeners.
|
|
|
|
// These are used to calculate the TLS fingerprints to publish for this server.
|
|
|
|
// Other matrix servers talking to this server will expect the x509 certificate
|
|
|
|
// to match one of these certificates.
|
|
|
|
// The certificates should be in PEM format.
|
|
|
|
FederationCertificatePaths []Path `yaml:"federation_certificates"`
|
|
|
|
|
|
|
|
// A list of SHA256 TLS fingerprints for the X509 certificates used by the
|
|
|
|
// federation listener for this server.
|
|
|
|
TLSFingerPrints []gomatrixserverlib.TLSFingerprint `yaml:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *FederationAPI) Defaults() {
|
2020-08-13 11:16:37 +00:00
|
|
|
c.InternalAPI.Listen = "http://localhost:7772"
|
|
|
|
c.InternalAPI.Connect = "http://localhost:7772"
|
|
|
|
c.ExternalAPI.Listen = "http://[::]:8072"
|
2020-08-10 13:18:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *FederationAPI) Verify(configErrs *ConfigErrors, isMonolith bool) {
|
2020-08-13 11:16:37 +00:00
|
|
|
checkURL(configErrs, "federation_api.internal_api.listen", string(c.InternalAPI.Listen))
|
|
|
|
checkURL(configErrs, "federation_api.internal_api.connect", string(c.InternalAPI.Connect))
|
|
|
|
if !isMonolith {
|
|
|
|
checkURL(configErrs, "federation_api.external_api.listen", string(c.ExternalAPI.Listen))
|
|
|
|
}
|
2020-08-10 13:18:04 +00:00
|
|
|
// TODO: not applicable always, e.g. in demos
|
|
|
|
//checkNotZero(configErrs, "federation_api.federation_certificates", int64(len(c.FederationCertificatePaths)))
|
|
|
|
}
|