2014-02-20 08:15:43 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2020-01-23 05:16:46 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2014-02-20 08:15:43 +05:30
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2014-07-26 11:58:04 +05:30
|
|
|
"fmt"
|
2014-07-26 09:54:27 +05:30
|
|
|
"os"
|
2014-03-22 23:20:50 +05:30
|
|
|
"path"
|
2014-07-26 11:58:04 +05:30
|
|
|
"strings"
|
2014-03-22 23:20:50 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/auth"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-03-27 15:03:00 +05:30
|
|
|
"code.gitea.io/gitea/modules/git"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2019-05-07 06:42:51 +05:30
|
|
|
"code.gitea.io/gitea/modules/migrations"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-01-10 21:05:17 +05:30
|
|
|
"code.gitea.io/gitea/modules/structs"
|
2019-10-13 18:53:14 +05:30
|
|
|
"code.gitea.io/gitea/modules/task"
|
2017-12-04 07:18:03 +05:30
|
|
|
"code.gitea.io/gitea/modules/util"
|
2019-10-26 12:24:11 +05:30
|
|
|
repo_service "code.gitea.io/gitea/services/repository"
|
2019-03-27 15:03:00 +05:30
|
|
|
|
2019-08-23 22:10:30 +05:30
|
|
|
"github.com/unknwon/com"
|
2014-02-20 08:15:43 +05:30
|
|
|
)
|
|
|
|
|
2014-06-23 08:41:12 +05:30
|
|
|
const (
|
2016-11-24 12:34:31 +05:30
|
|
|
tplCreate base.TplName = "repo/create"
|
|
|
|
tplMigrate base.TplName = "repo/migrate"
|
2014-06-23 08:41:12 +05:30
|
|
|
)
|
|
|
|
|
2019-01-18 05:31:04 +05:30
|
|
|
// MustBeNotEmpty render when a repo is a empty git dir
|
|
|
|
func MustBeNotEmpty(ctx *context.Context) {
|
|
|
|
if ctx.Repo.Repository.IsEmpty {
|
|
|
|
ctx.NotFound("MustBeNotEmpty", nil)
|
2016-01-07 08:37:17 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-30 07:34:25 +05:30
|
|
|
// MustBeEditable check that repo can be edited
|
|
|
|
func MustBeEditable(ctx *context.Context) {
|
|
|
|
if !ctx.Repo.Repository.CanEnableEditor() || ctx.Repo.IsViewCommit {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("", nil)
|
2017-10-30 07:34:25 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MustBeAbleToUpload check that repo can be uploaded to
|
|
|
|
func MustBeAbleToUpload(ctx *context.Context) {
|
|
|
|
if !setting.Repository.Upload.Enabled {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("", nil)
|
2017-10-30 07:34:25 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
func checkContextUser(ctx *context.Context, uid int64) *models.User {
|
2019-11-20 16:57:49 +05:30
|
|
|
orgs, err := models.GetOrgsCanCreateRepoByUserID(ctx.User.ID)
|
2015-09-07 23:28:23 +05:30
|
|
|
if err != nil {
|
2019-11-20 16:57:49 +05:30
|
|
|
ctx.ServerError("GetOrgsCanCreateRepoByUserID", err)
|
2015-08-28 16:03:09 +05:30
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-04 02:38:24 +05:30
|
|
|
if !ctx.User.IsAdmin {
|
|
|
|
orgsAvailable := []*models.User{}
|
|
|
|
for i := 0; i < len(orgs); i++ {
|
|
|
|
if orgs[i].CanCreateRepo() {
|
|
|
|
orgsAvailable = append(orgsAvailable, orgs[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["Orgs"] = orgsAvailable
|
|
|
|
} else {
|
|
|
|
ctx.Data["Orgs"] = orgs
|
|
|
|
}
|
|
|
|
|
2015-07-19 14:41:16 +05:30
|
|
|
// Not equal means current user is an organization.
|
2016-07-23 22:38:22 +05:30
|
|
|
if uid == ctx.User.ID || uid == 0 {
|
2015-07-19 14:41:16 +05:30
|
|
|
return ctx.User
|
|
|
|
}
|
|
|
|
|
2015-08-08 20:13:14 +05:30
|
|
|
org, err := models.GetUserByID(uid)
|
2015-08-05 08:44:17 +05:30
|
|
|
if models.IsErrUserNotExist(err) {
|
2015-07-19 14:41:16 +05:30
|
|
|
return ctx.User
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetUserByID", fmt.Errorf("[%d]: %v", uid, err))
|
2015-07-19 14:41:16 +05:30
|
|
|
return nil
|
2015-08-28 16:03:09 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// Check ownership of organization.
|
2017-12-21 13:13:26 +05:30
|
|
|
if !org.IsOrganization() {
|
2015-07-19 14:41:16 +05:30
|
|
|
ctx.Error(403)
|
|
|
|
return nil
|
2014-11-06 10:00:04 +05:30
|
|
|
}
|
2017-12-21 13:13:26 +05:30
|
|
|
if !ctx.User.IsAdmin {
|
2019-11-20 16:57:49 +05:30
|
|
|
canCreate, err := org.CanCreateOrgRepo(ctx.User.ID)
|
2017-12-21 13:13:26 +05:30
|
|
|
if err != nil {
|
2019-11-20 16:57:49 +05:30
|
|
|
ctx.ServerError("CanCreateOrgRepo", err)
|
2017-12-21 13:13:26 +05:30
|
|
|
return nil
|
2019-11-20 16:57:49 +05:30
|
|
|
} else if !canCreate {
|
2017-12-21 13:13:26 +05:30
|
|
|
ctx.Error(403)
|
|
|
|
return nil
|
|
|
|
}
|
2020-04-30 20:41:56 +05:30
|
|
|
} else {
|
|
|
|
ctx.Data["Orgs"] = orgs
|
2017-12-21 13:13:26 +05:30
|
|
|
}
|
2015-07-19 14:41:16 +05:30
|
|
|
return org
|
2014-11-06 10:00:04 +05:30
|
|
|
}
|
|
|
|
|
2017-12-20 18:29:56 +05:30
|
|
|
func getRepoPrivate(ctx *context.Context) bool {
|
|
|
|
switch strings.ToLower(setting.Repository.DefaultPrivate) {
|
|
|
|
case setting.RepoCreatingLastUserVisibility:
|
|
|
|
return ctx.User.LastRepoVisibility
|
|
|
|
case setting.RepoCreatingPrivate:
|
|
|
|
return true
|
|
|
|
case setting.RepoCreatingPublic:
|
|
|
|
return false
|
|
|
|
default:
|
|
|
|
return ctx.User.LastRepoVisibility
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Create render creating repository page
|
2016-03-11 22:26:52 +05:30
|
|
|
func Create(ctx *context.Context) {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("new_repo")
|
|
|
|
|
|
|
|
// Give default value for template to render.
|
|
|
|
ctx.Data["Gitignores"] = models.Gitignores
|
2019-09-08 13:58:40 +05:30
|
|
|
ctx.Data["LabelTemplates"] = models.LabelTemplates
|
2014-03-19 22:44:56 +05:30
|
|
|
ctx.Data["Licenses"] = models.Licenses
|
2015-08-28 14:14:04 +05:30
|
|
|
ctx.Data["Readmes"] = models.Readmes
|
|
|
|
ctx.Data["readme"] = "Default"
|
2017-12-20 18:29:56 +05:30
|
|
|
ctx.Data["private"] = getRepoPrivate(ctx)
|
2015-10-25 13:56:26 +05:30
|
|
|
ctx.Data["IsForcedPrivate"] = setting.Repository.ForcePrivate
|
2020-06-18 02:23:55 +05:30
|
|
|
ctx.Data["default_branch"] = setting.Repository.DefaultBranch
|
2014-06-25 13:25:59 +05:30
|
|
|
|
2015-07-19 14:41:16 +05:30
|
|
|
ctxUser := checkContextUser(ctx, ctx.QueryInt64("org"))
|
|
|
|
if ctx.Written() {
|
2014-11-06 10:00:04 +05:30
|
|
|
return
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
2014-06-29 01:13:25 +05:30
|
|
|
ctx.Data["ContextUser"] = ctxUser
|
|
|
|
|
2019-11-11 20:45:29 +05:30
|
|
|
ctx.Data["repo_template_name"] = ctx.Tr("repo.template_select")
|
|
|
|
templateID := ctx.QueryInt64("template_id")
|
|
|
|
if templateID > 0 {
|
|
|
|
templateRepo, err := models.GetRepositoryByID(templateID)
|
|
|
|
if err == nil && templateRepo.CheckUnitUser(ctxUser.ID, ctxUser.IsAdmin, models.UnitTypeCode) {
|
|
|
|
ctx.Data["repo_template"] = templateID
|
|
|
|
ctx.Data["repo_template_name"] = templateRepo.Name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-30 20:41:56 +05:30
|
|
|
if !ctx.User.CanCreateRepo() {
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.form.reach_limit_of_creation", ctx.User.MaxCreationLimit()), tplCreate, nil)
|
|
|
|
} else {
|
|
|
|
ctx.HTML(200, tplCreate)
|
|
|
|
}
|
2014-04-11 03:39:57 +05:30
|
|
|
}
|
2014-03-08 02:35:18 +05:30
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
func handleCreateError(ctx *context.Context, owner *models.User, err error, name string, tpl base.TplName, form interface{}) {
|
2015-08-28 16:03:09 +05:30
|
|
|
switch {
|
2015-12-10 23:07:53 +05:30
|
|
|
case models.IsErrReachLimitOfRepo(err):
|
2017-05-24 05:57:08 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.form.reach_limit_of_creation", owner.MaxCreationLimit()), tpl, form)
|
2015-08-28 16:03:09 +05:30
|
|
|
case models.IsErrRepoAlreadyExist(err):
|
|
|
|
ctx.Data["Err_RepoName"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.repo_name_been_taken"), tpl, form)
|
|
|
|
case models.IsErrNameReserved(err):
|
|
|
|
ctx.Data["Err_RepoName"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.form.name_reserved", err.(models.ErrNameReserved).Name), tpl, form)
|
|
|
|
case models.IsErrNamePatternNotAllowed(err):
|
|
|
|
ctx.Data["Err_RepoName"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.form.name_pattern_not_allowed", err.(models.ErrNamePatternNotAllowed).Pattern), tpl, form)
|
|
|
|
default:
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError(name, err)
|
2015-08-28 16:03:09 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// CreatePost response for creating repository
|
2016-03-11 22:26:52 +05:30
|
|
|
func CreatePost(ctx *context.Context, form auth.CreateRepoForm) {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("new_repo")
|
|
|
|
|
|
|
|
ctx.Data["Gitignores"] = models.Gitignores
|
2019-09-08 13:58:40 +05:30
|
|
|
ctx.Data["LabelTemplates"] = models.LabelTemplates
|
2014-04-11 03:39:57 +05:30
|
|
|
ctx.Data["Licenses"] = models.Licenses
|
2015-08-28 14:14:04 +05:30
|
|
|
ctx.Data["Readmes"] = models.Readmes
|
2014-02-20 08:15:43 +05:30
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
ctxUser := checkContextUser(ctx, form.UID)
|
2015-07-19 14:41:16 +05:30
|
|
|
if ctx.Written() {
|
|
|
|
return
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["ContextUser"] = ctxUser
|
|
|
|
|
2014-03-23 01:30:46 +05:30
|
|
|
if ctx.HasError() {
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.HTML(200, tplCreate)
|
2014-03-23 01:30:46 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-01-05 08:09:14 +05:30
|
|
|
var repo *models.Repository
|
2019-11-11 20:45:29 +05:30
|
|
|
var err error
|
|
|
|
if form.RepoTemplate > 0 {
|
|
|
|
opts := models.GenerateRepoOptions{
|
|
|
|
Name: form.RepoName,
|
|
|
|
Description: form.Description,
|
|
|
|
Private: form.Private,
|
|
|
|
GitContent: form.GitContent,
|
|
|
|
Topics: form.Topics,
|
2019-11-24 23:27:52 +05:30
|
|
|
GitHooks: form.GitHooks,
|
|
|
|
Webhooks: form.Webhooks,
|
2019-11-25 10:47:51 +05:30
|
|
|
Avatar: form.Avatar,
|
|
|
|
IssueLabels: form.Labels,
|
2019-11-11 20:45:29 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if !opts.IsValid() {
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.template.one_item"), tplCreate, form)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
templateRepo := getRepository(ctx, form.RepoTemplate)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !templateRepo.IsTemplate {
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.template.invalid"), tplCreate, form)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-01-05 08:09:14 +05:30
|
|
|
repo, err = repo_service.GenerateRepository(ctx.User, ctxUser, templateRepo, opts)
|
2019-11-11 20:45:29 +05:30
|
|
|
if err == nil {
|
|
|
|
log.Trace("Repository generated [%d]: %s/%s", repo.ID, ctxUser.Name, repo.Name)
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/" + ctxUser.Name + "/" + repo.Name)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
2020-01-05 08:09:14 +05:30
|
|
|
repo, err = repo_service.CreateRepository(ctx.User, ctxUser, models.CreateRepoOptions{
|
2020-03-27 00:44:51 +05:30
|
|
|
Name: form.RepoName,
|
|
|
|
Description: form.Description,
|
|
|
|
Gitignores: form.Gitignores,
|
|
|
|
IssueLabels: form.IssueLabels,
|
|
|
|
License: form.License,
|
|
|
|
Readme: form.Readme,
|
|
|
|
IsPrivate: form.Private || setting.Repository.ForcePrivate,
|
|
|
|
DefaultBranch: form.DefaultBranch,
|
|
|
|
AutoInit: form.AutoInit,
|
2019-11-11 20:45:29 +05:30
|
|
|
})
|
|
|
|
if err == nil {
|
|
|
|
log.Trace("Repository created [%d]: %s/%s", repo.ID, ctxUser.Name, repo.Name)
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/" + ctxUser.Name + "/" + repo.Name)
|
|
|
|
return
|
|
|
|
}
|
2014-03-10 05:36:29 +05:30
|
|
|
}
|
2014-04-13 06:05:35 +05:30
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
handleCreateError(ctx, ctxUser, err, "CreatePost", tplCreate, &form)
|
2014-04-11 03:39:57 +05:30
|
|
|
}
|
2014-04-09 18:58:00 +05:30
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Migrate render migration of repository page
|
2016-03-11 22:26:52 +05:30
|
|
|
func Migrate(ctx *context.Context) {
|
2014-08-01 09:36:19 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("new_migrate")
|
2017-12-20 18:29:56 +05:30
|
|
|
ctx.Data["private"] = getRepoPrivate(ctx)
|
2015-10-25 13:56:26 +05:30
|
|
|
ctx.Data["IsForcedPrivate"] = setting.Repository.ForcePrivate
|
2020-06-03 06:51:38 +05:30
|
|
|
ctx.Data["DisableMirrors"] = setting.Repository.DisableMirrors
|
2015-12-09 21:54:56 +05:30
|
|
|
ctx.Data["mirror"] = ctx.Query("mirror") == "1"
|
2019-05-07 06:42:51 +05:30
|
|
|
ctx.Data["wiki"] = ctx.Query("wiki") == "1"
|
|
|
|
ctx.Data["milestones"] = ctx.Query("milestones") == "1"
|
|
|
|
ctx.Data["labels"] = ctx.Query("labels") == "1"
|
|
|
|
ctx.Data["issues"] = ctx.Query("issues") == "1"
|
|
|
|
ctx.Data["pull_requests"] = ctx.Query("pull_requests") == "1"
|
|
|
|
ctx.Data["releases"] = ctx.Query("releases") == "1"
|
2017-03-16 17:03:22 +05:30
|
|
|
ctx.Data["LFSActive"] = setting.LFS.StartServer
|
2020-08-28 07:06:37 +05:30
|
|
|
// Plain git should be first
|
|
|
|
ctx.Data["service"] = structs.PlainGitService
|
|
|
|
ctx.Data["Services"] = append([]structs.GitServiceType{structs.PlainGitService}, structs.SupportedFullGitService...)
|
2014-08-01 09:36:19 +05:30
|
|
|
|
2015-07-19 14:41:16 +05:30
|
|
|
ctxUser := checkContextUser(ctx, ctx.QueryInt64("org"))
|
|
|
|
if ctx.Written() {
|
2014-11-06 10:00:04 +05:30
|
|
|
return
|
2014-08-01 09:36:19 +05:30
|
|
|
}
|
|
|
|
ctx.Data["ContextUser"] = ctxUser
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.HTML(200, tplMigrate)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2019-10-13 18:53:14 +05:30
|
|
|
func handleMigrateError(ctx *context.Context, owner *models.User, err error, name string, tpl base.TplName, form *auth.MigrateRepoForm) {
|
|
|
|
switch {
|
|
|
|
case migrations.IsRateLimitError(err):
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.visit_rate_limit"), tpl, form)
|
|
|
|
case migrations.IsTwoFactorAuthError(err):
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.2fa_auth_required"), tpl, form)
|
|
|
|
case models.IsErrReachLimitOfRepo(err):
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.form.reach_limit_of_creation", owner.MaxCreationLimit()), tpl, form)
|
|
|
|
case models.IsErrRepoAlreadyExist(err):
|
|
|
|
ctx.Data["Err_RepoName"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.repo_name_been_taken"), tpl, form)
|
|
|
|
case models.IsErrNameReserved(err):
|
|
|
|
ctx.Data["Err_RepoName"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.form.name_reserved", err.(models.ErrNameReserved).Name), tpl, form)
|
|
|
|
case models.IsErrNamePatternNotAllowed(err):
|
|
|
|
ctx.Data["Err_RepoName"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.form.name_pattern_not_allowed", err.(models.ErrNamePatternNotAllowed).Pattern), tpl, form)
|
|
|
|
default:
|
|
|
|
remoteAddr, _ := form.ParseRemoteAddr(owner)
|
|
|
|
err = util.URLSanitizedError(err, remoteAddr)
|
|
|
|
if strings.Contains(err.Error(), "Authentication failed") ||
|
|
|
|
strings.Contains(err.Error(), "Bad credentials") ||
|
|
|
|
strings.Contains(err.Error(), "could not read Username") {
|
|
|
|
ctx.Data["Err_Auth"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.auth_failed", err.Error()), tpl, form)
|
|
|
|
} else if strings.Contains(err.Error(), "fatal:") {
|
|
|
|
ctx.Data["Err_CloneAddr"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.migrate.failed", err.Error()), tpl, form)
|
|
|
|
} else {
|
|
|
|
ctx.ServerError(name, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// MigratePost response for migrating from external git repository
|
2016-03-11 22:26:52 +05:30
|
|
|
func MigratePost(ctx *context.Context, form auth.MigrateRepoForm) {
|
2014-08-01 09:36:19 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("new_migrate")
|
2020-08-28 07:06:37 +05:30
|
|
|
// Plain git should be first
|
|
|
|
ctx.Data["service"] = structs.PlainGitService
|
|
|
|
ctx.Data["Services"] = append([]structs.GitServiceType{structs.PlainGitService}, structs.SupportedFullGitService...)
|
2014-08-01 09:36:19 +05:30
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
ctxUser := checkContextUser(ctx, form.UID)
|
2015-07-19 14:41:16 +05:30
|
|
|
if ctx.Written() {
|
|
|
|
return
|
2014-08-01 09:36:19 +05:30
|
|
|
}
|
|
|
|
ctx.Data["ContextUser"] = ctxUser
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
if ctx.HasError() {
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.HTML(200, tplMigrate)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2015-11-04 05:10:52 +05:30
|
|
|
remoteAddr, err := form.ParseRemoteAddr(ctx.User)
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrInvalidCloneAddr(err) {
|
2015-02-22 20:19:25 +05:30
|
|
|
ctx.Data["Err_CloneAddr"] = true
|
2015-11-04 05:10:52 +05:30
|
|
|
addrErr := err.(models.ErrInvalidCloneAddr)
|
|
|
|
switch {
|
|
|
|
case addrErr.IsURLError:
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.url_error"), tplMigrate, &form)
|
2015-11-04 05:10:52 +05:30
|
|
|
case addrErr.IsPermissionDenied:
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.migrate.permission_denied"), tplMigrate, &form)
|
2015-11-04 05:10:52 +05:30
|
|
|
case addrErr.IsInvalidPath:
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.migrate.invalid_local_path"), tplMigrate, &form)
|
2015-11-04 05:10:52 +05:30
|
|
|
default:
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("Unknown error", err)
|
2015-11-04 05:10:52 +05:30
|
|
|
}
|
|
|
|
} else {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("ParseRemoteAddr", err)
|
2015-02-22 20:19:25 +05:30
|
|
|
}
|
2015-01-02 15:44:11 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-05-07 06:42:51 +05:30
|
|
|
var opts = migrations.MigrateOptions{
|
2020-01-10 21:05:17 +05:30
|
|
|
OriginalURL: form.CloneAddr,
|
2020-08-28 07:06:37 +05:30
|
|
|
GitServiceType: structs.GitServiceType(form.Service),
|
2020-01-10 21:05:17 +05:30
|
|
|
CloneAddr: remoteAddr,
|
|
|
|
RepoName: form.RepoName,
|
|
|
|
Description: form.Description,
|
|
|
|
Private: form.Private || setting.Repository.ForcePrivate,
|
2020-06-03 06:51:38 +05:30
|
|
|
Mirror: form.Mirror && !setting.Repository.DisableMirrors,
|
2020-01-10 21:05:17 +05:30
|
|
|
AuthUsername: form.AuthUsername,
|
|
|
|
AuthPassword: form.AuthPassword,
|
2020-08-28 07:06:37 +05:30
|
|
|
AuthToken: form.AuthToken,
|
2020-01-10 21:05:17 +05:30
|
|
|
Wiki: form.Wiki,
|
|
|
|
Issues: form.Issues,
|
|
|
|
Milestones: form.Milestones,
|
|
|
|
Labels: form.Labels,
|
|
|
|
Comments: true,
|
|
|
|
PullRequests: form.PullRequests,
|
|
|
|
Releases: form.Releases,
|
2019-05-07 06:42:51 +05:30
|
|
|
}
|
|
|
|
if opts.Mirror {
|
|
|
|
opts.Issues = false
|
|
|
|
opts.Milestones = false
|
|
|
|
opts.Labels = false
|
|
|
|
opts.Comments = false
|
|
|
|
opts.PullRequests = false
|
|
|
|
opts.Releases = false
|
|
|
|
}
|
|
|
|
|
2019-10-13 18:53:14 +05:30
|
|
|
err = models.CheckCreateRepository(ctx.User, ctxUser, opts.RepoName)
|
|
|
|
if err != nil {
|
|
|
|
handleMigrateError(ctx, ctxUser, err, "MigratePost", tplMigrate, &form)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2019-10-13 18:53:14 +05:30
|
|
|
err = task.MigrateRepository(ctx.User, ctxUser, opts)
|
|
|
|
if err == nil {
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/" + ctxUser.Name + "/" + opts.RepoName)
|
|
|
|
return
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
2019-10-13 18:53:14 +05:30
|
|
|
|
|
|
|
handleMigrateError(ctx, ctxUser, err, "MigratePost", tplMigrate, &form)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Action response for actions to a repository
|
2016-03-11 22:26:52 +05:30
|
|
|
func Action(ctx *context.Context) {
|
2014-08-11 08:41:18 +05:30
|
|
|
var err error
|
|
|
|
switch ctx.Params(":action") {
|
|
|
|
case "watch":
|
2016-07-23 22:38:22 +05:30
|
|
|
err = models.WatchRepo(ctx.User.ID, ctx.Repo.Repository.ID, true)
|
2014-08-11 08:41:18 +05:30
|
|
|
case "unwatch":
|
2016-07-23 22:38:22 +05:30
|
|
|
err = models.WatchRepo(ctx.User.ID, ctx.Repo.Repository.ID, false)
|
2014-08-11 08:41:18 +05:30
|
|
|
case "star":
|
2016-07-23 22:38:22 +05:30
|
|
|
err = models.StarRepo(ctx.User.ID, ctx.Repo.Repository.ID, true)
|
2014-08-11 08:41:18 +05:30
|
|
|
case "unstar":
|
2016-07-23 22:38:22 +05:30
|
|
|
err = models.StarRepo(ctx.User.ID, ctx.Repo.Repository.ID, false)
|
2016-01-07 08:37:17 +05:30
|
|
|
case "desc": // FIXME: this is not used
|
2015-02-16 16:21:56 +05:30
|
|
|
if !ctx.Repo.IsOwner() {
|
2014-08-11 08:41:18 +05:30
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Repo.Repository.Description = ctx.Query("desc")
|
|
|
|
ctx.Repo.Repository.Website = ctx.Query("site")
|
2015-03-16 14:22:11 +05:30
|
|
|
err = models.UpdateRepository(ctx.Repo.Repository, false)
|
2014-08-11 08:41:18 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError(fmt.Sprintf("Action (%s)", ctx.Params(":action")), err)
|
2014-08-11 08:41:18 +05:30
|
|
|
return
|
|
|
|
}
|
2015-07-24 02:20:05 +05:30
|
|
|
|
2018-03-16 02:43:34 +05:30
|
|
|
ctx.RedirectToFirst(ctx.Query("redirect_to"), ctx.Repo.RepoLink)
|
2014-08-11 08:41:18 +05:30
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2019-01-07 04:07:30 +05:30
|
|
|
// RedirectDownload return a file based on the following infos:
|
|
|
|
func RedirectDownload(ctx *context.Context) {
|
|
|
|
var (
|
|
|
|
vTag = ctx.Params("vTag")
|
|
|
|
fileName = ctx.Params("fileName")
|
|
|
|
)
|
|
|
|
tagNames := []string{vTag}
|
|
|
|
curRepo := ctx.Repo.Repository
|
2020-02-03 14:17:04 +05:30
|
|
|
releases, err := models.GetReleasesByRepoIDAndNames(models.DefaultDBContext(), curRepo.ID, tagNames)
|
2019-01-07 04:07:30 +05:30
|
|
|
if err != nil {
|
|
|
|
if models.IsErrAttachmentNotExist(err) {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.ServerError("RedirectDownload", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if len(releases) == 1 {
|
|
|
|
release := releases[0]
|
|
|
|
att, err := models.GetAttachmentByReleaseIDFileName(release.ID, fileName)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if att != nil {
|
2019-12-29 05:03:13 +05:30
|
|
|
ctx.Redirect(att.DownloadURL())
|
2019-01-07 04:07:30 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Error(404)
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Download download an archive of a repository
|
2016-03-11 22:26:52 +05:30
|
|
|
func Download(ctx *context.Context) {
|
2014-09-25 03:13:33 +05:30
|
|
|
var (
|
|
|
|
uri = ctx.Params("*")
|
|
|
|
refName string
|
|
|
|
ext string
|
|
|
|
archivePath string
|
2014-11-02 10:48:37 +05:30
|
|
|
archiveType git.ArchiveType
|
2014-09-25 03:13:33 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case strings.HasSuffix(uri, ".zip"):
|
|
|
|
ext = ".zip"
|
2014-07-26 09:54:27 +05:30
|
|
|
archivePath = path.Join(ctx.Repo.GitRepo.Path, "archives/zip")
|
2014-11-02 10:48:37 +05:30
|
|
|
archiveType = git.ZIP
|
2014-09-25 03:13:33 +05:30
|
|
|
case strings.HasSuffix(uri, ".tar.gz"):
|
|
|
|
ext = ".tar.gz"
|
2014-07-26 09:54:27 +05:30
|
|
|
archivePath = path.Join(ctx.Repo.GitRepo.Path, "archives/targz")
|
2014-11-02 10:48:37 +05:30
|
|
|
archiveType = git.TARGZ
|
2014-07-26 09:54:27 +05:30
|
|
|
default:
|
2015-12-14 04:50:39 +05:30
|
|
|
log.Trace("Unknown format: %s", uri)
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Error(404)
|
2014-06-25 15:05:23 +05:30
|
|
|
return
|
|
|
|
}
|
2014-09-25 03:13:33 +05:30
|
|
|
refName = strings.TrimSuffix(uri, ext)
|
2014-06-25 15:05:23 +05:30
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
if !com.IsDir(archivePath) {
|
|
|
|
if err := os.MkdirAll(archivePath, os.ModePerm); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("Download -> os.MkdirAll(archivePath)", err)
|
2014-06-25 15:05:23 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-25 03:13:33 +05:30
|
|
|
// Get corresponding commit.
|
|
|
|
var (
|
|
|
|
commit *git.Commit
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
gitRepo := ctx.Repo.GitRepo
|
|
|
|
if gitRepo.IsBranchExist(refName) {
|
2015-12-10 07:16:05 +05:30
|
|
|
commit, err = gitRepo.GetBranchCommit(refName)
|
2014-09-25 03:13:33 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetBranchCommit", err)
|
2014-09-25 03:13:33 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
} else if gitRepo.IsTagExist(refName) {
|
2015-12-10 07:16:05 +05:30
|
|
|
commit, err = gitRepo.GetTagCommit(refName)
|
2014-09-25 03:13:33 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetTagCommit", err)
|
2014-09-25 03:13:33 +05:30
|
|
|
return
|
|
|
|
}
|
2016-11-24 02:36:56 +05:30
|
|
|
} else if len(refName) >= 4 && len(refName) <= 40 {
|
2014-09-25 03:13:33 +05:30
|
|
|
commit, err = gitRepo.GetCommit(refName)
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("GetCommit", nil)
|
2014-09-25 03:13:33 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("Download", nil)
|
2014-09-25 03:13:33 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-11-04 09:19:06 +05:30
|
|
|
archivePath = path.Join(archivePath, base.ShortSha(commit.ID.String())+ext)
|
2014-07-26 09:54:27 +05:30
|
|
|
if !com.IsFile(archivePath) {
|
2020-08-28 12:25:12 +05:30
|
|
|
if err := commit.CreateArchive(ctx.Req.Context(), archivePath, git.CreateArchiveOpts{
|
2020-01-23 05:16:46 +05:30
|
|
|
Format: archiveType,
|
|
|
|
Prefix: setting.Repository.PrefixArchiveFiles,
|
|
|
|
}); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("Download -> CreateArchive "+archivePath, err)
|
2014-03-22 23:20:50 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-08 01:58:38 +05:30
|
|
|
ctx.ServeFile(archivePath, ctx.Repo.Repository.Name+"-"+refName+ext)
|
2014-03-22 23:20:50 +05:30
|
|
|
}
|
2019-10-13 18:53:14 +05:30
|
|
|
|
|
|
|
// Status returns repository's status
|
|
|
|
func Status(ctx *context.Context) {
|
|
|
|
task, err := models.GetMigratingTask(ctx.Repo.Repository.ID)
|
|
|
|
if err != nil {
|
|
|
|
ctx.JSON(500, map[string]interface{}{
|
|
|
|
"err": err,
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.JSON(200, map[string]interface{}{
|
|
|
|
"status": ctx.Repo.Repository.Status,
|
|
|
|
"err": task.Errors,
|
|
|
|
})
|
|
|
|
}
|