2014-02-19 19:45:43 -07:00
|
|
|
// 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 (
|
2014-07-26 00:28:04 -06:00
|
|
|
"fmt"
|
2014-07-25 22:24:27 -06:00
|
|
|
"os"
|
2014-03-22 11:50:50 -06:00
|
|
|
"path"
|
2014-07-26 00:28:04 -06:00
|
|
|
"strings"
|
2014-03-22 11:50:50 -06:00
|
|
|
|
2014-07-25 22:24:27 -06:00
|
|
|
"github.com/Unknwon/com"
|
2014-05-05 17:58:13 -06:00
|
|
|
|
2014-02-19 19:45:43 -07:00
|
|
|
"github.com/gogits/gogs/models"
|
2014-03-07 14:05:18 -07:00
|
|
|
"github.com/gogits/gogs/modules/auth"
|
2014-03-22 11:50:50 -06:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-07-25 22:24:27 -06:00
|
|
|
"github.com/gogits/gogs/modules/git"
|
2014-03-19 02:48:45 -06:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-03-15 07:17:16 -06:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-09-14 11:35:22 -06:00
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-02-19 19:45:43 -07:00
|
|
|
)
|
|
|
|
|
2014-06-22 21:11:12 -06:00
|
|
|
const (
|
|
|
|
CREATE base.TplName = "repo/create"
|
|
|
|
MIGRATE base.TplName = "repo/migrate"
|
|
|
|
)
|
|
|
|
|
2015-07-19 03:11:16 -06:00
|
|
|
func checkContextUser(ctx *middleware.Context, uid int64) *models.User {
|
2015-09-07 11:58:23 -06:00
|
|
|
orgs, err := models.GetOwnedOrgsByUserIDDesc(ctx.User.Id, "updated")
|
|
|
|
if err != nil {
|
2015-09-07 12:02:09 -06:00
|
|
|
ctx.Handle(500, "GetOwnedOrgsByUserIDDesc", err)
|
2015-08-28 04:33:09 -06:00
|
|
|
return nil
|
|
|
|
}
|
2015-09-07 11:58:23 -06:00
|
|
|
ctx.Data["Orgs"] = orgs
|
2015-08-28 04:33:09 -06:00
|
|
|
|
2015-07-19 03:11:16 -06:00
|
|
|
// Not equal means current user is an organization.
|
|
|
|
if uid == ctx.User.Id || uid == 0 {
|
|
|
|
return ctx.User
|
|
|
|
}
|
|
|
|
|
2015-08-08 08:43:14 -06:00
|
|
|
org, err := models.GetUserByID(uid)
|
2015-08-04 21:14:17 -06:00
|
|
|
if models.IsErrUserNotExist(err) {
|
2015-07-19 03:11:16 -06:00
|
|
|
return ctx.User
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2015-10-25 02:26:26 -06:00
|
|
|
ctx.Handle(500, "GetUserByID", fmt.Errorf("[%d]: %v", uid, err))
|
2015-07-19 03:11:16 -06:00
|
|
|
return nil
|
2015-08-28 04:33:09 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check ownership of organization.
|
|
|
|
if !org.IsOrganization() || !org.IsOwnedBy(ctx.User.Id) {
|
2015-07-19 03:11:16 -06:00
|
|
|
ctx.Error(403)
|
|
|
|
return nil
|
2014-11-05 21:30:04 -07:00
|
|
|
}
|
2015-07-19 03:11:16 -06:00
|
|
|
return org
|
2014-11-05 21:30:04 -07:00
|
|
|
}
|
|
|
|
|
2014-04-10 16:09:57 -06:00
|
|
|
func Create(ctx *middleware.Context) {
|
2014-07-25 22:24:27 -06:00
|
|
|
ctx.Data["Title"] = ctx.Tr("new_repo")
|
|
|
|
|
|
|
|
// Give default value for template to render.
|
|
|
|
ctx.Data["Gitignores"] = models.Gitignores
|
2014-03-19 11:14:56 -06:00
|
|
|
ctx.Data["Licenses"] = models.Licenses
|
2015-08-28 02:44:04 -06:00
|
|
|
ctx.Data["Readmes"] = models.Readmes
|
|
|
|
ctx.Data["readme"] = "Default"
|
2015-08-28 04:45:25 -06:00
|
|
|
ctx.Data["private"] = ctx.User.LastRepoVisibility
|
2015-10-25 02:26:26 -06:00
|
|
|
ctx.Data["IsForcedPrivate"] = setting.Repository.ForcePrivate
|
2014-06-25 01:55:59 -06:00
|
|
|
|
2015-07-19 03:11:16 -06:00
|
|
|
ctxUser := checkContextUser(ctx, ctx.QueryInt64("org"))
|
|
|
|
if ctx.Written() {
|
2014-11-05 21:30:04 -07:00
|
|
|
return
|
2014-07-26 00:28:04 -06:00
|
|
|
}
|
2014-06-28 13:43:25 -06:00
|
|
|
ctx.Data["ContextUser"] = ctxUser
|
|
|
|
|
2014-06-22 21:11:12 -06:00
|
|
|
ctx.HTML(200, CREATE)
|
2014-04-10 16:09:57 -06:00
|
|
|
}
|
2014-03-07 14:05:18 -07:00
|
|
|
|
2015-08-28 04:33:09 -06:00
|
|
|
func handleCreateError(ctx *middleware.Context, err error, name string, tpl base.TplName, form interface{}) {
|
|
|
|
switch {
|
|
|
|
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:
|
|
|
|
ctx.Handle(500, name, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-10 16:09:57 -06:00
|
|
|
func CreatePost(ctx *middleware.Context, form auth.CreateRepoForm) {
|
2014-07-25 22:24:27 -06:00
|
|
|
ctx.Data["Title"] = ctx.Tr("new_repo")
|
|
|
|
|
|
|
|
ctx.Data["Gitignores"] = models.Gitignores
|
2014-04-10 16:09:57 -06:00
|
|
|
ctx.Data["Licenses"] = models.Licenses
|
2015-08-28 02:44:04 -06:00
|
|
|
ctx.Data["Readmes"] = models.Readmes
|
2014-02-19 19:45:43 -07:00
|
|
|
|
2015-07-19 03:11:16 -06:00
|
|
|
ctxUser := checkContextUser(ctx, form.Uid)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
2014-07-26 00:28:04 -06:00
|
|
|
}
|
2014-07-25 22:24:27 -06:00
|
|
|
ctx.Data["ContextUser"] = ctxUser
|
|
|
|
|
2014-03-22 14:00:46 -06:00
|
|
|
if ctx.HasError() {
|
2014-06-22 21:11:12 -06:00
|
|
|
ctx.HTML(200, CREATE)
|
2014-03-22 14:00:46 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-28 04:33:09 -06:00
|
|
|
repo, err := models.CreateRepository(ctxUser, models.CreateRepoOptions{
|
|
|
|
Name: form.RepoName,
|
|
|
|
Description: form.Description,
|
|
|
|
Gitignores: form.Gitignores,
|
|
|
|
License: form.License,
|
|
|
|
Readme: form.Readme,
|
2015-10-25 02:26:26 -06:00
|
|
|
IsPrivate: form.Private || setting.Repository.ForcePrivate,
|
2015-08-28 04:33:09 -06:00
|
|
|
AutoInit: form.AutoInit,
|
|
|
|
})
|
2014-03-17 09:56:50 -06:00
|
|
|
if err == nil {
|
2015-10-25 02:26:26 -06:00
|
|
|
log.Trace("Repository created[%d]: %s/%s", repo.ID, ctxUser.Name, repo.Name)
|
2014-11-05 21:30:04 -07:00
|
|
|
ctx.Redirect(setting.AppSubUrl + "/" + ctxUser.Name + "/" + repo.Name)
|
2014-03-08 19:25:38 -07:00
|
|
|
return
|
2014-03-09 18:06:29 -06:00
|
|
|
}
|
2014-04-12 18:35:35 -06:00
|
|
|
|
|
|
|
if repo != nil {
|
2015-09-01 09:43:53 -06:00
|
|
|
if errDelete := models.DeleteRepository(ctxUser.Id, repo.ID); errDelete != nil {
|
2014-07-25 22:24:27 -06:00
|
|
|
log.Error(4, "DeleteRepository: %v", errDelete)
|
2014-04-12 18:35:35 -06:00
|
|
|
}
|
|
|
|
}
|
2015-03-26 15:11:47 -06:00
|
|
|
|
2015-08-28 04:33:09 -06:00
|
|
|
handleCreateError(ctx, err, "CreatePost", CREATE, &form)
|
2014-04-10 16:09:57 -06:00
|
|
|
}
|
2014-04-09 07:28:00 -06:00
|
|
|
|
2014-07-26 00:28:04 -06:00
|
|
|
func Migrate(ctx *middleware.Context) {
|
2014-07-31 22:06:19 -06:00
|
|
|
ctx.Data["Title"] = ctx.Tr("new_migrate")
|
2015-08-28 04:45:25 -06:00
|
|
|
ctx.Data["private"] = ctx.User.LastRepoVisibility
|
2015-10-25 02:26:26 -06:00
|
|
|
ctx.Data["IsForcedPrivate"] = setting.Repository.ForcePrivate
|
2014-07-31 22:06:19 -06:00
|
|
|
|
2015-07-19 03:11:16 -06:00
|
|
|
ctxUser := checkContextUser(ctx, ctx.QueryInt64("org"))
|
|
|
|
if ctx.Written() {
|
2014-11-05 21:30:04 -07:00
|
|
|
return
|
2014-07-31 22:06:19 -06:00
|
|
|
}
|
|
|
|
ctx.Data["ContextUser"] = ctxUser
|
2014-07-25 22:24:27 -06:00
|
|
|
|
2014-07-26 00:28:04 -06:00
|
|
|
ctx.HTML(200, MIGRATE)
|
|
|
|
}
|
2014-07-25 22:24:27 -06:00
|
|
|
|
2014-07-26 00:28:04 -06:00
|
|
|
func MigratePost(ctx *middleware.Context, form auth.MigrateRepoForm) {
|
2014-07-31 22:06:19 -06:00
|
|
|
ctx.Data["Title"] = ctx.Tr("new_migrate")
|
|
|
|
|
2015-07-19 03:11:16 -06:00
|
|
|
ctxUser := checkContextUser(ctx, form.Uid)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
2014-07-31 22:06:19 -06:00
|
|
|
}
|
|
|
|
ctx.Data["ContextUser"] = ctxUser
|
2014-07-25 22:24:27 -06:00
|
|
|
|
2014-07-26 00:28:04 -06:00
|
|
|
if ctx.HasError() {
|
|
|
|
ctx.HTML(200, MIGRATE)
|
|
|
|
return
|
|
|
|
}
|
2014-07-25 22:24:27 -06:00
|
|
|
|
2015-11-03 16:40:52 -07:00
|
|
|
remoteAddr, err := form.ParseRemoteAddr(ctx.User)
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrInvalidCloneAddr(err) {
|
2015-02-22 07:49:25 -07:00
|
|
|
ctx.Data["Err_CloneAddr"] = true
|
2015-11-03 16:40:52 -07:00
|
|
|
addrErr := err.(models.ErrInvalidCloneAddr)
|
|
|
|
switch {
|
|
|
|
case addrErr.IsURLError:
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.url_error"), MIGRATE, &form)
|
|
|
|
case addrErr.IsPermissionDenied:
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.migrate.permission_denied"), MIGRATE, &form)
|
|
|
|
case addrErr.IsInvalidPath:
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.migrate.invalid_local_path"), MIGRATE, &form)
|
|
|
|
default:
|
|
|
|
ctx.Handle(500, "Unknown error", err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "ParseRemoteAddr", err)
|
2015-02-22 07:49:25 -07:00
|
|
|
}
|
2015-01-02 03:14:11 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-10-25 02:26:26 -06:00
|
|
|
repo, err := models.MigrateRepository(ctxUser, models.MigrateRepoOptions{
|
|
|
|
Name: form.RepoName,
|
|
|
|
Description: form.Description,
|
|
|
|
IsPrivate: form.Private || setting.Repository.ForcePrivate,
|
|
|
|
IsMirror: form.Mirror,
|
|
|
|
RemoteAddr: remoteAddr,
|
|
|
|
})
|
2014-07-26 00:28:04 -06:00
|
|
|
if err == nil {
|
2015-10-25 02:26:26 -06:00
|
|
|
log.Trace("Repository migrated[%d]: %s/%s", repo.ID, ctxUser.Name, form.RepoName)
|
2014-09-19 18:11:34 -06:00
|
|
|
ctx.Redirect(setting.AppSubUrl + "/" + ctxUser.Name + "/" + form.RepoName)
|
2014-07-26 00:28:04 -06:00
|
|
|
return
|
|
|
|
}
|
2014-07-25 22:24:27 -06:00
|
|
|
|
2014-07-26 00:28:04 -06:00
|
|
|
if repo != nil {
|
2015-09-01 09:43:53 -06:00
|
|
|
if errDelete := models.DeleteRepository(ctxUser.Id, repo.ID); errDelete != nil {
|
2014-07-26 00:28:04 -06:00
|
|
|
log.Error(4, "DeleteRepository: %v", errDelete)
|
|
|
|
}
|
|
|
|
}
|
2014-07-25 22:24:27 -06:00
|
|
|
|
2015-11-19 11:45:07 -07:00
|
|
|
if strings.Contains(err.Error(), "Authentication failed") ||
|
2015-09-06 06:54:08 -06:00
|
|
|
strings.Contains(err.Error(), "could not read Username") {
|
2014-07-31 22:06:19 -06:00
|
|
|
ctx.Data["Err_Auth"] = true
|
2015-08-15 02:03:20 -06:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.auth_failed", strings.Replace(err.Error(), ":"+form.AuthPassword+"@", ":<password>@", 1)), MIGRATE, &form)
|
2014-07-26 00:28:04 -06:00
|
|
|
return
|
2015-11-19 11:45:07 -07:00
|
|
|
} else if strings.Contains(err.Error(), "fatal:") {
|
|
|
|
ctx.Data["Err_CloneAddr"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.migrate.failed", strings.Replace(err.Error(), ":"+form.AuthPassword+"@", ":<password>@", 1)), MIGRATE, &form)
|
|
|
|
return
|
2014-07-26 00:28:04 -06:00
|
|
|
}
|
2015-03-26 15:11:47 -06:00
|
|
|
|
2015-08-28 04:33:09 -06:00
|
|
|
handleCreateError(ctx, err, "MigratePost", MIGRATE, &form)
|
2014-07-26 00:28:04 -06:00
|
|
|
}
|
2014-07-25 22:24:27 -06:00
|
|
|
|
2014-08-10 21:11:18 -06:00
|
|
|
func Action(ctx *middleware.Context) {
|
|
|
|
var err error
|
|
|
|
switch ctx.Params(":action") {
|
|
|
|
case "watch":
|
2015-08-08 08:43:14 -06:00
|
|
|
err = models.WatchRepo(ctx.User.Id, ctx.Repo.Repository.ID, true)
|
2014-08-10 21:11:18 -06:00
|
|
|
case "unwatch":
|
2015-08-08 08:43:14 -06:00
|
|
|
err = models.WatchRepo(ctx.User.Id, ctx.Repo.Repository.ID, false)
|
2014-08-10 21:11:18 -06:00
|
|
|
case "star":
|
2015-08-08 08:43:14 -06:00
|
|
|
err = models.StarRepo(ctx.User.Id, ctx.Repo.Repository.ID, true)
|
2014-08-10 21:11:18 -06:00
|
|
|
case "unstar":
|
2015-08-08 08:43:14 -06:00
|
|
|
err = models.StarRepo(ctx.User.Id, ctx.Repo.Repository.ID, false)
|
2014-08-10 21:11:18 -06:00
|
|
|
case "desc":
|
2015-02-16 03:51:56 -07:00
|
|
|
if !ctx.Repo.IsOwner() {
|
2014-08-10 21:11:18 -06:00
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Repo.Repository.Description = ctx.Query("desc")
|
|
|
|
ctx.Repo.Repository.Website = ctx.Query("site")
|
2015-03-16 02:52:11 -06:00
|
|
|
err = models.UpdateRepository(ctx.Repo.Repository, false)
|
2014-08-10 21:11:18 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2014-08-15 04:29:41 -06:00
|
|
|
log.Error(4, "Action(%s): %v", ctx.Params(":action"), err)
|
2014-08-10 21:11:18 -06:00
|
|
|
ctx.JSON(200, map[string]interface{}{
|
|
|
|
"ok": false,
|
|
|
|
"err": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2015-07-23 14:50:05 -06:00
|
|
|
|
|
|
|
redirectTo := ctx.Query("redirect_to")
|
|
|
|
if len(redirectTo) == 0 {
|
|
|
|
redirectTo = ctx.Repo.RepoLink
|
|
|
|
}
|
|
|
|
ctx.Redirect(redirectTo)
|
2014-08-10 21:11:18 -06:00
|
|
|
}
|
2014-07-25 22:24:27 -06:00
|
|
|
|
|
|
|
func Download(ctx *middleware.Context) {
|
2014-09-24 15:43:33 -06:00
|
|
|
var (
|
|
|
|
uri = ctx.Params("*")
|
|
|
|
refName string
|
|
|
|
ext string
|
|
|
|
archivePath string
|
2014-11-01 23:18:37 -06:00
|
|
|
archiveType git.ArchiveType
|
2014-09-24 15:43:33 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case strings.HasSuffix(uri, ".zip"):
|
|
|
|
ext = ".zip"
|
2014-07-25 22:24:27 -06:00
|
|
|
archivePath = path.Join(ctx.Repo.GitRepo.Path, "archives/zip")
|
2014-11-01 23:18:37 -06:00
|
|
|
archiveType = git.ZIP
|
2014-09-24 15:43:33 -06:00
|
|
|
case strings.HasSuffix(uri, ".tar.gz"):
|
|
|
|
ext = ".tar.gz"
|
2014-07-25 22:24:27 -06:00
|
|
|
archivePath = path.Join(ctx.Repo.GitRepo.Path, "archives/targz")
|
2014-11-01 23:18:37 -06:00
|
|
|
archiveType = git.TARGZ
|
2014-07-25 22:24:27 -06:00
|
|
|
default:
|
|
|
|
ctx.Error(404)
|
2014-06-25 03:35:23 -06:00
|
|
|
return
|
|
|
|
}
|
2014-09-24 15:43:33 -06:00
|
|
|
refName = strings.TrimSuffix(uri, ext)
|
2014-06-25 03:35:23 -06:00
|
|
|
|
2014-07-25 22:24:27 -06:00
|
|
|
if !com.IsDir(archivePath) {
|
|
|
|
if err := os.MkdirAll(archivePath, os.ModePerm); err != nil {
|
|
|
|
ctx.Handle(500, "Download -> os.MkdirAll(archivePath)", err)
|
2014-06-25 03:35:23 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-24 15:43:33 -06:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2015-11-03 20:49:06 -07:00
|
|
|
archivePath = path.Join(archivePath, base.ShortSha(commit.ID.String())+ext)
|
2014-07-25 22:24:27 -06:00
|
|
|
if !com.IsFile(archivePath) {
|
2014-11-01 23:18:37 -06:00
|
|
|
if err := commit.CreateArchive(archivePath, archiveType); err != nil {
|
2014-07-25 22:24:27 -06:00
|
|
|
ctx.Handle(500, "Download -> CreateArchive "+archivePath, err)
|
2014-03-22 11:50:50 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-03 20:49:06 -07:00
|
|
|
ctx.ServeFile(archivePath, ctx.Repo.Repository.Name+"-"+base.ShortSha(commit.ID.String())+ext)
|
2014-03-22 11:50:50 -06:00
|
|
|
}
|