2020-01-12 13:11:17 +01:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-01-12 13:11:17 +01:00
|
|
|
|
|
|
|
package repository
|
|
|
|
|
|
|
|
import (
|
2021-09-23 17:45:36 +02:00
|
|
|
"context"
|
2020-01-12 13:11:17 +01:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2021-09-19 13:49:59 +02:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-12 17:51:54 +02:00
|
|
|
git_model "code.gitea.io/gitea/models/git"
|
2021-12-10 02:27:50 +01:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 10:49:20 +01:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2020-01-12 13:11:17 +01:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
Simplify how git repositories are opened (#28937)
## Purpose
This is a refactor toward building an abstraction over managing git
repositories.
Afterwards, it does not matter anymore if they are stored on the local
disk or somewhere remote.
## What this PR changes
We used `git.OpenRepository` everywhere previously.
Now, we should split them into two distinct functions:
Firstly, there are temporary repositories which do not change:
```go
git.OpenRepository(ctx, diskPath)
```
Gitea managed repositories having a record in the database in the
`repository` table are moved into the new package `gitrepo`:
```go
gitrepo.OpenRepository(ctx, repo_model.Repo)
```
Why is `repo_model.Repository` the second parameter instead of file
path?
Because then we can easily adapt our repository storage strategy.
The repositories can be stored locally, however, they could just as well
be stored on a remote server.
## Further changes in other PRs
- A Git Command wrapper on package `gitrepo` could be created. i.e.
`NewCommand(ctx, repo_model.Repository, commands...)`. `git.RunOpts{Dir:
repo.RepoPath()}`, the directory should be empty before invoking this
method and it can be filled in the function only. #28940
- Remove the `RepoPath()`/`WikiPath()` functions to reduce the
possibility of mistakes.
---------
Co-authored-by: delvh <dev.lh@web.de>
2024-01-27 21:09:51 +01:00
|
|
|
"code.gitea.io/gitea/modules/gitrepo"
|
2020-01-12 13:11:17 +01:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-11-16 14:30:11 +01:00
|
|
|
repo_module "code.gitea.io/gitea/modules/repository"
|
2020-06-07 02:45:12 +02:00
|
|
|
"code.gitea.io/gitea/modules/structs"
|
2021-09-14 18:16:40 +02:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2023-09-05 20:37:47 +02:00
|
|
|
notify_service "code.gitea.io/gitea/services/notify"
|
2020-01-12 13:11:17 +01:00
|
|
|
)
|
|
|
|
|
2022-08-25 04:31:57 +02:00
|
|
|
// ErrForkAlreadyExist represents a "ForkAlreadyExist" kind of error.
|
|
|
|
type ErrForkAlreadyExist struct {
|
|
|
|
Uname string
|
|
|
|
RepoName string
|
|
|
|
ForkName string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrForkAlreadyExist checks if an error is an ErrForkAlreadyExist.
|
|
|
|
func IsErrForkAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrForkAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrForkAlreadyExist) Error() string {
|
|
|
|
return fmt.Sprintf("repository is already forked by user [uname: %s, repo path: %s, fork path: %s]", err.Uname, err.RepoName, err.ForkName)
|
|
|
|
}
|
|
|
|
|
2022-10-18 07:50:37 +02:00
|
|
|
func (err ErrForkAlreadyExist) Unwrap() error {
|
|
|
|
return util.ErrAlreadyExist
|
|
|
|
}
|
|
|
|
|
2021-12-12 16:48:20 +01:00
|
|
|
// ForkRepoOptions contains the fork repository options
|
|
|
|
type ForkRepoOptions struct {
|
2023-09-29 03:48:39 +02:00
|
|
|
BaseRepo *repo_model.Repository
|
|
|
|
Name string
|
|
|
|
Description string
|
|
|
|
SingleBranch string
|
2021-12-12 16:48:20 +01:00
|
|
|
}
|
|
|
|
|
2024-08-08 09:46:38 +02:00
|
|
|
// ForkRepositoryIfNotExists creates a fork of a repository if it does not already exists and fails otherwise
|
|
|
|
func ForkRepositoryIfNotExists(ctx context.Context, doer, owner *user_model.User, opts ForkRepoOptions) (*repo_model.Repository, error) {
|
2022-12-27 22:21:14 +01:00
|
|
|
// Fork is prohibited, if user has reached maximum limit of repositories
|
2024-04-17 07:52:02 +02:00
|
|
|
if !doer.IsAdmin && !owner.CanForkRepo() {
|
2022-12-27 22:21:14 +01:00
|
|
|
return nil, repo_model.ErrReachLimitOfRepo{
|
|
|
|
Limit: owner.MaxRepoCreation,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-29 21:13:41 +02:00
|
|
|
forkedRepo, err := repo_model.GetUserFork(ctx, opts.BaseRepo.ID, owner.ID)
|
2020-01-12 13:11:17 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if forkedRepo != nil {
|
2022-08-25 04:31:57 +02:00
|
|
|
return nil, ErrForkAlreadyExist{
|
2020-01-12 13:11:17 +01:00
|
|
|
Uname: owner.Name,
|
2021-08-28 10:37:14 +02:00
|
|
|
RepoName: opts.BaseRepo.FullName(),
|
2020-01-12 13:11:17 +01:00
|
|
|
ForkName: forkedRepo.FullName(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-29 03:48:39 +02:00
|
|
|
defaultBranch := opts.BaseRepo.DefaultBranch
|
|
|
|
if opts.SingleBranch != "" {
|
|
|
|
defaultBranch = opts.SingleBranch
|
|
|
|
}
|
2021-12-10 02:27:50 +01:00
|
|
|
repo := &repo_model.Repository{
|
2024-01-19 17:05:02 +01:00
|
|
|
OwnerID: owner.ID,
|
|
|
|
Owner: owner,
|
|
|
|
OwnerName: owner.Name,
|
|
|
|
Name: opts.Name,
|
|
|
|
LowerName: strings.ToLower(opts.Name),
|
|
|
|
Description: opts.Description,
|
|
|
|
DefaultBranch: defaultBranch,
|
|
|
|
IsPrivate: opts.BaseRepo.IsPrivate || opts.BaseRepo.Owner.Visibility == structs.VisibleTypePrivate,
|
|
|
|
IsEmpty: opts.BaseRepo.IsEmpty,
|
|
|
|
IsFork: true,
|
|
|
|
ForkID: opts.BaseRepo.ID,
|
|
|
|
ObjectFormatName: opts.BaseRepo.ObjectFormatName,
|
2020-01-12 13:11:17 +01:00
|
|
|
}
|
|
|
|
|
2021-08-28 10:37:14 +02:00
|
|
|
oldRepoPath := opts.BaseRepo.RepoPath()
|
2020-01-12 13:11:17 +01:00
|
|
|
|
2021-09-14 18:16:40 +02:00
|
|
|
needsRollback := false
|
|
|
|
rollbackFn := func() {
|
|
|
|
if !needsRollback {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-12-10 02:27:50 +01:00
|
|
|
repoPath := repo_model.RepoPath(owner.Name, repo.Name)
|
2021-09-14 18:16:40 +02:00
|
|
|
|
|
|
|
if exists, _ := util.IsExist(repoPath); !exists {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// As the transaction will be failed and hence database changes will be destroyed we only need
|
|
|
|
// to delete the related repository on the filesystem
|
|
|
|
if errDelete := util.RemoveAll(repoPath); errDelete != nil {
|
|
|
|
log.Error("Failed to remove fork repo")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
needsRollbackInPanic := true
|
|
|
|
defer func() {
|
|
|
|
panicErr := recover()
|
|
|
|
if panicErr == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if needsRollbackInPanic {
|
|
|
|
rollbackFn()
|
|
|
|
}
|
|
|
|
panic(panicErr)
|
|
|
|
}()
|
|
|
|
|
2022-11-12 21:18:50 +01:00
|
|
|
err = db.WithTx(ctx, func(txCtx context.Context) error {
|
2023-02-04 07:48:38 +01:00
|
|
|
if err = repo_module.CreateRepositoryByExample(txCtx, doer, owner, repo, false, true); err != nil {
|
2020-01-12 13:11:17 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-06-06 10:01:49 +02:00
|
|
|
if err = repo_model.IncrementRepoForkNum(txCtx, opts.BaseRepo.ID); err != nil {
|
2020-01-12 13:11:17 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-04-14 23:15:28 +02:00
|
|
|
// copy lfs files failure should not be ignored
|
2022-06-12 17:51:54 +02:00
|
|
|
if err = git_model.CopyLFS(txCtx, repo, opts.BaseRepo); err != nil {
|
2021-04-14 23:15:28 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-09-14 18:16:40 +02:00
|
|
|
needsRollback = true
|
|
|
|
|
2023-09-29 03:48:39 +02:00
|
|
|
cloneCmd := git.NewCommand(txCtx, "clone", "--bare")
|
|
|
|
if opts.SingleBranch != "" {
|
|
|
|
cloneCmd.AddArguments("--single-branch", "--branch").AddDynamicArguments(opts.SingleBranch)
|
|
|
|
}
|
2021-12-10 02:27:50 +01:00
|
|
|
repoPath := repo_model.RepoPath(owner.Name, repo.Name)
|
2023-09-29 03:48:39 +02:00
|
|
|
if stdout, _, err := cloneCmd.AddDynamicArguments(oldRepoPath, repoPath).
|
2024-08-08 09:46:38 +02:00
|
|
|
SetDescription(fmt.Sprintf("ForkRepositoryIfNotExists(git clone): %s to %s", opts.BaseRepo.FullName(), repo.FullName())).
|
2022-04-01 04:55:30 +02:00
|
|
|
RunStdBytes(&git.RunOpts{Timeout: 10 * time.Minute}); err != nil {
|
2021-08-28 10:37:14 +02:00
|
|
|
log.Error("Fork Repository (git clone) Failed for %v (from %v):\nStdout: %s\nError: %v", repo, opts.BaseRepo, stdout, err)
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("git clone: %w", err)
|
2020-01-12 13:11:17 +01:00
|
|
|
}
|
|
|
|
|
2022-06-06 10:01:49 +02:00
|
|
|
if err := repo_module.CheckDaemonExportOK(txCtx, repo); err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("checkDaemonExportOK: %w", err)
|
2021-10-13 21:47:02 +02:00
|
|
|
}
|
|
|
|
|
2022-04-01 04:55:30 +02:00
|
|
|
if stdout, _, err := git.NewCommand(txCtx, "update-server-info").
|
2024-08-08 09:46:38 +02:00
|
|
|
SetDescription(fmt.Sprintf("ForkRepositoryIfNotExists(git update-server-info): %s", repo.FullName())).
|
2022-04-01 04:55:30 +02:00
|
|
|
RunStdString(&git.RunOpts{Dir: repoPath}); err != nil {
|
2020-01-12 13:11:17 +01:00
|
|
|
log.Error("Fork Repository (git update-server-info) failed for %v:\nStdout: %s\nError: %v", repo, stdout, err)
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("git update-server-info: %w", err)
|
2020-01-12 13:11:17 +01:00
|
|
|
}
|
|
|
|
|
2021-11-16 14:30:11 +01:00
|
|
|
if err = repo_module.CreateDelegateHooks(repoPath); err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("createDelegateHooks: %w", err)
|
2020-01-12 13:11:17 +01:00
|
|
|
}
|
2023-06-29 12:03:20 +02:00
|
|
|
|
Simplify how git repositories are opened (#28937)
## Purpose
This is a refactor toward building an abstraction over managing git
repositories.
Afterwards, it does not matter anymore if they are stored on the local
disk or somewhere remote.
## What this PR changes
We used `git.OpenRepository` everywhere previously.
Now, we should split them into two distinct functions:
Firstly, there are temporary repositories which do not change:
```go
git.OpenRepository(ctx, diskPath)
```
Gitea managed repositories having a record in the database in the
`repository` table are moved into the new package `gitrepo`:
```go
gitrepo.OpenRepository(ctx, repo_model.Repo)
```
Why is `repo_model.Repository` the second parameter instead of file
path?
Because then we can easily adapt our repository storage strategy.
The repositories can be stored locally, however, they could just as well
be stored on a remote server.
## Further changes in other PRs
- A Git Command wrapper on package `gitrepo` could be created. i.e.
`NewCommand(ctx, repo_model.Repository, commands...)`. `git.RunOpts{Dir:
repo.RepoPath()}`, the directory should be empty before invoking this
method and it can be filled in the function only. #28940
- Remove the `RepoPath()`/`WikiPath()` functions to reduce the
possibility of mistakes.
---------
Co-authored-by: delvh <dev.lh@web.de>
2024-01-27 21:09:51 +01:00
|
|
|
gitRepo, err := gitrepo.OpenRepository(txCtx, repo)
|
2023-06-29 12:03:20 +02:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("OpenRepository: %w", err)
|
|
|
|
}
|
|
|
|
defer gitRepo.Close()
|
|
|
|
|
|
|
|
_, err = repo_module.SyncRepoBranchesWithRepo(txCtx, repo, gitRepo, doer.ID)
|
|
|
|
return err
|
2020-01-12 13:11:17 +01:00
|
|
|
})
|
2021-09-14 18:16:40 +02:00
|
|
|
needsRollbackInPanic = false
|
2020-01-12 13:11:17 +01:00
|
|
|
if err != nil {
|
2021-09-14 18:16:40 +02:00
|
|
|
rollbackFn()
|
2020-01-12 13:11:17 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-08-08 09:46:38 +02:00
|
|
|
return repo, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ForkRepositoryAndUpdates forks a repository. On success it updates metadata (size, stats, etc.) and send a notification.
|
|
|
|
func ForkRepositoryAndUpdates(ctx context.Context, doer, owner *user_model.User, opts ForkRepoOptions) (*repo_model.Repository, error) {
|
|
|
|
repo, err := ForkRepositoryIfNotExists(ctx, doer, owner, opts)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-04-14 23:15:28 +02:00
|
|
|
// even if below operations failed, it could be ignored. And they will be retried
|
2022-06-06 10:01:49 +02:00
|
|
|
if err := repo_module.UpdateRepoSize(ctx, repo); err != nil {
|
2020-01-12 13:11:17 +01:00
|
|
|
log.Error("Failed to update size for repository: %v", err)
|
|
|
|
}
|
2023-10-11 06:24:07 +02:00
|
|
|
if err := repo_model.CopyLanguageStat(ctx, opts.BaseRepo, repo); err != nil {
|
2022-02-12 04:18:06 +01:00
|
|
|
log.Error("Copy language stat from oldRepo failed: %v", err)
|
|
|
|
}
|
|
|
|
|
Simplify how git repositories are opened (#28937)
## Purpose
This is a refactor toward building an abstraction over managing git
repositories.
Afterwards, it does not matter anymore if they are stored on the local
disk or somewhere remote.
## What this PR changes
We used `git.OpenRepository` everywhere previously.
Now, we should split them into two distinct functions:
Firstly, there are temporary repositories which do not change:
```go
git.OpenRepository(ctx, diskPath)
```
Gitea managed repositories having a record in the database in the
`repository` table are moved into the new package `gitrepo`:
```go
gitrepo.OpenRepository(ctx, repo_model.Repo)
```
Why is `repo_model.Repository` the second parameter instead of file
path?
Because then we can easily adapt our repository storage strategy.
The repositories can be stored locally, however, they could just as well
be stored on a remote server.
## Further changes in other PRs
- A Git Command wrapper on package `gitrepo` could be created. i.e.
`NewCommand(ctx, repo_model.Repository, commands...)`. `git.RunOpts{Dir:
repo.RepoPath()}`, the directory should be empty before invoking this
method and it can be filled in the function only. #28940
- Remove the `RepoPath()`/`WikiPath()` functions to reduce the
possibility of mistakes.
---------
Co-authored-by: delvh <dev.lh@web.de>
2024-01-27 21:09:51 +01:00
|
|
|
gitRepo, err := gitrepo.OpenRepository(ctx, repo)
|
2022-02-12 04:18:06 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Error("Open created git repository failed: %v", err)
|
|
|
|
} else {
|
|
|
|
defer gitRepo.Close()
|
2023-09-25 15:17:37 +02:00
|
|
|
if err := repo_module.SyncReleasesWithTags(ctx, repo, gitRepo); err != nil {
|
2022-02-12 04:18:06 +01:00
|
|
|
log.Error("Sync releases from git tags failed: %v", err)
|
|
|
|
}
|
2020-04-08 14:13:04 +02:00
|
|
|
}
|
2020-09-25 06:09:23 +02:00
|
|
|
|
2023-09-05 20:37:47 +02:00
|
|
|
notify_service.ForkRepository(ctx, doer, opts.BaseRepo, repo)
|
2021-11-16 14:30:11 +01:00
|
|
|
|
2020-09-25 06:09:23 +02:00
|
|
|
return repo, nil
|
2020-01-12 13:11:17 +01:00
|
|
|
}
|
2021-09-14 19:07:08 +02:00
|
|
|
|
|
|
|
// ConvertForkToNormalRepository convert the provided repo from a forked repo to normal repo
|
2023-02-28 23:17:51 +01:00
|
|
|
func ConvertForkToNormalRepository(ctx context.Context, repo *repo_model.Repository) error {
|
|
|
|
err := db.WithTx(ctx, func(ctx context.Context) error {
|
2022-12-03 03:48:26 +01:00
|
|
|
repo, err := repo_model.GetRepositoryByID(ctx, repo.ID)
|
2021-09-14 19:07:08 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !repo.IsFork {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-06-06 10:01:49 +02:00
|
|
|
if err := repo_model.DecrementRepoForkNum(ctx, repo.ForkID); err != nil {
|
2021-09-14 19:07:08 +02:00
|
|
|
log.Error("Unable to decrement repo fork num for old root repo %d of repository %-v whilst converting from fork. Error: %v", repo.ForkID, repo, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
repo.IsFork = false
|
|
|
|
repo.ForkID = 0
|
|
|
|
|
2022-06-06 10:01:49 +02:00
|
|
|
if err := repo_module.UpdateRepository(ctx, repo, false); err != nil {
|
2021-09-14 19:07:08 +02:00
|
|
|
log.Error("Unable to update repository %-v whilst converting from fork. Error: %v", repo, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|