forgejo/models/forgefed/federationinfo.go

50 lines
1.6 KiB
Go
Raw Normal View History

2024-01-12 14:33:52 +01:00
// Copyright 2024 The Forgejo Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package forgefed
import (
2024-01-14 14:53:00 +01:00
"fmt"
"time"
2024-01-12 14:33:52 +01:00
"code.gitea.io/gitea/modules/timeutil"
"code.gitea.io/gitea/modules/validation"
)
// FederationInfo data type
// swagger:model
type FederationInfo struct {
2024-01-16 09:31:36 +01:00
ID int64 `xorm:"pk autoincr"`
// TODO: implement a toLower here & add a toLowerValidation
HostFqdn string `xorm:"host_fqdn UNIQUE INDEX VARCHAR(255) NOT NULL"`
2024-01-12 17:49:07 +01:00
NodeInfo NodeInfo `xorm:"extends NOT NULL"`
LatestActivity time.Time `xorm:"NOT NULL"`
2024-01-12 14:33:52 +01:00
Create timeutil.TimeStamp `xorm:"created"`
Updated timeutil.TimeStamp `xorm:"updated"`
}
2024-01-13 16:08:12 +01:00
// Factory function for PersonID. Created struct is asserted to be valid
func NewFederationInfo(nodeInfo NodeInfo, hostFqdn string) (FederationInfo, error) {
result := FederationInfo{
HostFqdn: hostFqdn,
NodeInfo: nodeInfo,
}
if valid, err := validation.IsValid(result); !valid {
return FederationInfo{}, err
}
return result, nil
}
2024-01-12 14:33:52 +01:00
// Validate collects error strings in a slice and returns this
func (info FederationInfo) Validate() []string {
var result []string
2024-01-13 17:06:40 +01:00
result = append(result, validation.ValidateNotEmpty(info.HostFqdn, "HostFqdn")...)
result = append(result, validation.ValidateMaxLen(info.HostFqdn, 255, "HostFqdn")...)
2024-01-12 14:35:43 +01:00
result = append(result, info.NodeInfo.Validate()...)
2024-01-14 14:53:00 +01:00
if !info.LatestActivity.IsZero() && info.LatestActivity.After(time.Now().Add(10*time.Minute)) {
result = append(result, fmt.Sprintf("Latest Activity may not be far futurer: %v", info.LatestActivity))
}
2024-01-12 14:33:52 +01:00
return result
}