mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	
		
			
				
	
	
		
			351 lines
		
	
	
		
			9.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			351 lines
		
	
	
		
			9.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2014 The Gogs 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 (
 | |
| 	"fmt"
 | |
| 	"net/url"
 | |
| 	"os"
 | |
| 	"path"
 | |
| 	"strings"
 | |
| 
 | |
| 	"github.com/Unknwon/com"
 | |
| 
 | |
| 	"github.com/gogits/gogs/models"
 | |
| 	"github.com/gogits/gogs/modules/auth"
 | |
| 	"github.com/gogits/gogs/modules/base"
 | |
| 	"github.com/gogits/gogs/modules/git"
 | |
| 	"github.com/gogits/gogs/modules/log"
 | |
| 	"github.com/gogits/gogs/modules/middleware"
 | |
| 	"github.com/gogits/gogs/modules/setting"
 | |
| )
 | |
| 
 | |
| const (
 | |
| 	CREATE  base.TplName = "repo/create"
 | |
| 	MIGRATE base.TplName = "repo/migrate"
 | |
| )
 | |
| 
 | |
| func checkContextUser(ctx *middleware.Context, uid int64) *models.User {
 | |
| 	// Not equal means current user is an organization.
 | |
| 	if uid == ctx.User.Id || uid == 0 {
 | |
| 		return ctx.User
 | |
| 	}
 | |
| 
 | |
| 	org, err := models.GetUserByID(uid)
 | |
| 	if models.IsErrUserNotExist(err) {
 | |
| 		return ctx.User
 | |
| 	}
 | |
| 
 | |
| 	if err != nil {
 | |
| 		ctx.Handle(500, "checkContextUser", fmt.Errorf("GetUserById(%d): %v", uid, err))
 | |
| 		return nil
 | |
| 	} else if !org.IsOrganization() {
 | |
| 		ctx.Error(403)
 | |
| 		return nil
 | |
| 	}
 | |
| 	return org
 | |
| }
 | |
| 
 | |
