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