| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 | // 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 middlewareimport (	"errors"	"fmt"	"strings"	"github.com/go-martini/martini"	"github.com/gogits/git"	"github.com/gogits/gogs/models"	"github.com/gogits/gogs/modules/base")func RepoAssignment(redirect bool, args ...bool) martini.Handler {	return func(ctx *Context, params martini.Params) {		// 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]		}		var (			user *models.User			err  error		)		userName := params["username"]		repoName := params["reponame"]		branchName := params["branchname"]		// get repository owner		ctx.Repo.IsOwner = ctx.IsSigned && ctx.User.LowerName == strings.ToLower(userName)		if !ctx.Repo.IsOwner {			user, err = models.GetUserByName(params["username"])			if err != nil {				if redirect {					ctx.Redirect("/")					return				}				ctx.Handle(200, "RepoAssignment", err)				return			}		} else {			user = ctx.User		}		if user == nil {			if redirect {				ctx.Redirect("/")				return			}			ctx.Handle(200, "RepoAssignment", errors.New("invliad user account for single repository"))			return		}		// get repository		repo, err := models.GetRepositoryByName(user.Id, repoName)		if err != nil {			if err == models.ErrRepoNotExist {				ctx.Handle(404, "RepoAssignment", err)			} else if redirect {				ctx.Redirect("/")				return			}			ctx.Handle(500, "RepoAssignment", err)			return		}		repo.NumOpenIssues = repo.NumIssues - repo.NumClosedIssues		ctx.Repo.Repository = repo		ctx.Data["IsBareRepo"] = ctx.Repo.Repository.IsBare		gitRepo, err := git.OpenRepository(models.RepoPath(userName, repoName))		if err != nil {			ctx.Handle(500, "RepoAssignment Invalid repo "+models.RepoPath(userName, repoName), err)			return		}		ctx.Repo.GitRepo = gitRepo		ctx.Repo.Owner = user		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		ctx.Data["BranchName"] = ""		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		// when repo is bare, not valid branch		if !ctx.Repo.Repository.IsBare && validBranch {		detect:			if len(branchName) > 0 {				// TODO check tag				if models.IsBranchExist(user.Name, repoName, branchName) {					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					}					ctx.Repo.CommitId = ctx.Repo.Commit.Oid.String()				} 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)					return				}			} else {				branchName = ctx.Repo.Repository.DefaultBranch				if len(branchName) == 0 {					branchName = "master"				}				goto detect			}			ctx.Data["IsBranch"] = ctx.Repo.IsBranch			ctx.Data["IsCommit"] = ctx.Repo.IsCommit		}		// repo is bare and display enable		if displayBare && ctx.Repo.Repository.IsBare {			ctx.HTML(200, "repo/single_bare")			return		}		if ctx.IsSigned {			ctx.Repo.IsWatching = models.IsWatching(ctx.User.Id, repo.Id)		}		ctx.Data["BranchName"] = ctx.Repo.BranchName		ctx.Data["Branches"], _ = models.GetBranches(user.Name, repoName)		ctx.Data["CommitId"] = ctx.Repo.CommitId		ctx.Data["IsRepositoryWatching"] = ctx.Repo.IsWatching	}}
 |