2019-10-26 00:54:11 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-10-26 00:54:11 -06:00
|
|
|
|
|
|
|
package repository
|
|
|
|
|
|
|
|
import (
|
2022-01-19 16:26:57 -07:00
|
|
|
"context"
|
2019-12-14 19:49:52 -07:00
|
|
|
"fmt"
|
|
|
|
|
2019-10-26 00:54:11 -06:00
|
|
|
"code.gitea.io/gitea/models"
|
2022-05-08 10:46:32 -06:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-13 03:37:59 -06:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2022-03-29 00:29:02 -06:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2022-03-30 02:42:47 -06:00
|
|
|
packages_model "code.gitea.io/gitea/models/packages"
|
2021-12-09 18:27:50 -07:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2022-10-16 17:29:26 -06:00
|
|
|
system_model "code.gitea.io/gitea/models/system"
|
2022-06-06 02:01:49 -06:00
|
|
|
"code.gitea.io/gitea/models/unit"
|
2021-11-24 02:49:20 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2019-10-26 00:54:11 -06:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/notification"
|
2020-01-12 05:11:17 -07:00
|
|
|
repo_module "code.gitea.io/gitea/modules/repository"
|
2022-05-08 10:46:32 -06:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-01-24 19:48:22 -07:00
|
|
|
pull_service "code.gitea.io/gitea/services/pull"
|
2019-10-26 00:54:11 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
// CreateRepository creates a repository for the user/organization.
|
2022-08-24 20:31:57 -06:00
|
|
|
func CreateRepository(doer, owner *user_model.User, opts repo_module.CreateRepoOptions) (*repo_model.Repository, error) {
|
2020-01-12 05:11:17 -07:00
|
|
|
repo, err := repo_module.CreateRepository(doer, owner, opts)
|
2019-10-26 00:54:11 -06:00
|
|
|
if err != nil {
|
2020-09-24 22:09:23 -06:00
|
|
|
// No need to rollback here we should do this in CreateRepository...
|
2019-10-26 00:54:11 -06:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-11-19 01:12:33 -07:00
|
|
|
notification.NotifyCreateRepository(db.DefaultContext, doer, owner, repo)
|
2019-10-26 00:54:11 -06:00
|
|
|
|
|
|
|
return repo, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteRepository deletes a repository for a user or organization.
|
2022-01-19 16:26:57 -07:00
|
|
|
func DeleteRepository(ctx context.Context, doer *user_model.User, repo *repo_model.Repository, notify bool) error {
|
|
|
|
if err := pull_service.CloseRepoBranchesPulls(ctx, doer, repo); err != nil {
|
2020-01-24 19:48:22 -07:00
|
|
|
log.Error("CloseRepoBranchesPulls failed: %v", err)
|
|
|
|
}
|
|
|
|
|
2021-12-10 01:14:24 -07:00
|
|
|
if notify {
|
|
|
|
// If the repo itself has webhooks, we need to trigger them before deleting it...
|
2022-11-19 01:12:33 -07:00
|
|
|
notification.NotifyDeleteRepository(ctx, doer, repo)
|
2021-12-10 01:14:24 -07:00
|
|
|
}
|
2019-10-26 00:54:11 -06:00
|
|
|
|
2022-03-30 02:42:47 -06:00
|
|
|
if err := models.DeleteRepository(doer, repo.OwnerID, repo.ID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return packages_model.UnlinkRepositoryFromAllPackages(ctx, repo.ID)
|
2019-10-26 00:54:11 -06:00
|
|
|
}
|
2019-12-14 19:49:52 -07:00
|
|
|
|
|
|
|
// PushCreateRepo creates a repository when a new repository is pushed to an appropriate namespace
|
2021-12-09 18:27:50 -07:00
|
|
|
func PushCreateRepo(authUser, owner *user_model.User, repoName string) (*repo_model.Repository, error) {
|
2019-12-14 19:49:52 -07:00
|
|
|
if !authUser.IsAdmin {
|
|
|
|
if owner.IsOrganization() {
|
2022-12-09 19:46:31 -07:00
|
|
|
if ok, err := organization.CanCreateOrgRepo(db.DefaultContext, owner.ID, authUser.ID); err != nil {
|
2019-12-14 19:49:52 -07:00
|
|
|
return nil, err
|
|
|
|
} else if !ok {
|
|
|
|
return nil, fmt.Errorf("cannot push-create repository for org")
|
|
|
|
}
|
|
|
|
} else if authUser.ID != owner.ID {
|
|
|
|
return nil, fmt.Errorf("cannot push-create repository for another user")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-24 20:31:57 -06:00
|
|
|
repo, err := CreateRepository(authUser, owner, repo_module.CreateRepoOptions{
|
2019-12-14 19:49:52 -07:00
|
|
|
Name: repoName,
|
2022-05-08 10:46:32 -06:00
|
|
|
IsPrivate: setting.Repository.DefaultPushCreatePrivate,
|
2019-12-14 19:49:52 -07:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return repo, nil
|
|
|
|
}
|
2020-09-11 08:14:48 -06:00
|
|
|
|
2022-05-08 10:46:32 -06:00
|
|
|
// Init start repository service
|
|
|
|
func Init() error {
|
2022-03-29 01:23:45 -06:00
|
|
|
repo_module.LoadRepoConfig()
|
2022-10-16 17:29:26 -06:00
|
|
|
system_model.RemoveAllWithNotice(db.DefaultContext, "Clean up temporary repository uploads", setting.Repository.Upload.TempPath)
|
|
|
|
system_model.RemoveAllWithNotice(db.DefaultContext, "Clean up temporary repositories", repo_module.LocalCopyPath())
|
2020-09-11 08:14:48 -06:00
|
|
|
return initPushQueue()
|
|
|
|
}
|
2022-06-06 02:01:49 -06:00
|
|
|
|
|
|
|
// UpdateRepository updates a repository
|
|
|
|
func UpdateRepository(repo *repo_model.Repository, visibilityChanged bool) (err error) {
|
2022-11-12 13:18:50 -07:00
|
|
|
ctx, committer, err := db.TxContext(db.DefaultContext)
|
2022-06-06 02:01:49 -06:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer committer.Close()
|
|
|
|
|
|
|
|
if err = repo_module.UpdateRepository(ctx, repo, visibilityChanged); err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("updateRepository: %w", err)
|
2022-06-06 02:01:49 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return committer.Commit()
|
|
|
|
}
|
|
|
|
|
|
|
|
// LinkedRepository returns the linked repo if any
|
2022-12-02 19:48:26 -07:00
|
|
|
func LinkedRepository(ctx context.Context, a *repo_model.Attachment) (*repo_model.Repository, unit.Type, error) {
|
2022-06-06 02:01:49 -06:00
|
|
|
if a.IssueID != 0 {
|
2022-12-02 19:48:26 -07:00
|
|
|
iss, err := issues_model.GetIssueByID(ctx, a.IssueID)
|
2022-06-06 02:01:49 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, unit.TypeIssues, err
|
|
|
|
}
|
2022-12-02 19:48:26 -07:00
|
|
|
repo, err := repo_model.GetRepositoryByID(ctx, iss.RepoID)
|
2022-06-06 02:01:49 -06:00
|
|
|
unitType := unit.TypeIssues
|
|
|
|
if iss.IsPull {
|
|
|
|
unitType = unit.TypePullRequests
|
|
|
|
}
|
|
|
|
return repo, unitType, err
|
|
|
|
} else if a.ReleaseID != 0 {
|
2022-12-02 19:48:26 -07:00
|
|
|
rel, err := repo_model.GetReleaseByID(ctx, a.ReleaseID)
|
2022-06-06 02:01:49 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, unit.TypeReleases, err
|
|
|
|
}
|
2022-12-02 19:48:26 -07:00
|
|
|
repo, err := repo_model.GetRepositoryByID(ctx, rel.RepoID)
|
2022-06-06 02:01:49 -06:00
|
|
|
return repo, unit.TypeReleases, err
|
|
|
|
}
|
|
|
|
return nil, -1, nil
|
|
|
|
}
|