| func Create(ctx *middleware.Context) {
 | |
| 	ctx.Data["Title"] = ctx.Tr("new_repo")
 | |
| 
 | |
| 	// Give default value for template to render.
 | |
| 	ctx.Data["gitignore"] = "0"
 | |
| 	ctx.Data["license"] = "0"
 | |
| 	ctx.Data["Gitignores"] = models.Gitignores
 | |
| 	ctx.Data["Licenses"] = models.Licenses
 | |
| 
 | |
| 	ctxUser := checkContextUser(ctx, ctx.QueryInt64("org"))
 | |
| 	if ctx.Written() {
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.Data["ContextUser"] = ctxUser
 | |
| 
 | |
| 	if err := ctx.User.GetOrganizations(); err != nil {
 | |
| 		ctx.Handle(500, "GetOrganizations", err)
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.Data["Orgs"] = ctx.User.Orgs
 | |
| 
 | |
| 	ctx.HTML(200, CREATE)
 | |
| }
 | |
| 
 | |
| func CreatePost(ctx *middleware.Context, form auth.CreateRepoForm) {
 | |
| 	ctx.Data["Title"] = ctx.Tr("new_repo")
 | |
| 
 | |
| 	ctx.Data["Gitignores"] = models.Gitignores
 | |
| 	ctx.Data["Licenses"] = models.Licenses
 | |
| 
 | |
| 	ctxUser := checkContextUser(ctx, form.Uid)
 | |
| 	if ctx.Written() {
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.Data["ContextUser"] = ctxUser
 | |
| 
 | |
| 	if err := ctx.User.GetOrganizations(); err != nil {
 | |
| 		ctx.Handle(500, "GetOrganizations", err)
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.Data["Orgs"] = ctx.User.Orgs
 | |
| 
 | |
| 	if ctx.HasError() {
 | |
| 		ctx.HTML(200, CREATE)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if ctxUser.IsOrganization() {
 | |
| 		// Check ownership of organization.
 | |
| 		if !ctxUser.IsOwnedBy(ctx.User.Id) {
 | |
| 			ctx.Error(403)
 | |
| 			return
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	repo, err := models.CreateRepository(ctxUser, form.RepoName, form.Description,
 | |
| 		form.Gitignore, form.License, form.Private, false, form.AutoInit)
 | |
| 	if err == nil {
 | |
| 		log.Trace("Repository created: %s/%s", ctxUser.Name, repo.Name)
 | |
| 		ctx.Redirect(setting.AppSubUrl + "/" + ctxUser.Name + "/" + repo.Name)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if repo != nil {
 | |
| 		if errDelete := models.DeleteRepository(ctxUser.Id, repo.ID, ctxUser.Name); errDelete != nil {
 | |
| 			log.Error(4, "DeleteRepository: %v", errDelete)
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	switch {
 | |
| 	case models.IsErrRepoAlreadyExist(err):
 | |
| 		ctx.Data["Err_RepoName"] = true
 | |
| 		ctx.RenderWithErr(ctx.Tr("form.repo_name_been_taken"), CREATE, &form)
 | |
| 	case models.IsErrNameReserved(err):
 | |
| 		ctx.Data["Err_RepoName"] = true
 | |
| 		ctx.RenderWithErr(ctx.Tr("repo.form.name_reserved", err.(models.ErrNameReserved).Name), CREATE, &form)
 | |
| 	case models.IsErrNamePatternNotAllowed(err):
 | |
| 		ctx.Data["Err_RepoName"] = true
 | |
| 		ctx.RenderWithErr(ctx.Tr("repo.form.name_pattern_not_allowed", err.(models.ErrNamePatternNotAllowed).Pattern), CREATE, &form)
 | |
| 	default:
 | |
| 		ctx.Handle(500, "CreatePost", err)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func Migrate(ctx *middleware.Context) {
 | |
| 	ctx.Data["Title"] = ctx.Tr("new_migrate")
 | |
| 
 | |
| 	ctxUser := checkContextUser(ctx, ctx.QueryInt64("org"))
 | |
| 	if ctx.Written() {
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.Data["ContextUser"] = ctxUser
 | |
| 
 | |
| 	if err := ctx.User.GetOrganizations(); err != nil {
 | |
| 		ctx.Handle(500, "GetOrganizations", err)
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.Data["Orgs"] = ctx.User.Orgs
 | |
| 
 | |
| 	ctx.HTML(200, MIGRATE)
 | |
| }
 | |
| 
 | |
| func MigratePost(ctx *middleware.Context, form auth.MigrateRepoForm) {
 | |
| 	ctx.Data["Title"] = ctx.Tr("new_migrate")
 | |
| 
 | |
| 	ctxUser := checkContextUser(ctx, form.Uid)
 | |
| 	if ctx.Written() {
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.Data["ContextUser"] = ctxUser
 | |
| 
 | |
| 	if err := ctx.User.GetOrganizations(); err != nil {
 | |
| 		ctx.Handle(500, "GetOrganizations", err)
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.Data["Orgs"] = ctx.User.Orgs
 | |
| 
 | |
| 	if ctx.HasError() {
 | |
| 		ctx.HTML(200, MIGRATE)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if ctxUser.IsOrganization() {
 | |
| 		// Check ownership of organization.
 | |
| 		if !ctxUser.IsOwnedBy(ctx.User.Id) {
 | |
| 			ctx.Error(403)
 | |
| 			return
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	// Remote address can be HTTP/HTTPS/Git URL or local path.
 | |
| 	// Note: remember to change api/v1/repo.go: MigrateRepo
 | |
| 	// FIXME: merge these two functions with better error handling
 | |
| 	remoteAddr := form.CloneAddr
 | |
| 	if strings.HasPrefix(form.CloneAddr, "http://") ||
 | |
| 		strings.HasPrefix(form.CloneAddr, "https://") ||
 | |
| 		strings.HasPrefix(form.CloneAddr, "git://") {
 | |
| 		u, err := url.Parse(form.CloneAddr)
 | |
| 		if err != nil {
 | |
| 			ctx.Data["Err_CloneAddr"] = true
 | |
| 			ctx.RenderWithErr(ctx.Tr("form.url_error"), MIGRATE, &form)
 | |
| 			return
 | |
| 		}
 | |
| 		if len(form.AuthUsername) > 0 || len(form.AuthPassword) > 0 {
 | |
| 			u.User = url.UserPassword(form.AuthUsername, form.AuthPassword)
 | |
| 		}
 | |
| 		remoteAddr = u.String()
 | |
| 	} else if !com.IsDir(remoteAddr) {
 | |
| 		ctx.Data["Err_CloneAddr"] = true
 | |
| 		ctx.RenderWithErr(ctx.Tr("repo.migrate.invalid_local_path"), MIGRATE, &form)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	repo, err := models.MigrateRepository(ctxUser, form.RepoName, form.Description, form.Private, form.Mirror, remoteAddr)
 | |
| 	if err == nil {
 | |
| 		log.Trace("Repository migrated: %s/%s", ctxUser.Name, form.RepoName)
 | |
| 		ctx.Redirect(setting.AppSubUrl + "/" + ctxUser.Name + "/" + form.RepoName)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if repo != nil {
 | |
| 		if errDelete := models.DeleteRepository(ctxUser.Id, repo.ID, ctxUser.Name); errDelete != nil {
 | |
| 			log.Error(4, "DeleteRepository: %v", errDelete)
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if strings.Contains(err.Error(), "Authentication failed") {
 | |
| 		ctx.Data["Err_Auth"] = true
 | |
| 		ctx.RenderWithErr(ctx.Tr("form.auth_failed", strings.Replace(err.Error(), ":"+form.AuthPassword+"@", ":<password>@", 1)), MIGRATE, &form)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	switch {
 | |
| 	case models.IsErrRepoAlreadyExist(err):
 | |
| 		ctx.Data["Err_RepoName"] = true
 | |
| 		ctx.RenderWithErr(ctx.Tr("form.repo_name_been_taken"), MIGRATE, &form)
 | |
| 	case models.IsErrNameReserved(err):
 | |
| 		ctx.Data["Err_RepoName"] = true
 | |
| 		ctx.RenderWithErr(ctx.Tr("repo.form.name_reserved", err.(models.ErrNameReserved).Name), MIGRATE, &form)
 | |
| 	case models.IsErrNamePatternNotAllowed(err):
 | |
| 		ctx.Data["Err_RepoName"] = true
 | |
| 		ctx.RenderWithErr(ctx.Tr("repo.form.name_pattern_not_allowed", err.(models.ErrNamePatternNotAllowed).Pattern), MIGRATE, &form)
 | |
| 	default:
 | |
| 		ctx.Handle(500, "MigratePost", err)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func Action(ctx *middleware.Context) {
 | |
| 	var err error
 | |
| 	switch ctx.Params(":action") {
 | |
| 	case "watch":
 | |
| 		err = models.WatchRepo(ctx.User.Id, ctx.Repo.Repository.ID, true)
 | |
| 	case "unwatch":
 | |
| 		err = models.WatchRepo(ctx.User.Id, ctx.Repo.Repository.ID, false)
 | |
| 	case "star":
 | |
| 		err = models.StarRepo(ctx.User.Id, ctx.Repo.Repository.ID, true)
 | |
| 	case "unstar":
 | |
| 		err = models.StarRepo(ctx.User.Id, ctx.Repo.Repository.ID, false)
 | |
| 	case "desc":
 | |
| 		if !ctx.Repo.IsOwner() {
 | |
| 			ctx.Error(404)
 | |
| 			return
 | |
| 		}
 | |
| 
 | |
| 		ctx.Repo.Repository.Description = ctx.Query("desc")
 | |
| 		ctx.Repo.Repository.Website = ctx.Query("site")
 | |
| 		err = models.UpdateRepository(ctx.Repo.Repository, false)
 | |
| 	}
 | |
| 
 | |
| 	if err != nil {
 | |
| 		log.Error(4, "Action(%s): %v", ctx.Params(":action"), err)
 | |
| 		ctx.JSON(200, map[string]interface{}{
 | |
| 			"ok":  false,
 | |
| 			"err": err.Error(),
 | |
| 		})
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	redirectTo := ctx.Query("redirect_to")
 | |
| 	if len(redirectTo) == 0 {
 | |
| 		redirectTo = ctx.Repo.RepoLink
 | |
| 	}
 | |
| 	ctx.Redirect(redirectTo)
 | |
| 
 | |
| 	return
 | |
| 	ctx.JSON(200, map[string]interface{}{
 | |
| 		"ok": true,
 | |
| 	})
 | |
| }
 | |
| 
 | |
| func Download(ctx *middleware.Context) {
 | |
| 	var (
 | |
| 		uri         = ctx.Params("*")
 | |
| 		refName     string
 | |
| 		ext         string
 | |
| 		archivePath string
 | |
| 		archiveType git.ArchiveType
 | |
| 	)
 | |
| 
 | |
| 	switch {
 | |
| 	case strings.HasSuffix(uri, ".zip"):
 | |
| 		ext = ".zip"
 | |
| 		archivePath = path.Join(ctx.Repo.GitRepo.Path, "archives/zip")
 | |
| 		archiveType = git.ZIP
 | |
| 	case strings.HasSuffix(uri, ".tar.gz"):
 | |
| 		ext = ".tar.gz"
 | |
| 		archivePath = path.Join(ctx.Repo.GitRepo.Path, "archives/targz")
 | |
| 		archiveType = git.TARGZ
 | |
| 	default:
 | |
| 		ctx.Error(404)
 | |
| 		return
 | |
| 	}
 | |
| 	refName = strings.TrimSuffix(uri, ext)
 | |
| 
 | |
| 	if !com.IsDir(archivePath) {
 | |
| 		if err := os.MkdirAll(archivePath, os.ModePerm); err != nil {
 | |
| 			ctx.Handle(500, "Download -> os.MkdirAll(archivePath)", err)
 | |
| 			return
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	// Get corresponding commit.
 | |
| 	var (
 | |
| 		commit *git.Commit
 | |
| 		err    error
 | |
| 	)
 | |
| 	gitRepo := ctx.Repo.GitRepo
 | |
| 	if gitRepo.IsBranchExist(refName) {
 | |
| 		commit, err = gitRepo.GetCommitOfBranch(refName)
 | |
| 		if err != nil {
 | |
| 			ctx.Handle(500, "Download", err)
 | |
| 			return
 | |
| 		}
 | |
| 	} else if gitRepo.IsTagExist(refName) {
 | |
| 		commit, err = gitRepo.GetCommitOfTag(refName)
 | |
| 		if err != nil {
 | |
| 			ctx.Handle(500, "Download", err)
 | |
| 			return
 | |
| 		}
 | |
| 	} else if len(refName) == 40 {
 | |
| 		commit, err = gitRepo.GetCommit(refName)
 | |
| 		if err != nil {
 | |
| 			ctx.Handle(404, "Download", nil)
 | |
| 			return
 | |
| 		}
 | |
| 	} else {
 | |
| 		ctx.Error(404)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	archivePath = path.Join(archivePath, base.ShortSha(commit.Id.String())+ext)
 | |
| 	if !com.IsFile(archivePath) {
 | |
| 		if err := commit.CreateArchive(archivePath, archiveType); err != nil {
 | |
| 			ctx.Handle(500, "Download -> CreateArchive "+archivePath, err)
 | |
| 			return
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	ctx.ServeFile(archivePath, ctx.Repo.Repository.Name+"-"+base.ShortSha(commit.Id.String())+ext)
 | |
| }
 |