forgejo/models/forgefed/federationinfo.go

33 lines
1 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 (
"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 {
ID int64 `xorm:"pk autoincr"`
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"`
}
// Validate collects error strings in a slice and returns this
func (info FederationInfo) Validate() []string {
var result []string
result = append(result, validation.ValidateNotEmpty(string(info.HostFqdn), "HostFqdn")...)
result = append(result, validation.ValidateMaxLen(string(info.HostFqdn), 255, "HostFqdn")...)
2024-01-12 14:35:43 +01:00
result = append(result, info.NodeInfo.Validate()...)
2024-01-12 14:33:52 +01:00
return result
}