mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 20:21:47 +01:00 
			
		
		
		
	Use [chi](https://github.com/go-chi/chi) instead of the forked [macaron](https://gitea.com/macaron/macaron). Since macaron and chi have conflicts with session share, this big PR becomes a have-to thing. According my previous idea, we can replace macaron step by step but I'm wrong. :( Below is a list of big changes on this PR. - [x] Define `context.ResponseWriter` interface with an implementation `context.Response`. - [x] Use chi instead of macaron, and also a customize `Route` to wrap chi so that the router usage is similar as before. - [x] Create different routers for `web`, `api`, `internal` and `install` so that the codes will be more clear and no magic . - [x] Use https://github.com/unrolled/render instead of macaron's internal render - [x] Use https://github.com/NYTimes/gziphandler instead of https://gitea.com/macaron/gzip - [x] Use https://gitea.com/go-chi/session which is a modified version of https://gitea.com/macaron/session and removed `nodb` support since it will not be maintained. **BREAK** - [x] Use https://gitea.com/go-chi/captcha which is a modified version of https://gitea.com/macaron/captcha - [x] Use https://gitea.com/go-chi/cache which is a modified version of https://gitea.com/macaron/cache - [x] Use https://gitea.com/go-chi/binding which is a modified version of https://gitea.com/macaron/binding - [x] Use https://github.com/go-chi/cors instead of https://gitea.com/macaron/cors - [x] Dropped https://gitea.com/macaron/i18n and make a new one in `code.gitea.io/gitea/modules/translation` - [x] Move validation form structs from `code.gitea.io/gitea/modules/auth` to `code.gitea.io/gitea/modules/forms` to avoid dependency cycle. - [x] Removed macaron log service because it's not need any more. **BREAK** - [x] All form structs have to be get by `web.GetForm(ctx)` in the route function but not as a function parameter on routes definition. - [x] Move Git HTTP protocol implementation to use routers directly. - [x] Fix the problem that chi routes don't support trailing slash but macaron did. - [x] `/api/v1/swagger` now will be redirect to `/api/swagger` but not render directly so that `APIContext` will not create a html render. Notices: - Chi router don't support request with trailing slash - Integration test `TestUserHeatmap` maybe mysql version related. It's failed on my macOS(mysql 5.7.29 installed via brew) but succeed on CI. Co-authored-by: 6543 <6543@obermui.de>
		
			
				
	
	
		
			209 lines
		
	
	
		
			7.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			209 lines
		
	
	
		
			7.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2014 The Gogs Authors. All rights reserved.
 | |
| // Copyright 2020 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 repo
 | |
| 
 | |
| import (
 | |
| 	"net/http"
 | |
| 	"strings"
 | |
| 
 | |
| 	"code.gitea.io/gitea/models"
 | |
| 	"code.gitea.io/gitea/modules/base"
 | |
| 	"code.gitea.io/gitea/modules/context"
 | |
| 	auth "code.gitea.io/gitea/modules/forms"
 | |
| 	"code.gitea.io/gitea/modules/migrations"
 | |
| 	"code.gitea.io/gitea/modules/setting"
 | |
| 	"code.gitea.io/gitea/modules/structs"
 | |
| 	"code.gitea.io/gitea/modules/task"
 | |
| 	"code.gitea.io/gitea/modules/util"
 | |
| 	"code.gitea.io/gitea/modules/web"
 | |
| )
 | |
| 
 | |
| const (
 | |
| 	tplMigrate base.TplName = "repo/migrate/migrate"
 | |
| )
 | |
| 
 | |
| // Migrate render migration of repository page
 | |
| func Migrate(ctx *context.Context) {
 | |
| 	if setting.Repository.DisableMigrations {
 | |
| 		ctx.Error(http.StatusForbidden, "Migrate: the site administrator has disabled migrations")
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	ctx.Data["Services"] = append([]structs.GitServiceType{structs.PlainGitService}, structs.SupportedFullGitService...)
 | |
| 	serviceType := ctx.QueryInt("service_type")
 | |
| 	if serviceType == 0 {
 | |
| 		ctx.Data["Org"] = ctx.Query("org")
 | |
| 		ctx.Data["Mirror"] = ctx.Query("mirror")
 | |
| 
 | |
| 		ctx.HTML(200, tplMigrate)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	ctx.Data["Title"] = ctx.Tr("new_migrate")
 | |
| 	ctx.Data["private"] = getRepoPrivate(ctx)
 | |
| 	ctx.Data["IsForcedPrivate"] = setting.Repository.ForcePrivate
 | |
| 	ctx.Data["DisableMirrors"] = setting.Repository.DisableMirrors
 | |
| 	ctx.Data["mirror"] = ctx.Query("mirror") == "1"
 | |
| 	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"
 | |
| 	ctx.Data["LFSActive"] = setting.LFS.StartServer
 | |
| 	// Plain git should be first
 | |
| 	ctx.Data["service"] = structs.GitServiceType(serviceType)
 | |
| 
 | |
| 	ctxUser := checkContextUser(ctx, ctx.QueryInt64("org"))
 | |
| 	if ctx.Written() {
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.Data["ContextUser"] = ctxUser
 | |
| 
 | |
| 	ctx.HTML(200, base.TplName("repo/migrate/"+structs.GitServiceType(serviceType).Name()))
 | |
| }
 | |
| 
 | |
| func handleMigrateError(ctx *context.Context, owner *models.User, err error, name string, tpl base.TplName, form *auth.MigrateRepoForm) {
 | |
| 	if setting.Repository.DisableMigrations {
 | |
| 		ctx.Error(http.StatusForbidden, "MigrateError: the site administrator has disabled migrations")
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	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.IsErrRepoFilesAlreadyExist(err):
 | |
| 		ctx.Data["Err_RepoName"] = true
 | |
| 		switch {
 | |
| 		case ctx.IsUserSiteAdmin() || (setting.Repository.AllowAdoptionOfUnadoptedRepositories && setting.Repository.AllowDeleteOfUnadoptedRepositories):
 | |
| 			ctx.RenderWithErr(ctx.Tr("form.repository_files_already_exist.adopt_or_delete"), tpl, form)
 | |
| 		case setting.Repository.AllowAdoptionOfUnadoptedRepositories:
 | |
| 			ctx.RenderWithErr(ctx.Tr("form.repository_files_already_exist.adopt"), tpl, form)
 | |
| 		case setting.Repository.AllowDeleteOfUnadoptedRepositories:
 | |
| 			ctx.RenderWithErr(ctx.Tr("form.repository_files_already_exist.delete"), tpl, form)
 | |
| 		default:
 | |
| 			ctx.RenderWithErr(ctx.Tr("form.repository_files_already_exist"), 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, _ := auth.ParseRemoteAddr(form.CloneAddr, form.AuthUsername, form.AuthPassword, 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)
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // MigratePost response for migrating from external git repository
 | |
| func MigratePost(ctx *context.Context) {
 | |
| 	form := web.GetForm(ctx).(*auth.MigrateRepoForm)
 | |
| 	if setting.Repository.DisableMigrations {
 | |
| 		ctx.Error(http.StatusForbidden, "MigratePost: the site administrator has disabled migrations")
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	ctx.Data["Title"] = ctx.Tr("new_migrate")
 | |
| 	// Plain git should be first
 | |
| 	ctx.Data["service"] = structs.GitServiceType(form.Service)
 | |
| 	ctx.Data["Services"] = append([]structs.GitServiceType{structs.PlainGitService}, structs.SupportedFullGitService...)
 | |
| 
 | |
| 	tpl := base.TplName("repo/migrate/" + structs.GitServiceType(form.Service).Name())
 | |
| 
 | |
| 	ctxUser := checkContextUser(ctx, form.UID)
 | |
| 	if ctx.Written() {
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.Data["ContextUser"] = ctxUser
 | |
| 
 | |
| 	if ctx.HasError() {
 | |
| 		ctx.HTML(200, tpl)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	remoteAddr, err := auth.ParseRemoteAddr(form.CloneAddr, form.AuthUsername, form.AuthPassword, ctx.User)
 | |
| 	if err != nil {
 | |
| 		if models.IsErrInvalidCloneAddr(err) {
 | |
| 			ctx.Data["Err_CloneAddr"] = true
 | |
| 			addrErr := err.(models.ErrInvalidCloneAddr)
 | |
| 			switch {
 | |
| 			case addrErr.IsURLError:
 | |
| 				ctx.RenderWithErr(ctx.Tr("form.url_error"), tpl, &form)
 | |
| 			case addrErr.IsPermissionDenied:
 | |
| 				ctx.RenderWithErr(ctx.Tr("repo.migrate.permission_denied"), tpl, &form)
 | |
| 			case addrErr.IsInvalidPath:
 | |
| 				ctx.RenderWithErr(ctx.Tr("repo.migrate.invalid_local_path"), tpl, &form)
 | |
| 			default:
 | |
| 				ctx.ServerError("Unknown error", err)
 | |
| 			}
 | |
| 		} else {
 | |
| 			ctx.ServerError("ParseRemoteAddr", err)
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	var opts = migrations.MigrateOptions{
 | |
| 		OriginalURL:    form.CloneAddr,
 | |
| 		GitServiceType: structs.GitServiceType(form.Service),
 | |
| 		CloneAddr:      remoteAddr,
 | |
| 		RepoName:       form.RepoName,
 | |
| 		Description:    form.Description,
 | |
| 		Private:        form.Private || setting.Repository.ForcePrivate,
 | |
| 		Mirror:         form.Mirror && !setting.Repository.DisableMirrors,
 | |
| 		AuthUsername:   form.AuthUsername,
 | |
| 		AuthPassword:   form.AuthPassword,
 | |
| 		AuthToken:      form.AuthToken,
 | |
| 		Wiki:           form.Wiki,
 | |
| 		Issues:         form.Issues,
 | |
| 		Milestones:     form.Milestones,
 | |
| 		Labels:         form.Labels,
 | |
| 		Comments:       form.Issues || form.PullRequests,
 | |
| 		PullRequests:   form.PullRequests,
 | |
| 		Releases:       form.Releases,
 | |
| 	}
 | |
| 	if opts.Mirror {
 | |
| 		opts.Issues = false
 | |
| 		opts.Milestones = false
 | |
| 		opts.Labels = false
 | |
| 		opts.Comments = false
 | |
| 		opts.PullRequests = false
 | |
| 		opts.Releases = false
 | |
| 	}
 | |
| 
 | |
| 	err = models.CheckCreateRepository(ctx.User, ctxUser, opts.RepoName, false)
 | |
| 	if err != nil {
 | |
| 		handleMigrateError(ctx, ctxUser, err, "MigratePost", tpl, form)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	err = task.MigrateRepository(ctx.User, ctxUser, opts)
 | |
| 	if err == nil {
 | |
| 		ctx.Redirect(setting.AppSubURL + "/" + ctxUser.Name + "/" + opts.RepoName)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	handleMigrateError(ctx, ctxUser, err, "MigratePost", tpl, form)
 | |
| }
 |