1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-12-31 14:14:07 -05:00
forgejo/models/repo/following_repo.go

41 lines
1.5 KiB
Go
Raw Normal View History

2024-03-21 03:25:40 -04:00
// Copyright 2024 The forgejo Authors. All rights reserved.
// 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
// ToDo: We currently get database errors if different repos on the same server want to save the same federated repos in their list
2024-04-03 06:26:33 -04:00
type FollowingRepo struct {
2024-03-21 03:25:40 -04:00
ID int64 `xorm:"pk autoincr"`
2024-03-22 03:37:06 -04:00
RepoID int64 `xorm:"NOT NULL"`
2024-03-21 03:25:40 -04:00
ExternalID string `xorm:"TEXT UNIQUE(federation_repo_mapping) NOT NULL"`
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
}