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.
|
|
|
|
|
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
2014-03-16 11:58:24 +05:30
|
|
|
"errors"
|
2014-03-20 09:42:33 +05:30
|
|
|
"fmt"
|
2014-05-06 05:28:13 +05:30
|
|
|
"net/url"
|
2014-03-17 14:17:42 +05:30
|
|
|
"strings"
|
2014-03-16 11:58:24 +05:30
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
"github.com/Unknwon/macaron"
|
2014-03-30 07:39:59 +05:30
|
|
|
|
2014-03-15 21:33:23 +05:30
|
|
|
"github.com/gogits/gogs/models"
|
2014-07-26 09:54:27 +05:30
|
|
|
"github.com/gogits/gogs/modules/git"
|
2014-04-11 09:31:38 +05:30
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-05-26 05:41:25 +05:30
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-03-15 21:33:23 +05:30
|
|
|
)
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
func RepoAssignment(redirect bool, args ...bool) macaron.Handler {
|
|
|
|
return func(ctx *Context) {
|
|
|
|
// To valid brach name.
|
2014-03-30 11:00:17 +05:30
|
|
|
var validBranch bool
|
2014-07-26 09:54:27 +05:30
|
|
|
// To display bare quick start if it is a bare repo.
|
2014-03-30 11:00:17 +05:30
|
|
|
var displayBare bool
|
|
|
|
|
|
|
|
if len(args) >= 1 {
|
2014-06-13 03:17:23 +05:30
|
|
|
validBranch = args[0]
|
2014-03-30 11:00:17 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if len(args) >= 2 {
|
2014-06-13 03:17:23 +05:30
|
|
|
displayBare = args[1]
|
2014-03-30 11:00:17 +05:30
|
|
|
}
|
2014-03-15 21:33:23 +05:30
|
|
|
|
|
|
|
var (
|
2014-07-26 09:54:27 +05:30
|
|
|
u *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")
|
|
|
|
refName := ctx.Params(":branchname")
|
|
|
|
if len(refName) == 0 {
|
|
|
|
refName = ctx.Params(":path")
|
|
|
|
}
|
2014-03-30 07:39:59 +05:30
|
|
|
|
2014-05-08 21:54:11 +05:30
|
|
|
// Collaborators who have write access can be seen as owners.
|
|
|
|
if ctx.IsSigned {
|
2014-06-25 10:14:48 +05:30
|
|
|
ctx.Repo.IsOwner, err = models.HasAccess(ctx.User.Name, userName+"/"+repoName, models.WRITABLE)
|
2014-05-08 21:54:11 +05:30
|
|
|
if err != nil {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(500, "HasAccess", err)
|
2014-05-08 21:54:11 +05:30
|
|
|
return
|
|
|
|
}
|
2014-07-04 10:53:11 +05:30
|
|
|
ctx.Repo.IsTrueOwner = ctx.User.LowerName == strings.ToLower(userName)
|
2014-05-08 21:54:11 +05:30
|
|
|
}
|
2014-03-15 21:33:23 +05:30
|
|
|
|
2014-07-04 10:53:11 +05:30
|
|
|
if !ctx.Repo.IsTrueOwner {
|
2014-07-26 09:54:27 +05:30
|
|
|
u, err = models.GetUserByName(userName)
|
2014-03-15 21:33:23 +05:30
|
|
|
if err != nil {
|
2014-04-30 13:14:28 +05:30
|
|
|
if err == models.ErrUserNotExist {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(404, "GetUserByName", err)
|
2014-04-30 13:14:28 +05:30
|
|
|
return
|
|
|
|
} else if redirect {
|
2014-03-19 19:27:55 +05:30
|
|
|
ctx.Redirect("/")
|
2014-03-15 21:33:23 +05:30
|
|
|
return
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(500, "GetUserByName", err)
|
2014-03-15 21:33:23 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
2014-07-26 09:54:27 +05:30
|
|
|
u = ctx.User
|
2014-03-15 21:33:23 +05:30
|
|
|
}
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
if u == nil {
|
2014-03-15 21:33:23 +05:30
|
|
|
if redirect {
|
2014-03-19 19:27:55 +05:30
|
|
|
ctx.Redirect("/")
|
2014-03-15 21:33:23 +05:30
|
|
|
return
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(404, "RepoAssignment", errors.New("invliad user account for single repository"))
|
2014-03-15 21:33:23 +05:30
|
|
|
return
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Repo.Owner = u
|
2014-03-15 21:33:23 +05:30
|
|
|
|
2014-07-04 10:53:11 +05:30
|
|
|
// Organization owner team members are true owners as well.
|
2014-07-07 03:02:36 +05:30
|
|
|
if ctx.IsSigned && ctx.Repo.Owner.IsOrganization() && ctx.Repo.Owner.IsOrgOwner(ctx.User.Id) {
|
2014-07-04 10:53:11 +05:30
|
|
|
ctx.Repo.IsTrueOwner = true
|
|
|
|
}
|
|
|
|
|
2014-03-15 21:33:23 +05:30
|
|
|
// get repository
|
2014-07-26 09:54:27 +05:30
|
|
|
repo, err := models.GetRepositoryByName(u.Id, repoName)
|
2014-03-15 21:33:23 +05:30
|
|
|
if err != nil {
|
2014-03-28 06:45:53 +05:30
|
|
|
if err == models.ErrRepoNotExist {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(404, "GetRepositoryByName", err)
|
2014-04-12 07:17:39 +05:30
|
|
|
return
|
2014-03-28 06:45:53 +05:30
|
|
|
} else if redirect {
|
2014-03-19 19:27:55 +05:30
|
|
|
ctx.Redirect("/")
|
2014-03-15 21:33:23 +05:30
|
|
|
return
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(500, "GetRepositoryByName", err)
|
|
|
|
return
|
|
|
|
} else if err = repo.GetOwner(); err != nil {
|
|
|
|
ctx.Handle(500, "GetOwner", err)
|
2014-03-30 07:39:59 +05:30
|
|
|
return
|
|
|
|
}
|
2014-04-12 07:17:39 +05:30
|
|
|
|
2014-05-14 04:56:13 +05:30
|
|
|
// Check if the mirror repository owner(mirror repository doesn't have access).
|
2014-05-14 18:00:35 +05:30
|
|
|
if ctx.IsSigned && !ctx.Repo.IsOwner && repo.OwnerId == ctx.User.Id {
|
2014-05-14 04:56:13 +05:30
|
|
|
ctx.Repo.IsOwner = true
|
|
|
|
}
|
|
|
|
|
2014-04-12 07:17:39 +05:30
|
|
|
// Check access.
|
2014-05-09 04:47:43 +05:30
|
|
|
if repo.IsPrivate && !ctx.Repo.IsOwner {
|
2014-04-12 07:17:39 +05:30
|
|
|
if ctx.User == nil {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(404, "HasAccess", nil)
|
2014-04-12 07:17:39 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-06-25 10:14:48 +05:30
|
|
|
hasAccess, err := models.HasAccess(ctx.User.Name, ctx.Repo.Owner.Name+"/"+repo.Name, models.READABLE)
|
2014-04-12 07:17:39 +05:30
|
|
|
if err != nil {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(500, "HasAccess", err)
|
2014-04-12 07:17:39 +05:30
|
|
|
return
|
|
|
|
} else if !hasAccess {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(404, "HasAccess", nil)
|
2014-04-12 07:17:39 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Repo.HasAccess = true
|
|
|
|
ctx.Data["HasAccess"] = true
|
|
|
|
|
2014-04-13 08:00:00 +05:30
|
|
|
if repo.IsMirror {
|
|
|
|
ctx.Repo.Mirror, err = models.GetMirror(repo.Id)
|
|
|
|
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
|
|
|
|
}
|
|
|
|
ctx.Data["MirrorInterval"] = ctx.Repo.Mirror.Interval
|
|
|
|
}
|
|
|
|
|
2014-04-02 22:13:31 +05:30
|
|
|
repo.NumOpenIssues = repo.NumIssues - repo.NumClosedIssues
|
2014-05-12 23:36:42 +05:30
|
|
|
repo.NumOpenMilestones = repo.NumMilestones - repo.NumClosedMilestones
|
2014-03-30 07:39:59 +05:30
|
|
|
ctx.Repo.Repository = repo
|
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
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Repo.RepoLink = "/" + u.Name + "/" + repo.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
|
|
|
|
}
|
|
|
|
ctx.Repo.Repository.NumTags = len(tags)
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["Title"] = u.Name + "/" + repo.Name
|
2014-03-30 09:08:41 +05:30
|
|
|
ctx.Data["Repository"] = repo
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["Owner"] = ctx.Repo.Repository.Owner
|
2014-03-30 09:08:41 +05:30
|
|
|
ctx.Data["RepoLink"] = ctx.Repo.RepoLink
|
|
|
|
ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner
|
2014-07-04 10:53:11 +05:30
|
|
|
ctx.Data["IsRepositoryTrueOwner"] = ctx.Repo.IsTrueOwner
|
2014-03-30 09:08:41 +05:30
|
|
|
|
2014-05-26 05:41:25 +05:30
|
|
|
if setting.SshPort != 22 {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Repo.CloneLink.SSH = fmt.Sprintf("ssh://%s@%s/%s/%s.git", setting.RunUser, setting.Domain, u.LowerName, repo.LowerName)
|
2014-05-11 21:47:10 +05:30
|
|
|
} else {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Repo.CloneLink.SSH = fmt.Sprintf("%s@%s:%s/%s.git", setting.RunUser, setting.Domain, u.LowerName, repo.LowerName)
|
2014-05-11 20:48:10 +05:30
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Repo.CloneLink.HTTPS = fmt.Sprintf("%s%s/%s.git", setting.AppUrl, u.LowerName, repo.LowerName)
|
2014-03-30 09:08:41 +05:30
|
|
|
ctx.Data["CloneLink"] = ctx.Repo.CloneLink
|
|
|
|
|
2014-04-13 13:38:25 +05:30
|
|
|
if ctx.Repo.Repository.IsGoget {
|
2014-07-26 09:54:27 +05:30
|
|
|
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 13:38:25 +05:30
|
|
|
}
|
|
|
|
|
2014-03-30 11:00:17 +05:30
|
|
|
// when repo is bare, not valid branch
|
|
|
|
if !ctx.Repo.Repository.IsBare && validBranch {
|
|
|
|
detect:
|
2014-04-16 03:13:25 +05:30
|
|
|
if len(refName) > 0 {
|
|
|
|
if gitRepo.IsBranchExist(refName) {
|
2014-03-30 11:00:17 +05:30
|
|
|
ctx.Repo.IsBranch = true
|
2014-04-16 03:13:25 +05:30
|
|
|
ctx.Repo.BranchName = refName
|
2014-03-30 11:00:17 +05:30
|
|
|
|
2014-04-16 03:13:25 +05:30
|
|
|
ctx.Repo.Commit, err = gitRepo.GetCommitOfBranch(refName)
|
2014-03-30 11:00:17 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(404, "RepoAssignment invalid branch", nil)
|
|
|
|
return
|
|
|
|
}
|
2014-04-16 03:13:25 +05:30
|
|
|
ctx.Repo.CommitId = ctx.Repo.Commit.Id.String()
|
|
|
|
|
|
|
|
} else if gitRepo.IsTagExist(refName) {
|
2014-06-28 21:26:41 +05:30
|
|
|
ctx.Repo.IsTag = true
|
2014-04-16 03:13:25 +05:30
|
|
|
ctx.Repo.BranchName = refName
|
2014-03-30 11:00:17 +05:30
|
|
|
|
2014-06-28 21:26:41 +05:30
|
|
|
ctx.Repo.Tag, err = gitRepo.GetTag(refName)
|
2014-04-16 03:13:25 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(404, "RepoAssignment invalid tag", nil)
|
|
|
|
return
|
|
|
|
}
|
2014-06-28 21:26:41 +05:30
|
|
|
ctx.Repo.Commit, _ = ctx.Repo.Tag.Commit()
|
2014-04-13 07:05:36 +05:30
|
|
|
ctx.Repo.CommitId = ctx.Repo.Commit.Id.String()
|
2014-04-16 03:13:25 +05:30
|
|
|
} else if len(refName) == 40 {
|
2014-03-30 11:00:17 +05:30
|
|
|
ctx.Repo.IsCommit = true
|
2014-04-16 03:13:25 +05:30
|
|
|
ctx.Repo.CommitId = refName
|
|
|
|
ctx.Repo.BranchName = refName
|
2014-03-30 11:00:17 +05:30
|
|
|
|
2014-04-16 03:13:25 +05:30
|
|
|
ctx.Repo.Commit, err = gitRepo.GetCommit(refName)
|
2014-03-30 11:00:17 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(404, "RepoAssignment invalid commit", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(404, "RepoAssignment invalid repo", errors.New("branch or tag not exist"))
|
2014-03-30 07:39:59 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2014-04-16 03:13:25 +05:30
|
|
|
if len(refName) == 0 {
|
2014-05-01 21:33:10 +05:30
|
|
|
if gitRepo.IsBranchExist(ctx.Repo.Repository.DefaultBranch) {
|
|
|
|
refName = ctx.Repo.Repository.DefaultBranch
|
|
|
|
} else {
|
|
|
|
brs, err := gitRepo.GetBranches()
|
|
|
|
if err != nil {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(500, "GetBranches", err)
|
2014-05-01 21:33:10 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
refName = brs[0]
|
|
|
|
}
|
2014-04-11 07:33:31 +05:30
|
|
|
}
|
2014-03-30 11:00:17 +05:30
|
|
|
goto detect
|
2014-03-30 07:39:59 +05:30
|
|
|
}
|
2014-03-30 14:39:19 +05:30
|
|
|
|
|
|
|
ctx.Data["IsBranch"] = ctx.Repo.IsBranch
|
|
|
|
ctx.Data["IsCommit"] = ctx.Repo.IsCommit
|
2014-07-26 09:54:27 +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
|
2014-03-30 11:00:17 +05:30
|
|
|
}
|
2014-03-30 07:39:59 +05:30
|
|
|
|
2014-04-20 09:07:04 +05:30
|
|
|
log.Debug("displayBare: %v; IsBare: %v", displayBare, ctx.Repo.Repository.IsBare)
|
|
|
|
|
2014-03-30 11:00:17 +05:30
|
|
|
// repo is bare and display enable
|
|
|
|
if displayBare && ctx.Repo.Repository.IsBare {
|
2014-04-20 07:43:22 +05:30
|
|
|
log.Debug("Bare repository: %s", ctx.Repo.RepoLink)
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.HTML(200, "repo/bare")
|
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-03-30 07:39:59 +05:30
|
|
|
if ctx.IsSigned {
|
2014-03-20 11:55:21 +05:30
|
|
|
ctx.Repo.IsWatching = models.IsWatching(ctx.User.Id, repo.Id)
|
|
|
|
}
|
2014-03-30 07:39:59 +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-07-26 09:54:27 +05:30
|
|
|
log.Error(4, "GetBranches: %v", err)
|
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.
|
|
|
|
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 07:39:59 +05:30
|
|
|
ctx.Data["CommitId"] = ctx.Repo.CommitId
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["IsWatchingRepo"] = ctx.Repo.IsWatching
|
2014-03-15 21:33:23 +05:30
|
|
|
}
|
|
|
|
}
|
2014-05-06 05:28:13 +05:30
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
func RequireTrueOwner() macaron.Handler {
|
2014-05-06 05:28:13 +05:30
|
|
|
return func(ctx *Context) {
|
2014-07-04 10:53:11 +05:30
|
|
|
if !ctx.Repo.IsTrueOwner {
|
2014-05-06 05:28:13 +05:30
|
|
|
if !ctx.IsSigned {
|
|
|
|
ctx.SetCookie("redirect_to", "/"+url.QueryEscape(ctx.Req.RequestURI))
|
|
|
|
ctx.Redirect("/user/login")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Handle(404, ctx.Req.RequestURI, nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|