You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

repo.go 4.0 kB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package middleware
  5. import (
  6. "errors"
  7. "fmt"
  8. "strings"
  9. "github.com/go-martini/martini"
  10. "github.com/gogits/git"
  11. "github.com/gogits/gogs/models"
  12. "github.com/gogits/gogs/modules/base"
  13. )
  14. func RepoAssignment(redirect bool, args ...bool) martini.Handler {
  15. return func(ctx *Context, params martini.Params) {
  16. // valid brachname
  17. var validBranch bool
  18. // display bare quick start if it is a bare repo
  19. var displayBare bool
  20. if len(args) >= 1 {
  21. validBranch = args[0]
  22. }
  23. if len(args) >= 2 {
  24. displayBare = args[1]
  25. }
  26. var (
  27. user *models.User
  28. err error
  29. )
  30. userName := params["username"]
  31. repoName := params["reponame"]
  32. branchName := params["branchname"]
  33. // get repository owner
  34. ctx.Repo.IsOwner = ctx.IsSigned && ctx.User.LowerName == strings.ToLower(userName)
  35. if !ctx.Repo.IsOwner {
  36. user, err = models.GetUserByName(params["username"])
  37. if err != nil {
  38. if redirect {
  39. ctx.Redirect("/")
  40. return
  41. }
  42. ctx.Handle(200, "RepoAssignment", err)
  43. return
  44. }
  45. } else {
  46. user = ctx.User
  47. }
  48. if user == nil {
  49. if redirect {
  50. ctx.Redirect("/")
  51. return
  52. }
  53. ctx.Handle(200, "RepoAssignment", errors.New("invliad user account for single repository"))
  54. return
  55. }
  56. // get repository
  57. repo, err := models.GetRepositoryByName(user.Id, repoName)
  58. if err != nil {
  59. if err == models.ErrRepoNotExist {
  60. ctx.Handle(404, "RepoAssignment", err)
  61. } else if redirect {
  62. ctx.Redirect("/")
  63. return
  64. }
  65. ctx.Handle(404, "RepoAssignment", err)
  66. return
  67. }
  68. ctx.Repo.Repository = repo
  69. ctx.Data["IsBareRepo"] = ctx.Repo.Repository.IsBare
  70. gitRepo, err := git.OpenRepository(models.RepoPath(userName, repoName))
  71. if err != nil {
  72. ctx.Handle(404, "RepoAssignment Invalid repo "+models.RepoPath(userName, repoName), err)
  73. return
  74. }
  75. ctx.Repo.GitRepo = gitRepo
  76. ctx.Repo.Owner = user
  77. ctx.Repo.RepoLink = "/" + user.Name + "/" + repo.Name
  78. ctx.Data["Title"] = user.Name + "/" + repo.Name
  79. ctx.Data["Repository"] = repo
  80. ctx.Data["Owner"] = user
  81. ctx.Data["RepoLink"] = ctx.Repo.RepoLink
  82. ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner
  83. ctx.Data["BranchName"] = ""
  84. ctx.Repo.CloneLink.SSH = fmt.Sprintf("%s@%s:%s/%s.git", base.RunUser, base.Domain, user.LowerName, repo.LowerName)
  85. ctx.Repo.CloneLink.HTTPS = fmt.Sprintf("%s%s/%s.git", base.AppUrl, user.LowerName, repo.LowerName)
  86. ctx.Data["CloneLink"] = ctx.Repo.CloneLink
  87. // when repo is bare, not valid branch
  88. if !ctx.Repo.Repository.IsBare && validBranch {
  89. detect:
  90. if len(branchName) > 0 {
  91. // TODO check tag
  92. if models.IsBranchExist(user.Name, repoName, branchName) {
  93. ctx.Repo.IsBranch = true
  94. ctx.Repo.BranchName = branchName
  95. ctx.Repo.Commit, err = gitRepo.GetCommitOfBranch(branchName)
  96. if err != nil {
  97. ctx.Handle(404, "RepoAssignment invalid branch", nil)
  98. return
  99. }
  100. ctx.Repo.CommitId = ctx.Repo.Commit.Oid.String()
  101. } else if len(branchName) == 40 {
  102. ctx.Repo.IsCommit = true
  103. ctx.Repo.CommitId = branchName
  104. ctx.Repo.BranchName = branchName
  105. ctx.Repo.Commit, err = gitRepo.GetCommit(branchName)
  106. if err != nil {
  107. ctx.Handle(404, "RepoAssignment invalid commit", nil)
  108. return
  109. }
  110. } else {
  111. ctx.Handle(404, "RepoAssignment invalid repo", nil)
  112. return
  113. }
  114. } else {
  115. branchName = "master"
  116. goto detect
  117. }
  118. ctx.Data["IsBranch"] = ctx.Repo.IsBranch
  119. ctx.Data["IsCommit"] = ctx.Repo.IsCommit
  120. }
  121. // repo is bare and display enable
  122. if displayBare && ctx.Repo.Repository.IsBare {
  123. ctx.HTML(200, "repo/single_bare")
  124. return
  125. }
  126. if ctx.IsSigned {
  127. ctx.Repo.IsWatching = models.IsWatching(ctx.User.Id, repo.Id)
  128. }
  129. ctx.Data["BranchName"] = ctx.Repo.BranchName
  130. ctx.Data["CommitId"] = ctx.Repo.CommitId
  131. ctx.Data["IsRepositoryWatching"] = ctx.Repo.IsWatching
  132. }
  133. }