1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-11-21 08:31:27 -05:00

Added FederationInfo get methods for repository

This commit is contained in:
Clemens 2024-01-12 16:12:54 +01:00 committed by Michael Jerger
parent bbccc24ed1
commit 52400f7978
3 changed files with 43 additions and 2 deletions

View file

@ -12,7 +12,7 @@ import (
// swagger:model // swagger:model
type FederationInfo struct { type FederationInfo struct {
ID int64 `xorm:"pk autoincr"` ID int64 `xorm:"pk autoincr"`
HostFqdn string `xorm:"INDEX VARCHAR(255) NOT NULL"` HostFqdn string `xorm:"host_fqdn UNIQUE INDEX VARCHAR(255) NOT NULL"`
NodeInfo NodeInfo `xorm:"NOT NULL"` NodeInfo NodeInfo `xorm:"NOT NULL"`
LatestActivity timeutil.TimeStamp `xorm:"NOT NULL"` LatestActivity timeutil.TimeStamp `xorm:"NOT NULL"`
Create timeutil.TimeStamp `xorm:"created"` Create timeutil.TimeStamp `xorm:"created"`

View file

@ -4,9 +4,41 @@
package forgefed package forgefed
import ( import (
"context"
"fmt"
"code.gitea.io/gitea/models/db" "code.gitea.io/gitea/models/db"
"code.gitea.io/gitea/modules/validation"
) )
func init() { func init() {
db.RegisterModel(new(FederationInfo)) db.RegisterModel(new(FederationInfo))
} }
func GetFederationInfo(ctx context.Context, ID int64) (*FederationInfo, error) {
info := new(FederationInfo)
has, err := db.GetEngine(ctx).Where("id=?", ID).Get(info)
if err != nil {
return nil, err
} else if !has {
return nil, fmt.Errorf("FederationInfo record %v does not exist", ID)
}
if res, err := validation.IsValid(info); !res {
return nil, fmt.Errorf("FederationInfo is not valid: %v", err)
}
return info, nil
}
func GetFederationInfoByHostFqdn(ctx context.Context, fqdn string) (*FederationInfo, error) {
info := new(FederationInfo)
has, err := db.GetEngine(ctx).Where("host_fqdn=?", fqdn).Get(info)
if err != nil {
return nil, err
} else if !has {
return nil, fmt.Errorf("FederationInfo record %v does not exist", fqdn)
}
if res, err := validation.IsValid(info); !res {
return nil, fmt.Errorf("FederationInfo is not valid: %v", err)
}
return info, nil
}

View file

@ -10,7 +10,7 @@ import (
"code.gitea.io/gitea/modules/validation" "code.gitea.io/gitea/modules/validation"
) )
func Test_ValidateMaxLen(t *testing.T) { func Test_FederationInfoValidation(t *testing.T) {
sut := FederationInfo{ sut := FederationInfo{
HostFqdn: "host.do.main", HostFqdn: "host.do.main",
NodeInfo: NodeInfo{ NodeInfo: NodeInfo{
@ -21,4 +21,13 @@ func Test_ValidateMaxLen(t *testing.T) {
if res, err := validation.IsValid(sut); !res { if res, err := validation.IsValid(sut); !res {
t.Errorf("sut should be valid but was %q", err) t.Errorf("sut should be valid but was %q", err)
} }
sut = FederationInfo{
HostFqdn: "host.do.main",
NodeInfo: NodeInfo{},
LatestActivity: timeutil.TimeStampNow(),
}
if res, _ := validation.IsValid(sut); res {
t.Errorf("sut should be invalid")
}
} }