2014-02-20 08:15:43 +05:30
|
|
|
// 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 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
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
"github.com/Unknwon/com"
|
2014-05-06 05:28:13 +05:30
|
|
|
|
2015-12-16 03:55:45 +05:30
|
|
|
"github.com/gogits/git-module"
|
2015-12-10 07:16:05 +05:30
|
|
|
|
2014-02-20 08:15:43 +05:30
|
|
|
"github.com/gogits/gogs/models"
|
2014-03-08 02:35:18 +05:30
|
|
|
"github.com/gogits/gogs/modules/auth"
|
2014-03-22 23:20:50 +05:30
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-03-19 14:18:45 +05:30
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-03-15 18:47:16 +05:30
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-09-14 23:05:22 +05:30
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-02-20 08:15:43 +05:30
|
|
|
)
|
|
|
|
|
2014-06-23 08:41:12 +05:30
|
|
|
const (
|
|
|
|
CREATE base.TplName = "repo/create"
|
|
|
|
MIGRATE base.TplName = "repo/migrate"
|
|
|
|
)
|
|
|
|
|
2016-01-07 08:37:17 +05:30
|
|
|
func MustBeNotBare(ctx *middleware.Context) {
|
|
|
|
if ctx.Repo.Repository.IsBare {
|
|
|
|
ctx.Handle(404, "MustBeNotBare", nil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-19 14:41:16 +05:30
|
|
|
func checkContextUser(ctx *middleware.Context, uid int64) *models.User {
|
2015-09-07 23:28:23 +05:30
|
|
|
orgs, err := models.GetOwnedOrgsByUserIDDesc(ctx.User.Id, "updated")
|
|
|
|
if err != nil {
|
2015-09-07 23:32:09 +05:30
|
|
|
ctx.Handle(500, "GetOwnedOrgsByUserIDDesc", err)
|
2015-08-28 16:03:09 +05:30
|
|
|
return nil
|
|
|
|
}
|
2015-09-07 23:28:23 +05:30
|
|
|
ctx.Data["Orgs"] = orgs
|
2015-08-28 16:03:09 +05:30
|
|
|
|
2015-07-19 14:41:16 +05:30
|
|
|
// Not equal means current user is an organization.
|
|
|
|
if uid == ctx.User.Id || uid == 0 {
|
|
|
|
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 {
|
2015-10-25 13:56:26 +05:30
|
|
|
ctx.Handle(500, "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.
|
2016-01-20 19:16:45 +05:30
|
|
|
if !org.IsOrganization() || !(ctx.User.IsAdmin || org.IsOwnedBy(ctx.User.Id)) {
|
2015-07-19 14:41:16 +05:30
|
|
|
ctx.Error(403)
|
|
|
|
return nil
|
2014-11-06 10:00:04 +05:30
|
|
|
}
|
2015-07-19 14:41:16 +05:30
|
|
|
return org
|
2014-11-06 10:00:04 +05:30
|
|
|
}
|
|
|
|
|
2014-04-11 03:39:57 +05:30
|
|
|
func Create(ctx *middleware.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
|
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"
|
2015-08-28 16:15:25 +05:30
|
|
|
ctx.Data["private"] = ctx.User.LastRepoVisibility
|
2015-10-25 13:56:26 +05:30
|
|
|
ctx.Data["IsForcedPrivate"] = setting.Repository.ForcePrivate
|
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
|
|
|
|
|
2014-06-23 08:41:12 +05:30
|
|
|
ctx.HTML(200, CREATE)
|
2014-04-11 03:39:57 +05:30
|
|
|
}
|
2014-03-08 02:35:18 +05:30
|
|
|
|
2015-12-10 23:07:53 +05:30
|
|
|
func handleCreateError(ctx *middleware.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):
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.form.reach_limit_of_creation", owner.RepoCreationNum()), 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:
|
|
|
|
ctx.Handle(500, name, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-11 03:39:57 +05:30
|
|
|
func CreatePost(ctx *middleware.Context, form auth.CreateRepoForm) {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("new_repo")
|
|
|
|
|
|
|
|
ctx.Data["Gitignores"] = models.Gitignores
|
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
|
|
|
|
2015-07-19 14:41:16 +05:30
|
|
|
ctxUser := checkContextUser(ctx, form.Uid)
|
|
|
|
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() {
|
2014-06-23 08:41:12 +05:30
|
|
|
ctx.HTML(200, CREATE)
|
2014-03-23 01:30:46 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-28 16:03:09 +05:30
|
|
|
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 13:56:26 +05:30
|
|
|
IsPrivate: form.Private || setting.Repository.ForcePrivate,
|
2015-08-28 16:03:09 +05:30
|
|
|
AutoInit: form.AutoInit,
|
|
|
|
})
|
2014-03-17 21:26:50 +05:30
|
|
|
if err == nil {
|
2015-10-25 13:56:26 +05:30
|
|
|
log.Trace("Repository created[%d]: %s/%s", repo.ID, ctxUser.Name, repo.Name)
|
2014-11-06 10:00:04 +05:30
|
|
|
ctx.Redirect(setting.AppSubUrl + "/" + ctxUser.Name + "/" + repo.Name)
|
2014-03-09 07:55:38 +05:30
|
|
|
return
|
2014-03-10 05:36:29 +05:30
|
|
|
}
|
2014-04-13 06:05:35 +05:30
|
|
|
|
|
|
|
if repo != nil {
|
2015-09-01 21:13:53 +05:30
|
|
|
if errDelete := models.DeleteRepository(ctxUser.Id, repo.ID); errDelete != nil {
|
2014-07-26 09:54:27 +05:30
|
|
|
log.Error(4, "DeleteRepository: %v", errDelete)
|
2014-04-13 06:05:35 +05:30
|
|
|
}
|
|
|
|
}
|
2015-03-27 02:41:47 +05:30
|
|
|
|
2015-12-10 23:07:53 +05:30
|
|
|
handleCreateError(ctx, ctxUser, err, "CreatePost", CREATE, &form)
|
2014-04-11 03:39:57 +05:30
|
|
|
}
|
2014-04-09 18:58:00 +05:30
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
func Migrate(ctx *middleware.Context) {
|
2014-08-01 09:36:19 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("new_migrate")
|
2015-08-28 16:15:25 +05:30
|
|
|
ctx.Data["private"] = ctx.User.LastRepoVisibility
|
2015-10-25 13:56:26 +05:30
|
|
|
ctx.Data["IsForcedPrivate"] = setting.Repository.ForcePrivate
|
2015-12-09 21:54:56 +05:30
|
|
|
ctx.Data["mirror"] = ctx.Query("mirror") == "1"
|
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
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
ctx.HTML(200, MIGRATE)
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
func MigratePost(ctx *middleware.Context, form auth.MigrateRepoForm) {
|
2014-08-01 09:36:19 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("new_migrate")
|
|
|
|
|
2015-07-19 14:41:16 +05:30
|
|
|
ctxUser := checkContextUser(ctx, form.Uid)
|
|
|
|
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() {
|
|
|
|
ctx.HTML(200, MIGRATE)
|
|
|
|
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:
|
|
|
|
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 20:19:25 +05:30
|
|
|
}
|
2015-01-02 15:44:11 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-10-25 13:56:26 +05:30
|
|
|
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 11:58:04 +05:30
|
|
|
if err == nil {
|
2015-12-09 06:36:12 +05:30
|
|
|
log.Trace("Repository migrated [%d]: %s/%s", repo.ID, ctxUser.Name, form.RepoName)
|
2014-09-20 05:41:34 +05:30
|
|
|
ctx.Redirect(setting.AppSubUrl + "/" + ctxUser.Name + "/" + form.RepoName)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
if repo != nil {
|
2015-09-01 21:13:53 +05:30
|
|
|
if errDelete := models.DeleteRepository(ctxUser.Id, repo.ID); errDelete != nil {
|
2014-07-26 11:58:04 +05:30
|
|
|
log.Error(4, "DeleteRepository: %v", errDelete)
|
|
|
|
}
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2015-11-20 00:15:07 +05:30
|
|
|
if strings.Contains(err.Error(), "Authentication failed") ||
|
2015-09-06 18:24:08 +05:30
|
|
|
strings.Contains(err.Error(), "could not read Username") {
|
2014-08-01 09:36:19 +05:30
|
|
|
ctx.Data["Err_Auth"] = true
|
2015-12-09 06:36:12 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.auth_failed", models.HandleCloneUserCredentials(err.Error(), true)), MIGRATE, &form)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
2015-11-20 00:15:07 +05:30
|
|
|
} else if strings.Contains(err.Error(), "fatal:") {
|
|
|
|
ctx.Data["Err_CloneAddr"] = true
|
2015-12-09 06:36:12 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.migrate.failed", models.HandleCloneUserCredentials(err.Error(), true)), MIGRATE, &form)
|
2015-11-20 00:15:07 +05:30
|
|
|
return
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
2015-03-27 02:41:47 +05:30
|
|
|
|
2015-12-10 23:07:53 +05:30
|
|
|
handleCreateError(ctx, ctxUser, err, "MigratePost", MIGRATE, &form)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2014-08-11 08:41:18 +05:30
|
|
|
func Action(ctx *middleware.Context) {
|
|
|
|
var err error
|
|
|
|
switch ctx.Params(":action") {
|
|
|
|
case "watch":
|
2015-08-08 20:13:14 +05:30
|
|
|
err = models.WatchRepo(ctx.User.Id, ctx.Repo.Repository.ID, true)
|
2014-08-11 08:41:18 +05:30
|
|
|
case "unwatch":
|
2015-08-08 20:13:14 +05:30
|
|
|
err = models.WatchRepo(ctx.User.Id, ctx.Repo.Repository.ID, false)
|
2014-08-11 08:41:18 +05:30
|
|
|
case "star":
|
2015-08-08 20:13:14 +05:30
|
|
|
err = models.StarRepo(ctx.User.Id, ctx.Repo.Repository.ID, true)
|
2014-08-11 08:41:18 +05:30
|
|
|
case "unstar":
|
2015-08-08 20:13:14 +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 {
|
2015-12-21 17:54:11 +05:30
|
|
|
ctx.Handle(500, 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
|
|
|
|
|
|
|
redirectTo := ctx.Query("redirect_to")
|
|
|
|
if len(redirectTo) == 0 {
|
|
|
|
redirectTo = ctx.Repo.RepoLink
|
|
|
|
}
|
|
|
|
ctx.Redirect(redirectTo)
|
2014-08-11 08:41:18 +05:30
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
|
|
|
|
func Download(ctx *middleware.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 {
|
|
|
|
ctx.Handle(500, "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 {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(500, "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 {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(500, "GetTagCommit", err)
|
2014-09-25 03:13:33 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
} else if len(refName) == 40 {
|
|
|
|
commit, err = gitRepo.GetCommit(refName)
|
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(404, "GetCommit", nil)
|
2014-09-25 03:13:33 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
2015-12-14 04:50:39 +05:30
|
|
|
ctx.Handle(404, "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) {
|
2014-11-02 10:48:37 +05:30
|
|
|
if err := commit.CreateArchive(archivePath, archiveType); err != nil {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(500, "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
|
|
|
}
|