forgejo/models/repo/following_repo.go

40 lines
1.3 KiB
Go
Raw Normal View History

2024-04-12 13:52:26 +02:00
// Copyright 2024 The Forgejo Authors. All rights reserved.
2024-03-21 08:25:40 +01:00
// SPDX-License-Identifier: MIT
package repo
import (
"code.gitea.io/gitea/modules/validation"
)
2024-04-03 12:26:33 +02:00
// FollowingRepo represents a federated Repository Actor connected with a local Repo
type FollowingRepo struct {
2024-03-21 08:25:40 +01:00
ID int64 `xorm:"pk autoincr"`
2024-04-12 14:29:32 +02:00
RepoID int64 `xorm:"UNIQUE(federation_repo_mapping) NOT NULL"`
2024-04-09 16:38:49 +02:00
ExternalID string `xorm:"UNIQUE(federation_repo_mapping) NOT NULL"`
2024-03-21 08:25:40 +01:00
FederationHostID int64 `xorm:"UNIQUE(federation_repo_mapping) NOT NULL"`
2024-04-04 15:08:02 +02:00
URI string
2024-03-21 08:25:40 +01:00
}
func NewFollowingRepo(repoID int64, externalID string, federationHostID int64, uri string) (FollowingRepo, error) {
2024-04-03 12:26:33 +02:00
result := FollowingRepo{
2024-03-22 08:37:06 +01:00
RepoID: repoID,
2024-03-21 08:25:40 +01:00
ExternalID: externalID,
FederationHostID: federationHostID,
2024-04-04 15:08:02 +02:00
URI: uri,
2024-03-21 08:25:40 +01:00
}
if valid, err := validation.IsValid(result); !valid {
2024-04-03 12:26:33 +02:00
return FollowingRepo{}, err
2024-03-21 08:25:40 +01:00
}
return result, nil
}
2024-04-03 12:26:33 +02:00
func (user FollowingRepo) Validate() []string {
2024-03-21 08:25:40 +01:00
var result []string
2024-03-22 08:37:06 +01:00
result = append(result, validation.ValidateNotEmpty(user.RepoID, "UserID")...)
2024-03-21 08:25:40 +01:00
result = append(result, validation.ValidateNotEmpty(user.ExternalID, "ExternalID")...)
result = append(result, validation.ValidateNotEmpty(user.FederationHostID, "FederationHostID")...)
2024-04-04 15:08:02 +02:00
result = append(result, validation.ValidateNotEmpty(user.URI, "Uri")...)
2024-03-21 08:25:40 +01:00
return result
}