1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-12-29 13:59:15 -05:00
forgejo/models/repo/following_repo.go

40 lines
1.3 KiB
Go
Raw Normal View History

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