repo.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  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 context
  5. import (
  6. "fmt"
  7. "io/ioutil"
  8. "path"
  9. "strings"
  10. "github.com/Unknwon/com"
  11. log "gopkg.in/clog.v1"
  12. "gopkg.in/editorconfig/editorconfig-core-go.v1"
  13. "gopkg.in/macaron.v1"
  14. "github.com/gogits/git-module"
  15. "github.com/gogits/gogs/models"
  16. "github.com/gogits/gogs/models/errors"
  17. "github.com/gogits/gogs/modules/setting"
  18. )
  19. type PullRequest struct {
  20. BaseRepo *models.Repository
  21. Allowed bool
  22. SameRepo bool
  23. HeadInfo string // [<user>:]<branch>
  24. }
  25. type Repository struct {
  26. AccessMode models.AccessMode
  27. IsWatching bool
  28. IsViewBranch bool
  29. IsViewTag bool
  30. IsViewCommit bool
  31. Repository *models.Repository
  32. Owner *models.User
  33. Commit *git.Commit
  34. Tag *git.Tag
  35. GitRepo *git.Repository
  36. BranchName string
  37. TagName string
  38. TreePath string
  39. CommitID string
  40. RepoLink string
  41. CloneLink models.CloneLink
  42. CommitsCount int64
  43. Mirror *models.Mirror
  44. PullRequest *PullRequest
  45. }
  46. // IsOwner returns true if current user is the owner of repository.
  47. func (r *Repository) IsOwner() bool {
  48. return r.AccessMode >= models.ACCESS_MODE_OWNER
  49. }
  50. // IsAdmin returns true if current user has admin or higher access of repository.
  51. func (r *Repository) IsAdmin() bool {
  52. return r.AccessMode >= models.ACCESS_MODE_ADMIN
  53. }
  54. // IsWriter returns true if current user has write or higher access of repository.
  55. func (r *Repository) IsWriter() bool {
  56. return r.AccessMode >= models.ACCESS_MODE_WRITE
  57. }
  58. // HasAccess returns true if the current user has at least read access for this repository
  59. func (r *Repository) HasAccess() bool {
  60. return r.AccessMode >= models.ACCESS_MODE_READ
  61. }
  62. // CanEnableEditor returns true if repository is editable and user has proper access level.
  63. func (r *Repository) CanEnableEditor() bool {
  64. return r.Repository.CanEnableEditor() && r.IsViewBranch && r.IsWriter() && !r.Repository.IsBranchRequirePullRequest(r.BranchName)
  65. }
  66. // GetEditorconfig returns the .editorconfig definition if found in the
  67. // HEAD of the default repo branch.
  68. func (r *Repository) GetEditorconfig() (*editorconfig.Editorconfig, error) {
  69. commit, err := r.GitRepo.GetBranchCommit(r.Repository.DefaultBranch)
  70. if err != nil {
  71. return nil, err
  72. }
  73. treeEntry, err := commit.GetTreeEntryByPath(".editorconfig")
  74. if err != nil {
  75. return nil, err
  76. }
  77. reader, err := treeEntry.Blob().Data()
  78. if err != nil {
  79. return nil, err
  80. }
  81. data, err := ioutil.ReadAll(reader)
  82. if err != nil {
  83. return nil, err
  84. }
  85. return editorconfig.ParseBytes(data)
  86. }
  87. // PullRequestURL returns URL for composing a pull request.
  88. // This function does not check if the repository can actually compose a pull request.
  89. func (r *Repository) PullRequestURL(baseBranch, headBranch string) string {
  90. repoLink := r.RepoLink
  91. if r.PullRequest.BaseRepo != nil {
  92. repoLink = r.PullRequest.BaseRepo.Link()
  93. }
  94. return fmt.Sprintf("%s/compare/%s...%s:%s", repoLink, baseBranch, r.Owner.Name, headBranch)
  95. }
  96. func RetrieveBaseRepo(ctx *Context, repo *models.Repository) {
  97. // Non-fork repository will not return error in this method.
  98. if err := repo.GetBaseRepo(); err != nil {
  99. if models.IsErrRepoNotExist(err) {
  100. repo.IsFork = false
  101. repo.ForkID = 0
  102. return
  103. }
  104. ctx.Handle(500, "GetBaseRepo", err)
  105. return
  106. } else if err = repo.BaseRepo.GetOwner(); err != nil {
  107. ctx.Handle(500, "BaseRepo.GetOwner", err)
  108. return
  109. }
  110. }
  111. // composeGoGetImport returns go-get-import meta content.
  112. func composeGoGetImport(owner, repo string) string {
  113. return path.Join(setting.Domain, setting.AppSubUrl, owner, repo)
  114. }
  115. // earlyResponseForGoGetMeta responses appropriate go-get meta with status 200
  116. // if user does not have actual access to the requested repository,
  117. // or the owner or repository does not exist at all.
  118. // This is particular a workaround for "go get" command which does not respect
  119. // .netrc file.
  120. func earlyResponseForGoGetMeta(ctx *Context) {
  121. ctx.PlainText(200, []byte(com.Expand(`<meta name="go-import" content="{GoGetImport} git {CloneLink}">`,
  122. map[string]string{
  123. "GoGetImport": composeGoGetImport(ctx.Params(":username"), ctx.Params(":reponame")),
  124. "CloneLink": models.ComposeHTTPSCloneURL(ctx.Params(":username"), ctx.Params(":reponame")),
  125. })))
  126. }
  127. func RepoAssignment(args ...bool) macaron.Handler {
  128. return func(ctx *Context) {
  129. var (
  130. displayBare bool // To display bare page if it is a bare repo.
  131. )
  132. if len(args) >= 1 {
  133. displayBare = args[0]
  134. }
  135. var (
  136. owner *models.User
  137. err error
  138. )
  139. ownerName := ctx.Params(":username")
  140. repoName := strings.TrimSuffix(ctx.Params(":reponame"), ".git")
  141. refName := ctx.Params(":branchname")
  142. if len(refName) == 0 {
  143. refName = ctx.Params(":path")
  144. }
  145. // Check if the user is the same as the repository owner
  146. if ctx.IsSigned && ctx.User.LowerName == strings.ToLower(ownerName) {
  147. owner = ctx.User
  148. } else {
  149. owner, err = models.GetUserByName(ownerName)
  150. if err != nil {
  151. if errors.IsUserNotExist(err) {
  152. if ctx.Query("go-get") == "1" {
  153. earlyResponseForGoGetMeta(ctx)
  154. return
  155. }
  156. ctx.NotFound()
  157. } else {
  158. ctx.Handle(500, "GetUserByName", err)
  159. }
  160. return
  161. }
  162. }
  163. ctx.Repo.Owner = owner
  164. ctx.Data["Username"] = ctx.Repo.Owner.Name
  165. // Get repository.
  166. repo, err := models.GetRepositoryByName(owner.ID, repoName)
  167. if err != nil {
  168. if models.IsErrRepoNotExist(err) {
  169. if ctx.Query("go-get") == "1" {
  170. earlyResponseForGoGetMeta(ctx)
  171. return
  172. }
  173. ctx.NotFound()
  174. } else {
  175. ctx.Handle(500, "GetRepositoryByName", err)
  176. }
  177. return
  178. } else if err = repo.GetOwner(); err != nil {
  179. ctx.Handle(500, "GetOwner", err)
  180. return
  181. }
  182. // Admin has super access.
  183. if ctx.IsSigned && ctx.User.IsAdmin {
  184. ctx.Repo.AccessMode = models.ACCESS_MODE_OWNER
  185. } else {
  186. var userID int64
  187. if ctx.IsSigned {
  188. userID = ctx.User.ID
  189. }
  190. mode, err := models.AccessLevel(userID, repo)
  191. if err != nil {
  192. ctx.Handle(500, "AccessLevel", err)
  193. return
  194. }
  195. ctx.Repo.AccessMode = mode
  196. }
  197. // Check access.
  198. if ctx.Repo.AccessMode == models.ACCESS_MODE_NONE {
  199. if ctx.Query("go-get") == "1" {
  200. earlyResponseForGoGetMeta(ctx)
  201. return
  202. }
  203. ctx.NotFound()
  204. return
  205. }
  206. ctx.Data["HasAccess"] = true
  207. if repo.IsMirror {
  208. ctx.Repo.Mirror, err = models.GetMirrorByRepoID(repo.ID)
  209. if err != nil {
  210. ctx.Handle(500, "GetMirror", err)
  211. return
  212. }
  213. ctx.Data["MirrorEnablePrune"] = ctx.Repo.Mirror.EnablePrune
  214. ctx.Data["MirrorInterval"] = ctx.Repo.Mirror.Interval
  215. ctx.Data["Mirror"] = ctx.Repo.Mirror
  216. }
  217. ctx.Repo.Repository = repo
  218. ctx.Data["RepoName"] = ctx.Repo.Repository.Name
  219. ctx.Data["IsBareRepo"] = ctx.Repo.Repository.IsBare
  220. gitRepo, err := git.OpenRepository(models.RepoPath(ownerName, repoName))
  221. if err != nil {
  222. ctx.Handle(500, "RepoAssignment Invalid repo "+models.RepoPath(ownerName, repoName), err)
  223. return
  224. }
  225. ctx.Repo.GitRepo = gitRepo
  226. ctx.Repo.RepoLink = repo.Link()
  227. ctx.Data["RepoLink"] = ctx.Repo.RepoLink
  228. ctx.Data["RepoRelPath"] = ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name
  229. tags, err := ctx.Repo.GitRepo.GetTags()
  230. if err != nil {
  231. ctx.Handle(500, fmt.Sprintf("GetTags '%s'", ctx.Repo.Repository.RepoPath()), err)
  232. return
  233. }
  234. ctx.Data["Tags"] = tags
  235. ctx.Repo.Repository.NumTags = len(tags)
  236. ctx.Data["Title"] = owner.Name + "/" + repo.Name
  237. ctx.Data["Repository"] = repo
  238. ctx.Data["Owner"] = ctx.Repo.Repository.Owner
  239. ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner()
  240. ctx.Data["IsRepositoryAdmin"] = ctx.Repo.IsAdmin()
  241. ctx.Data["IsRepositoryWriter"] = ctx.Repo.IsWriter()
  242. ctx.Data["DisableSSH"] = setting.SSH.Disabled
  243. ctx.Data["DisableHTTP"] = setting.Repository.DisableHTTPGit
  244. ctx.Data["CloneLink"] = repo.CloneLink()
  245. ctx.Data["WikiCloneLink"] = repo.WikiCloneLink()
  246. if ctx.IsSigned {
  247. ctx.Data["IsWatchingRepo"] = models.IsWatching(ctx.User.ID, repo.ID)
  248. ctx.Data["IsStaringRepo"] = models.IsStaring(ctx.User.ID, repo.ID)
  249. }
  250. // repo is bare and display enable
  251. if ctx.Repo.Repository.IsBare {
  252. log.Trace("Bare repository: %s", ctx.Repo.RepoLink)
  253. // NOTE: to prevent templating error
  254. ctx.Data["BranchName"] = ""
  255. if displayBare {
  256. if !ctx.Repo.IsAdmin() {
  257. ctx.Flash.Info(ctx.Tr("repo.repo_is_empty"), true)
  258. }
  259. ctx.HTML(200, "repo/bare")
  260. }
  261. return
  262. }
  263. ctx.Data["TagName"] = ctx.Repo.TagName
  264. brs, err := ctx.Repo.GitRepo.GetBranches()
  265. if err != nil {
  266. ctx.Handle(500, "GetBranches", err)
  267. return
  268. }
  269. ctx.Data["Branches"] = brs
  270. ctx.Data["BrancheCount"] = len(brs)
  271. // If not branch selected, try default one.
  272. // If default branch doesn't exists, fall back to some other branch.
  273. if len(ctx.Repo.BranchName) == 0 {
  274. if len(ctx.Repo.Repository.DefaultBranch) > 0 && gitRepo.IsBranchExist(ctx.Repo.Repository.DefaultBranch) {
  275. ctx.Repo.BranchName = ctx.Repo.Repository.DefaultBranch
  276. } else if len(brs) > 0 {
  277. ctx.Repo.BranchName = brs[0]
  278. }
  279. }
  280. ctx.Data["BranchName"] = ctx.Repo.BranchName
  281. ctx.Data["CommitID"] = ctx.Repo.CommitID
  282. if ctx.Query("go-get") == "1" {
  283. ctx.Data["GoGetImport"] = composeGoGetImport(owner.Name, repo.Name)
  284. prefix := setting.AppUrl + path.Join(owner.Name, repo.Name, "src", ctx.Repo.BranchName)
  285. ctx.Data["GoDocDirectory"] = prefix + "{/dir}"
  286. ctx.Data["GoDocFile"] = prefix + "{/dir}/{file}#L{line}"
  287. }
  288. }
  289. }
  290. // RepoRef handles repository reference name including those contain `/`.
  291. func RepoRef() macaron.Handler {
  292. return func(ctx *Context) {
  293. // Empty repository does not have reference information.
  294. if ctx.Repo.Repository.IsBare {
  295. return
  296. }
  297. var (
  298. refName string
  299. err error
  300. )
  301. // For API calls.
  302. if ctx.Repo.GitRepo == nil {
  303. repoPath := models.RepoPath(ctx.Repo.Owner.Name, ctx.Repo.Repository.Name)
  304. ctx.Repo.GitRepo, err = git.OpenRepository(repoPath)
  305. if err != nil {
  306. ctx.Handle(500, "RepoRef Invalid repo "+repoPath, err)
  307. return
  308. }
  309. }
  310. // Get default branch.
  311. if len(ctx.Params("*")) == 0 {
  312. refName = ctx.Repo.Repository.DefaultBranch
  313. if !ctx.Repo.GitRepo.IsBranchExist(refName) {
  314. brs, err := ctx.Repo.GitRepo.GetBranches()
  315. if err != nil {
  316. ctx.Handle(500, "GetBranches", err)
  317. return
  318. }
  319. refName = brs[0]
  320. }
  321. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(refName)
  322. if err != nil {
  323. ctx.Handle(500, "GetBranchCommit", err)
  324. return
  325. }
  326. ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
  327. ctx.Repo.IsViewBranch = true
  328. } else {
  329. hasMatched := false
  330. parts := strings.Split(ctx.Params("*"), "/")
  331. for i, part := range parts {
  332. refName = strings.TrimPrefix(refName+"/"+part, "/")
  333. if ctx.Repo.GitRepo.IsBranchExist(refName) ||
  334. ctx.Repo.GitRepo.IsTagExist(refName) {
  335. if i < len(parts)-1 {
  336. ctx.Repo.TreePath = strings.Join(parts[i+1:], "/")
  337. }
  338. hasMatched = true
  339. break
  340. }
  341. }
  342. if !hasMatched && len(parts[0]) == 40 {
  343. refName = parts[0]
  344. ctx.Repo.TreePath = strings.Join(parts[1:], "/")
  345. }
  346. if ctx.Repo.GitRepo.IsBranchExist(refName) {
  347. ctx.Repo.IsViewBranch = true
  348. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(refName)
  349. if err != nil {
  350. ctx.Handle(500, "GetBranchCommit", err)
  351. return
  352. }
  353. ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
  354. } else if ctx.Repo.GitRepo.IsTagExist(refName) {
  355. ctx.Repo.IsViewTag = true
  356. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetTagCommit(refName)
  357. if err != nil {
  358. ctx.Handle(500, "GetTagCommit", err)
  359. return
  360. }
  361. ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
  362. } else if len(refName) == 40 {
  363. ctx.Repo.IsViewCommit = true
  364. ctx.Repo.CommitID = refName
  365. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetCommit(refName)
  366. if err != nil {
  367. ctx.NotFound()
  368. return
  369. }
  370. } else {
  371. ctx.Handle(404, "RepoRef invalid repo", fmt.Errorf("branch or tag not exist: %s", refName))
  372. return
  373. }
  374. }
  375. ctx.Repo.BranchName = refName
  376. ctx.Data["BranchName"] = ctx.Repo.BranchName
  377. ctx.Data["CommitID"] = ctx.Repo.CommitID
  378. ctx.Data["TreePath"] = ctx.Repo.TreePath
  379. ctx.Data["IsViewBranch"] = ctx.Repo.IsViewBranch
  380. ctx.Data["IsViewTag"] = ctx.Repo.IsViewTag
  381. ctx.Data["IsViewCommit"] = ctx.Repo.IsViewCommit
  382. if ctx.Repo.Repository.IsFork {
  383. RetrieveBaseRepo(ctx, ctx.Repo.Repository)
  384. if ctx.Written() {
  385. return
  386. }
  387. }
  388. // People who have push access or have fored repository can propose a new pull request.
  389. if ctx.Repo.IsWriter() || (ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID)) {
  390. // Pull request is allowed if this is a fork repository
  391. // and base repository accepts pull requests.
  392. if ctx.Repo.Repository.BaseRepo != nil {
  393. if ctx.Repo.Repository.BaseRepo.AllowsPulls() {
  394. ctx.Data["BaseRepo"] = ctx.Repo.Repository.BaseRepo
  395. ctx.Repo.PullRequest.BaseRepo = ctx.Repo.Repository.BaseRepo
  396. ctx.Repo.PullRequest.Allowed = true
  397. ctx.Repo.PullRequest.HeadInfo = ctx.Repo.Owner.Name + ":" + ctx.Repo.BranchName
  398. }
  399. } else {
  400. // Or, this is repository accepts pull requests between branches.
  401. if ctx.Repo.Repository.AllowsPulls() {
  402. ctx.Data["BaseRepo"] = ctx.Repo.Repository
  403. ctx.Repo.PullRequest.BaseRepo = ctx.Repo.Repository
  404. ctx.Repo.PullRequest.Allowed = true
  405. ctx.Repo.PullRequest.SameRepo = true
  406. ctx.Repo.PullRequest.HeadInfo = ctx.Repo.BranchName
  407. }
  408. }
  409. }
  410. ctx.Data["PullRequestCtx"] = ctx.Repo.PullRequest
  411. }
  412. }
  413. func RequireRepoAdmin() macaron.Handler {
  414. return func(ctx *Context) {
  415. if !ctx.IsSigned || (!ctx.Repo.IsAdmin() && !ctx.User.IsAdmin) {
  416. ctx.NotFound()
  417. return
  418. }
  419. }
  420. }
  421. func RequireRepoWriter() macaron.Handler {
  422. return func(ctx *Context) {
  423. if !ctx.IsSigned || (!ctx.Repo.IsWriter() && !ctx.User.IsAdmin) {
  424. ctx.NotFound()
  425. return
  426. }
  427. }
  428. }
  429. // GitHookService checks if repository Git hooks service has been enabled.
  430. func GitHookService() macaron.Handler {
  431. return func(ctx *Context) {
  432. if !ctx.User.CanEditGitHook() {
  433. ctx.NotFound()
  434. return
  435. }
  436. }
  437. }