2014-03-15 21:33:23 +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.
|
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
package context
|
2014-03-15 21:33:23 +05:30
|
|
|
|
|
|
|
import (
|
2014-03-20 09:42:33 +05:30
|
|
|
"fmt"
|
2016-08-12 05:37:09 +05:30
|
|
|
"io/ioutil"
|
2015-10-31 21:34:04 +05:30
|
|
|
"path"
|
2014-03-17 14:17:42 +05:30
|
|
|
"strings"
|
2014-03-16 11:58:24 +05:30
|
|
|
|
2016-11-11 17:41:45 +05:30
|
|
|
"code.gitea.io/git"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2016-11-11 17:41:45 +05:30
|
|
|
"github.com/Unknwon/com"
|
2016-11-05 22:26:35 +05:30
|
|
|
editorconfig "gopkg.in/editorconfig/editorconfig-core-go.v1"
|
|
|
|
macaron "gopkg.in/macaron.v1"
|
2014-03-15 21:33:23 +05:30
|
|
|
)
|
|
|
|
|
2016-11-25 12:21:01 +05:30
|
|
|
// PullRequest contains informations to make a pull request
|
2016-03-14 03:07:44 +05:30
|
|
|
type PullRequest struct {
|
|
|
|
BaseRepo *models.Repository
|
|
|
|
Allowed bool
|
|
|
|
SameRepo bool
|
|
|
|
HeadInfo string // [<user>:]<branch>
|
|
|
|
}
|
|
|
|
|
2017-03-15 06:22:01 +05:30
|
|
|
// Repository contains information to operate a repository
|
2016-03-14 03:07:44 +05:30
|
|
|
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 10:05:03 +05:30
|
|
|
TreePath string
|
2016-03-14 03:07:44 +05:30
|
|
|
CommitID string
|
|
|
|
RepoLink string
|
|
|
|
CloneLink models.CloneLink
|
|
|
|
CommitsCount int64
|
|
|
|
Mirror *models.Mirror
|
|
|
|
|
2016-08-30 14:38:38 +05:30
|
|
|
PullRequest *PullRequest
|
2016-03-14 03:07:44 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// IsOwner returns true if current user is the owner of repository.
|
|
|
|
func (r *Repository) IsOwner() bool {
|
2016-11-07 21:50:37 +05:30
|
|
|
return r.AccessMode >= models.AccessModeOwner
|
2016-03-14 03:07:44 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// IsAdmin returns true if current user has admin or higher access of repository.
|
|
|
|
func (r *Repository) IsAdmin() bool {
|
2016-11-07 21:50:37 +05:30
|
|
|
return r.AccessMode >= models.AccessModeAdmin
|
2016-03-14 03:07:44 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// IsWriter returns true if current user has write or higher access of repository.
|
|
|
|
func (r *Repository) IsWriter() bool {
|
2016-11-07 21:50:37 +05:30
|
|
|
return r.AccessMode >= models.AccessModeWrite
|
2016-03-14 03:07:44 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// HasAccess returns true if the current user has at least read access for this repository
|
|
|
|
func (r *Repository) HasAccess() bool {
|
2016-11-07 21:50:37 +05:30
|
|
|
return r.AccessMode >= models.AccessModeRead
|
2016-03-14 03:07:44 +05:30
|
|
|
}
|
|
|
|
|
2016-08-30 14:38:38 +05:30
|
|
|
// 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-05-02 06:19:55 +05:30
|
|
|
// CanCommitToBranch returns true if repository is editable and user has proper access level
|
|
|
|
// and branch is not protected
|
|
|
|
func (r *Repository) CanCommitToBranch() (bool, error) {
|
|
|
|
protectedBranch, err := r.Repository.IsProtectedBranch(r.BranchName)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return r.CanEnableEditor() && !protectedBranch, nil
|
|
|
|
}
|
|
|
|
|
2016-08-12 05:37:09 +05:30
|
|
|
// 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
|
|
|
|
}
|
|
|
|
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 12:21:01 +05:30
|
|
|
// RetrieveBaseRepo retrieves base repository
|
2015-09-01 21:13:53 +05:30
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-08 02:59:16 +05:30
|
|
|
// composeGoGetImport returns go-get-import meta content.
|
|
|
|
func composeGoGetImport(owner, repo string) string {
|
2016-11-27 15:44:25 +05:30
|
|
|
return path.Join(setting.Domain, setting.AppSubURL, owner, repo)
|
2016-08-08 02:59:16 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// earlyResponseForGoGetMeta responses appropriate go-get meta with status 200
|
|
|
|
// 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.
|
|
|
|
func earlyResponseForGoGetMeta(ctx *Context) {
|
|
|
|
ctx.PlainText(200, []byte(com.Expand(`<meta name="go-import" content="{GoGetImport} git {CloneLink}">`,
|
|
|
|
map[string]string{
|
2017-04-21 08:13:29 +05:30
|
|
|
"GoGetImport": composeGoGetImport(ctx.Params(":username"), strings.TrimSuffix(ctx.Params(":reponame"), ".git")),
|
2016-08-08 02:59:16 +05:30
|
|
|
"CloneLink": models.ComposeHTTPSCloneURL(ctx.Params(":username"), ctx.Params(":reponame")),
|
|
|
|
})))
|
|
|
|
}
|
|
|
|
|
2017-02-05 20:05:03 +05:30
|
|
|
// 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 {
|
|
|
|
ctx.Handle(500, "GetRepositoryByID", err)
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2016-11-25 12:21:01 +05:30
|
|
|
// RepoAssignment returns a macaron to handle repository assignment
|
2017-03-18 16:29:07 +05:30
|
|
|
func RepoAssignment() macaron.Handler {
|
2014-07-26 09:54:27 +05:30
|
|
|
return func(ctx *Context) {
|
2014-03-15 21:33:23 +05:30
|
|
|
var (
|
2015-10-31 21:34:04 +05:30
|
|
|
owner *models.User
|
|
|
|
err error
|
2014-03-15 21:33:23 +05:30
|
|
|
)
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
userName := ctx.Params(":username")
|
|
|
|
repoName := ctx.Params(":reponame")
|
2014-03-30 07:39:59 +05:30
|
|
|
|
2015-02-05 18:59:08 +05:30
|
|
|
// Check if the user is the same as the repository owner
|
2015-02-13 12:44:57 +05:30
|
|
|
if ctx.IsSigned && ctx.User.LowerName == strings.ToLower(userName) {
|
2015-10-31 21:34:04 +05:30
|
|
|
owner = ctx.User
|
2015-02-05 18:59:08 +05:30
|
|
|
} else {
|
2015-10-31 21:34:04 +05:30
|
|
|
owner, err = models.GetUserByName(userName)
|
2014-03-15 21:33:23 +05:30
|
|
|
if err != nil {
|
2015-08-05 08:44:17 +05:30
|
|
|
if models.IsErrUserNotExist(err) {
|
2016-08-08 02:59:16 +05:30
|
|
|
if ctx.Query("go-get") == "1" {
|
|
|
|
earlyResponseForGoGetMeta(ctx)
|
|
|
|
return
|
|
|
|
}
|
2015-02-13 11:28:46 +05:30
|
|
|
ctx.Handle(404, "GetUserByName", err)
|
2014-08-14 11:42:21 +05:30
|
|
|
} else {
|
2015-02-13 11:28:46 +05:30
|
|
|
ctx.Handle(500, "GetUserByName", err)
|
2014-03-15 21:33:23 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2015-10-31 21:34:04 +05:30
|
|
|
ctx.Repo.Owner = owner
|
2016-08-30 14:38:38 +05:30
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name
|
2014-03-15 21:33:23 +05:30
|
|
|
|
2014-08-24 18:39:05 +05:30
|
|
|
// Get repository.
|
2016-07-23 22:38:22 +05:30
|
|
|
repo, err := models.GetRepositoryByName(owner.ID, repoName)
|
2014-03-15 21:33:23 +05:30
|
|
|
if err != nil {
|
2015-03-16 13:34:27 +05:30
|
|
|
if models.IsErrRepoNotExist(err) {
|
2017-02-05 20:05:03 +05:30
|
|
|
redirectRepoID, err := models.LookupRepoRedirect(owner.ID, repoName)
|
|
|
|
if err == nil {
|
|
|
|
RedirectToRepo(ctx, redirectRepoID)
|
|
|
|
} else if models.IsErrRepoRedirectNotExist(err) {
|
|
|
|
if ctx.Query("go-get") == "1" {
|
|
|
|
earlyResponseForGoGetMeta(ctx)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Handle(404, "GetRepositoryByName", err)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "LookupRepoRedirect", err)
|
2016-08-08 02:59:16 +05:30
|
|
|
}
|
2015-02-05 18:59:08 +05:30
|
|
|
} else {
|
2015-02-13 11:28:46 +05:30
|
|
|
ctx.Handle(500, "GetRepositoryByName", err)
|
2014-03-15 21:33:23 +05:30
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
return
|
2014-03-30 07:39:59 +05:30
|
|
|
}
|
2017-02-02 18:03:56 +05:30
|
|
|
repo.Owner = owner
|
2014-04-12 07:17:39 +05:30
|
|
|
|
2015-11-19 06:19:11 +05:30
|
|
|
// Admin has super access.
|
2015-11-19 22:10:00 +05:30
|
|
|
if ctx.IsSigned && ctx.User.IsAdmin {
|
2016-11-07 21:50:37 +05:30
|
|
|
ctx.Repo.AccessMode = models.AccessModeOwner
|
2015-11-19 06:19:11 +05:30
|
|
|
} else {
|
2017-03-15 07:43:54 +05:30
|
|
|
var userID int64
|
|
|
|
if ctx.User != nil {
|
|
|
|
userID = ctx.User.ID
|
|
|
|
}
|
|
|
|
mode, err := models.AccessLevel(userID, repo)
|
2015-11-19 06:19:11 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "AccessLevel", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.AccessMode = mode
|
2014-05-14 04:56:13 +05:30
|
|
|
}
|
|
|
|
|
2014-04-12 07:17:39 +05:30
|
|
|
// Check access.
|
2016-11-07 21:50:37 +05:30
|
|
|
if ctx.Repo.AccessMode == models.AccessModeNone {
|
2016-08-08 02:59:16 +05:30
|
|
|
if ctx.Query("go-get") == "1" {
|
|
|
|
earlyResponseForGoGetMeta(ctx)
|
|
|
|
return
|
|
|
|
}
|
2015-02-13 11:28:46 +05:30
|
|
|
ctx.Handle(404, "no access right", err)
|
2015-02-05 18:59:08 +05:30
|
|
|
return
|
2014-04-12 07:17:39 +05:30
|
|
|
}
|
|
|
|
ctx.Data["HasAccess"] = true
|
|
|
|
|
2014-04-13 08:00:00 +05:30
|
|
|
if repo.IsMirror {
|
2016-08-31 04:48:33 +05:30
|
|
|
ctx.Repo.Mirror, err = models.GetMirrorByRepoID(repo.ID)
|
2014-04-13 08:00:00 +05:30
|
|
|
if err != nil {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(500, "GetMirror", err)
|
2014-04-13 08:00:00 +05:30
|
|
|
return
|
|
|
|
}
|
2016-07-09 10:52:28 +05:30
|
|
|
ctx.Data["MirrorEnablePrune"] = ctx.Repo.Mirror.EnablePrune
|
2014-04-13 08:00:00 +05:30
|
|
|
ctx.Data["MirrorInterval"] = ctx.Repo.Mirror.Interval
|
2015-12-09 06:36:12 +05:30
|
|
|
ctx.Data["Mirror"] = ctx.Repo.Mirror
|
2014-04-13 08:00:00 +05:30
|
|
|
}
|
|
|
|
|
2014-03-30 07:39:59 +05:30
|
|
|
ctx.Repo.Repository = repo
|
2016-08-30 14:38:38 +05:30
|
|
|
ctx.Data["RepoName"] = ctx.Repo.Repository.Name
|
2014-03-30 11:00:17 +05:30
|
|
|
ctx.Data["IsBareRepo"] = ctx.Repo.Repository.IsBare
|
|
|
|
|
2014-03-30 07:39:59 +05:30
|
|
|
gitRepo, err := git.OpenRepository(models.RepoPath(userName, repoName))
|
|
|
|
if err != nil {
|
2014-04-11 07:33:31 +05:30
|
|
|
ctx.Handle(500, "RepoAssignment Invalid repo "+models.RepoPath(userName, repoName), err)
|
2014-03-15 21:33:23 +05:30
|
|
|
return
|
|
|
|
}
|
2014-03-30 07:39:59 +05:30
|
|
|
ctx.Repo.GitRepo = gitRepo
|
2016-07-15 19:23:43 +05:30
|
|
|
ctx.Repo.RepoLink = repo.Link()
|
2014-08-15 15:59:41 +05:30
|
|
|
ctx.Data["RepoLink"] = ctx.Repo.RepoLink
|
2015-09-02 14:39:12 +05:30
|
|
|
ctx.Data["RepoRelPath"] = ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name
|
2014-03-30 09:08:41 +05:30
|
|
|
|
2014-04-14 06:30:12 +05:30
|
|
|
tags, err := ctx.Repo.GitRepo.GetTags()
|
|
|
|
if err != nil {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(500, "GetTags", err)
|
2014-04-14 06:30:12 +05:30
|
|
|
return
|
|
|
|
}
|
2014-09-23 23:17:54 +05:30
|
|
|
ctx.Data["Tags"] = tags
|
2014-04-14 06:30:12 +05:30
|
|
|
ctx.Repo.Repository.NumTags = len(tags)
|
|
|
|
|
2016-03-05 02:13:01 +05:30
|
|
|
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 07:15:23 +05:30
|
|
|
ctx.Data["IsRepositoryWriter"] = ctx.Repo.IsWriter()
|
2016-03-05 02:13:01 +05:30
|
|
|
|
2016-02-28 07:18:39 +05:30
|
|
|
ctx.Data["DisableSSH"] = setting.SSH.Disabled
|
2016-10-04 22:28:14 +05:30
|
|
|
ctx.Data["DisableHTTP"] = setting.Repository.DisableHTTPGit
|
2015-12-01 07:15:55 +05:30
|
|
|
ctx.Data["CloneLink"] = repo.CloneLink()
|
|
|
|
ctx.Data["WikiCloneLink"] = repo.WikiCloneLink()
|
2014-03-30 09:08:41 +05:30
|
|
|
|
2015-10-03 05:28:36 +05:30
|
|
|
if ctx.IsSigned {
|
2016-07-23 22:38:22 +05:30
|
|
|
ctx.Data["IsWatchingRepo"] = models.IsWatching(ctx.User.ID, repo.ID)
|
|
|
|
ctx.Data["IsStaringRepo"] = models.IsStaring(ctx.User.ID, repo.ID)
|
2015-10-03 05:28:36 +05:30
|
|
|
}
|
|
|
|
|
2014-03-30 11:00:17 +05:30
|
|
|
// repo is bare and display enable
|
2014-08-11 08:41:18 +05:30
|
|
|
if ctx.Repo.Repository.IsBare {
|
2017-03-18 16:29:07 +05:30
|
|
|
ctx.Data["BranchName"] = ctx.Repo.Repository.DefaultBranch
|
2014-03-30 11:00:17 +05:30
|
|
|
return
|
2014-03-30 07:39:59 +05:30
|
|
|
}
|
2014-03-15 21:33:23 +05:30
|
|
|
|
2014-06-28 21:26:41 +05:30
|
|
|
ctx.Data["TagName"] = ctx.Repo.TagName
|
2014-04-13 07:05:36 +05:30
|
|
|
brs, err := ctx.Repo.GitRepo.GetBranches()
|
2014-04-11 09:31:38 +05:30
|
|
|
if err != nil {
|
2014-09-23 23:17:54 +05:30
|
|
|
ctx.Handle(500, "GetBranches", err)
|
|
|
|
return
|
2014-04-11 09:31:38 +05:30
|
|
|
}
|
|
|
|
ctx.Data["Branches"] = brs
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["BrancheCount"] = len(brs)
|
2014-07-22 18:16:04 +05:30
|
|
|
|
|
|
|
// If not branch selected, try default one.
|
|
|
|
// If default branch doesn't exists, fall back to some other branch.
|
2015-08-08 20:13:14 +05:30
|
|
|
if len(ctx.Repo.BranchName) == 0 {
|
|
|
|
if len(ctx.Repo.Repository.DefaultBranch) > 0 && gitRepo.IsBranchExist(ctx.Repo.Repository.DefaultBranch) {
|
2014-07-22 18:16:04 +05:30
|
|
|
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 12:54:28 +05:30
|
|
|
ctx.Data["CommitID"] = ctx.Repo.CommitID
|
2015-08-04 00:57:07 +05:30
|
|
|
|
2016-03-07 10:27:46 +05:30
|
|
|
if repo.IsFork {
|
|
|
|
RetrieveBaseRepo(ctx, repo)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-15 06:22:01 +05:30
|
|
|
// People who have push access or have forked repository can propose a new pull request.
|
2016-08-09 01:32:55 +05:30
|
|
|
if ctx.Repo.IsWriter() || (ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID)) {
|
2016-03-07 10:27:46 +05:30
|
|
|
// Pull request is allowed if this is a fork repository
|
|
|
|
// and base repository accepts pull requests.
|
2017-05-30 17:34:12 +05:30
|
|
|
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 10:27:46 +05:30
|
|
|
} 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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["PullRequestCtx"] = ctx.Repo.PullRequest
|
|
|
|
|
2015-10-31 21:34:04 +05:30
|
|
|
if ctx.Query("go-get") == "1" {
|
2016-08-08 02:59:16 +05:30
|
|
|
ctx.Data["GoGetImport"] = composeGoGetImport(owner.Name, repo.Name)
|
2016-11-27 15:44:25 +05:30
|
|
|
prefix := setting.AppURL + path.Join(owner.Name, repo.Name, "src", ctx.Repo.BranchName)
|
2015-10-31 21:34:04 +05:30
|
|
|
ctx.Data["GoDocDirectory"] = prefix + "{/dir}"
|
|
|
|
ctx.Data["GoDocFile"] = prefix + "{/dir}/{file}#L{line}"
|
|
|
|
}
|
2014-03-15 21:33:23 +05:30
|
|
|
}
|
|
|
|
}
|
2014-05-06 05:28:13 +05:30
|
|
|
|
2015-12-05 03:50:23 +05:30
|
|
|
// 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)
|
2016-08-30 14:38:38 +05:30
|
|
|
ctx.Repo.GitRepo, err = git.OpenRepository(repoPath)
|
2015-12-05 03:50:23 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "RepoRef Invalid repo "+repoPath, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
2017-05-29 07:55:23 +05:30
|
|
|
} else if len(brs) == 0 {
|
|
|
|
err = fmt.Errorf("No branches in non-bare repository %s",
|
|
|
|
ctx.Repo.GitRepo.Path)
|
|
|
|
ctx.Handle(500, "GetBranches", err)
|
2015-12-05 03:50:23 +05:30
|
|
|
}
|
|
|
|
refName = brs[0]
|
|
|
|
}
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(refName)
|
2015-12-05 03:50:23 +05:30
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(500, "GetBranchCommit", err)
|
2015-12-05 03:50:23 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
|
2015-12-09 11:02:53 +05:30
|
|
|
ctx.Repo.IsViewBranch = true
|
2015-12-05 03:50:23 +05:30
|
|
|
|
|
|
|
} 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 {
|
2016-08-25 10:05:03 +05:30
|
|
|
ctx.Repo.TreePath = strings.Join(parts[i+1:], "/")
|
2015-12-05 03:50:23 +05:30
|
|
|
}
|
|
|
|
hasMatched = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !hasMatched && len(parts[0]) == 40 {
|
|
|
|
refName = parts[0]
|
2016-08-25 10:05:03 +05:30
|
|
|
ctx.Repo.TreePath = strings.Join(parts[1:], "/")
|
2015-12-05 03:50:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.Repo.GitRepo.IsBranchExist(refName) {
|
2015-12-09 11:02:53 +05:30
|
|
|
ctx.Repo.IsViewBranch = true
|
2015-12-05 03:50:23 +05:30
|
|
|
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(refName)
|
2015-12-05 03:50:23 +05:30
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(500, "GetBranchCommit", err)
|
2015-12-05 03:50:23 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
|
|
|
|
|
|
|
|
} else if ctx.Repo.GitRepo.IsTagExist(refName) {
|
2015-12-09 11:02:53 +05:30
|
|
|
ctx.Repo.IsViewTag = true
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetTagCommit(refName)
|
2015-12-05 03:50:23 +05:30
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(500, "GetTagCommit", err)
|
2015-12-05 03:50:23 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
|
|
|
|
} else if len(refName) == 40 {
|
2015-12-09 11:02:53 +05:30
|
|
|
ctx.Repo.IsViewCommit = true
|
2015-12-05 03:50:23 +05:30
|
|
|
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
|
2016-08-30 14:38:38 +05:30
|
|
|
ctx.Data["TreePath"] = ctx.Repo.TreePath
|
2015-12-09 11:02:53 +05:30
|
|
|
ctx.Data["IsViewBranch"] = ctx.Repo.IsViewBranch
|
|
|
|
ctx.Data["IsViewTag"] = ctx.Repo.IsViewTag
|
|
|
|
ctx.Data["IsViewCommit"] = ctx.Repo.IsViewCommit
|
2015-12-05 03:50:23 +05:30
|
|
|
|
|
|
|
ctx.Repo.CommitsCount, err = ctx.Repo.Commit.CommitsCount()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "CommitsCount", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["CommitsCount"] = ctx.Repo.CommitsCount
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-25 12:21:01 +05:30
|
|
|
// RequireRepoAdmin returns a macaron middleware for requiring repository admin permission
|
2015-08-03 15:12:09 +05:30
|
|
|
func RequireRepoAdmin() macaron.Handler {
|
2014-05-06 05:28:13 +05:30
|
|
|
return func(ctx *Context) {
|
2016-03-06 07:15:23 +05:30
|
|
|
if !ctx.IsSigned || (!ctx.Repo.IsAdmin() && !ctx.User.IsAdmin) {
|
2015-11-27 12:20:38 +05:30
|
|
|
ctx.Handle(404, ctx.Req.RequestURI, nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-25 12:21:01 +05:30
|
|
|
// RequireRepoWriter returns a macaron middleware for requiring repository write permission
|
2016-03-06 07:15:23 +05:30
|
|
|
func RequireRepoWriter() macaron.Handler {
|
2015-11-27 12:20:38 +05:30
|
|
|
return func(ctx *Context) {
|
2016-03-06 07:15:23 +05:30
|
|
|
if !ctx.IsSigned || (!ctx.Repo.IsWriter() && !ctx.User.IsAdmin) {
|
2014-05-06 05:28:13 +05:30
|
|
|
ctx.Handle(404, ctx.Req.RequestURI, nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-10-07 03:20:00 +05:30
|
|
|
|
2017-05-18 20:24:24 +05:30
|
|
|
// 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 06:29:26 +05:30
|
|
|
var isAdmin bool
|
|
|
|
if ctx.User != nil && ctx.User.IsAdmin {
|
|
|
|
isAdmin = true
|
|
|
|
}
|
|
|
|
|
2017-05-18 20:24:24 +05:30
|
|
|
var userID int64
|
|
|
|
if ctx.User != nil {
|
|
|
|
userID = ctx.User.ID
|
|
|
|
}
|
2017-05-19 06:29:26 +05:30
|
|
|
err := ctx.Repo.Repository.LoadUnitsByUserID(userID, isAdmin)
|
2017-05-18 20:24:24 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "LoadUnitsByUserID", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// CheckUnit will check whether
|
|
|
|
func CheckUnit(unitType models.UnitType) macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
|
|
|
var find bool
|
|
|
|
for _, unit := range ctx.Repo.Repository.Units {
|
|
|
|
if unit.Type == unitType {
|
|
|
|
find = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !find {
|
|
|
|
ctx.Handle(404, "CheckUnit", fmt.Errorf("%s: %v", ctx.Tr("units.error.unit_not_allowed"), unitType))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-07 06:52:48 +05:30
|
|
|
// GitHookService checks if repository Git hooks service has been enabled.
|
2014-10-07 03:20:00 +05:30
|
|
|
func GitHookService() macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
2015-11-04 05:10:52 +05:30
|
|
|
if !ctx.User.CanEditGitHook() {
|
2014-10-07 03:20:00 +05:30
|
|
|
ctx.Handle(404, "GitHookService", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-04 21:23:46 +05:30
|
|
|
|
|
|
|
// 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["UnitTypeCommits"] = models.UnitTypeCommits
|
|
|
|
ctx.Data["UnitTypeReleases"] = models.UnitTypeReleases
|
|
|
|
ctx.Data["UnitTypeWiki"] = models.UnitTypeWiki
|
|
|
|
ctx.Data["UnitTypeSettings"] = models.UnitTypeSettings
|
|
|
|
ctx.Data["UnitTypeExternalWiki"] = models.UnitTypeExternalWiki
|
|
|
|
ctx.Data["UnitTypeExternalTracker"] = models.UnitTypeExternalTracker
|
|
|
|
}
|
|
|
|
}
|