2014-03-15 16:03:23 +00: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 04:12:33 +00:00
|
|
|
"fmt"
|
2014-05-05 23:58:13 +00:00
|
|
|
"net/url"
|
2014-03-17 08:47:42 +00:00
|
|
|
"strings"
|
2014-03-16 06:28:24 +00:00
|
|
|
|
2014-07-26 04:24:27 +00:00
|
|
|
"github.com/Unknwon/macaron"
|
2014-03-30 02:09:59 +00:00
|
|
|
|
2014-03-15 16:03:23 +00:00
|
|
|
"github.com/gogits/gogs/models"
|
2014-11-14 22:11:30 +00:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-07-26 04:24:27 +00:00
|
|
|
"github.com/gogits/gogs/modules/git"
|
2014-04-11 04:01:38 +00:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-05-26 00:11:25 +00:00
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-03-15 16:03:23 +00:00
|
|
|
)
|
|
|
|
|
2014-11-13 07:32:18 +00:00
|
|
|
func ApiRepoAssignment() macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
|
|
|
userName := ctx.Params(":username")
|
|
|
|
repoName := ctx.Params(":reponame")
|
|
|
|
|
|
|
|
var (
|
|
|
|
u *models.User
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
2015-02-13 05:58:46 +00:00
|
|
|
// Check if the user is the same as the repository owner.
|
2015-02-13 07:14:57 +00:00
|
|
|
if ctx.IsSigned && ctx.User.LowerName == strings.ToLower(userName) {
|
2015-02-05 13:29:08 +00:00
|
|
|
u = ctx.User
|
|
|
|
} else {
|
2014-11-13 07:32:18 +00:00
|
|
|
u, err = models.GetUserByName(userName)
|
|
|
|
if err != nil {
|
|
|
|
if err == models.ErrUserNotExist {
|
|
|
|
ctx.Error(404)
|
|
|
|
} else {
|
2014-11-14 22:11:30 +00:00
|
|
|
ctx.JSON(500, &base.ApiJsonErr{"GetUserByName: " + err.Error(), base.DOC_URL})
|
2014-11-13 07:32:18 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Repo.Owner = u
|
|
|
|
|
|
|
|
// Get repository.
|
|
|
|
repo, err := models.GetRepositoryByName(u.Id, repoName)
|
|
|
|
if err != nil {
|
|
|
|
if err == models.ErrRepoNotExist {
|
|
|
|
ctx.Error(404)
|
2015-02-05 13:29:08 +00:00
|
|
|
} else {
|
|
|
|
ctx.JSON(500, &base.ApiJsonErr{"GetRepositoryByName: " + err.Error(), base.DOC_URL})
|
2014-11-13 07:32:18 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
} else if err = repo.GetOwner(); err != nil {
|
2014-11-14 22:11:30 +00:00
|
|
|
ctx.JSON(500, &base.ApiJsonErr{"GetOwner: " + err.Error(), base.DOC_URL})
|
2014-11-13 07:32:18 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-02-05 13:29:08 +00:00
|
|
|
if ctx.IsSigned {
|
|
|
|
mode, err := models.AccessLevel(ctx.User, repo)
|
|
|
|
if err != nil {
|
|
|
|
ctx.JSON(500, &base.ApiJsonErr{"AccessLevel: " + err.Error(), base.DOC_URL})
|
|
|
|
return
|
2014-11-13 07:32:18 +00:00
|
|
|
}
|
2015-02-12 12:25:07 +00:00
|
|
|
|
2015-02-09 11:36:33 +00:00
|
|
|
ctx.Repo.IsOwner = mode >= models.ACCESS_MODE_WRITE
|
|
|
|
ctx.Repo.IsAdmin = mode >= models.ACCESS_MODE_READ
|
|
|
|
ctx.Repo.IsTrueOwner = mode >= models.ACCESS_MODE_OWNER
|
2014-11-13 07:32:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check access.
|
|
|
|
if repo.IsPrivate && !ctx.Repo.IsOwner {
|
2015-02-05 13:29:08 +00:00
|
|
|
ctx.Error(404)
|
|
|
|
return
|
2014-11-13 07:32:18 +00:00
|
|
|
}
|
|
|
|
ctx.Repo.HasAccess = true
|
|
|
|
|
|
|
|
ctx.Repo.Repository = repo
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-07 03:06:41 +00:00
|
|
|
// RepoRef handles repository reference name including those contain `/`.
|
|
|
|
func RepoRef() macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
|
|
|
var (
|
|
|
|
refName string
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
2014-11-17 02:32:26 +00:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2014-11-07 03:06:41 +00:00
|
|
|
// 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]
|
|
|
|
}
|
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetCommitOfBranch(refName)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetCommitOfBranch", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.CommitId = ctx.Repo.Commit.Id.String()
|
|
|
|
ctx.Repo.IsBranch = true
|
|
|
|
|
|
|
|
} 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) {
|
|
|
|
ctx.Repo.IsBranch = true
|
|
|
|
|
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetCommitOfBranch(refName)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetCommitOfBranch", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.CommitId = ctx.Repo.Commit.Id.String()
|
|
|
|
|
|
|
|
} else if ctx.Repo.GitRepo.IsTagExist(refName) {
|
|
|
|
ctx.Repo.IsTag = true
|
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetCommitOfTag(refName)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetCommitOfTag", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.CommitId = ctx.Repo.Commit.Id.String()
|
|
|
|
} else if len(refName) == 40 {
|
|
|
|
ctx.Repo.IsCommit = true
|
|
|
|
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
|
|
|
|
ctx.Data["IsBranch"] = ctx.Repo.IsBranch
|
|
|
|
ctx.Data["IsTag"] = ctx.Repo.IsTag
|
|
|
|
ctx.Data["IsCommit"] = ctx.Repo.IsCommit
|
|
|
|
|
|
|
|
ctx.Repo.CommitsCount, err = ctx.Repo.Commit.CommitsCount()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "CommitsCount", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["CommitsCount"] = ctx.Repo.CommitsCount
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-26 04:24:27 +00:00
|
|
|
func RepoAssignment(redirect bool, args ...bool) macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
2014-08-14 06:12:21 +00:00
|
|
|
var (
|
|
|
|
displayBare bool // To display bare page if it is a bare repo.
|
|
|
|
)
|
2014-03-30 05:30:17 +00:00
|
|
|
if len(args) >= 1 {
|
2014-11-07 03:06:41 +00:00
|
|
|
displayBare = args[0]
|
2014-03-30 05:30:17 +00:00
|
|
|
}
|
2014-03-15 16:03:23 +00:00
|
|
|
|
|
|
|
var (
|
2014-07-26 04:24:27 +00:00
|
|
|
u *models.User
|
|
|
|
err error
|
2014-03-15 16:03:23 +00:00
|
|
|
)
|
|
|
|
|
2014-07-26 04:24:27 +00:00
|
|
|
userName := ctx.Params(":username")
|
|
|
|
repoName := ctx.Params(":reponame")
|
|
|
|
refName := ctx.Params(":branchname")
|
|
|
|
if len(refName) == 0 {
|
|
|
|
refName = ctx.Params(":path")
|
|
|
|
}
|
2014-03-30 02:09:59 +00:00
|
|
|
|
2015-02-05 13:29:08 +00:00
|
|
|
// Check if the user is the same as the repository owner
|
2015-02-13 07:14:57 +00:00
|
|
|
if ctx.IsSigned && ctx.User.LowerName == strings.ToLower(userName) {
|
2015-02-05 13:29:08 +00:00
|
|
|
u = ctx.User
|
|
|
|
} else {
|
2014-07-26 04:24:27 +00:00
|
|
|
u, err = models.GetUserByName(userName)
|
2014-03-15 16:03:23 +00:00
|
|
|
if err != nil {
|
2014-04-30 07:44:28 +00:00
|
|
|
if err == models.ErrUserNotExist {
|
2015-02-13 05:58:46 +00:00
|
|
|
ctx.Handle(404, "GetUserByName", err)
|
2014-08-14 06:12:21 +00:00
|
|
|
} else {
|
2015-02-13 05:58:46 +00:00
|
|
|
ctx.Handle(500, "GetUserByName", err)
|
2014-03-15 16:03:23 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2014-07-26 04:24:27 +00:00
|
|
|
ctx.Repo.Owner = u
|
2014-03-15 16:03:23 +00:00
|
|
|
|
2014-08-24 13:09:05 +00:00
|
|
|
// Get repository.
|
2014-07-26 04:24:27 +00:00
|
|
|
repo, err := models.GetRepositoryByName(u.Id, repoName)
|
2014-03-15 16:03:23 +00:00
|
|
|
if err != nil {
|
2014-03-28 01:15:53 +00:00
|
|
|
if err == models.ErrRepoNotExist {
|
2015-02-13 05:58:46 +00:00
|
|
|
ctx.Handle(404, "GetRepositoryByName", err)
|
2015-02-05 13:29:08 +00:00
|
|
|
} else {
|
2015-02-13 05:58:46 +00:00
|
|
|
ctx.Handle(500, "GetRepositoryByName", err)
|
2014-03-15 16:03:23 +00:00
|
|
|
}
|
2014-07-26 04:24:27 +00:00
|
|
|
return
|
|
|
|
} else if err = repo.GetOwner(); err != nil {
|
2015-02-13 05:58:46 +00:00
|
|
|
ctx.Handle(500, "GetOwner", err)
|
2014-03-30 02:09:59 +00:00
|
|
|
return
|
|
|
|
}
|
2014-04-12 01:47:39 +00:00
|
|
|
|
2015-02-05 13:29:08 +00:00
|
|
|
if ctx.IsSigned {
|
|
|
|
mode, err := models.AccessLevel(ctx.User, repo)
|
|
|
|
if err != nil {
|
2015-02-13 05:58:46 +00:00
|
|
|
ctx.Handle(500, "AccessLevel", err)
|
2015-02-05 13:29:08 +00:00
|
|
|
return
|
2014-08-24 13:09:05 +00:00
|
|
|
}
|
2015-02-09 11:36:33 +00:00
|
|
|
ctx.Repo.IsOwner = mode >= models.ACCESS_MODE_WRITE
|
|
|
|
ctx.Repo.IsAdmin = mode >= models.ACCESS_MODE_READ
|
|
|
|
ctx.Repo.IsTrueOwner = mode >= models.ACCESS_MODE_OWNER
|
2015-02-13 07:14:57 +00:00
|
|
|
if !ctx.Repo.IsTrueOwner && ctx.Repo.Owner.IsOrganization() {
|
|
|
|
ctx.Repo.IsTrueOwner = ctx.Repo.Owner.IsOwnedBy(ctx.User.Id)
|
|
|
|
}
|
2014-05-13 23:26:13 +00:00
|
|
|
}
|
|
|
|
|
2014-04-12 01:47:39 +00:00
|
|
|
// Check access.
|
2014-05-08 23:17:43 +00:00
|
|
|
if repo.IsPrivate && !ctx.Repo.IsOwner {
|
2015-02-13 05:58:46 +00:00
|
|
|
ctx.Handle(404, "no access right", err)
|
2015-02-05 13:29:08 +00:00
|
|
|
return
|
2014-04-12 01:47:39 +00:00
|
|
|
}
|
|
|
|
ctx.Repo.HasAccess = true
|
2015-02-05 13:29:08 +00:00
|
|
|
|
2014-04-12 01:47:39 +00:00
|
|
|
ctx.Data["HasAccess"] = true
|
|
|
|
|
2014-04-13 02:30:00 +00:00
|
|
|
if repo.IsMirror {
|
|
|
|
ctx.Repo.Mirror, err = models.GetMirror(repo.Id)
|
|
|
|
if err != nil {
|
2014-07-26 04:24:27 +00:00
|
|
|
ctx.Handle(500, "GetMirror", err)
|
2014-04-13 02:30:00 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["MirrorInterval"] = ctx.Repo.Mirror.Interval
|
|
|
|
}
|
|
|
|
|
2014-04-02 16:43:31 +00:00
|
|
|
repo.NumOpenIssues = repo.NumIssues - repo.NumClosedIssues
|
2014-05-12 18:06:42 +00:00
|
|
|
repo.NumOpenMilestones = repo.NumMilestones - repo.NumClosedMilestones
|
2014-03-30 02:09:59 +00:00
|
|
|
ctx.Repo.Repository = repo
|
2014-03-30 05:30:17 +00:00
|
|
|
ctx.Data["IsBareRepo"] = ctx.Repo.Repository.IsBare
|
|
|
|
|
2014-03-30 02:09:59 +00:00
|
|
|
gitRepo, err := git.OpenRepository(models.RepoPath(userName, repoName))
|
|
|
|
if err != nil {
|
2014-04-11 02:03:31 +00:00
|
|
|
ctx.Handle(500, "RepoAssignment Invalid repo "+models.RepoPath(userName, repoName), err)
|
2014-03-15 16:03:23 +00:00
|
|
|
return
|
|
|
|
}
|
2014-03-30 02:09:59 +00:00
|
|
|
ctx.Repo.GitRepo = gitRepo
|
2014-10-19 05:35:24 +00:00
|
|
|
ctx.Repo.RepoLink, err = repo.RepoLink()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "RepoLink", err)
|
|
|
|
return
|
|
|
|
}
|
2014-08-15 10:29:41 +00:00
|
|
|
ctx.Data["RepoLink"] = ctx.Repo.RepoLink
|
2014-03-30 03:38:41 +00:00
|
|
|
|
2014-04-14 01:00:12 +00:00
|
|
|
tags, err := ctx.Repo.GitRepo.GetTags()
|
|
|
|
if err != nil {
|
2014-07-26 04:24:27 +00:00
|
|
|
ctx.Handle(500, "GetTags", err)
|
2014-04-14 01:00:12 +00:00
|
|
|
return
|
|
|
|
}
|
2014-09-23 17:47:54 +00:00
|
|
|
ctx.Data["Tags"] = tags
|
2014-04-14 01:00:12 +00:00
|
|
|
ctx.Repo.Repository.NumTags = len(tags)
|
|
|
|
|
2014-10-19 05:35:24 +00:00
|
|
|
// Non-fork repository will not return error in this method.
|
|
|
|
if err = repo.GetForkRepo(); err != nil {
|
|
|
|
ctx.Handle(500, "GetForkRepo", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-07-26 04:24:27 +00:00
|
|
|
ctx.Data["Title"] = u.Name + "/" + repo.Name
|
2014-03-30 03:38:41 +00:00
|
|
|
ctx.Data["Repository"] = repo
|
2014-07-26 04:24:27 +00:00
|
|
|
ctx.Data["Owner"] = ctx.Repo.Repository.Owner
|
2014-03-30 03:38:41 +00:00
|
|
|
ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner
|
2014-07-04 05:23:11 +00:00
|
|
|
ctx.Data["IsRepositoryTrueOwner"] = ctx.Repo.IsTrueOwner
|
2014-03-30 03:38:41 +00:00
|
|
|
|
2015-02-07 15:46:57 +00:00
|
|
|
ctx.Data["DisableSSH"] = setting.DisableSSH
|
2014-12-13 21:46:00 +00:00
|
|
|
ctx.Repo.CloneLink, err = repo.CloneLink()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "CloneLink", err)
|
|
|
|
return
|
2014-05-11 15:18:10 +00:00
|
|
|
}
|
2014-03-30 03:38:41 +00:00
|
|
|
ctx.Data["CloneLink"] = ctx.Repo.CloneLink
|
|
|
|
|
2014-04-13 08:08:25 +00:00
|
|
|
if ctx.Repo.Repository.IsGoget {
|
2014-07-26 04:24:27 +00:00
|
|
|
ctx.Data["GoGetLink"] = fmt.Sprintf("%s%s/%s", setting.AppUrl, u.LowerName, repo.LowerName)
|
|
|
|
ctx.Data["GoGetImport"] = fmt.Sprintf("%s/%s/%s", setting.Domain, u.LowerName, repo.LowerName)
|
2014-04-13 08:08:25 +00:00
|
|
|
}
|
|
|
|
|
2014-03-30 05:30:17 +00:00
|
|
|
// repo is bare and display enable
|
2014-08-11 03:11:18 +00:00
|
|
|
if ctx.Repo.Repository.IsBare {
|
2014-04-20 02:13:22 +00:00
|
|
|
log.Debug("Bare repository: %s", ctx.Repo.RepoLink)
|
2014-11-20 23:03:42 +00:00
|
|
|
// NOTE: to prevent templating error
|
|
|
|
ctx.Data["BranchName"] = ""
|
2014-08-11 03:11:18 +00:00
|
|
|
if displayBare {
|
|
|
|
ctx.HTML(200, "repo/bare")
|
|
|
|
}
|
2014-03-30 05:30:17 +00:00
|
|
|
return
|
2014-03-30 02:09:59 +00:00
|
|
|
}
|
2014-03-15 16:03:23 +00:00
|
|
|
|
2014-03-30 02:09:59 +00:00
|
|
|
if ctx.IsSigned {
|
2014-08-10 00:25:02 +00:00
|
|
|
ctx.Data["IsWatchingRepo"] = models.IsWatching(ctx.User.Id, repo.Id)
|
2014-08-11 03:11:18 +00:00
|
|
|
ctx.Data["IsStaringRepo"] = models.IsStaring(ctx.User.Id, repo.Id)
|
2014-03-20 06:25:21 +00:00
|
|
|
}
|
2014-03-30 02:09:59 +00:00
|
|
|
|
2014-06-28 15:56:41 +00:00
|
|
|
ctx.Data["TagName"] = ctx.Repo.TagName
|
2014-04-13 01:35:36 +00:00
|
|
|
brs, err := ctx.Repo.GitRepo.GetBranches()
|
2014-04-11 04:01:38 +00:00
|
|
|
if err != nil {
|
2014-09-23 17:47:54 +00:00
|
|
|
ctx.Handle(500, "GetBranches", err)
|
|
|
|
return
|
2014-04-11 04:01:38 +00:00
|
|
|
}
|
|
|
|
ctx.Data["Branches"] = brs
|
2014-07-26 04:24:27 +00:00
|
|
|
ctx.Data["BrancheCount"] = len(brs)
|
2014-07-22 12:46:04 +00:00
|
|
|
|
|
|
|
// If not branch selected, try default one.
|
|
|
|
// If default branch doesn't exists, fall back to some other branch.
|
|
|
|
if ctx.Repo.BranchName == "" {
|
|
|
|
if ctx.Repo.Repository.DefaultBranch != "" && gitRepo.IsBranchExist(ctx.Repo.Repository.DefaultBranch) {
|
|
|
|
ctx.Repo.BranchName = ctx.Repo.Repository.DefaultBranch
|
|
|
|
} else if len(brs) > 0 {
|
|
|
|
ctx.Repo.BranchName = brs[0]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["BranchName"] = ctx.Repo.BranchName
|
2014-03-30 02:09:59 +00:00
|
|
|
ctx.Data["CommitId"] = ctx.Repo.CommitId
|
2014-03-15 16:03:23 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-05 23:58:13 +00:00
|
|
|
|
2014-07-26 04:24:27 +00:00
|
|
|
func RequireTrueOwner() macaron.Handler {
|
2014-05-05 23:58:13 +00:00
|
|
|
return func(ctx *Context) {
|
2014-08-24 13:09:05 +00:00
|
|
|
if !ctx.Repo.IsTrueOwner && !ctx.Repo.IsAdmin {
|
2014-05-05 23:58:13 +00:00
|
|
|
if !ctx.IsSigned {
|
2014-09-21 12:07:00 +00:00
|
|
|
ctx.SetCookie("redirect_to", "/"+url.QueryEscape(setting.AppSubUrl+ctx.Req.RequestURI), 0, setting.AppSubUrl)
|
2014-09-20 00:11:34 +00:00
|
|
|
ctx.Redirect(setting.AppSubUrl + "/user/login")
|
2014-05-05 23:58:13 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Handle(404, ctx.Req.RequestURI, nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-10-06 21:50:00 +00:00
|
|
|
|
2014-12-07 01:22:48 +00:00
|
|
|
// GitHookService checks if repository Git hooks service has been enabled.
|
2014-10-06 21:50:00 +00:00
|
|
|
func GitHookService() macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
2014-11-17 19:53:41 +00:00
|
|
|
if !ctx.User.AllowGitHook && !ctx.User.IsAdmin {
|
2014-10-06 21:50:00 +00:00
|
|
|
ctx.Handle(404, "GitHookService", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|