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 19 kB

Feature: Timetracking (#2211) * Added comment's hashtag to url for mail notifications. * Added explanation to return statement + documentation. * Replacing in-line link generation with HTMLURL. (+gofmt) * Replaced action-based model with nil-based model. (+gofmt) * Replaced mailIssueActionToParticipants with mailIssueCommentToParticipants. * Updating comment for mailIssueCommentToParticipants * Added link to comment in "Dashboard" * Deleting feed entry if a comment is going to be deleted * Added migration * Added improved migration to add a CommentID column to action. * Added improved links to comments in feed entries. * Fixes #1956 by filtering for deleted comments that are referenced in actions. * Introducing "IsDeleted" column to action. * Adding design draft (not functional) * Adding database models for stopwatches and trackedtimes * See go-gitea/gitea#967 * Adding design draft (not functional) * Adding translations and improving design * Implementing stopwatch (for timetracking) * Make UI functional * Add hints in timeline for time tracking events * Implementing timetracking feature * Adding "Add time manual" option * Improved stopwatch * Created report of total spent time by user * Only showing total time spent if theire is something to show. * Adding license headers. * Improved error handling for "Add Time Manual" * Adding @sapks 's changes, refactoring * Adding API for feature tracking * Adding unit test * Adding DISABLE/ENABLE option to Repository settings page * Improving translations * Applying @sapk 's changes * Removing repo_unit and using IssuesSetting for disabling/enabling timetracker * Adding DEFAULT_ENABLE_TIMETRACKER to config, installation and admin menu * Improving documentation * Fixing vendor/ folder * Changing timtracking routes by adding subgroups /times and /times/stopwatch (Proposed by @lafriks ) * Restricting write access to timetracking based on the repo settings (Proposed by @lafriks ) * Fixed minor permissions bug. * Adding CanUseTimetracker and IsTimetrackerEnabled in ctx.Repo * Allow assignees and authors to track there time too. * Fixed some build-time-errors + logical errors. * Removing unused Get...ByID functions * Moving IsTimetrackerEnabled from context.Repository to models.Repository * Adding a seperate file for issue related repo functions * Adding license headers * Fixed GetUserByParams return 404 * Moving /users/:username/times to /repos/:username/:reponame/times/:username for security reasons * Adding /repos/:username/times to get all tracked times of the repo * Updating sdk-dependency * Updating swagger.v1.json * Adding warning if user has already a running stopwatch (auto-timetracker) * Replacing GetTrackedTimesBy... with GetTrackedTimes(options FindTrackedTimesOptions) * Changing code.gitea.io/sdk back to code.gitea.io/sdk * Correcting spelling mistake * Updating vendor.json * Changing GET stopwatch/toggle to POST stopwatch/toggle * Changing GET stopwatch/cancel to POST stopwatch/cancel * Added migration for stopwatches/timetracking * Fixed some access bugs for read-only users * Added default allow only contributors to track time value to config * Fixed migration by chaging x.Iterate to x.Find * Resorted imports * Moved Add Time Manually form to repo_form.go * Removed "Seconds" field from Add Time Manually * Resorted imports * Improved permission checking * Fixed some bugs * Added integration test * gofmt * Adding integration test by @lafriks * Added created_unix to comment fixtures * Using last event instead of a fixed event * Adding another integration test by @lafriks * Fixing bug Timetracker enabled causing error 500 at sidebar.tpl * Fixed a refactoring bug that resulted in hiding "HasUserStopwatch" warning. * Returning TrackedTime instead of AddTimeOption at AddTime. * Updating SDK from go-gitea/go-sdk#69 * Resetting Go-SDK back to default repository * Fixing test-vendor by changing ini back to original repository * Adding "tags" to swagger spec * govendor sync * Removed duplicate * Formatting templates * Adding IsTimetrackingEnabled checks to API * Improving translations / english texts * Improving documentation * Updating swagger spec * Fixing integration test caused be translation-changes * Removed encoding issues in local_en-US.ini. * "Added" copyright line * Moved unit.IssuesConfig().EnableTimetracker into a != nil check * Removed some other encoding issues in local_en-US.ini * Improved javascript by checking if data-context exists * Replaced manual comment creation with CreateComment * Removed unnecessary code * Improved error checking * Small cosmetic changes * Replaced int>string>duration parsing with int>duration parsing * Fixed encoding issues * Removed unused imports Signed-off-by: Jonas Franz <info@jonasfranz.software>
8 years ago
11 years ago
11 years ago
11 years ago
Feature: Timetracking (#2211) * Added comment's hashtag to url for mail notifications. * Added explanation to return statement + documentation. * Replacing in-line link generation with HTMLURL. (+gofmt) * Replaced action-based model with nil-based model. (+gofmt) * Replaced mailIssueActionToParticipants with mailIssueCommentToParticipants. * Updating comment for mailIssueCommentToParticipants * Added link to comment in "Dashboard" * Deleting feed entry if a comment is going to be deleted * Added migration * Added improved migration to add a CommentID column to action. * Added improved links to comments in feed entries. * Fixes #1956 by filtering for deleted comments that are referenced in actions. * Introducing "IsDeleted" column to action. * Adding design draft (not functional) * Adding database models for stopwatches and trackedtimes * See go-gitea/gitea#967 * Adding design draft (not functional) * Adding translations and improving design * Implementing stopwatch (for timetracking) * Make UI functional * Add hints in timeline for time tracking events * Implementing timetracking feature * Adding "Add time manual" option * Improved stopwatch * Created report of total spent time by user * Only showing total time spent if theire is something to show. * Adding license headers. * Improved error handling for "Add Time Manual" * Adding @sapks 's changes, refactoring * Adding API for feature tracking * Adding unit test * Adding DISABLE/ENABLE option to Repository settings page * Improving translations * Applying @sapk 's changes * Removing repo_unit and using IssuesSetting for disabling/enabling timetracker * Adding DEFAULT_ENABLE_TIMETRACKER to config, installation and admin menu * Improving documentation * Fixing vendor/ folder * Changing timtracking routes by adding subgroups /times and /times/stopwatch (Proposed by @lafriks ) * Restricting write access to timetracking based on the repo settings (Proposed by @lafriks ) * Fixed minor permissions bug. * Adding CanUseTimetracker and IsTimetrackerEnabled in ctx.Repo * Allow assignees and authors to track there time too. * Fixed some build-time-errors + logical errors. * Removing unused Get...ByID functions * Moving IsTimetrackerEnabled from context.Repository to models.Repository * Adding a seperate file for issue related repo functions * Adding license headers * Fixed GetUserByParams return 404 * Moving /users/:username/times to /repos/:username/:reponame/times/:username for security reasons * Adding /repos/:username/times to get all tracked times of the repo * Updating sdk-dependency * Updating swagger.v1.json * Adding warning if user has already a running stopwatch (auto-timetracker) * Replacing GetTrackedTimesBy... with GetTrackedTimes(options FindTrackedTimesOptions) * Changing code.gitea.io/sdk back to code.gitea.io/sdk * Correcting spelling mistake * Updating vendor.json * Changing GET stopwatch/toggle to POST stopwatch/toggle * Changing GET stopwatch/cancel to POST stopwatch/cancel * Added migration for stopwatches/timetracking * Fixed some access bugs for read-only users * Added default allow only contributors to track time value to config * Fixed migration by chaging x.Iterate to x.Find * Resorted imports * Moved Add Time Manually form to repo_form.go * Removed "Seconds" field from Add Time Manually * Resorted imports * Improved permission checking * Fixed some bugs * Added integration test * gofmt * Adding integration test by @lafriks * Added created_unix to comment fixtures * Using last event instead of a fixed event * Adding another integration test by @lafriks * Fixing bug Timetracker enabled causing error 500 at sidebar.tpl * Fixed a refactoring bug that resulted in hiding "HasUserStopwatch" warning. * Returning TrackedTime instead of AddTimeOption at AddTime. * Updating SDK from go-gitea/go-sdk#69 * Resetting Go-SDK back to default repository * Fixing test-vendor by changing ini back to original repository * Adding "tags" to swagger spec * govendor sync * Removed duplicate * Formatting templates * Adding IsTimetrackingEnabled checks to API * Improving translations / english texts * Improving documentation * Updating swagger spec * Fixing integration test caused be translation-changes * Removed encoding issues in local_en-US.ini. * "Added" copyright line * Moved unit.IssuesConfig().EnableTimetracker into a != nil check * Removed some other encoding issues in local_en-US.ini * Improved javascript by checking if data-context exists * Replaced manual comment creation with CreateComment * Removed unnecessary code * Improved error checking * Small cosmetic changes * Replaced int>string>duration parsing with int>duration parsing * Fixed encoding issues * Removed unused imports Signed-off-by: Jonas Franz <info@jonasfranz.software>
8 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
Feature: Timetracking (#2211) * Added comment's hashtag to url for mail notifications. * Added explanation to return statement + documentation. * Replacing in-line link generation with HTMLURL. (+gofmt) * Replaced action-based model with nil-based model. (+gofmt) * Replaced mailIssueActionToParticipants with mailIssueCommentToParticipants. * Updating comment for mailIssueCommentToParticipants * Added link to comment in "Dashboard" * Deleting feed entry if a comment is going to be deleted * Added migration * Added improved migration to add a CommentID column to action. * Added improved links to comments in feed entries. * Fixes #1956 by filtering for deleted comments that are referenced in actions. * Introducing "IsDeleted" column to action. * Adding design draft (not functional) * Adding database models for stopwatches and trackedtimes * See go-gitea/gitea#967 * Adding design draft (not functional) * Adding translations and improving design * Implementing stopwatch (for timetracking) * Make UI functional * Add hints in timeline for time tracking events * Implementing timetracking feature * Adding "Add time manual" option * Improved stopwatch * Created report of total spent time by user * Only showing total time spent if theire is something to show. * Adding license headers. * Improved error handling for "Add Time Manual" * Adding @sapks 's changes, refactoring * Adding API for feature tracking * Adding unit test * Adding DISABLE/ENABLE option to Repository settings page * Improving translations * Applying @sapk 's changes * Removing repo_unit and using IssuesSetting for disabling/enabling timetracker * Adding DEFAULT_ENABLE_TIMETRACKER to config, installation and admin menu * Improving documentation * Fixing vendor/ folder * Changing timtracking routes by adding subgroups /times and /times/stopwatch (Proposed by @lafriks ) * Restricting write access to timetracking based on the repo settings (Proposed by @lafriks ) * Fixed minor permissions bug. * Adding CanUseTimetracker and IsTimetrackerEnabled in ctx.Repo * Allow assignees and authors to track there time too. * Fixed some build-time-errors + logical errors. * Removing unused Get...ByID functions * Moving IsTimetrackerEnabled from context.Repository to models.Repository * Adding a seperate file for issue related repo functions * Adding license headers * Fixed GetUserByParams return 404 * Moving /users/:username/times to /repos/:username/:reponame/times/:username for security reasons * Adding /repos/:username/times to get all tracked times of the repo * Updating sdk-dependency * Updating swagger.v1.json * Adding warning if user has already a running stopwatch (auto-timetracker) * Replacing GetTrackedTimesBy... with GetTrackedTimes(options FindTrackedTimesOptions) * Changing code.gitea.io/sdk back to code.gitea.io/sdk * Correcting spelling mistake * Updating vendor.json * Changing GET stopwatch/toggle to POST stopwatch/toggle * Changing GET stopwatch/cancel to POST stopwatch/cancel * Added migration for stopwatches/timetracking * Fixed some access bugs for read-only users * Added default allow only contributors to track time value to config * Fixed migration by chaging x.Iterate to x.Find * Resorted imports * Moved Add Time Manually form to repo_form.go * Removed "Seconds" field from Add Time Manually * Resorted imports * Improved permission checking * Fixed some bugs * Added integration test * gofmt * Adding integration test by @lafriks * Added created_unix to comment fixtures * Using last event instead of a fixed event * Adding another integration test by @lafriks * Fixing bug Timetracker enabled causing error 500 at sidebar.tpl * Fixed a refactoring bug that resulted in hiding "HasUserStopwatch" warning. * Returning TrackedTime instead of AddTimeOption at AddTime. * Updating SDK from go-gitea/go-sdk#69 * Resetting Go-SDK back to default repository * Fixing test-vendor by changing ini back to original repository * Adding "tags" to swagger spec * govendor sync * Removed duplicate * Formatting templates * Adding IsTimetrackingEnabled checks to API * Improving translations / english texts * Improving documentation * Updating swagger spec * Fixing integration test caused be translation-changes * Removed encoding issues in local_en-US.ini. * "Added" copyright line * Moved unit.IssuesConfig().EnableTimetracker into a != nil check * Removed some other encoding issues in local_en-US.ini * Improved javascript by checking if data-context exists * Replaced manual comment creation with CreateComment * Removed unnecessary code * Improved error checking * Small cosmetic changes * Replaced int>string>duration parsing with int>duration parsing * Fixed encoding issues * Removed unused imports Signed-off-by: Jonas Franz <info@jonasfranz.software>
8 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
10 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Copyright 2017 The Gitea Authors. All rights reserved.
  3. // Use of this source code is governed by a MIT-style
  4. // license that can be found in the LICENSE file.
  5. package context
  6. import (
  7. "fmt"
  8. "io/ioutil"
  9. "path"
  10. "strings"
  11. "code.gitea.io/git"
  12. "code.gitea.io/gitea/models"
  13. "code.gitea.io/gitea/modules/setting"
  14. "github.com/Unknwon/com"
  15. "gopkg.in/editorconfig/editorconfig-core-go.v1"
  16. "gopkg.in/macaron.v1"
  17. )
  18. // PullRequest contains informations to make a pull request
  19. type PullRequest struct {
  20. BaseRepo *models.Repository
  21. Allowed bool
  22. SameRepo bool
  23. HeadInfo string // [<user>:]<branch>
  24. }
  25. // Repository contains information to operate a repository
  26. type Repository struct {
  27. AccessMode models.AccessMode
  28. IsWatching bool
  29. IsViewBranch bool
  30. IsViewTag bool
  31. IsViewCommit bool
  32. Repository *models.Repository
  33. Owner *models.User
  34. Commit *git.Commit
  35. Tag *git.Tag
  36. GitRepo *git.Repository
  37. BranchName string
  38. TagName string
  39. TreePath string
  40. CommitID string
  41. RepoLink string
  42. CloneLink models.CloneLink
  43. CommitsCount int64
  44. Mirror *models.Mirror
  45. PullRequest *PullRequest
  46. }
  47. // IsOwner returns true if current user is the owner of repository.
  48. func (r *Repository) IsOwner() bool {
  49. return r.AccessMode >= models.AccessModeOwner
  50. }
  51. // IsAdmin returns true if current user has admin or higher access of repository.
  52. func (r *Repository) IsAdmin() bool {
  53. return r.AccessMode >= models.AccessModeAdmin
  54. }
  55. // IsWriter returns true if current user has write or higher access of repository.
  56. func (r *Repository) IsWriter() bool {
  57. return r.AccessMode >= models.AccessModeWrite
  58. }
  59. // HasAccess returns true if the current user has at least read access for this repository
  60. func (r *Repository) HasAccess() bool {
  61. return r.AccessMode >= models.AccessModeRead
  62. }
  63. // CanEnableEditor returns true if repository is editable and user has proper access level.
  64. func (r *Repository) CanEnableEditor() bool {
  65. return r.Repository.CanEnableEditor() && r.IsViewBranch && r.IsWriter()
  66. }
  67. // CanCommitToBranch returns true if repository is editable and user has proper access level
  68. // and branch is not protected
  69. func (r *Repository) CanCommitToBranch(doer *models.User) (bool, error) {
  70. protectedBranch, err := r.Repository.IsProtectedBranch(r.BranchName, doer)
  71. if err != nil {
  72. return false, err
  73. }
  74. return r.CanEnableEditor() && !protectedBranch, nil
  75. }
  76. // CanUseTimetracker returns whether or not a user can use the timetracker.
  77. func (r *Repository) CanUseTimetracker(issue *models.Issue, user *models.User) bool {
  78. // Checking for following:
  79. // 1. Is timetracker enabled
  80. // 2. Is the user a contributor, admin, poster or assignee and do the repository policies require this?
  81. return r.Repository.IsTimetrackerEnabled() && (!r.Repository.AllowOnlyContributorsToTrackTime() ||
  82. r.IsWriter() || issue.IsPoster(user.ID) || issue.AssigneeID == user.ID)
  83. }
  84. // GetEditorconfig returns the .editorconfig definition if found in the
  85. // HEAD of the default repo branch.
  86. func (r *Repository) GetEditorconfig() (*editorconfig.Editorconfig, error) {
  87. commit, err := r.GitRepo.GetBranchCommit(r.Repository.DefaultBranch)
  88. if err != nil {
  89. return nil, err
  90. }
  91. treeEntry, err := commit.GetTreeEntryByPath(".editorconfig")
  92. if err != nil {
  93. return nil, err
  94. }
  95. reader, err := treeEntry.Blob().Data()
  96. if err != nil {
  97. return nil, err
  98. }
  99. data, err := ioutil.ReadAll(reader)
  100. if err != nil {
  101. return nil, err
  102. }
  103. return editorconfig.ParseBytes(data)
  104. }
  105. // RetrieveBaseRepo retrieves base repository
  106. func RetrieveBaseRepo(ctx *Context, repo *models.Repository) {
  107. // Non-fork repository will not return error in this method.
  108. if err := repo.GetBaseRepo(); err != nil {
  109. if models.IsErrRepoNotExist(err) {
  110. repo.IsFork = false
  111. repo.ForkID = 0
  112. return
  113. }
  114. ctx.Handle(500, "GetBaseRepo", err)
  115. return
  116. } else if err = repo.BaseRepo.GetOwner(); err != nil {
  117. ctx.Handle(500, "BaseRepo.GetOwner", err)
  118. return
  119. }
  120. }
  121. // ComposeGoGetImport returns go-get-import meta content.
  122. func ComposeGoGetImport(owner, repo string) string {
  123. return path.Join(setting.Domain, setting.AppSubURL, owner, repo)
  124. }
  125. // EarlyResponseForGoGetMeta responses appropriate go-get meta with status 200
  126. // if user does not have actual access to the requested repository,
  127. // or the owner or repository does not exist at all.
  128. // This is particular a workaround for "go get" command which does not respect
  129. // .netrc file.
  130. func EarlyResponseForGoGetMeta(ctx *Context) {
  131. username := ctx.Params(":username")
  132. reponame := ctx.Params(":reponame")
  133. ctx.PlainText(200, []byte(com.Expand(`<meta name="go-import" content="{GoGetImport} git {CloneLink}">`,
  134. map[string]string{
  135. "GoGetImport": ComposeGoGetImport(username, strings.TrimSuffix(reponame, ".git")),
  136. "CloneLink": models.ComposeHTTPSCloneURL(username, reponame),
  137. })))
  138. }
  139. // RedirectToRepo redirect to a differently-named repository
  140. func RedirectToRepo(ctx *Context, redirectRepoID int64) {
  141. ownerName := ctx.Params(":username")
  142. previousRepoName := ctx.Params(":reponame")
  143. repo, err := models.GetRepositoryByID(redirectRepoID)
  144. if err != nil {
  145. ctx.Handle(500, "GetRepositoryByID", err)
  146. return
  147. }
  148. redirectPath := strings.Replace(
  149. ctx.Req.URL.Path,
  150. fmt.Sprintf("%s/%s", ownerName, previousRepoName),
  151. fmt.Sprintf("%s/%s", ownerName, repo.Name),
  152. 1,
  153. )
  154. ctx.Redirect(redirectPath)
  155. }
  156. // RepoIDAssignment returns an macaron handler which assigns the repo to the context.
  157. func RepoIDAssignment() macaron.Handler {
  158. return func(ctx *Context) {
  159. var (
  160. err error
  161. )
  162. repoID := ctx.ParamsInt64(":repoid")
  163. // Get repository.
  164. repo, err := models.GetRepositoryByID(repoID)
  165. if err != nil {
  166. if models.IsErrRepoNotExist(err) {
  167. ctx.Handle(404, "GetRepositoryByID", nil)
  168. } else {
  169. ctx.Handle(500, "GetRepositoryByID", err)
  170. }
  171. return
  172. }
  173. if err = repo.GetOwner(); err != nil {
  174. ctx.Handle(500, "GetOwner", err)
  175. return
  176. }
  177. // Admin has super access.
  178. if ctx.IsSigned && ctx.User.IsAdmin {
  179. ctx.Repo.AccessMode = models.AccessModeOwner
  180. } else {
  181. var userID int64
  182. if ctx.User != nil {
  183. userID = ctx.User.ID
  184. }
  185. mode, err := models.AccessLevel(userID, repo)
  186. if err != nil {
  187. ctx.Handle(500, "AccessLevel", err)
  188. return
  189. }
  190. ctx.Repo.AccessMode = mode
  191. }
  192. // Check access.
  193. if ctx.Repo.AccessMode == models.AccessModeNone {
  194. if ctx.Query("go-get") == "1" {
  195. EarlyResponseForGoGetMeta(ctx)
  196. return
  197. }
  198. ctx.Handle(404, "no access right", err)
  199. return
  200. }
  201. ctx.Data["HasAccess"] = true
  202. if repo.IsMirror {
  203. ctx.Repo.Mirror, err = models.GetMirrorByRepoID(repo.ID)
  204. if err != nil {
  205. ctx.Handle(500, "GetMirror", err)
  206. return
  207. }
  208. ctx.Data["MirrorEnablePrune"] = ctx.Repo.Mirror.EnablePrune
  209. ctx.Data["MirrorInterval"] = ctx.Repo.Mirror.Interval
  210. ctx.Data["Mirror"] = ctx.Repo.Mirror
  211. }
  212. ctx.Repo.Repository = repo
  213. ctx.Data["RepoName"] = ctx.Repo.Repository.Name
  214. ctx.Data["IsBareRepo"] = ctx.Repo.Repository.IsBare
  215. }
  216. }
  217. // RepoAssignment returns a macaron to handle repository assignment
  218. func RepoAssignment() macaron.Handler {
  219. return func(ctx *Context) {
  220. var (
  221. owner *models.User
  222. err error
  223. )
  224. userName := ctx.Params(":username")
  225. repoName := ctx.Params(":reponame")
  226. // Check if the user is the same as the repository owner
  227. if ctx.IsSigned && ctx.User.LowerName == strings.ToLower(userName) {
  228. owner = ctx.User
  229. } else {
  230. owner, err = models.GetUserByName(userName)
  231. if err != nil {
  232. if models.IsErrUserNotExist(err) {
  233. if ctx.Query("go-get") == "1" {
  234. EarlyResponseForGoGetMeta(ctx)
  235. return
  236. }
  237. ctx.Handle(404, "GetUserByName", nil)
  238. } else {
  239. ctx.Handle(500, "GetUserByName", err)
  240. }
  241. return
  242. }
  243. }
  244. ctx.Repo.Owner = owner
  245. ctx.Data["Username"] = ctx.Repo.Owner.Name
  246. // Get repository.
  247. repo, err := models.GetRepositoryByName(owner.ID, repoName)
  248. if err != nil {
  249. if models.IsErrRepoNotExist(err) {
  250. redirectRepoID, err := models.LookupRepoRedirect(owner.ID, repoName)
  251. if err == nil {
  252. RedirectToRepo(ctx, redirectRepoID)
  253. } else if models.IsErrRepoRedirectNotExist(err) {
  254. if ctx.Query("go-get") == "1" {
  255. EarlyResponseForGoGetMeta(ctx)
  256. return
  257. }
  258. ctx.Handle(404, "GetRepositoryByName", nil)
  259. } else {
  260. ctx.Handle(500, "LookupRepoRedirect", err)
  261. }
  262. } else {
  263. ctx.Handle(500, "GetRepositoryByName", err)
  264. }
  265. return
  266. }
  267. repo.Owner = owner
  268. // Admin has super access.
  269. if ctx.IsSigned && ctx.User.IsAdmin {
  270. ctx.Repo.AccessMode = models.AccessModeOwner
  271. } else {
  272. var userID int64
  273. if ctx.User != nil {
  274. userID = ctx.User.ID
  275. }
  276. mode, err := models.AccessLevel(userID, repo)
  277. if err != nil {
  278. ctx.Handle(500, "AccessLevel", err)
  279. return
  280. }
  281. ctx.Repo.AccessMode = mode
  282. }
  283. // Check access.
  284. if ctx.Repo.AccessMode == models.AccessModeNone {
  285. if ctx.Query("go-get") == "1" {
  286. EarlyResponseForGoGetMeta(ctx)
  287. return
  288. }
  289. ctx.Handle(404, "no access right", err)
  290. return
  291. }
  292. ctx.Data["HasAccess"] = true
  293. if repo.IsMirror {
  294. ctx.Repo.Mirror, err = models.GetMirrorByRepoID(repo.ID)
  295. if err != nil {
  296. ctx.Handle(500, "GetMirror", err)
  297. return
  298. }
  299. ctx.Data["MirrorEnablePrune"] = ctx.Repo.Mirror.EnablePrune
  300. ctx.Data["MirrorInterval"] = ctx.Repo.Mirror.Interval
  301. ctx.Data["Mirror"] = ctx.Repo.Mirror
  302. }
  303. ctx.Repo.Repository = repo
  304. ctx.Data["RepoName"] = ctx.Repo.Repository.Name
  305. ctx.Data["IsBareRepo"] = ctx.Repo.Repository.IsBare
  306. gitRepo, err := git.OpenRepository(models.RepoPath(userName, repoName))
  307. if err != nil {
  308. ctx.Handle(500, "RepoAssignment Invalid repo "+models.RepoPath(userName, repoName), err)
  309. return
  310. }
  311. ctx.Repo.GitRepo = gitRepo
  312. ctx.Repo.RepoLink = repo.Link()
  313. ctx.Data["RepoLink"] = ctx.Repo.RepoLink
  314. ctx.Data["RepoRelPath"] = ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name
  315. tags, err := ctx.Repo.GitRepo.GetTags()
  316. if err != nil {
  317. ctx.Handle(500, "GetTags", err)
  318. return
  319. }
  320. ctx.Data["Tags"] = tags
  321. count, err := models.GetReleaseCountByRepoID(ctx.Repo.Repository.ID, models.FindReleasesOptions{
  322. IncludeDrafts: false,
  323. IncludeTags: true,
  324. })
  325. if err != nil {
  326. ctx.Handle(500, "GetReleaseCountByRepoID", err)
  327. return
  328. }
  329. ctx.Repo.Repository.NumReleases = int(count)
  330. ctx.Data["Title"] = owner.Name + "/" + repo.Name
  331. ctx.Data["Repository"] = repo
  332. ctx.Data["Owner"] = ctx.Repo.Repository.Owner
  333. ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner()
  334. ctx.Data["IsRepositoryAdmin"] = ctx.Repo.IsAdmin()
  335. ctx.Data["IsRepositoryWriter"] = ctx.Repo.IsWriter()
  336. ctx.Data["DisableSSH"] = setting.SSH.Disabled
  337. ctx.Data["ExposeAnonSSH"] = setting.SSH.ExposeAnonymous
  338. ctx.Data["DisableHTTP"] = setting.Repository.DisableHTTPGit
  339. ctx.Data["CloneLink"] = repo.CloneLink()
  340. ctx.Data["WikiCloneLink"] = repo.WikiCloneLink()
  341. if ctx.IsSigned {
  342. ctx.Data["IsWatchingRepo"] = models.IsWatching(ctx.User.ID, repo.ID)
  343. ctx.Data["IsStaringRepo"] = models.IsStaring(ctx.User.ID, repo.ID)
  344. }
  345. // repo is bare and display enable
  346. if ctx.Repo.Repository.IsBare {
  347. ctx.Data["BranchName"] = ctx.Repo.Repository.DefaultBranch
  348. return
  349. }
  350. ctx.Data["TagName"] = ctx.Repo.TagName
  351. brs, err := ctx.Repo.GitRepo.GetBranches()
  352. if err != nil {
  353. ctx.Handle(500, "GetBranches", err)
  354. return
  355. }
  356. ctx.Data["Branches"] = brs
  357. ctx.Data["BrancheCount"] = len(brs)
  358. // If not branch selected, try default one.
  359. // If default branch doesn't exists, fall back to some other branch.
  360. if len(ctx.Repo.BranchName) == 0 {
  361. if len(ctx.Repo.Repository.DefaultBranch) > 0 && gitRepo.IsBranchExist(ctx.Repo.Repository.DefaultBranch) {
  362. ctx.Repo.BranchName = ctx.Repo.Repository.DefaultBranch
  363. } else if len(brs) > 0 {
  364. ctx.Repo.BranchName = brs[0]
  365. }
  366. }
  367. ctx.Data["BranchName"] = ctx.Repo.BranchName
  368. ctx.Data["CommitID"] = ctx.Repo.CommitID
  369. if repo.IsFork {
  370. RetrieveBaseRepo(ctx, repo)
  371. if ctx.Written() {
  372. return
  373. }
  374. }
  375. // People who have push access or have forked repository can propose a new pull request.
  376. if ctx.Repo.IsWriter() || (ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID)) {
  377. // Pull request is allowed if this is a fork repository
  378. // and base repository accepts pull requests.
  379. if repo.BaseRepo != nil && repo.BaseRepo.AllowsPulls() {
  380. ctx.Data["BaseRepo"] = repo.BaseRepo
  381. ctx.Repo.PullRequest.BaseRepo = repo.BaseRepo
  382. ctx.Repo.PullRequest.Allowed = true
  383. ctx.Repo.PullRequest.HeadInfo = ctx.Repo.Owner.Name + ":" + ctx.Repo.BranchName
  384. } else {
  385. // Or, this is repository accepts pull requests between branches.
  386. if repo.AllowsPulls() {
  387. ctx.Data["BaseRepo"] = repo
  388. ctx.Repo.PullRequest.BaseRepo = repo
  389. ctx.Repo.PullRequest.Allowed = true
  390. ctx.Repo.PullRequest.SameRepo = true
  391. ctx.Repo.PullRequest.HeadInfo = ctx.Repo.BranchName
  392. }
  393. }
  394. // Reset repo units as otherwise user specific units wont be loaded later
  395. ctx.Repo.Repository.Units = nil
  396. }
  397. ctx.Data["PullRequestCtx"] = ctx.Repo.PullRequest
  398. if ctx.Query("go-get") == "1" {
  399. ctx.Data["GoGetImport"] = ComposeGoGetImport(owner.Name, repo.Name)
  400. prefix := setting.AppURL + path.Join(owner.Name, repo.Name, "src", ctx.Repo.BranchName)
  401. ctx.Data["GoDocDirectory"] = prefix + "{/dir}"
  402. ctx.Data["GoDocFile"] = prefix + "{/dir}/{file}#L{line}"
  403. }
  404. }
  405. }
  406. // RepoRef handles repository reference name including those contain `/`.
  407. func RepoRef() macaron.Handler {
  408. return func(ctx *Context) {
  409. // Empty repository does not have reference information.
  410. if ctx.Repo.Repository.IsBare {
  411. return
  412. }
  413. var (
  414. refName string
  415. err error
  416. )
  417. // For API calls.
  418. if ctx.Repo.GitRepo == nil {
  419. repoPath := models.RepoPath(ctx.Repo.Owner.Name, ctx.Repo.Repository.Name)
  420. ctx.Repo.GitRepo, err = git.OpenRepository(repoPath)
  421. if err != nil {
  422. ctx.Handle(500, "RepoRef Invalid repo "+repoPath, err)
  423. return
  424. }
  425. }
  426. // Get default branch.
  427. if len(ctx.Params("*")) == 0 {
  428. refName = ctx.Repo.Repository.DefaultBranch
  429. if !ctx.Repo.GitRepo.IsBranchExist(refName) {
  430. brs, err := ctx.Repo.GitRepo.GetBranches()
  431. if err != nil {
  432. ctx.Handle(500, "GetBranches", err)
  433. return
  434. } else if len(brs) == 0 {
  435. err = fmt.Errorf("No branches in non-bare repository %s",
  436. ctx.Repo.GitRepo.Path)
  437. ctx.Handle(500, "GetBranches", err)
  438. return
  439. }
  440. refName = brs[0]
  441. }
  442. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(refName)
  443. if err != nil {
  444. ctx.Handle(500, "GetBranchCommit", err)
  445. return
  446. }
  447. ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
  448. ctx.Repo.IsViewBranch = true
  449. } else {
  450. hasMatched := false
  451. parts := strings.Split(ctx.Params("*"), "/")
  452. for i, part := range parts {
  453. refName = strings.TrimPrefix(refName+"/"+part, "/")
  454. if ctx.Repo.GitRepo.IsBranchExist(refName) ||
  455. ctx.Repo.GitRepo.IsTagExist(refName) {
  456. if i < len(parts)-1 {
  457. ctx.Repo.TreePath = strings.Join(parts[i+1:], "/")
  458. }
  459. hasMatched = true
  460. break
  461. }
  462. }
  463. if !hasMatched && len(parts[0]) == 40 {
  464. refName = parts[0]
  465. ctx.Repo.TreePath = strings.Join(parts[1:], "/")
  466. }
  467. if ctx.Repo.GitRepo.IsBranchExist(refName) {
  468. ctx.Repo.IsViewBranch = true
  469. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(refName)
  470. if err != nil {
  471. ctx.Handle(500, "GetBranchCommit", err)
  472. return
  473. }
  474. ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
  475. } else if ctx.Repo.GitRepo.IsTagExist(refName) {
  476. ctx.Repo.IsViewTag = true
  477. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetTagCommit(refName)
  478. if err != nil {
  479. ctx.Handle(500, "GetTagCommit", err)
  480. return
  481. }
  482. ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
  483. } else if len(refName) == 40 {
  484. ctx.Repo.IsViewCommit = true
  485. ctx.Repo.CommitID = refName
  486. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetCommit(refName)
  487. if err != nil {
  488. ctx.Handle(404, "GetCommit", nil)
  489. return
  490. }
  491. } else {
  492. ctx.Handle(404, "RepoRef invalid repo", fmt.Errorf("branch or tag not exist: %s", refName))
  493. return
  494. }
  495. }
  496. ctx.Repo.BranchName = refName
  497. ctx.Data["BranchName"] = ctx.Repo.BranchName
  498. ctx.Data["CommitID"] = ctx.Repo.CommitID
  499. ctx.Data["TreePath"] = ctx.Repo.TreePath
  500. ctx.Data["IsViewBranch"] = ctx.Repo.IsViewBranch
  501. ctx.Data["IsViewTag"] = ctx.Repo.IsViewTag
  502. ctx.Data["IsViewCommit"] = ctx.Repo.IsViewCommit
  503. ctx.Repo.CommitsCount, err = ctx.Repo.Commit.CommitsCount()
  504. if err != nil {
  505. ctx.Handle(500, "CommitsCount", err)
  506. return
  507. }
  508. ctx.Data["CommitsCount"] = ctx.Repo.CommitsCount
  509. }
  510. }
  511. // RequireRepoAdmin returns a macaron middleware for requiring repository admin permission
  512. func RequireRepoAdmin() macaron.Handler {
  513. return func(ctx *Context) {
  514. if !ctx.IsSigned || (!ctx.Repo.IsAdmin() && !ctx.User.IsAdmin) {
  515. ctx.Handle(404, ctx.Req.RequestURI, nil)
  516. return
  517. }
  518. }
  519. }
  520. // RequireRepoWriter returns a macaron middleware for requiring repository write permission
  521. func RequireRepoWriter() macaron.Handler {
  522. return func(ctx *Context) {
  523. if !ctx.IsSigned || (!ctx.Repo.IsWriter() && !ctx.User.IsAdmin) {
  524. ctx.Handle(404, ctx.Req.RequestURI, nil)
  525. return
  526. }
  527. }
  528. }
  529. // LoadRepoUnits loads repsitory's units, it should be called after repository and user loaded
  530. func LoadRepoUnits() macaron.Handler {
  531. return func(ctx *Context) {
  532. var isAdmin bool
  533. if ctx.User != nil && ctx.User.IsAdmin {
  534. isAdmin = true
  535. }
  536. var userID int64
  537. if ctx.User != nil {
  538. userID = ctx.User.ID
  539. }
  540. err := ctx.Repo.Repository.LoadUnitsByUserID(userID, isAdmin)
  541. if err != nil {
  542. ctx.Handle(500, "LoadUnitsByUserID", err)
  543. return
  544. }
  545. }
  546. }
  547. // CheckUnit will check whether
  548. func CheckUnit(unitType models.UnitType) macaron.Handler {
  549. return func(ctx *Context) {
  550. if !ctx.Repo.Repository.UnitEnabled(unitType) {
  551. ctx.Handle(404, "CheckUnit", fmt.Errorf("%s: %v", ctx.Tr("units.error.unit_not_allowed"), unitType))
  552. }
  553. }
  554. }
  555. // GitHookService checks if repository Git hooks service has been enabled.
  556. func GitHookService() macaron.Handler {
  557. return func(ctx *Context) {
  558. if !ctx.User.CanEditGitHook() {
  559. ctx.Handle(404, "GitHookService", nil)
  560. return
  561. }
  562. }
  563. }
  564. // UnitTypes returns a macaron middleware to set unit types to context variables.
  565. func UnitTypes() macaron.Handler {
  566. return func(ctx *Context) {
  567. ctx.Data["UnitTypeCode"] = models.UnitTypeCode
  568. ctx.Data["UnitTypeIssues"] = models.UnitTypeIssues
  569. ctx.Data["UnitTypePullRequests"] = models.UnitTypePullRequests
  570. ctx.Data["UnitTypeReleases"] = models.UnitTypeReleases
  571. ctx.Data["UnitTypeWiki"] = models.UnitTypeWiki
  572. ctx.Data["UnitTypeExternalWiki"] = models.UnitTypeExternalWiki
  573. ctx.Data["UnitTypeExternalTracker"] = models.UnitTypeExternalTracker
  574. }
  575. }