2020-01-29 05:55:23 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-01-29 05:55:23 +00:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
2021-11-24 09:49:20 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-03-29 06:29:02 +00:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2021-11-28 11:58:28 +00:00
|
|
|
"code.gitea.io/gitea/models/perm"
|
2021-12-10 01:27:50 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2020-01-29 05:55:23 +00:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/graceful"
|
2021-04-08 22:25:57 +00:00
|
|
|
"code.gitea.io/gitea/modules/lfs"
|
2020-01-29 05:55:23 +00:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-11-16 15:25:33 +00:00
|
|
|
base "code.gitea.io/gitea/modules/migration"
|
2020-01-29 05:55:23 +00:00
|
|
|
"code.gitea.io/gitea/modules/notification"
|
|
|
|
repo_module "code.gitea.io/gitea/modules/repository"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
|
|
"code.gitea.io/gitea/modules/util"
|
2021-01-26 15:36:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2022-12-29 02:57:15 +00:00
|
|
|
"code.gitea.io/gitea/services/convert"
|
2021-04-06 19:44:05 +00:00
|
|
|
"code.gitea.io/gitea/services/forms"
|
2021-11-16 15:25:33 +00:00
|
|
|
"code.gitea.io/gitea/services/migrations"
|
2020-01-29 05:55:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Migrate migrate remote git repository to gitea
|
2021-01-26 15:36:53 +00:00
|
|
|
func Migrate(ctx *context.APIContext) {
|
2020-01-29 05:55:23 +00:00
|
|
|
// swagger:operation POST /repos/migrate repository repoMigrate
|
|
|
|
// ---
|
|
|
|
// summary: Migrate a remote git repository
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
2020-09-10 22:29:19 +00:00
|
|
|
// "$ref": "#/definitions/MigrateRepoOptions"
|
2020-01-29 05:55:23 +00:00
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Repository"
|
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
2022-04-12 08:13:07 +00:00
|
|
|
// "409":
|
|
|
|
// description: The repository with the same name already exists.
|
2020-01-29 05:55:23 +00:00
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
|
|
|
|
2021-01-26 15:36:53 +00:00
|
|
|
form := web.GetForm(ctx).(*api.MigrateRepoOptions)
|
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
// get repoOwner
|
2020-09-10 22:29:19 +00:00
|
|
|
var (
|
2021-11-24 09:49:20 +00:00
|
|
|
repoOwner *user_model.User
|
2020-09-10 22:29:19 +00:00
|
|
|
err error
|
|
|
|
)
|
|
|
|
if len(form.RepoOwner) != 0 {
|
2022-05-20 14:08:52 +00:00
|
|
|
repoOwner, err = user_model.GetUserByName(ctx, form.RepoOwner)
|
2020-09-10 22:29:19 +00:00
|
|
|
} else if form.RepoOwnerID != 0 {
|
2022-12-03 02:48:26 +00:00
|
|
|
repoOwner, err = user_model.GetUserByID(ctx, form.RepoOwnerID)
|
2020-09-10 22:29:19 +00:00
|
|
|
} else {
|
2022-03-22 07:03:22 +00:00
|
|
|
repoOwner = ctx.Doer
|
2020-09-10 22:29:19 +00:00
|
|
|
}
|
|
|
|
if err != nil {
|
2021-11-24 09:49:20 +00:00
|
|
|
if user_model.IsErrUserNotExist(err) {
|
2020-09-10 22:29:19 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
|
|
|
} else {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetUser", err)
|
2020-01-29 05:55:23 +00:00
|
|
|
}
|
2020-09-10 22:29:19 +00:00
|
|
|
return
|
2020-01-29 05:55:23 +00:00
|
|
|
}
|
|
|
|
|
2023-05-21 01:50:53 +00:00
|
|
|
if ctx.HasAPIError() {
|
2020-01-29 05:55:23 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", ctx.GetErrMsg())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-22 07:03:22 +00:00
|
|
|
if !ctx.Doer.IsAdmin {
|
|
|
|
if !repoOwner.IsOrganization() && ctx.Doer.ID != repoOwner.ID {
|
2020-01-29 05:55:23 +00:00
|
|
|
ctx.Error(http.StatusForbidden, "", "Given user is not an organization.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-09-10 22:29:19 +00:00
|
|
|
if repoOwner.IsOrganization() {
|
2020-01-29 05:55:23 +00:00
|
|
|
// Check ownership of organization.
|
2022-03-29 06:29:02 +00:00
|
|
|
isOwner, err := organization.OrgFromUser(repoOwner).IsOwnedBy(ctx.Doer.ID)
|
2020-01-29 05:55:23 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "IsOwnedBy", err)
|
|
|
|
return
|
|
|
|
} else if !isOwner {
|
|
|
|
ctx.Error(http.StatusForbidden, "", "Given user is not owner of organization.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-06 19:44:05 +00:00
|
|
|
remoteAddr, err := forms.ParseRemoteAddr(form.CloneAddr, form.AuthUsername, form.AuthPassword)
|
2021-03-15 21:52:11 +00:00
|
|
|
if err == nil {
|
2022-03-22 07:03:22 +00:00
|
|
|
err = migrations.IsMigrateURLAllowed(remoteAddr, ctx.Doer)
|
2021-03-15 21:52:11 +00:00
|
|
|
}
|
2020-01-29 05:55:23 +00:00
|
|
|
if err != nil {
|
2021-04-08 22:25:57 +00:00
|
|
|
handleRemoteAddrError(ctx, err)
|
2020-01-29 05:55:23 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-09-10 22:29:19 +00:00
|
|
|
gitServiceType := convert.ToGitServiceType(form.Service)
|
2020-01-29 05:55:23 +00:00
|
|
|
|
2021-09-07 15:49:36 +00:00
|
|
|
if form.Mirror && setting.Mirror.DisableNewPull {
|
|
|
|
ctx.Error(http.StatusForbidden, "MirrorsGlobalDisabled", fmt.Errorf("the site administrator has disabled the creation of new pull mirrors"))
|
2020-06-04 18:06:24 +00:00
|
|
|
return
|
2020-06-04 16:11:28 +00:00
|
|
|
}
|
|
|
|
|
2020-12-21 14:39:41 +00:00
|
|
|
if setting.Repository.DisableMigrations {
|
|
|
|
ctx.Error(http.StatusForbidden, "MigrationsGlobalDisabled", fmt.Errorf("the site administrator has disabled migrations"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-08 22:25:57 +00:00
|
|
|
form.LFS = form.LFS && setting.LFS.StartServer
|
|
|
|
|
|
|
|
if form.LFS && len(form.LFSEndpoint) > 0 {
|
|
|
|
ep := lfs.DetermineEndpoint("", form.LFSEndpoint)
|
|
|
|
if ep == nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "", ctx.Tr("repo.migrate.invalid_lfs_endpoint"))
|
|
|
|
return
|
|
|
|
}
|
2022-03-22 07:03:22 +00:00
|
|
|
err = migrations.IsMigrateURLAllowed(ep.String(), ctx.Doer)
|
2021-04-08 22:25:57 +00:00
|
|
|
if err != nil {
|
|
|
|
handleRemoteAddrError(ctx, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
opts := migrations.MigrateOptions{
|
2020-01-29 05:55:23 +00:00
|
|
|
CloneAddr: remoteAddr,
|
|
|
|
RepoName: form.RepoName,
|
|
|
|
Description: form.Description,
|
|
|
|
Private: form.Private || setting.Repository.ForcePrivate,
|
2020-06-04 16:11:28 +00:00
|
|
|
Mirror: form.Mirror,
|
2021-04-08 22:25:57 +00:00
|
|
|
LFS: form.LFS,
|
|
|
|
LFSEndpoint: form.LFSEndpoint,
|
2020-01-29 05:55:23 +00:00
|
|
|
AuthUsername: form.AuthUsername,
|
|
|
|
AuthPassword: form.AuthPassword,
|
2020-09-10 22:29:19 +00:00
|
|
|
AuthToken: form.AuthToken,
|
2020-01-29 05:55:23 +00:00
|
|
|
Wiki: form.Wiki,
|
|
|
|
Issues: form.Issues,
|
|
|
|
Milestones: form.Milestones,
|
|
|
|
Labels: form.Labels,
|
2023-03-19 06:29:14 +00:00
|
|
|
Comments: form.Issues || form.PullRequests,
|
2020-01-29 05:55:23 +00:00
|
|
|
PullRequests: form.PullRequests,
|
|
|
|
Releases: form.Releases,
|
|
|
|
GitServiceType: gitServiceType,
|
2021-01-02 23:47:47 +00:00
|
|
|
MirrorInterval: form.MirrorInterval,
|
2020-01-29 05:55:23 +00:00
|
|
|
}
|
|
|
|
if opts.Mirror {
|
|
|
|
opts.Issues = false
|
|
|
|
opts.Milestones = false
|
|
|
|
opts.Labels = false
|
|
|
|
opts.Comments = false
|
|
|
|
opts.PullRequests = false
|
|
|
|
opts.Releases = false
|
|
|
|
}
|
|
|
|
|
2022-08-25 02:31:57 +00:00
|
|
|
repo, err := repo_module.CreateRepository(ctx.Doer, repoOwner, repo_module.CreateRepoOptions{
|
2020-01-29 05:55:23 +00:00
|
|
|
Name: opts.RepoName,
|
|
|
|
Description: opts.Description,
|
|
|
|
OriginalURL: form.CloneAddr,
|
|
|
|
GitServiceType: gitServiceType,
|
|
|
|
IsPrivate: opts.Private,
|
|
|
|
IsMirror: opts.Mirror,
|
2021-12-10 01:27:50 +00:00
|
|
|
Status: repo_model.RepositoryBeingMigrated,
|
2020-01-29 05:55:23 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
2020-09-10 22:29:19 +00:00
|
|
|
handleMigrateError(ctx, repoOwner, remoteAddr, err)
|
2020-01-29 05:55:23 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
opts.MigrateToRepoID = repo.ID
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
if e := recover(); e != nil {
|
|
|
|
var buf bytes.Buffer
|
|
|
|
fmt.Fprintf(&buf, "Handler crashed with error: %v", log.Stack(2))
|
|
|
|
|
|
|
|
err = errors.New(buf.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
if err == nil {
|
2022-11-19 08:12:33 +00:00
|
|
|
notification.NotifyMigrateRepository(ctx, ctx.Doer, repoOwner, repo)
|
2020-12-27 03:34:19 +00:00
|
|
|
return
|
2020-01-29 05:55:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if repo != nil {
|
2022-03-22 07:03:22 +00:00
|
|
|
if errDelete := models.DeleteRepository(ctx.Doer, repoOwner.ID, repo.ID); errDelete != nil {
|
2020-01-29 05:55:23 +00:00
|
|
|
log.Error("DeleteRepository: %v", errDelete)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2022-03-22 07:03:22 +00:00
|
|
|
if repo, err = migrations.MigrateRepository(graceful.GetManager().HammerContext(), ctx.Doer, repoOwner.Name, opts, nil); err != nil {
|
2020-09-10 22:29:19 +00:00
|
|
|
handleMigrateError(ctx, repoOwner, remoteAddr, err)
|
2020-01-29 05:55:23 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-09-10 22:29:19 +00:00
|
|
|
log.Trace("Repository migrated: %s/%s", repoOwner.Name, form.RepoName)
|
2022-12-03 02:48:26 +00:00
|
|
|
ctx.JSON(http.StatusCreated, convert.ToRepo(ctx, repo, perm.AccessModeAdmin))
|
2020-01-29 05:55:23 +00:00
|
|
|
}
|
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
func handleMigrateError(ctx *context.APIContext, repoOwner *user_model.User, remoteAddr string, err error) {
|
2020-01-29 05:55:23 +00:00
|
|
|
switch {
|
2021-12-12 15:48:20 +00:00
|
|
|
case repo_model.IsErrRepoAlreadyExist(err):
|
2020-01-29 05:55:23 +00:00
|
|
|
ctx.Error(http.StatusConflict, "", "The repository with the same name already exists.")
|
2021-12-12 15:48:20 +00:00
|
|
|
case repo_model.IsErrRepoFilesAlreadyExist(err):
|
2020-09-25 04:09:23 +00:00
|
|
|
ctx.Error(http.StatusConflict, "", "Files already exist for this repository. Adopt them or delete them.")
|
2020-01-29 05:55:23 +00:00
|
|
|
case migrations.IsRateLimitError(err):
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "Remote visit addressed rate limitation.")
|
|
|
|
case migrations.IsTwoFactorAuthError(err):
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "Remote visit required two factors authentication.")
|
2021-12-12 15:48:20 +00:00
|
|
|
case repo_model.IsErrReachLimitOfRepo(err):
|
2020-01-29 05:55:23 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Sprintf("You have already reached your limit of %d repositories.", repoOwner.MaxCreationLimit()))
|
2021-11-24 09:49:20 +00:00
|
|
|
case db.IsErrNameReserved(err):
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Sprintf("The username '%s' is reserved.", err.(db.ErrNameReserved).Name))
|
|
|
|
case db.IsErrNameCharsNotAllowed(err):
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Sprintf("The username '%s' contains invalid characters.", err.(db.ErrNameCharsNotAllowed).Name))
|
|
|
|
case db.IsErrNamePatternNotAllowed(err):
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Sprintf("The pattern '%s' is not allowed in a username.", err.(db.ErrNamePatternNotAllowed).Pattern))
|
2021-03-15 21:52:11 +00:00
|
|
|
case models.IsErrInvalidCloneAddr(err):
|
2020-11-29 00:37:58 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
2021-01-21 19:33:58 +00:00
|
|
|
case base.IsErrNotSupported(err):
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
2020-01-29 05:55:23 +00:00
|
|
|
default:
|
2022-03-31 02:25:40 +00:00
|
|
|
err = util.SanitizeErrorCredentialURLs(err)
|
2020-01-29 05:55:23 +00:00
|
|
|
if strings.Contains(err.Error(), "Authentication failed") ||
|
|
|
|
strings.Contains(err.Error(), "Bad credentials") ||
|
|
|
|
strings.Contains(err.Error(), "could not read Username") {
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Sprintf("Authentication failed: %v.", err))
|
|
|
|
} else if strings.Contains(err.Error(), "fatal:") {
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Sprintf("Migration failed: %v.", err))
|
|
|
|
} else {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "MigrateRepository", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-08 22:25:57 +00:00
|
|
|
|
|
|
|
func handleRemoteAddrError(ctx *context.APIContext, err error) {
|
|
|
|
if models.IsErrInvalidCloneAddr(err) {
|
|
|
|
addrErr := err.(*models.ErrInvalidCloneAddr)
|
|
|
|
switch {
|
|
|
|
case addrErr.IsURLError:
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
|
|
|
case addrErr.IsPermissionDenied:
|
|
|
|
if addrErr.LocalPath {
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "You are not allowed to import local repositories.")
|
|
|
|
} else {
|
2021-11-20 09:34:05 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "You can not import from disallowed hosts.")
|
2021-04-08 22:25:57 +00:00
|
|
|
}
|
|
|
|
case addrErr.IsInvalidPath:
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "Invalid local path, it does not exist or not a directory.")
|
|
|
|
default:
|
|
|
|
ctx.Error(http.StatusInternalServerError, "ParseRemoteAddr", "Unknown error type (ErrInvalidCloneAddr): "+err.Error())
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "ParseRemoteAddr", err)
|
|
|
|
}
|
|
|
|
}
|