mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 11:35:03 +01:00 
			
		
		
		
	* Move repo archiver to models/repo * Move archiver service into services/repository/ * Fix imports * Fix test * Fix test
		
			
				
	
	
		
			27 lines
		
	
	
		
			617 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			617 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2021 The Gitea Authors. All rights reserved.
 | |
| // Use of this source code is governed by a MIT-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| package models
 | |
| 
 | |
| import (
 | |
| 	"code.gitea.io/gitea/models/db"
 | |
| 
 | |
| 	repo_model "code.gitea.io/gitea/models/repo"
 | |
| )
 | |
| 
 | |
| // LoadArchiverRepo loads repository
 | |
| func LoadArchiverRepo(archiver *repo_model.RepoArchiver) (*Repository, error) {
 | |
| 	var repo Repository
 | |
| 	has, err := db.GetEngine(db.DefaultContext).ID(archiver.RepoID).Get(&repo)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if !has {
 | |
| 		return nil, ErrRepoNotExist{
 | |
| 			ID: archiver.RepoID,
 | |
| 		}
 | |
| 	}
 | |
| 	return &repo, nil
 | |
| }
 |