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"
|
2024-02-07 14:30:17 +01:00
|
|
|
"strings"
|
2024-01-13 14:17:11 +01:00
|
|
|
"time"
|
|
|
|
|
2024-01-12 14:33:52 +01:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
|
|
|
"code.gitea.io/gitea/modules/validation"
|
|
|
|
)
|
|
|
|
|
2024-01-19 16:26:16 +01:00
|
|
|
// FederationHost data type
|
2024-01-12 14:33:52 +01:00
|
|
|
// swagger:model
|
2024-01-19 16:26:16 +01:00
|
|
|
type FederationHost struct {
|
2024-01-16 09:31:36 +01:00
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
// TODO: implement a toLower here & add a toLowerValidation
|
2024-01-12 16:12:54 +01:00
|
|
|
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"`
|
2024-01-13 14:17:11 +01:00
|
|
|
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
|
2024-01-19 16:26:16 +01:00
|
|
|
func NewFederationHost(nodeInfo NodeInfo, hostFqdn string) (FederationHost, error) {
|
|
|
|
result := FederationHost{
|
2024-02-07 14:30:17 +01:00
|
|
|
HostFqdn: strings.ToLower(hostFqdn),
|
2024-01-13 16:08:12 +01:00
|
|
|
NodeInfo: nodeInfo,
|
|
|
|
}
|
|
|
|
if valid, err := validation.IsValid(result); !valid {
|
2024-01-19 16:26:16 +01:00
|
|
|
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
|
2024-01-19 16:26:16 +01:00
|
|
|
func (host FederationHost) Validate() []string {
|
2024-01-12 14:33:52 +01:00
|
|
|
var result []string
|
2024-01-19 16:26:16 +01:00
|
|
|
result = append(result, validation.ValidateNotEmpty(host.HostFqdn, "HostFqdn")...)
|
|
|
|
result = append(result, validation.ValidateMaxLen(host.HostFqdn, 255, "HostFqdn")...)
|
|
|
|
result = append(result, host.NodeInfo.Validate()...)
|
2024-02-07 14:30:17 +01:00
|
|
|
if host.HostFqdn != strings.ToLower(host.HostFqdn) {
|
|
|
|
result = append(result, fmt.Sprintf("HostFqdn has to be lower case but was: %v", host.HostFqdn))
|
|
|
|
}
|
2024-01-19 16:26:16 +01:00
|
|
|
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
|
|
|
|
}
|