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-16 06:28:24 +00:00
|
|
|
"errors"
|
2014-03-20 04:12:33 +00:00
|
|
|
"fmt"
|
2014-03-17 08:47:42 +00:00
|
|
|
"strings"
|
2014-03-16 06:28:24 +00:00
|
|
|
|
2014-03-30 16:11:28 +00:00
|
|
|
"github.com/go-martini/martini"
|
2014-03-15 16:03:23 +00:00
|
|
|
|
2014-03-30 02:09:59 +00:00
|
|
|
"github.com/gogits/git"
|
|
|
|
|
2014-03-15 16:03:23 +00:00
|
|
|
"github.com/gogits/gogs/models"
|
2014-03-20 04:12:33 +00:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-04-11 04:01:38 +00:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-03-15 16:03:23 +00:00
|
|
|
)
|
|
|
|
|
2014-03-30 05:30:17 +00:00
|
|
|
func RepoAssignment(redirect bool, args ...bool) martini.Handler {
|
2014-03-15 16:03:23 +00:00
|
|
|
return func(ctx *Context, params martini.Params) {
|
2014-03-30 05:30:17 +00:00
|
|
|
// valid brachname
|
|
|
|
var validBranch bool
|
|
|
|
// display bare quick start if it is a bare repo
|
|
|
|
var displayBare bool
|
|
|
|
|
|
|
|
if len(args) >= 1 {
|
|
|
|
validBranch = args[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(args) >= 2 {
|
|
|
|
displayBare = args[1]
|
|
|
|
}
|
2014-03-15 16:03:23 +00:00
|
|
|
|
|
|
|
var (
|
|
|
|
user *models.User
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
2014-03-30 02:09:59 +00:00
|
|
|
userName := params["username"]
|
|
|
|
repoName := params["reponame"]
|
|
|
|
branchName := params["branchname"]
|
|
|
|
|
2014-03-15 16:03:23 +00:00
|
|
|
// get repository owner
|
2014-03-30 02:09:59 +00:00
|
|
|
ctx.Repo.IsOwner = ctx.IsSigned && ctx.User.LowerName == strings.ToLower(userName)
|
2014-03-15 16:03:23 +00:00
|
|
|
|
|
|
|
if !ctx.Repo.IsOwner {
|
|
|
|
user, err = models.GetUserByName(params["username"])
|
|
|
|
if err != nil {
|
|
|
|
if redirect {
|
2014-03-19 13:57:55 +00:00
|
|
|
ctx.Redirect("/")
|
2014-03-15 16:03:23 +00:00
|
|
|
return
|
|
|
|
}
|
2014-03-16 06:28:24 +00:00
|
|
|
ctx.Handle(200, "RepoAssignment", err)
|
2014-03-15 16:03:23 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
user = ctx.User
|
|
|
|
}
|
|
|
|
|
|
|
|
if user == nil {
|
|
|
|
if redirect {
|
2014-03-19 13:57:55 +00:00
|
|
|
ctx.Redirect("/")
|
2014-03-15 16:03:23 +00:00
|
|
|
return
|
|
|
|
}
|
2014-03-16 06:28:24 +00:00
|
|
|
ctx.Handle(200, "RepoAssignment", errors.New("invliad user account for single repository"))
|
2014-03-15 16:03:23 +00:00
|
|
|
return
|
|
|
|
}
|
2014-04-12 01:47:39 +00:00
|
|
|
ctx.Repo.Owner = user
|
2014-03-15 16:03:23 +00:00
|
|
|
|
|
|
|
// get repository
|
2014-03-30 02:09:59 +00:00
|
|
|
repo, err := models.GetRepositoryByName(user.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 {
|
|
|
|
ctx.Handle(404, "RepoAssignment", err)
|
2014-04-12 01:47:39 +00:00
|
|
|
return
|
2014-03-28 01:15:53 +00:00
|
|
|
} else if redirect {
|
2014-03-19 13:57:55 +00:00
|
|
|
ctx.Redirect("/")
|
2014-03-15 16:03:23 +00:00
|
|
|
return
|
|
|
|
}
|
2014-04-11 02:03:31 +00:00
|
|
|
ctx.Handle(500, "RepoAssignment", err)
|
2014-03-30 02:09:59 +00:00
|
|
|
return
|
|
|
|
}
|
2014-04-12 01:47:39 +00:00
|
|
|
|
|
|
|
// Check access.
|
|
|
|
if repo.IsPrivate {
|
|
|
|
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-02 16:43:31 +00:00
|
|
|
repo.NumOpenIssues = repo.NumIssues - repo.NumClosedIssues
|
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-03-30 03:38:41 +00:00
|
|
|
ctx.Repo.RepoLink = "/" + user.Name + "/" + repo.Name
|
|
|
|
|
|
|
|
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 05:30:17 +00:00
|
|
|
ctx.Data["BranchName"] = ""
|
2014-03-30 03:38:41 +00:00
|
|
|
|
|
|
|
ctx.Repo.CloneLink.SSH = fmt.Sprintf("%s@%s:%s/%s.git", base.RunUser, base.Domain, user.LowerName, repo.LowerName)
|
|
|
|
ctx.Repo.CloneLink.HTTPS = fmt.Sprintf("%s%s/%s.git", base.AppUrl, user.LowerName, repo.LowerName)
|
|
|
|
ctx.Data["CloneLink"] = ctx.Repo.CloneLink
|
|
|
|
|
2014-03-30 05:30:17 +00:00
|
|
|
// when repo is bare, not valid branch
|
|
|
|
if !ctx.Repo.Repository.IsBare && validBranch {
|
|
|
|
detect:
|
|
|
|
if len(branchName) > 0 {
|
|
|
|
// TODO check tag
|
2014-04-13 01:35:36 +00:00
|
|
|
if gitRepo.IsBranchExist(branchName) {
|
2014-03-30 05:30:17 +00:00
|
|
|
ctx.Repo.IsBranch = true
|
|
|
|
ctx.Repo.BranchName = branchName
|
|
|
|
|
|
|
|
ctx.Repo.Commit, err = gitRepo.GetCommitOfBranch(branchName)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(404, "RepoAssignment invalid branch", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-04-13 01:35:36 +00:00
|
|
|
ctx.Repo.CommitId = ctx.Repo.Commit.Id.String()
|
2014-03-30 05:30:17 +00:00
|
|
|
|
|
|
|
} else if len(branchName) == 40 {
|
|
|
|
ctx.Repo.IsCommit = true
|
|
|
|
ctx.Repo.CommitId = branchName
|
|
|
|
ctx.Repo.BranchName = branchName
|
|
|
|
|
|
|
|
ctx.Repo.Commit, err = gitRepo.GetCommit(branchName)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(404, "RepoAssignment invalid commit", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ctx.Handle(404, "RepoAssignment invalid repo", nil)
|
2014-03-30 02:09:59 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2014-04-11 02:03:31 +00:00
|
|
|
branchName = ctx.Repo.Repository.DefaultBranch
|
|
|
|
if len(branchName) == 0 {
|
|
|
|
branchName = "master"
|
|
|
|
}
|
2014-03-30 05:30:17 +00:00
|
|
|
goto detect
|
2014-03-30 02:09:59 +00:00
|
|
|
}
|
2014-03-30 09:09:19 +00:00
|
|
|
|
|
|
|
ctx.Data["IsBranch"] = ctx.Repo.IsBranch
|
|
|
|
ctx.Data["IsCommit"] = ctx.Repo.IsCommit
|
2014-03-30 05:30:17 +00:00
|
|
|
}
|
2014-03-30 02:09:59 +00:00
|
|
|
|
2014-03-30 05:30:17 +00:00
|
|
|
// repo is bare and display enable
|
|
|
|
if displayBare && ctx.Repo.Repository.IsBare {
|
|
|
|
ctx.HTML(200, "repo/single_bare")
|
|
|
|
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-03-20 06:25:21 +00:00
|
|
|
ctx.Repo.IsWatching = models.IsWatching(ctx.User.Id, repo.Id)
|
|
|
|
}
|
2014-03-30 02:09:59 +00:00
|
|
|
|
|
|
|
ctx.Data["BranchName"] = ctx.Repo.BranchName
|
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 {
|
|
|
|
log.Error("RepoAssignment(GetBranches): %v", err)
|
|
|
|
}
|
|
|
|
ctx.Data["Branches"] = brs
|
2014-03-30 02:09:59 +00:00
|
|
|
ctx.Data["CommitId"] = ctx.Repo.CommitId
|
2014-03-20 13:28:12 +00:00
|
|
|
ctx.Data["IsRepositoryWatching"] = ctx.Repo.IsWatching
|
2014-03-15 16:03:23 +00:00
|
|
|
}
|
|
|
|
}
|