mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	- Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7337 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
		
			
				
	
	
		
			39 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2024 The Forgejo Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package repo
 | |
| 
 | |
| import (
 | |
| 	"forgejo.org/modules/validation"
 | |
| )
 | |
| 
 | |
| // FollowingRepo represents a federated Repository Actor connected with a local Repo
 | |
| type FollowingRepo struct {
 | |
| 	ID               int64  `xorm:"pk autoincr"`
 | |
| 	RepoID           int64  `xorm:"UNIQUE(federation_repo_mapping) NOT NULL"`
 | |
| 	ExternalID       string `xorm:"UNIQUE(federation_repo_mapping) NOT NULL"`
 | |
| 	FederationHostID int64  `xorm:"UNIQUE(federation_repo_mapping) NOT NULL"`
 | |
| 	URI              string
 | |
| }
 | |
| 
 | |
| func NewFollowingRepo(repoID int64, externalID string, federationHostID int64, uri string) (FollowingRepo, error) {
 | |
| 	result := FollowingRepo{
 | |
| 		RepoID:           repoID,
 | |
| 		ExternalID:       externalID,
 | |
| 		FederationHostID: federationHostID,
 | |
| 		URI:              uri,
 | |
| 	}
 | |
| 	if valid, err := validation.IsValid(result); !valid {
 | |
| 		return FollowingRepo{}, err
 | |
| 	}
 | |
| 	return result, nil
 | |
| }
 | |
| 
 | |
| func (user FollowingRepo) Validate() []string {
 | |
| 	var result []string
 | |
| 	result = append(result, validation.ValidateNotEmpty(user.RepoID, "UserID")...)
 | |
| 	result = append(result, validation.ValidateNotEmpty(user.ExternalID, "ExternalID")...)
 | |
| 	result = append(result, validation.ValidateNotEmpty(user.FederationHostID, "FederationHostID")...)
 | |
| 	result = append(result, validation.ValidateNotEmpty(user.URI, "Uri")...)
 | |
| 	return result
 | |
| }
 |