2014-03-16 01:03:23 +09: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 middleware
|
|
|
|
|
|
|
|
import (
|
2014-03-20 13:12:33 +09:00
|
|
|
"fmt"
|
2015-11-01 01:04:04 +09:00
|
|
|
"path"
|
2014-03-17 17:47:42 +09:00
|
|
|
"strings"
|
2014-03-16 15:28:24 +09:00
|
|
|
|
2015-10-16 10:28:12 +09:00
|
|
|
"gopkg.in/macaron.v1"
|
2014-03-30 11:09:59 +09:00
|
|
|
|
2015-12-16 07:25:45 +09:00
|
|
|
"github.com/gogits/git-module"
|
2015-12-10 10:46:05 +09:00
|
|
|
|
2014-03-16 01:03:23 +09:00
|
|
|
"github.com/gogits/gogs/models"
|
2014-04-11 13:01:38 +09:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-05-26 09:11:25 +09:00
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-03-16 01:03:23 +09:00
|
|
|
)
|
|
|
|
|
2015-09-02 00:43:53 +09:00
|
|
|
func RetrieveBaseRepo(ctx *Context, repo *models.Repository) {
|
|
|
|
// Non-fork repository will not return error in this method.
|
|
|
|
if err := repo.GetBaseRepo(); err != nil {
|
|
|
|
if models.IsErrRepoNotExist(err) {
|
|
|
|
repo.IsFork = false
|
|
|
|
repo.ForkID = 0
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Handle(500, "GetBaseRepo", err)
|
|
|
|
return
|
|
|
|
} else if err = repo.BaseRepo.GetOwner(); err != nil {
|
|
|
|
ctx.Handle(500, "BaseRepo.GetOwner", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
bsaeRepo := repo.BaseRepo
|
|
|
|
baseGitRepo, err := git.OpenRepository(models.RepoPath(bsaeRepo.Owner.Name, bsaeRepo.Name))
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "OpenRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if len(bsaeRepo.DefaultBranch) > 0 && baseGitRepo.IsBranchExist(bsaeRepo.DefaultBranch) {
|
|
|
|
ctx.Data["BaseDefaultBranch"] = bsaeRepo.DefaultBranch
|
|
|
|
} else {
|
|
|
|
baseBranches, err := baseGitRepo.GetBranches()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetBranches", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if len(baseBranches) > 0 {
|
|
|
|
ctx.Data["BaseDefaultBranch"] = baseBranches[0]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 10:10:25 +09:00
|
|
|
func RepoAssignment(args ...bool) macaron.Handler {
|
2014-07-26 13:24:27 +09:00
|
|
|
return func(ctx *Context) {
|
2014-08-14 15:12:21 +09:00
|
|
|
var (
|
|
|
|
displayBare bool // To display bare page if it is a bare repo.
|
|
|
|
)
|
2014-03-30 14:30:17 +09:00
|
|
|
if len(args) >= 1 {
|
2014-11-07 12:06:41 +09:00
|
|
|
displayBare = args[0]
|
2014-03-30 14:30:17 +09:00
|
|
|
}
|
2014-03-16 01:03:23 +09:00
|
|
|
|
|
|
|
var (
|
2015-11-01 01:04:04 +09:00
|
|
|
owner *models.User
|
|
|
|
err error
|
2014-03-16 01:03:23 +09:00
|
|
|
)
|
|
|
|
|
2014-07-26 13:24:27 +09:00
|
|
|
userName := ctx.Params(":username")
|
|
|
|
repoName := ctx.Params(":reponame")
|
|
|
|
refName := ctx.Params(":branchname")
|
|
|
|
if len(refName) == 0 {
|
|
|
|
refName = ctx.Params(":path")
|
|
|
|
}
|
2014-03-30 11:09:59 +09:00
|
|
|
|
2015-02-05 22:29:08 +09:00
|
|
|
// Check if the user is the same as the repository owner
|
2015-02-13 16:14:57 +09:00
|
|
|
if ctx.IsSigned && ctx.User.LowerName == strings.ToLower(userName) {
|
2015-11-01 01:04:04 +09:00
|
|
|
owner = ctx.User
|
2015-02-05 22:29:08 +09:00
|
|
|
} else {
|
2015-11-01 01:04:04 +09:00
|
|
|
owner, err = models.GetUserByName(userName)
|
2014-03-16 01:03:23 +09:00
|
|
|
if err != nil {
|
2015-08-05 12:14:17 +09:00
|
|
|
if models.IsErrUserNotExist(err) {
|
2015-02-13 14:58:46 +09:00
|
|
|
ctx.Handle(404, "GetUserByName", err)
|
2014-08-14 15:12:21 +09:00
|
|
|
} else {
|
2015-02-13 14:58:46 +09:00
|
|
|
ctx.Handle(500, "GetUserByName", err)
|
2014-03-16 01:03:23 +09:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2015-11-01 01:04:04 +09:00
|
|
|
ctx.Repo.Owner = owner
|
2014-03-16 01:03:23 +09:00
|
|
|
|
2014-08-24 22:09:05 +09:00
|
|
|
// Get repository.
|
2015-11-01 01:04:04 +09:00
|
|
|
repo, err := models.GetRepositoryByName(owner.Id, repoName)
|
2014-03-16 01:03:23 +09:00
|
|
|
if err != nil {
|
2015-03-16 17:04:27 +09:00
|
|
|
if models.IsErrRepoNotExist(err) {
|
2015-02-13 14:58:46 +09:00
|
|
|
ctx.Handle(404, "GetRepositoryByName", err)
|
2015-02-05 22:29:08 +09:00
|
|
|
} else {
|
2015-02-13 14:58:46 +09:00
|
|
|
ctx.Handle(500, "GetRepositoryByName", err)
|
2014-03-16 01:03:23 +09:00
|
|
|
}
|
2014-07-26 13:24:27 +09:00
|
|
|
return
|
|
|
|
} else if err = repo.GetOwner(); err != nil {
|
2015-02-13 14:58:46 +09:00
|
|
|
ctx.Handle(500, "GetOwner", err)
|
2014-03-30 11:09:59 +09:00
|
|
|
return
|
|
|
|
}
|
2014-04-12 10:47:39 +09:00
|
|
|
|
2015-11-19 09:49:11 +09:00
|
|
|
// Admin has super access.
|
2015-11-20 01:40:00 +09:00
|
|
|
if ctx.IsSigned && ctx.User.IsAdmin {
|
2015-11-19 09:49:11 +09:00
|
|
|
ctx.Repo.AccessMode = models.ACCESS_MODE_OWNER
|
|
|
|
} else {
|
|
|
|
mode, err := models.AccessLevel(ctx.User, repo)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "AccessLevel", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.AccessMode = mode
|
2014-05-14 08:26:13 +09:00
|
|
|
}
|
|
|
|
|
2014-04-12 10:47:39 +09:00
|
|
|
// Check access.
|
2015-02-16 19:51:56 +09:00
|
|
|
if ctx.Repo.AccessMode == models.ACCESS_MODE_NONE {
|
2015-02-13 14:58:46 +09:00
|
|
|
ctx.Handle(404, "no access right", err)
|
2015-02-05 22:29:08 +09:00
|
|
|
return
|
2014-04-12 10:47:39 +09:00
|
|
|
}
|
|
|
|
ctx.Data["HasAccess"] = true
|
|
|
|
|
2014-04-13 11:30:00 +09:00
|
|
|
if repo.IsMirror {
|
2015-08-08 23:43:14 +09:00
|
|
|
ctx.Repo.Mirror, err = models.GetMirror(repo.ID)
|
2014-04-13 11:30:00 +09:00
|
|
|
if err != nil {
|
2014-07-26 13:24:27 +09:00
|
|
|
ctx.Handle(500, "GetMirror", err)
|
2014-04-13 11:30:00 +09:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["MirrorInterval"] = ctx.Repo.Mirror.Interval
|
2015-12-09 10:06:12 +09:00
|
|
|
ctx.Data["Mirror"] = ctx.Repo.Mirror
|
2014-04-13 11:30:00 +09:00
|
|
|
}
|
|
|
|
|
2014-03-30 11:09:59 +09:00
|
|
|
ctx.Repo.Repository = repo
|
2014-03-30 14:30:17 +09:00
|
|
|
ctx.Data["IsBareRepo"] = ctx.Repo.Repository.IsBare
|
|
|
|
|
2014-03-30 11:09:59 +09:00
|
|
|
gitRepo, err := git.OpenRepository(models.RepoPath(userName, repoName))
|
|
|
|
if err != nil {
|
2014-04-11 11:03:31 +09:00
|
|
|
ctx.Handle(500, "RepoAssignment Invalid repo "+models.RepoPath(userName, repoName), err)
|
2014-03-16 01:03:23 +09:00
|
|
|
return
|
|
|
|
}
|
2014-03-30 11:09:59 +09:00
|
|
|
ctx.Repo.GitRepo = gitRepo
|
2015-11-27 07:33:45 +09:00
|
|
|
ctx.Repo.RepoLink = repo.RepoLink()
|
2014-08-15 19:29:41 +09:00
|
|
|
ctx.Data["RepoLink"] = ctx.Repo.RepoLink
|
2015-09-02 18:09:12 +09:00
|
|
|
ctx.Data["RepoRelPath"] = ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name
|
2014-03-30 12:38:41 +09:00
|
|
|
|
2014-04-14 10:00:12 +09:00
|
|
|
tags, err := ctx.Repo.GitRepo.GetTags()
|
|
|
|
if err != nil {
|
2014-07-26 13:24:27 +09:00
|
|
|
ctx.Handle(500, "GetTags", err)
|
2014-04-14 10:00:12 +09:00
|
|
|
return
|
|
|
|
}
|
2014-09-24 02:47:54 +09:00
|
|
|
ctx.Data["Tags"] = tags
|
2014-04-14 10:00:12 +09:00
|
|
|
ctx.Repo.Repository.NumTags = len(tags)
|
|
|
|
|
2015-08-08 23:43:14 +09:00
|
|
|
if repo.IsFork {
|
2015-09-02 00:43:53 +09:00
|
|
|
RetrieveBaseRepo(ctx, repo)
|
|
|
|
if ctx.Written() {
|
2015-08-08 23:43:14 +09:00
|
|
|
return
|
|
|
|
}
|
2014-10-19 14:35:24 +09:00
|
|
|
}
|
|
|
|
|
2015-11-01 01:04:04 +09:00
|
|
|
ctx.Data["Title"] = owner.Name + "/" + repo.Name
|
2014-03-30 12:38:41 +09:00
|
|
|
ctx.Data["Repository"] = repo
|
2014-07-26 13:24:27 +09:00
|
|
|
ctx.Data["Owner"] = ctx.Repo.Repository.Owner
|
2015-08-15 01:42:43 +09:00
|
|
|
ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner()
|
|
|
|
ctx.Data["IsRepositoryAdmin"] = ctx.Repo.IsAdmin()
|
2015-11-27 15:50:38 +09:00
|
|
|
ctx.Data["IsRepositoryPusher"] = ctx.Repo.IsPusher()
|
2016-02-20 04:33:06 +09:00
|
|
|
ctx.Data["CanPullRequest"] = ctx.Repo.IsAdmin() && repo.BaseRepo != nil && repo.BaseRepo.AllowsPulls()
|
2014-03-30 12:38:41 +09:00
|
|
|
|
2015-02-08 00:46:57 +09:00
|
|
|
ctx.Data["DisableSSH"] = setting.DisableSSH
|
2015-12-01 10:45:55 +09:00
|
|
|
ctx.Data["CloneLink"] = repo.CloneLink()
|
|
|
|
ctx.Data["WikiCloneLink"] = repo.WikiCloneLink()
|
2014-03-30 12:38:41 +09:00
|
|
|
|
2015-10-03 08:58:36 +09:00
|
|
|
if ctx.IsSigned {
|
|
|
|
ctx.Data["IsWatchingRepo"] = models.IsWatching(ctx.User.Id, repo.ID)
|
|
|
|
ctx.Data["IsStaringRepo"] = models.IsStaring(ctx.User.Id, repo.ID)
|
|
|
|
}
|
|
|
|
|
2014-03-30 14:30:17 +09:00
|
|
|
// repo is bare and display enable
|
2014-08-11 12:11:18 +09:00
|
|
|
if ctx.Repo.Repository.IsBare {
|
2014-04-20 11:13:22 +09:00
|
|
|
log.Debug("Bare repository: %s", ctx.Repo.RepoLink)
|
2014-11-21 08:03:42 +09:00
|
|
|
// NOTE: to prevent templating error
|
|
|
|
ctx.Data["BranchName"] = ""
|
2014-08-11 12:11:18 +09:00
|
|
|
if displayBare {
|
2015-10-03 08:58:36 +09:00
|
|
|
if !ctx.Repo.IsAdmin() {
|
|
|
|
ctx.Flash.Info(ctx.Tr("repo.repo_is_empty"), true)
|
|
|
|
}
|
2014-08-11 12:11:18 +09:00
|
|
|
ctx.HTML(200, "repo/bare")
|
|
|
|
}
|
2014-03-30 14:30:17 +09:00
|
|
|
return
|
2014-03-30 11:09:59 +09:00
|
|
|
}
|
2014-03-16 01:03:23 +09:00
|
|
|
|
2014-06-29 00:56:41 +09:00
|
|
|
ctx.Data["TagName"] = ctx.Repo.TagName
|
2014-04-13 10:35:36 +09:00
|
|
|
brs, err := ctx.Repo.GitRepo.GetBranches()
|
2014-04-11 13:01:38 +09:00
|
|
|
if err != nil {
|
2014-09-24 02:47:54 +09:00
|
|
|
ctx.Handle(500, "GetBranches", err)
|
|
|
|
return
|
2014-04-11 13:01:38 +09:00
|
|
|
}
|
|
|
|
ctx.Data["Branches"] = brs
|
2014-07-26 13:24:27 +09:00
|
|
|
ctx.Data["BrancheCount"] = len(brs)
|
2014-07-22 21:46:04 +09:00
|
|
|
|
|
|
|
// If not branch selected, try default one.
|
|
|
|
// If default branch doesn't exists, fall back to some other branch.
|
2015-08-08 23:43:14 +09:00
|
|
|
if len(ctx.Repo.BranchName) == 0 {
|
|
|
|
if len(ctx.Repo.Repository.DefaultBranch) > 0 && gitRepo.IsBranchExist(ctx.Repo.Repository.DefaultBranch) {
|
2014-07-22 21:46:04 +09:00
|
|
|
ctx.Repo.BranchName = ctx.Repo.Repository.DefaultBranch
|
|
|
|
} else if len(brs) > 0 {
|
|
|
|
ctx.Repo.BranchName = brs[0]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["BranchName"] = ctx.Repo.BranchName
|
2015-08-31 16:24:28 +09:00
|
|
|
ctx.Data["CommitID"] = ctx.Repo.CommitID
|
2015-08-04 04:27:07 +09:00
|
|
|
|
2015-11-01 01:04:04 +09:00
|
|
|
if ctx.Query("go-get") == "1" {
|
|
|
|
ctx.Data["GoGetImport"] = path.Join(setting.Domain, setting.AppSubUrl, owner.Name, repo.Name)
|
|
|
|
prefix := path.Join(setting.AppUrl, owner.Name, repo.Name, "src", ctx.Repo.BranchName)
|
|
|
|
ctx.Data["GoDocDirectory"] = prefix + "{/dir}"
|
|
|
|
ctx.Data["GoDocFile"] = prefix + "{/dir}/{file}#L{line}"
|
|
|
|
}
|
2014-03-16 01:03:23 +09:00
|
|
|
}
|
|
|
|
}
|
2014-05-06 08:58:13 +09:00
|
|
|
|
2015-12-05 07:20:23 +09:00
|
|
|
// RepoRef handles repository reference name including those contain `/`.
|
|
|
|
func RepoRef() macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
|
|
|
// Empty repository does not have reference information.
|
|
|
|
if ctx.Repo.Repository.IsBare {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
refName string
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
// For API calls.
|
|
|
|
if ctx.Repo.GitRepo == nil {
|
|
|
|
repoPath := models.RepoPath(ctx.Repo.Owner.Name, ctx.Repo.Repository.Name)
|
|
|
|
gitRepo, err := git.OpenRepository(repoPath)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "RepoRef Invalid repo "+repoPath, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.GitRepo = gitRepo
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get default branch.
|
|
|
|
if len(ctx.Params("*")) == 0 {
|
|
|
|
refName = ctx.Repo.Repository.DefaultBranch
|
|
|
|
if !ctx.Repo.GitRepo.IsBranchExist(refName) {
|
|
|
|
brs, err := ctx.Repo.GitRepo.GetBranches()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetBranches", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
refName = brs[0]
|
|
|
|
}
|
2015-12-10 10:46:05 +09:00
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(refName)
|
2015-12-05 07:20:23 +09:00
|
|
|
if err != nil {
|
2015-12-10 10:46:05 +09:00
|
|
|
ctx.Handle(500, "GetBranchCommit", err)
|
2015-12-05 07:20:23 +09:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
|
2015-12-09 14:32:53 +09:00
|
|
|
ctx.Repo.IsViewBranch = true
|
2015-12-05 07:20:23 +09:00
|
|
|
|
|
|
|
} else {
|
|
|
|
hasMatched := false
|
|
|
|
parts := strings.Split(ctx.Params("*"), "/")
|
|
|
|
for i, part := range parts {
|
|
|
|
refName = strings.TrimPrefix(refName+"/"+part, "/")
|
|
|
|
|
|
|
|
if ctx.Repo.GitRepo.IsBranchExist(refName) ||
|
|
|
|
ctx.Repo.GitRepo.IsTagExist(refName) {
|
|
|
|
if i < len(parts)-1 {
|
|
|
|
ctx.Repo.TreeName = strings.Join(parts[i+1:], "/")
|
|
|
|
}
|
|
|
|
hasMatched = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !hasMatched && len(parts[0]) == 40 {
|
|
|
|
refName = parts[0]
|
|
|
|
ctx.Repo.TreeName = strings.Join(parts[1:], "/")
|
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.Repo.GitRepo.IsBranchExist(refName) {
|
2015-12-09 14:32:53 +09:00
|
|
|
ctx.Repo.IsViewBranch = true
|
2015-12-05 07:20:23 +09:00
|
|
|
|
2015-12-10 10:46:05 +09:00
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(refName)
|
2015-12-05 07:20:23 +09:00
|
|
|
if err != nil {
|
2015-12-10 10:46:05 +09:00
|
|
|
ctx.Handle(500, "GetBranchCommit", err)
|
2015-12-05 07:20:23 +09:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
|
|
|
|
|
|
|
|
} else if ctx.Repo.GitRepo.IsTagExist(refName) {
|
2015-12-09 14:32:53 +09:00
|
|
|
ctx.Repo.IsViewTag = true
|
2015-12-10 10:46:05 +09:00
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetTagCommit(refName)
|
2015-12-05 07:20:23 +09:00
|
|
|
if err != nil {
|
2015-12-10 10:46:05 +09:00
|
|
|
ctx.Handle(500, "GetTagCommit", err)
|
2015-12-05 07:20:23 +09:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
|
|
|
|
} else if len(refName) == 40 {
|
2015-12-09 14:32:53 +09:00
|
|
|
ctx.Repo.IsViewCommit = true
|
2015-12-05 07:20:23 +09:00
|
|
|
ctx.Repo.CommitID = refName
|
|
|
|
|
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetCommit(refName)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(404, "GetCommit", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ctx.Handle(404, "RepoRef invalid repo", fmt.Errorf("branch or tag not exist: %s", refName))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Repo.BranchName = refName
|
|
|
|
ctx.Data["BranchName"] = ctx.Repo.BranchName
|
|
|
|
ctx.Data["CommitID"] = ctx.Repo.CommitID
|
2015-12-09 14:32:53 +09:00
|
|
|
ctx.Data["IsViewBranch"] = ctx.Repo.IsViewBranch
|
|
|
|
ctx.Data["IsViewTag"] = ctx.Repo.IsViewTag
|
|
|
|
ctx.Data["IsViewCommit"] = ctx.Repo.IsViewCommit
|
2015-12-05 07:20:23 +09:00
|
|
|
|
|
|
|
ctx.Repo.CommitsCount, err = ctx.Repo.Commit.CommitsCount()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "CommitsCount", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["CommitsCount"] = ctx.Repo.CommitsCount
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-03 18:42:09 +09:00
|
|
|
func RequireRepoAdmin() macaron.Handler {
|
2014-05-06 08:58:13 +09:00
|
|
|
return func(ctx *Context) {
|
2015-08-15 01:42:43 +09:00
|
|
|
if !ctx.Repo.IsAdmin() {
|
2015-11-27 15:50:38 +09:00
|
|
|
ctx.Handle(404, ctx.Req.RequestURI, nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func RequireRepoPusher() macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
|
|
|
if !ctx.Repo.IsPusher() {
|
2014-05-06 08:58:13 +09:00
|
|
|
ctx.Handle(404, ctx.Req.RequestURI, nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-10-07 06:50:00 +09:00
|
|
|
|
2014-12-07 10:22:48 +09:00
|
|
|
// GitHookService checks if repository Git hooks service has been enabled.
|
2014-10-07 06:50:00 +09:00
|
|
|
func GitHookService() macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
2015-11-04 08:40:52 +09:00
|
|
|
if !ctx.User.CanEditGitHook() {
|
2014-10-07 06:50:00 +09:00
|
|
|
ctx.Handle(404, "GitHookService", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|