2021-06-23 15:12:38 -06:00
|
|
|
// 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 (
|
2021-09-19 05:49:59 -06:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-12-06 00:19:28 -07:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-06-23 15:12:38 -06:00
|
|
|
)
|
|
|
|
|
2021-12-06 00:19:28 -07:00
|
|
|
// LoadArchiverRepo loads repository
|
|
|
|
func LoadArchiverRepo(archiver *repo_model.RepoArchiver) (*Repository, error) {
|
2021-06-23 15:12:38 -06:00
|
|
|
var repo Repository
|
2021-09-23 09:45:36 -06:00
|
|
|
has, err := db.GetEngine(db.DefaultContext).ID(archiver.RepoID).Get(&repo)
|
2021-06-23 15:12:38 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if !has {
|
|
|
|
return nil, ErrRepoNotExist{
|
|
|
|
ID: archiver.RepoID,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return &repo, nil
|
|
|
|
}
|