Forgejo/models/forgefed/federationhost.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"
)
// FederationHost data type
2024-01-12 14:33:52 +01:00
// swagger:model
type FederationHost 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 NewFederationHost(nodeInfo NodeInfo, hostFqdn string) (FederationHost, error) {
result := FederationHost{
2024-01-13 16:08:12 +01:00
HostFqdn: hostFqdn,
NodeInfo: nodeInfo,
}
if valid, err := validation.IsValid(result); !valid {
return FederationHost{}, err
2024-01-13 16:08:12 +01:00
}
return result, nil
}
2024-01-12 14:33:52 +01:00
// Validate collects error strings in a slice and returns this
func (host FederationHost) Validate() []string {
2024-01-12 14:33:52 +01:00
var result []string
result = append(result, validation.ValidateNotEmpty(host.HostFqdn, "HostFqdn")...)
result = append(result, validation.ValidateMaxLen(host.HostFqdn, 255, "HostFqdn")...)
result = append(result, host.NodeInfo.Validate()...)
if !host.LatestActivity.IsZero() && host.LatestActivity.After(time.Now().Add(10*time.Minute)) {
result = append(result, fmt.Sprintf("Latest Activity may not be far futurer: %v", host.LatestActivity))
2024-01-14 14:53:00 +01:00
}
2024-01-12 14:33:52 +01:00
return result
}