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-03-30 21:41:28 +05:30
|
|
|
"github.com/go-martini/martini"
|
2014-03-15 21:33:23 +05:30
|
|
|
|
2014-03-30 07:39:59 +05:30
|
|
|
"github.com/gogits/git"
|
|
|
|
|
2014-03-15 21:33:23 +05:30
|
|
|
"github.com/gogits/gogs/models"
|
2014-03-20 09:42:33 +05:30
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-04-11 09:31:38 +05:30
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-03-15 21:33:23 +05:30
|
|
|
)
|
|
|
|
|
2014-03-30 11:00:17 +05:30
|
|
|
func RepoAssignment(redirect bool, args ...bool) martini.Handler {
|
2014-03-15 21:33:23 +05:30
|
|
|
return func(ctx *Context, params martini.Params) {
|
2014-05-08 21:54:11 +05:30
|
|
|
log.Trace(fmt.Sprint(args))
|
2014-03-30 11:00:17 +05:30
|
|
|
// valid brachname
|
|
|
|
var validBranch bool
|
|
|
|
// display bare quick start if it is a bare repo
|
|
|
|
var displayBare bool
|
|
|
|
|
|
|
|
if len(args) >= 1 {
|
2014-04-27 10:04:48 +05:30
|
|
|
// Note: argument has wrong value in Go1.3 martini.
|
|
|
|
// validBranch = args[0]
|
|
|
|
validBranch = true
|
2014-03-30 11:00:17 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if len(args) >= 2 {
|
2014-04-27 10:04:48 +05:30
|
|
|
// displayBare = args[1]
|
|
|
|
displayBare = true
|
2014-03-30 11:00:17 +05:30
|
|
|
}
|
2014-03-15 21:33:23 +05:30
|
|
|
|
|
|
|
var (
|
2014-05-08 21:54:11 +05:30
|
|
|
user *models.User
|
|
|
|
err error
|
|
|
|
isTrueOwner bool
|
2014-03-15 21:33:23 +05:30
|
|
|
)
|
|
|
|
|
2014-03-30 07:39:59 +05:30
|
|
|
userName := params["username"]
|
|
|
|
repoName := params["reponame"]
|
2014-04-16 03:13:25 +05:30
|
|
|
refName := params["branchname"]
|
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-05-09 04:47:43 +05:30
|
|
|
ctx.Repo.IsOwner, err = models.HasAccess(ctx.User.Name, userName+"/"+repoName, models.AU_WRITABLE)
|
2014-05-08 21:54:11 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "RepoAssignment(HasAccess)", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
isTrueOwner = ctx.User.LowerName == strings.ToLower(userName)
|
|
|
|
}
|
2014-03-15 21:33:23 +05:30
|
|
|
|
2014-05-08 21:54:11 +05:30
|
|
|
if !isTrueOwner {
|
|
|
|
user, 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-05-08 21:54:11 +05:30
|
|
|
ctx.Handle(404, "RepoAssignment(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-05-08 21:54:11 +05:30
|
|
|
ctx.Handle(500, "RepoAssignment(GetUserByName)", err)
|
2014-03-15 21:33:23 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
user = ctx.User
|
|
|
|
}
|
|
|
|
|
|
|
|
if user == nil {
|
|
|
|
if redirect {
|
2014-03-19 19:27:55 +05:30
|
|
|
ctx.Redirect("/")
|
2014-03-15 21:33:23 +05:30
|
|
|
return
|
|
|
|
}
|
2014-04-30 13:14:28 +05:30
|
|
|
ctx.Handle(403, "RepoAssignment", errors.New("invliad user account for single repository"))
|
2014-03-15 21:33:23 +05:30
|
|
|
return
|
|
|
|
}
|
2014-04-12 07:17:39 +05:30
|
|
|
ctx.Repo.Owner = user
|
2014-03-15 21:33:23 +05:30
|
|
|
|
|
|
|
// get repository
|
2014-03-30 07:39:59 +05:30
|
|
|
repo, err := models.GetRepositoryByName(user.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 {
|
|
|
|
ctx.Handle(404, "RepoAssignment", 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-04-11 07:33:31 +05:30
|
|
|
ctx.Handle(500, "RepoAssignment", err)
|
2014-03-30 07:39:59 +05:30
|
|
|
return
|
|
|
|
}
|
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 {
|
|
|
|
ctx.Handle(404, "RepoAssignment(HasAccess)", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
hasAccess, err := models.HasAccess(ctx.User.Name, ctx.Repo.Owner.Name+"/"+repo.Name, models.AU_READABLE)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "RepoAssignment(HasAccess)", err)
|
|
|
|
return
|
|
|
|
} else if !hasAccess {
|
|
|
|
ctx.Handle(404, "RepoAssignment(HasAccess)", nil)
|
|
|
|
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 {
|
|
|
|
ctx.Handle(500, "RepoAssignment(GetMirror)", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["MirrorInterval"] = ctx.Repo.Mirror.Interval
|
|
|
|
}
|
|
|
|
|
2014-04-02 22:13:31 +05:30
|
|
|
repo.NumOpenIssues = repo.NumIssues - repo.NumClosedIssues
|
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-03-30 09:08:41 +05:30
|
|
|
ctx.Repo.RepoLink = "/" + user.Name + "/" + repo.Name
|
|
|
|
|
2014-04-14 06:30:12 +05:30
|
|
|
tags, err := ctx.Repo.GitRepo.GetTags()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "RepoAssignment(GetTags))", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Repo.Repository.NumTags = len(tags)
|
|
|
|
|
2014-03-30 09:08:41 +05:30
|
|
|
ctx.Data["Title"] = user.Name + "/" + repo.Name
|
|
|
|
ctx.Data["Repository"] = repo
|
|
|
|
ctx.Data["Owner"] = user
|
|
|
|
ctx.Data["RepoLink"] = ctx.Repo.RepoLink
|
|
|
|
ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner
|
2014-03-30 11:00:17 +05:30
|
|
|
ctx.Data["BranchName"] = ""
|
2014-03-30 09:08:41 +05:30
|
|
|
|
2014-05-11 20:48:10 +05:30
|
|
|
if base.SshPort != 22 {
|
2014-05-11 21:47:10 +05:30
|
|
|
ctx.Repo.CloneLink.SSH = fmt.Sprintf("ssh://%s@%s/%s/%s.git", base.RunUser, base.Domain, user.LowerName, repo.LowerName)
|
|
|
|
} else {
|
|
|
|
ctx.Repo.CloneLink.SSH = fmt.Sprintf("%s@%s:%s/%s.git", base.RunUser, base.Domain, user.LowerName, repo.LowerName)
|
2014-05-11 20:48:10 +05:30
|
|
|
}
|
2014-03-30 09:08:41 +05:30
|
|
|
ctx.Repo.CloneLink.HTTPS = fmt.Sprintf("%s%s/%s.git", base.AppUrl, user.LowerName, repo.LowerName)
|
|
|
|
ctx.Data["CloneLink"] = ctx.Repo.CloneLink
|
|
|
|
|
2014-04-13 13:38:25 +05:30
|
|
|
if ctx.Repo.Repository.IsGoget {
|
2014-04-13 14:32:11 +05:30
|
|
|
ctx.Data["GoGetLink"] = fmt.Sprintf("%s%s/%s", base.AppUrl, user.LowerName, repo.LowerName)
|
|
|
|
ctx.Data["GoGetImport"] = fmt.Sprintf("%s/%s/%s", base.Domain, user.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) {
|
|
|
|
ctx.Repo.IsBranch = true
|
|
|
|
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.GetCommitOfTag(refName)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(404, "RepoAssignment invalid tag", nil)
|
|
|
|
return
|
|
|
|
}
|
2014-04-13 07:05:36 +05:30
|
|
|
ctx.Repo.CommitId = ctx.Repo.Commit.Id.String()
|
2014-03-30 11:00:17 +05:30
|
|
|
|
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 {
|
|
|
|
ctx.Handle(404, "RepoAssignment invalid repo", nil)
|
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 {
|
|
|
|
ctx.Handle(500, "RepoAssignment(GetBranches))", err)
|
|
|
|
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-04-20 09:07:04 +05:30
|
|
|
log.Debug("Repo.Commit: %v", ctx.Repo.Commit)
|
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-03-30 11:00:17 +05:30
|
|
|
ctx.HTML(200, "repo/single_bare")
|
|
|
|
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
|
|
|
|
|
|
|
ctx.Data["BranchName"] = ctx.Repo.BranchName
|
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 {
|
|
|
|
log.Error("RepoAssignment(GetBranches): %v", err)
|
|
|
|
}
|
|
|
|
ctx.Data["Branches"] = brs
|
2014-03-30 07:39:59 +05:30
|
|
|
ctx.Data["CommitId"] = ctx.Repo.CommitId
|
2014-03-20 18:58:12 +05:30
|
|
|
ctx.Data["IsRepositoryWatching"] = ctx.Repo.IsWatching
|
2014-03-15 21:33:23 +05:30
|
|
|
}
|
|
|
|
}
|
2014-05-06 05:28:13 +05:30
|
|
|
|
|
|
|
func RequireOwner() martini.Handler {
|
|
|
|
return func(ctx *Context) {
|
|
|
|
if !ctx.Repo.IsOwner {
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|