2014-03-15 17:03:23 +01:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2017-09-12 08:48:13 +02:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2014-03-15 17:03:23 +01:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2016-03-11 17:56:52 +01:00
|
|
|
package context
|
2014-03-15 17:03:23 +01:00
|
|
|
|
|
|
|
import (
|
2014-03-20 05:12:33 +01:00
|
|
|
"fmt"
|
2016-08-12 02:07:09 +02:00
|
|
|
"io/ioutil"
|
2015-10-31 17:04:04 +01:00
|
|
|
"path"
|
2014-03-17 09:47:42 +01:00
|
|
|
"strings"
|
2014-03-16 07:28:24 +01:00
|
|
|
|
2016-11-11 13:11:45 +01:00
|
|
|
"code.gitea.io/git"
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/models"
|
2017-10-26 03:37:33 +02:00
|
|
|
"code.gitea.io/gitea/modules/cache"
|
2017-10-30 03:04:25 +01:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2017-10-26 03:37:33 +02:00
|
|
|
|
2016-11-11 13:11:45 +01:00
|
|
|
"github.com/Unknwon/com"
|
2017-09-12 08:48:13 +02:00
|
|
|
"gopkg.in/editorconfig/editorconfig-core-go.v1"
|
|
|
|
"gopkg.in/macaron.v1"
|
2014-03-15 17:03:23 +01:00
|
|
|
)
|
|
|
|
|
2016-11-25 07:51:01 +01:00
|
|
|
// PullRequest contains informations to make a pull request
|
2016-03-13 22:37:44 +01:00
|
|
|
type PullRequest struct {
|
|
|
|
BaseRepo *models.Repository
|
|
|
|
Allowed bool
|
|
|
|
SameRepo bool
|
|
|
|
HeadInfo string // [<user>:]<branch>
|
|
|
|
}
|
|
|
|
|
2017-03-15 01:52:01 +01:00
|
|
|
// Repository contains information to operate a repository
|
2016-03-13 22:37:44 +01:00
|
|
|
type Repository struct {
|
|
|
|
AccessMode models.AccessMode
|
|
|
|
IsWatching bool
|
|
|
|
IsViewBranch bool
|
|
|
|
IsViewTag bool
|
|
|
|
IsViewCommit bool
|
|
|
|
Repository *models.Repository
|
|
|
|
Owner *models.User
|
|
|
|
Commit *git.Commit
|
|
|
|
Tag *git.Tag
|
|
|
|
GitRepo *git.Repository
|
|
|
|
BranchName string
|
|
|
|
TagName string
|
2016-08-25 06:35:03 +02:00
|
|
|
TreePath string
|
2016-03-13 22:37:44 +01:00
|
|
|
CommitID string
|
|
|
|
RepoLink string
|
|
|
|
CloneLink models.CloneLink
|
|
|
|
CommitsCount int64
|
|
|
|
Mirror *models.Mirror
|
|
|
|
|
2016-08-30 11:08:38 +02:00
|
|
|
PullRequest *PullRequest
|
2016-03-13 22:37:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsOwner returns true if current user is the owner of repository.
|
|
|
|
func (r *Repository) IsOwner() bool {
|
2016-11-07 17:20:37 +01:00
|
|
|
return r.AccessMode >= models.AccessModeOwner
|
2016-03-13 22:37:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsAdmin returns true if current user has admin or higher access of repository.
|
|
|
|
func (r *Repository) IsAdmin() bool {
|
2016-11-07 17:20:37 +01:00
|
|
|
return r.AccessMode >= models.AccessModeAdmin
|
2016-03-13 22:37:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsWriter returns true if current user has write or higher access of repository.
|
|
|
|
func (r *Repository) IsWriter() bool {
|
2016-11-07 17:20:37 +01:00
|
|
|
return r.AccessMode >= models.AccessModeWrite
|
2016-03-13 22:37:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// HasAccess returns true if the current user has at least read access for this repository
|
|
|
|
func (r *Repository) HasAccess() bool {
|
2016-11-07 17:20:37 +01:00
|
|
|
return r.AccessMode >= models.AccessModeRead
|
2016-03-13 22:37:44 +01:00
|
|
|
}
|
|
|
|
|
2016-08-30 11:08:38 +02:00
|
|
|
// CanEnableEditor returns true if repository is editable and user has proper access level.
|
|
|
|
func (r *Repository) CanEnableEditor() bool {
|
|
|
|
return r.Repository.CanEnableEditor() && r.IsViewBranch && r.IsWriter()
|
|
|
|
}
|
|
|
|
|
2017-10-15 21:59:24 +02:00
|
|
|
// CanCreateBranch returns true if repository is editable and user has proper access level.
|
|
|
|
func (r *Repository) CanCreateBranch() bool {
|
|
|
|
return r.Repository.CanCreateBranch() && r.IsWriter()
|
|
|
|
}
|
|
|
|
|
2017-05-02 02:49:55 +02:00
|
|
|
// CanCommitToBranch returns true if repository is editable and user has proper access level
|
|
|
|
// and branch is not protected
|
2017-09-14 10:16:22 +02:00
|
|
|
func (r *Repository) CanCommitToBranch(doer *models.User) (bool, error) {
|
|
|
|
protectedBranch, err := r.Repository.IsProtectedBranch(r.BranchName, doer)
|
2017-05-02 02:49:55 +02:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return r.CanEnableEditor() && !protectedBranch, nil
|
|
|
|
}
|
|
|
|
|
2017-09-12 08:48:13 +02:00
|
|
|
// CanUseTimetracker returns whether or not a user can use the timetracker.
|
|
|
|
func (r *Repository) CanUseTimetracker(issue *models.Issue, user *models.User) bool {
|
|
|
|
// Checking for following:
|
|
|
|
// 1. Is timetracker enabled
|
|
|
|
// 2. Is the user a contributor, admin, poster or assignee and do the repository policies require this?
|
2018-05-09 18:29:04 +02:00
|
|
|
isAssigned, _ := models.IsUserAssignedToIssue(issue, user)
|
2017-09-12 08:48:13 +02:00
|
|
|
return r.Repository.IsTimetrackerEnabled() && (!r.Repository.AllowOnlyContributorsToTrackTime() ||
|
2018-05-09 18:29:04 +02:00
|
|
|
r.IsWriter() || issue.IsPoster(user.ID) || isAssigned)
|
2017-09-12 08:48:13 +02:00
|
|
|
}
|
|
|
|
|
2017-10-26 03:37:33 +02:00
|
|
|
// GetCommitsCount returns cached commit count for current view
|
|
|
|
func (r *Repository) GetCommitsCount() (int64, error) {
|
|
|
|
var contextName string
|
|
|
|
if r.IsViewBranch {
|
|
|
|
contextName = r.BranchName
|
|
|
|
} else if r.IsViewTag {
|
|
|
|
contextName = r.TagName
|
|
|
|
} else {
|
|
|
|
contextName = r.CommitID
|
|
|
|
}
|
|
|
|
return cache.GetInt64(r.Repository.GetCommitsCountCacheKey(contextName, r.IsViewBranch || r.IsViewTag), func() (int64, error) {
|
|
|
|
return r.Commit.CommitsCount()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-10-30 03:04:25 +01:00
|
|
|
// BranchNameSubURL sub-URL for the BranchName field
|
|
|
|
func (r *Repository) BranchNameSubURL() string {
|
|
|
|
switch {
|
|
|
|
case r.IsViewBranch:
|
|
|
|
return "branch/" + r.BranchName
|
|
|
|
case r.IsViewTag:
|
|
|
|
return "tag/" + r.BranchName
|
|
|
|
case r.IsViewCommit:
|
|
|
|
return "commit/" + r.BranchName
|
|
|
|
}
|
|
|
|
log.Error(4, "Unknown view type for repo: %v", r)
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2016-08-12 02:07:09 +02:00
|
|
|
// GetEditorconfig returns the .editorconfig definition if found in the
|
|
|
|
// HEAD of the default repo branch.
|
|
|
|
func (r *Repository) GetEditorconfig() (*editorconfig.Editorconfig, error) {
|
|
|
|
commit, err := r.GitRepo.GetBranchCommit(r.Repository.DefaultBranch)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
treeEntry, err := commit.GetTreeEntryByPath(".editorconfig")
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-11-29 02:50:39 +01:00
|
|
|
if treeEntry.Blob().Size() >= setting.UI.MaxDisplayFileSize {
|
|
|
|
return nil, git.ErrNotExist{ID: "", RelPath: ".editorconfig"}
|
|
|
|
}
|
2016-08-12 02:07:09 +02:00
|
|
|
reader, err := treeEntry.Blob().Data()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
data, err := ioutil.ReadAll(reader)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return editorconfig.ParseBytes(data)
|
|
|
|
}
|
|
|
|
|
2016-11-25 07:51:01 +01:00
|
|
|
// RetrieveBaseRepo retrieves base repository
|
2015-09-01 17:43:53 +02: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
|
|
|
|
}
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetBaseRepo", err)
|
2015-09-01 17:43:53 +02:00
|
|
|
return
|
|
|
|
} else if err = repo.BaseRepo.GetOwner(); err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("BaseRepo.GetOwner", err)
|
2015-09-01 17:43:53 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-23 15:24:24 +02:00
|
|
|
// ComposeGoGetImport returns go-get-import meta content.
|
|
|
|
func ComposeGoGetImport(owner, repo string) string {
|
2016-11-27 11:14:25 +01:00
|
|
|
return path.Join(setting.Domain, setting.AppSubURL, owner, repo)
|
2016-08-07 23:29:16 +02:00
|
|
|
}
|
|
|
|
|
2017-09-23 15:24:24 +02:00
|
|
|
// EarlyResponseForGoGetMeta responses appropriate go-get meta with status 200
|
2016-08-07 23:29:16 +02:00
|
|
|
// if user does not have actual access to the requested repository,
|
|
|
|
// or the owner or repository does not exist at all.
|
|
|
|
// This is particular a workaround for "go get" command which does not respect
|
|
|
|
// .netrc file.
|
2017-09-23 15:24:24 +02:00
|
|
|
func EarlyResponseForGoGetMeta(ctx *Context) {
|
|
|
|
username := ctx.Params(":username")
|
|
|
|
reponame := ctx.Params(":reponame")
|
2016-08-07 23:29:16 +02:00
|
|
|
ctx.PlainText(200, []byte(com.Expand(`<meta name="go-import" content="{GoGetImport} git {CloneLink}">`,
|
|
|
|
map[string]string{
|
2017-09-23 15:24:24 +02:00
|
|
|
"GoGetImport": ComposeGoGetImport(username, strings.TrimSuffix(reponame, ".git")),
|
|
|
|
"CloneLink": models.ComposeHTTPSCloneURL(username, reponame),
|
2016-08-07 23:29:16 +02:00
|
|
|
})))
|
|
|
|
}
|
|
|
|
|
2017-02-05 15:35:03 +01:00
|
|
|
// RedirectToRepo redirect to a differently-named repository
|
|
|
|
func RedirectToRepo(ctx *Context, redirectRepoID int64) {
|
|
|
|
ownerName := ctx.Params(":username")
|
|
|
|
previousRepoName := ctx.Params(":reponame")
|
|
|
|
|
|
|
|
repo, err := models.GetRepositoryByID(redirectRepoID)
|
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetRepositoryByID", err)
|
2017-02-05 15:35:03 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
redirectPath := strings.Replace(
|
|
|
|
ctx.Req.URL.Path,
|
|
|
|
fmt.Sprintf("%s/%s", ownerName, previousRepoName),
|
|
|
|
fmt.Sprintf("%s/%s", ownerName, repo.Name),
|
|
|
|
1,
|
|
|
|
)
|
|
|
|
ctx.Redirect(redirectPath)
|
|
|
|
}
|
2017-09-19 13:44:49 +02:00
|
|
|
|
2017-10-05 09:32:25 +02:00
|
|
|
func repoAssignment(ctx *Context, repo *models.Repository) {
|
|
|
|
// Admin has super access.
|
|
|
|
if ctx.IsSigned && ctx.User.IsAdmin {
|
|
|
|
ctx.Repo.AccessMode = models.AccessModeOwner
|
|
|
|
} else {
|
|
|
|
var userID int64
|
|
|
|
if ctx.User != nil {
|
|
|
|
userID = ctx.User.ID
|
|
|
|
}
|
|
|
|
mode, err := models.AccessLevel(userID, repo)
|
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("AccessLevel", err)
|
2017-10-05 09:32:25 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.AccessMode = mode
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check access.
|
|
|
|
if ctx.Repo.AccessMode == models.AccessModeNone {
|
|
|
|
if ctx.Query("go-get") == "1" {
|
|
|
|
EarlyResponseForGoGetMeta(ctx)
|
|
|
|
return
|
|
|
|
}
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("no access right", nil)
|
2017-10-05 09:32:25 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["HasAccess"] = true
|
|
|
|
|
|
|
|
if repo.IsMirror {
|
|
|
|
var err error
|
|
|
|
ctx.Repo.Mirror, err = models.GetMirrorByRepoID(repo.ID)
|
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetMirror", err)
|
2017-10-05 09:32:25 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["MirrorEnablePrune"] = ctx.Repo.Mirror.EnablePrune
|
|
|
|
ctx.Data["MirrorInterval"] = ctx.Repo.Mirror.Interval
|
|
|
|
ctx.Data["Mirror"] = ctx.Repo.Mirror
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Repo.Repository = repo
|
|
|
|
ctx.Data["RepoName"] = ctx.Repo.Repository.Name
|
|
|
|
ctx.Data["IsBareRepo"] = ctx.Repo.Repository.IsBare
|
|
|
|
}
|
|
|
|
|
|
|
|
// RepoIDAssignment returns a macaron handler which assigns the repo to the context.
|
2017-09-18 16:52:20 +02:00
|
|
|
func RepoIDAssignment() macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
|
|
|
repoID := ctx.ParamsInt64(":repoid")
|
|
|
|
|
|
|
|
// Get repository.
|
|
|
|
repo, err := models.GetRepositoryByID(repoID)
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrRepoNotExist(err) {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("GetRepositoryByID", nil)
|
2017-09-18 16:52:20 +02:00
|
|
|
} else {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetRepositoryByID", err)
|
2017-09-18 16:52:20 +02:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = repo.GetOwner(); err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetOwner", err)
|
2017-09-18 16:52:20 +02:00
|
|
|
return
|
|
|
|
}
|
2017-10-05 09:32:25 +02:00
|
|
|
repoAssignment(ctx, repo)
|
2017-09-18 16:52:20 +02:00
|
|
|
}
|
|
|
|
}
|
2017-02-05 15:35:03 +01:00
|
|
|
|
2016-11-25 07:51:01 +01:00
|
|
|
// RepoAssignment returns a macaron to handle repository assignment
|
2017-03-18 11:59:07 +01:00
|
|
|
func RepoAssignment() macaron.Handler {
|
2014-07-26 06:24:27 +02:00
|
|
|
return func(ctx *Context) {
|
2014-03-15 17:03:23 +01:00
|
|
|
var (
|
2015-10-31 17:04:04 +01:00
|
|
|
owner *models.User
|
|
|
|
err error
|
2014-03-15 17:03:23 +01:00
|
|
|
)
|
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
userName := ctx.Params(":username")
|
|
|
|
repoName := ctx.Params(":reponame")
|
2014-03-30 04:09:59 +02:00
|
|
|
|
2015-02-05 14:29:08 +01:00
|
|
|
// Check if the user is the same as the repository owner
|
2015-02-13 08:14:57 +01:00
|
|
|
if ctx.IsSigned && ctx.User.LowerName == strings.ToLower(userName) {
|
2015-10-31 17:04:04 +01:00
|
|
|
owner = ctx.User
|
2015-02-05 14:29:08 +01:00
|
|
|
} else {
|
2015-10-31 17:04:04 +01:00
|
|
|
owner, err = models.GetUserByName(userName)
|
2014-03-15 17:03:23 +01:00
|
|
|
if err != nil {
|
2015-08-05 05:14:17 +02:00
|
|
|
if models.IsErrUserNotExist(err) {
|
2016-08-07 23:29:16 +02:00
|
|
|
if ctx.Query("go-get") == "1" {
|
2017-09-23 15:24:24 +02:00
|
|
|
EarlyResponseForGoGetMeta(ctx)
|
2016-08-07 23:29:16 +02:00
|
|
|
return
|
|
|
|
}
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("GetUserByName", nil)
|
2014-08-14 08:12:21 +02:00
|
|
|
} else {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetUserByName", err)
|
2014-03-15 17:03:23 +01:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2015-10-31 17:04:04 +01:00
|
|
|
ctx.Repo.Owner = owner
|
2016-08-30 11:08:38 +02:00
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name
|
2014-03-15 17:03:23 +01:00
|
|
|
|
2014-08-24 15:09:05 +02:00
|
|
|
// Get repository.
|
2016-07-23 19:08:22 +02:00
|
|
|
repo, err := models.GetRepositoryByName(owner.ID, repoName)
|
2014-03-15 17:03:23 +01:00
|
|
|
if err != nil {
|
2015-03-16 09:04:27 +01:00
|
|
|
if models.IsErrRepoNotExist(err) {
|
2017-02-05 15:35:03 +01:00
|
|
|
redirectRepoID, err := models.LookupRepoRedirect(owner.ID, repoName)
|
|
|
|
if err == nil {
|
|
|
|
RedirectToRepo(ctx, redirectRepoID)
|
|
|
|
} else if models.IsErrRepoRedirectNotExist(err) {
|
|
|
|
if ctx.Query("go-get") == "1" {
|
2017-09-23 15:24:24 +02:00
|
|
|
EarlyResponseForGoGetMeta(ctx)
|
2017-02-05 15:35:03 +01:00
|
|
|
return
|
|
|
|
}
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("GetRepositoryByName", nil)
|
2017-02-05 15:35:03 +01:00
|
|
|
} else {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("LookupRepoRedirect", err)
|
2016-08-07 23:29:16 +02:00
|
|
|
}
|
2015-02-05 14:29:08 +01:00
|
|
|
} else {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetRepositoryByName", err)
|
2014-03-15 17:03:23 +01:00
|
|
|
}
|
2014-07-26 06:24:27 +02:00
|
|
|
return
|
2014-03-30 04:09:59 +02:00
|
|
|
}
|
2017-02-02 13:33:56 +01:00
|
|
|
repo.Owner = owner
|
2014-04-12 03:47:39 +02:00
|
|
|
|
2017-10-05 09:32:25 +02:00
|
|
|
repoAssignment(ctx, repo)
|
|
|
|
if ctx.Written() {
|
2015-02-05 14:29:08 +01:00
|
|
|
return
|
2014-04-12 03:47:39 +02:00
|
|
|
}
|
2014-03-30 07:30:17 +02:00
|
|
|
|
2014-03-30 04:09:59 +02:00
|
|
|
gitRepo, err := git.OpenRepository(models.RepoPath(userName, repoName))
|
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("RepoAssignment Invalid repo "+models.RepoPath(userName, repoName), err)
|
2014-03-15 17:03:23 +01:00
|
|
|
return
|
|
|
|
}
|
2014-03-30 04:09:59 +02:00
|
|
|
ctx.Repo.GitRepo = gitRepo
|
2016-07-15 15:53:43 +02:00
|
|
|
ctx.Repo.RepoLink = repo.Link()
|
2014-08-15 12:29:41 +02:00
|
|
|
ctx.Data["RepoLink"] = ctx.Repo.RepoLink
|
2015-09-02 11:09:12 +02:00
|
|
|
ctx.Data["RepoRelPath"] = ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name
|
2014-03-30 05:38:41 +02:00
|
|
|
|
2014-04-14 03:00:12 +02:00
|
|
|
tags, err := ctx.Repo.GitRepo.GetTags()
|
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetTags", err)
|
2014-04-14 03:00:12 +02:00
|
|
|
return
|
|
|
|
}
|
2014-09-23 19:47:54 +02:00
|
|
|
ctx.Data["Tags"] = tags
|
2017-08-28 16:06:10 +02:00
|
|
|
|
|
|
|
count, err := models.GetReleaseCountByRepoID(ctx.Repo.Repository.ID, models.FindReleasesOptions{
|
|
|
|
IncludeDrafts: false,
|
2017-09-20 07:26:49 +02:00
|
|
|
IncludeTags: true,
|
2017-08-28 16:06:10 +02:00
|
|
|
})
|
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetReleaseCountByRepoID", err)
|
2017-08-28 16:06:10 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.Repository.NumReleases = int(count)
|
2014-04-14 03:00:12 +02:00
|
|
|
|
2016-03-04 21:43:01 +01:00
|
|
|
ctx.Data["Title"] = owner.Name + "/" + repo.Name
|
|
|
|
ctx.Data["Repository"] = repo
|
|
|
|
ctx.Data["Owner"] = ctx.Repo.Repository.Owner
|
|
|
|
ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner()
|
|
|
|
ctx.Data["IsRepositoryAdmin"] = ctx.Repo.IsAdmin()
|
2016-03-06 02:45:23 +01:00
|
|
|
ctx.Data["IsRepositoryWriter"] = ctx.Repo.IsWriter()
|
2016-03-04 21:43:01 +01:00
|
|
|
|
2017-10-15 17:06:07 +02:00
|
|
|
if ctx.Data["CanSignedUserFork"], err = ctx.Repo.Repository.CanUserFork(ctx.User); err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("CanUserFork", err)
|
2017-10-15 17:06:07 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-02-28 02:48:39 +01:00
|
|
|
ctx.Data["DisableSSH"] = setting.SSH.Disabled
|
2017-07-15 16:21:51 +02:00
|
|
|
ctx.Data["ExposeAnonSSH"] = setting.SSH.ExposeAnonymous
|
2016-10-04 18:58:14 +02:00
|
|
|
ctx.Data["DisableHTTP"] = setting.Repository.DisableHTTPGit
|
2017-10-27 08:10:54 +02:00
|
|
|
ctx.Data["RepoSearchEnabled"] = setting.Indexer.RepoIndexerEnabled
|
2015-12-01 02:45:55 +01:00
|
|
|
ctx.Data["CloneLink"] = repo.CloneLink()
|
|
|
|
ctx.Data["WikiCloneLink"] = repo.WikiCloneLink()
|
2014-03-30 05:38:41 +02:00
|
|
|
|
2015-10-03 01:58:36 +02:00
|
|
|
if ctx.IsSigned {
|
2016-07-23 19:08:22 +02:00
|
|
|
ctx.Data["IsWatchingRepo"] = models.IsWatching(ctx.User.ID, repo.ID)
|
|
|
|
ctx.Data["IsStaringRepo"] = models.IsStaring(ctx.User.ID, repo.ID)
|
2015-10-03 01:58:36 +02:00
|
|
|
}
|
|
|
|
|
2014-03-30 07:30:17 +02:00
|
|
|
// repo is bare and display enable
|
2014-08-11 05:11:18 +02:00
|
|
|
if ctx.Repo.Repository.IsBare {
|
2017-03-18 11:59:07 +01:00
|
|
|
ctx.Data["BranchName"] = ctx.Repo.Repository.DefaultBranch
|
2014-03-30 07:30:17 +02:00
|
|
|
return
|
2014-03-30 04:09:59 +02:00
|
|
|
}
|
2014-03-15 17:03:23 +01:00
|
|
|
|
2014-06-28 17:56:41 +02:00
|
|
|
ctx.Data["TagName"] = ctx.Repo.TagName
|
2014-04-13 03:35:36 +02:00
|
|
|
brs, err := ctx.Repo.GitRepo.GetBranches()
|
2014-04-11 06:01:38 +02:00
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetBranches", err)
|
2014-09-23 19:47:54 +02:00
|
|
|
return
|
2014-04-11 06:01:38 +02:00
|
|
|
}
|
|
|
|
ctx.Data["Branches"] = brs
|
2017-12-03 21:52:30 +01:00
|
|
|
ctx.Data["BranchesCount"] = len(brs)
|
2014-07-22 14:46:04 +02:00
|
|
|
|
|
|
|
// If not branch selected, try default one.
|
|
|
|
// If default branch doesn't exists, fall back to some other branch.
|
2015-08-08 16:43:14 +02:00
|
|
|
if len(ctx.Repo.BranchName) == 0 {
|
|
|
|
if len(ctx.Repo.Repository.DefaultBranch) > 0 && gitRepo.IsBranchExist(ctx.Repo.Repository.DefaultBranch) {
|
2014-07-22 14:46:04 +02: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 09:24:28 +02:00
|
|
|
ctx.Data["CommitID"] = ctx.Repo.CommitID
|
2015-08-03 21:27:07 +02:00
|
|
|
|
2016-03-07 05:57:46 +01:00
|
|
|
if repo.IsFork {
|
|
|
|
RetrieveBaseRepo(ctx, repo)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-15 01:52:01 +01:00
|
|
|
// People who have push access or have forked repository can propose a new pull request.
|
2016-08-08 22:02:55 +02:00
|
|
|
if ctx.Repo.IsWriter() || (ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID)) {
|
2016-03-07 05:57:46 +01:00
|
|
|
// Pull request is allowed if this is a fork repository
|
|
|
|
// and base repository accepts pull requests.
|
2017-05-30 14:04:12 +02:00
|
|
|
if repo.BaseRepo != nil && repo.BaseRepo.AllowsPulls() {
|
|
|
|
ctx.Data["BaseRepo"] = repo.BaseRepo
|
|
|
|
ctx.Repo.PullRequest.BaseRepo = repo.BaseRepo
|
|
|
|
ctx.Repo.PullRequest.Allowed = true
|
|
|
|
ctx.Repo.PullRequest.HeadInfo = ctx.Repo.Owner.Name + ":" + ctx.Repo.BranchName
|
2016-03-07 05:57:46 +01:00
|
|
|
} else {
|
|
|
|
// Or, this is repository accepts pull requests between branches.
|
|
|
|
if repo.AllowsPulls() {
|
|
|
|
ctx.Data["BaseRepo"] = repo
|
|
|
|
ctx.Repo.PullRequest.BaseRepo = repo
|
|
|
|
ctx.Repo.PullRequest.Allowed = true
|
|
|
|
ctx.Repo.PullRequest.SameRepo = true
|
|
|
|
ctx.Repo.PullRequest.HeadInfo = ctx.Repo.BranchName
|
|
|
|
}
|
|
|
|
}
|
2017-07-17 04:04:43 +02:00
|
|
|
|
|
|
|
// Reset repo units as otherwise user specific units wont be loaded later
|
|
|
|
ctx.Repo.Repository.Units = nil
|
2016-03-07 05:57:46 +01:00
|
|
|
}
|
|
|
|
ctx.Data["PullRequestCtx"] = ctx.Repo.PullRequest
|
|
|
|
|
2015-10-31 17:04:04 +01:00
|
|
|
if ctx.Query("go-get") == "1" {
|
2017-09-23 15:24:24 +02:00
|
|
|
ctx.Data["GoGetImport"] = ComposeGoGetImport(owner.Name, repo.Name)
|
2017-11-27 01:58:54 +01:00
|
|
|
prefix := setting.AppURL + path.Join(owner.Name, repo.Name, "src", "branch", ctx.Repo.BranchName)
|
2015-10-31 17:04:04 +01:00
|
|
|
ctx.Data["GoDocDirectory"] = prefix + "{/dir}"
|
|
|
|
ctx.Data["GoDocFile"] = prefix + "{/dir}/{file}#L{line}"
|
|
|
|
}
|
2014-03-15 17:03:23 +01:00
|
|
|
}
|
|
|
|
}
|
2014-05-06 01:58:13 +02:00
|
|
|
|
2017-10-30 03:04:25 +01:00
|
|
|
// RepoRefType type of repo reference
|
|
|
|
type RepoRefType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
// RepoRefLegacy unknown type, make educated guess and redirect.
|
|
|
|
// for backward compatibility with previous URL scheme
|
|
|
|
RepoRefLegacy RepoRefType = iota
|
2017-11-04 00:23:59 +01:00
|
|
|
// RepoRefAny is for usage where educated guess is needed
|
|
|
|
// but redirect can not be made
|
|
|
|
RepoRefAny
|
2017-10-30 03:04:25 +01:00
|
|
|
// RepoRefBranch branch
|
|
|
|
RepoRefBranch
|
|
|
|
// RepoRefTag tag
|
|
|
|
RepoRefTag
|
|
|
|
// RepoRefCommit commit
|
|
|
|
RepoRefCommit
|
|
|
|
)
|
|
|
|
|
|
|
|
// RepoRef handles repository reference names when the ref name is not
|
|
|
|
// explicitly given
|
2015-12-04 23:20:23 +01:00
|
|
|
func RepoRef() macaron.Handler {
|
2017-10-30 03:04:25 +01:00
|
|
|
// since no ref name is explicitly specified, ok to just use branch
|
|
|
|
return RepoRefByType(RepoRefBranch)
|
|
|
|
}
|
|
|
|
|
|
|
|
func getRefNameFromPath(ctx *Context, path string, isExist func(string) bool) string {
|
|
|
|
refName := ""
|
|
|
|
parts := strings.Split(path, "/")
|
|
|
|
for i, part := range parts {
|
|
|
|
refName = strings.TrimPrefix(refName+"/"+part, "/")
|
|
|
|
if isExist(refName) {
|
|
|
|
ctx.Repo.TreePath = strings.Join(parts[i+1:], "/")
|
|
|
|
return refName
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func getRefName(ctx *Context, pathType RepoRefType) string {
|
|
|
|
path := ctx.Params("*")
|
|
|
|
switch pathType {
|
2017-11-04 00:23:59 +01:00
|
|
|
case RepoRefLegacy, RepoRefAny:
|
2017-10-30 03:04:25 +01:00
|
|
|
if refName := getRefName(ctx, RepoRefBranch); len(refName) > 0 {
|
|
|
|
return refName
|
|
|
|
}
|
|
|
|
if refName := getRefName(ctx, RepoRefTag); len(refName) > 0 {
|
|
|
|
return refName
|
|
|
|
}
|
2017-11-04 18:26:38 +01:00
|
|
|
if refName := getRefName(ctx, RepoRefCommit); len(refName) > 0 {
|
|
|
|
return refName
|
|
|
|
}
|
|
|
|
ctx.Repo.TreePath = path
|
|
|
|
return ctx.Repo.Repository.DefaultBranch
|
2017-10-30 03:04:25 +01:00
|
|
|
case RepoRefBranch:
|
|
|
|
return getRefNameFromPath(ctx, path, ctx.Repo.GitRepo.IsBranchExist)
|
|
|
|
case RepoRefTag:
|
|
|
|
return getRefNameFromPath(ctx, path, ctx.Repo.GitRepo.IsTagExist)
|
|
|
|
case RepoRefCommit:
|
|
|
|
parts := strings.Split(path, "/")
|
|
|
|
if len(parts) > 0 && len(parts[0]) == 40 {
|
|
|
|
ctx.Repo.TreePath = strings.Join(parts[1:], "/")
|
|
|
|
return parts[0]
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
log.Error(4, "Unrecognized path type: %v", path)
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// RepoRefByType handles repository reference name for a specific type
|
|
|
|
// of repository reference
|
|
|
|
func RepoRefByType(refType RepoRefType) macaron.Handler {
|
2015-12-04 23:20:23 +01:00
|
|
|
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)
|
2016-08-30 11:08:38 +02:00
|
|
|
ctx.Repo.GitRepo, err = git.OpenRepository(repoPath)
|
2015-12-04 23:20:23 +01:00
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("RepoRef Invalid repo "+repoPath, err)
|
2015-12-04 23:20:23 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get default branch.
|
|
|
|
if len(ctx.Params("*")) == 0 {
|
|
|
|
refName = ctx.Repo.Repository.DefaultBranch
|
2017-10-30 03:04:25 +01:00
|
|
|
ctx.Repo.BranchName = refName
|
2015-12-04 23:20:23 +01:00
|
|
|
if !ctx.Repo.GitRepo.IsBranchExist(refName) {
|
|
|
|
brs, err := ctx.Repo.GitRepo.GetBranches()
|
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetBranches", err)
|
2015-12-04 23:20:23 +01:00
|
|
|
return
|
2017-05-29 04:25:23 +02:00
|
|
|
} else if len(brs) == 0 {
|
|
|
|
err = fmt.Errorf("No branches in non-bare repository %s",
|
|
|
|
ctx.Repo.GitRepo.Path)
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetBranches", err)
|
2017-07-04 03:29:57 +02:00
|
|
|
return
|
2015-12-04 23:20:23 +01:00
|
|
|
}
|
|
|
|
refName = brs[0]
|
|
|
|
}
|
2015-12-10 02:46:05 +01:00
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(refName)
|
2015-12-04 23:20:23 +01:00
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetBranchCommit", err)
|
2015-12-04 23:20:23 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
|
2015-12-09 06:32:53 +01:00
|
|
|
ctx.Repo.IsViewBranch = true
|
2015-12-04 23:20:23 +01:00
|
|
|
|
|
|
|
} else {
|
2017-10-30 03:04:25 +01:00
|
|
|
refName = getRefName(ctx, refType)
|
|
|
|
ctx.Repo.BranchName = refName
|
2015-12-04 23:20:23 +01:00
|
|
|
if ctx.Repo.GitRepo.IsBranchExist(refName) {
|
2015-12-09 06:32:53 +01:00
|
|
|
ctx.Repo.IsViewBranch = true
|
2015-12-04 23:20:23 +01:00
|
|
|
|
2015-12-10 02:46:05 +01:00
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(refName)
|
2015-12-04 23:20:23 +01:00
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetBranchCommit", err)
|
2015-12-04 23:20:23 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
|
|
|
|
|
|
|
|
} else if ctx.Repo.GitRepo.IsTagExist(refName) {
|
2015-12-09 06:32:53 +01:00
|
|
|
ctx.Repo.IsViewTag = true
|
2015-12-10 02:46:05 +01:00
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetTagCommit(refName)
|
2015-12-04 23:20:23 +01:00
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetTagCommit", err)
|
2015-12-04 23:20:23 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
|
|
|
|
} else if len(refName) == 40 {
|
2015-12-09 06:32:53 +01:00
|
|
|
ctx.Repo.IsViewCommit = true
|
2015-12-04 23:20:23 +01:00
|
|
|
ctx.Repo.CommitID = refName
|
|
|
|
|
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetCommit(refName)
|
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("GetCommit", nil)
|
2015-12-04 23:20:23 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("RepoRef invalid repo", fmt.Errorf("branch or tag not exist: %s", refName))
|
2015-12-04 23:20:23 +01:00
|
|
|
return
|
|
|
|
}
|
2017-10-30 03:04:25 +01:00
|
|
|
|
|
|
|
if refType == RepoRefLegacy {
|
|
|
|
// redirect from old URL scheme to new URL scheme
|
2017-12-07 02:09:02 +01:00
|
|
|
ctx.Redirect(path.Join(
|
|
|
|
setting.AppSubURL,
|
|
|
|
strings.TrimSuffix(ctx.Req.URL.String(), ctx.Params("*")),
|
|
|
|
ctx.Repo.BranchNameSubURL(),
|
|
|
|
ctx.Repo.TreePath))
|
2017-10-30 03:04:25 +01:00
|
|
|
return
|
|
|
|
}
|
2015-12-04 23:20:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["BranchName"] = ctx.Repo.BranchName
|
2017-10-30 03:04:25 +01:00
|
|
|
ctx.Data["BranchNameSubURL"] = ctx.Repo.BranchNameSubURL()
|
2015-12-04 23:20:23 +01:00
|
|
|
ctx.Data["CommitID"] = ctx.Repo.CommitID
|
2016-08-30 11:08:38 +02:00
|
|
|
ctx.Data["TreePath"] = ctx.Repo.TreePath
|
2015-12-09 06:32:53 +01:00
|
|
|
ctx.Data["IsViewBranch"] = ctx.Repo.IsViewBranch
|
|
|
|
ctx.Data["IsViewTag"] = ctx.Repo.IsViewTag
|
|
|
|
ctx.Data["IsViewCommit"] = ctx.Repo.IsViewCommit
|
2017-10-15 21:59:24 +02:00
|
|
|
ctx.Data["CanCreateBranch"] = ctx.Repo.CanCreateBranch()
|
2015-12-04 23:20:23 +01:00
|
|
|
|
2017-10-26 03:37:33 +02:00
|
|
|
ctx.Repo.CommitsCount, err = ctx.Repo.GetCommitsCount()
|
2015-12-04 23:20:23 +01:00
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetCommitsCount", err)
|
2015-12-04 23:20:23 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["CommitsCount"] = ctx.Repo.CommitsCount
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-25 07:51:01 +01:00
|
|
|
// RequireRepoAdmin returns a macaron middleware for requiring repository admin permission
|
2015-08-03 11:42:09 +02:00
|
|
|
func RequireRepoAdmin() macaron.Handler {
|
2014-05-06 01:58:13 +02:00
|
|
|
return func(ctx *Context) {
|
2016-03-06 02:45:23 +01:00
|
|
|
if !ctx.IsSigned || (!ctx.Repo.IsAdmin() && !ctx.User.IsAdmin) {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound(ctx.Req.RequestURI, nil)
|
2015-11-27 07:50:38 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-25 07:51:01 +01:00
|
|
|
// RequireRepoWriter returns a macaron middleware for requiring repository write permission
|
2016-03-06 02:45:23 +01:00
|
|
|
func RequireRepoWriter() macaron.Handler {
|
2015-11-27 07:50:38 +01:00
|
|
|
return func(ctx *Context) {
|
2016-03-06 02:45:23 +01:00
|
|
|
if !ctx.IsSigned || (!ctx.Repo.IsWriter() && !ctx.User.IsAdmin) {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound(ctx.Req.RequestURI, nil)
|
2014-05-06 01:58:13 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-10-06 23:50:00 +02:00
|
|
|
|
2017-05-18 16:54:24 +02:00
|
|
|
// LoadRepoUnits loads repsitory's units, it should be called after repository and user loaded
|
|
|
|
func LoadRepoUnits() macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
2017-05-19 02:59:26 +02:00
|
|
|
var isAdmin bool
|
|
|
|
if ctx.User != nil && ctx.User.IsAdmin {
|
|
|
|
isAdmin = true
|
|
|
|
}
|
|
|
|
|
2017-05-18 16:54:24 +02:00
|
|
|
var userID int64
|
|
|
|
if ctx.User != nil {
|
|
|
|
userID = ctx.User.ID
|
|
|
|
}
|
2017-05-19 02:59:26 +02:00
|
|
|
err := ctx.Repo.Repository.LoadUnitsByUserID(userID, isAdmin)
|
2017-05-18 16:54:24 +02:00
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("LoadUnitsByUserID", err)
|
2017-05-18 16:54:24 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-15 01:17:39 +02:00
|
|
|
// CheckUnit will check whether unit type is enabled
|
2017-05-18 16:54:24 +02:00
|
|
|
func CheckUnit(unitType models.UnitType) macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
2017-08-02 10:46:54 +02:00
|
|
|
if !ctx.Repo.Repository.UnitEnabled(unitType) {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("CheckUnit", fmt.Errorf("%s: %v", ctx.Tr("units.error.unit_not_allowed"), unitType))
|
2017-05-18 16:54:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-15 01:17:39 +02:00
|
|
|
// CheckAnyUnit will check whether any of the unit types are enabled
|
|
|
|
func CheckAnyUnit(unitTypes ...models.UnitType) macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
|
|
|
if !ctx.Repo.Repository.AnyUnitEnabled(unitTypes...) {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("CheckAnyUnit", fmt.Errorf("%s: %v", ctx.Tr("units.error.unit_not_allowed"), unitTypes))
|
2017-10-15 01:17:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-07 02:22:48 +01:00
|
|
|
// GitHookService checks if repository Git hooks service has been enabled.
|
2014-10-06 23:50:00 +02:00
|
|
|
func GitHookService() macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
2015-11-04 00:40:52 +01:00
|
|
|
if !ctx.User.CanEditGitHook() {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("GitHookService", nil)
|
2014-10-06 23:50:00 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-04 16:53:46 +01:00
|
|
|
|
|
|
|
// UnitTypes returns a macaron middleware to set unit types to context variables.
|
|
|
|
func UnitTypes() macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
|
|
|
ctx.Data["UnitTypeCode"] = models.UnitTypeCode
|
|
|
|
ctx.Data["UnitTypeIssues"] = models.UnitTypeIssues
|
|
|
|
ctx.Data["UnitTypePullRequests"] = models.UnitTypePullRequests
|
|
|
|
ctx.Data["UnitTypeReleases"] = models.UnitTypeReleases
|
|
|
|
ctx.Data["UnitTypeWiki"] = models.UnitTypeWiki
|
|
|
|
ctx.Data["UnitTypeExternalWiki"] = models.UnitTypeExternalWiki
|
|
|
|
ctx.Data["UnitTypeExternalTracker"] = models.UnitTypeExternalTracker
|
|
|
|
}
|
|
|
|
}
|