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
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  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. ctx.PlainText(200, []byte(com.Expand(`<meta name="go-import" content="{GoGetImport} git {CloneLink}">`,
  132. map[string]string{
  133. "GoGetImport": composeGoGetImport(ctx.Params(":username"), strings.TrimSuffix(ctx.Params(":reponame"), ".git")),
  134. "CloneLink": models.ComposeHTTPSCloneURL(ctx.Params(":username"), ctx.Params(":reponame")),
  135. })))
  136. }
  137. // RedirectToRepo redirect to a differently-named repository
  138. func RedirectToRepo(ctx *Context, redirectRepoID int64) {
  139. ownerName := ctx.Params(":username")
  140. previousRepoName := ctx.Params(":reponame")
  141. repo, err := models.GetRepositoryByID(redirectRepoID)
  142. if err != nil {
  143. ctx.Handle(500, "GetRepositoryByID", err)
  144. return
  145. }
  146. redirectPath := strings.Replace(
  147. ctx.Req.URL.Path,
  148. fmt.Sprintf("%s/%s", ownerName, previousRepoName),
  149. fmt.Sprintf("%s/%s", ownerName, repo.Name),
  150. 1,
  151. )
  152. ctx.Redirect(redirectPath)
  153. }
  154. // RepoIDAssignment returns an macaron handler which assigns the repo to the context.
  155. func RepoIDAssignment() macaron.Handler {
  156. return func(ctx *Context) {
  157. var (
  158. err error
  159. )
  160. repoID := ctx.ParamsInt64(":repoid")
  161. // Get repository.
  162. repo, err := models.GetRepositoryByID(repoID)
  163. if err != nil {
  164. if models.IsErrRepoNotExist(err) {
  165. ctx.Handle(404, "GetRepositoryByID", nil)
  166. } else {
  167. ctx.Handle(500, "GetRepositoryByID", err)
  168. }
  169. return
  170. }
  171. if err = repo.GetOwner(); err != nil {
  172. ctx.Handle(500, "GetOwner", err)
  173. return
  174. }
  175. // Admin has super access.
  176. if ctx.IsSigned && ctx.User.IsAdmin {
  177. ctx.Repo.AccessMode = models.AccessModeOwner
  178. } else {
  179. var userID int64
  180. if ctx.User != nil {
  181. userID = ctx.User.ID
  182. }
  183. mode, err := models.AccessLevel(userID, repo)
  184. if err != nil {
  185. ctx.Handle(500, "AccessLevel", err)
  186. return
  187. }
  188. ctx.Repo.AccessMode = mode
  189. }
  190. // Check access.
  191. if ctx.Repo.AccessMode == models.AccessModeNone {
  192. if ctx.Query("go-get") == "1" {
  193. earlyResponseForGoGetMeta(ctx)
  194. return
  195. }
  196. ctx.Handle(404, "no access right", err)
  197. return
  198. }
  199. ctx.Data["HasAccess"] = true
  200. if repo.IsMirror {
  201. ctx.Repo.Mirror, err = models.GetMirrorByRepoID(repo.ID)
  202. if err != nil {
  203. ctx.Handle(500, "GetMirror", err)
  204. return
  205. }
  206. ctx.Data["MirrorEnablePrune"] = ctx.Repo.Mirror.EnablePrune
  207. ctx.Data["MirrorInterval"] = ctx.Repo.Mirror.Interval
  208. ctx.Data["Mirror"] = ctx.Repo.Mirror
  209. }
  210. ctx.Repo.Repository = repo
  211. ctx.Data["RepoName"] = ctx.Repo.Repository.Name
  212. ctx.Data["IsBareRepo"] = ctx.Repo.Repository.IsBare
  213. }
  214. }
  215. // RepoAssignment returns a macaron to handle repository assignment
  216. func RepoAssignment() macaron.Handler {
  217. return func(ctx *Context) {
  218. var (
  219. owner *models.User
  220. err error
  221. )
  222. userName := ctx.Params(":username")
  223. repoName := ctx.Params(":reponame")
  224. // Check if the user is the same as the repository owner
  225. if ctx.IsSigned && ctx.User.LowerName == strings.ToLower(userName) {
  226. owner = ctx.User
  227. } else {
  228. owner, err = models.GetUserByName(userName)
  229. if err != nil {
  230. if models.IsErrUserNotExist(err) {
  231. if ctx.Query("go-get") == "1" {
  232. earlyResponseForGoGetMeta(ctx)
  233. return
  234. }
  235. ctx.Handle(404, "GetUserByName", nil)
  236. } else {
  237. ctx.Handle(500, "GetUserByName", err)
  238. }
  239. return
  240. }
  241. }
  242. ctx.Repo.Owner = owner
  243. ctx.Data["Username"] = ctx.Repo.Owner.Name
  244. // Get repository.
  245. repo, err := models.GetRepositoryByName(owner.ID, repoName)
  246. if err != nil {
  247. if models.IsErrRepoNotExist(err) {
  248. redirectRepoID, err := models.LookupRepoRedirect(owner.ID, repoName)
  249. if err == nil {
  250. RedirectToRepo(ctx, redirectRepoID)
  251. } else if models.IsErrRepoRedirectNotExist(err) {
  252. if ctx.Query("go-get") == "1" {
  253. earlyResponseForGoGetMeta(ctx)
  254. return
  255. }
  256. ctx.Handle(404, "GetRepositoryByName", nil)
  257. } else {
  258. ctx.Handle(500, "LookupRepoRedirect", err)
  259. }
  260. } else {
  261. ctx.Handle(500, "GetRepositoryByName", err)
  262. }
  263. return
  264. }
  265. repo.Owner = owner
  266. // Admin has super access.
  267. if ctx.IsSigned && ctx.User.IsAdmin {
  268. ctx.Repo.AccessMode = models.AccessModeOwner
  269. } else {
  270. var userID int64
  271. if ctx.User != nil {
  272. userID = ctx.User.ID
  273. }
  274. mode, err := models.AccessLevel(userID, repo)
  275. if err != nil {
  276. ctx.Handle(500, "AccessLevel", err)
  277. return
  278. }
  279. ctx.Repo.AccessMode = mode
  280. }
  281. // Check access.
  282. if ctx.Repo.AccessMode == models.AccessModeNone {
  283. if ctx.Query("go-get") == "1" {
  284. earlyResponseForGoGetMeta(ctx)
  285. return
  286. }
  287. ctx.Handle(404, "no access right", err)
  288. return
  289. }
  290. ctx.Data["HasAccess"] = true
  291. if repo.IsMirror {
  292. ctx.Repo.Mirror, err = models.GetMirrorByRepoID(repo.ID)
  293. if err != nil {
  294. ctx.Handle(500, "GetMirror", err)
  295. return
  296. }
  297. ctx.Data["MirrorEnablePrune"] = ctx.Repo.Mirror.EnablePrune
  298. ctx.Data["MirrorInterval"] = ctx.Repo.Mirror.Interval
  299. ctx.Data["Mirror"] = ctx.Repo.Mirror
  300. }
  301. ctx.Repo.Repository = repo
  302. ctx.Data["RepoName"] = ctx.Repo.Repository.Name
  303. ctx.Data["IsBareRepo"] = ctx.Repo.Repository.IsBare
  304. gitRepo, err := git.OpenRepository(models.RepoPath(userName, repoName))
  305. if err != nil {
  306. ctx.Handle(500, "RepoAssignment Invalid repo "+models.RepoPath(userName, repoName), err)
  307. return
  308. }
  309. ctx.Repo.GitRepo = gitRepo
  310. ctx.Repo.RepoLink = repo.Link()
  311. ctx.Data["RepoLink"] = ctx.Repo.RepoLink
  312. ctx.Data["RepoRelPath"] = ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name
  313. tags, err := ctx.Repo.GitRepo.GetTags()
  314. if err != nil {
  315. ctx.Handle(500, "GetTags", err)
  316. return
  317. }
  318. ctx.Data["Tags"] = tags
  319. count, err := models.GetReleaseCountByRepoID(ctx.Repo.Repository.ID, models.FindReleasesOptions{
  320. IncludeDrafts: false,
  321. IncludeTags: true,
  322. })
  323. if err != nil {
  324. ctx.Handle(500, "GetReleaseCountByRepoID", err)
  325. return
  326. }
  327. ctx.Repo.Repository.NumReleases = int(count)
  328. ctx.Data["Title"] = owner.Name + "/" + repo.Name
  329. ctx.Data["Repository"] = repo
  330. ctx.Data["Owner"] = ctx.Repo.Repository.Owner
  331. ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner()
  332. ctx.Data["IsRepositoryAdmin"] = ctx.Repo.IsAdmin()
  333. ctx.Data["IsRepositoryWriter"] = ctx.Repo.IsWriter()
  334. ctx.Data["DisableSSH"] = setting.SSH.Disabled
  335. ctx.Data["ExposeAnonSSH"] = setting.SSH.ExposeAnonymous
  336. ctx.Data["DisableHTTP"] = setting.Repository.DisableHTTPGit
  337. ctx.Data["CloneLink"] = repo.CloneLink()
  338. ctx.Data["WikiCloneLink"] = repo.WikiCloneLink()
  339. if ctx.IsSigned {
  340. ctx.Data["IsWatchingRepo"] = models.IsWatching(ctx.User.ID, repo.ID)
  341. ctx.Data["IsStaringRepo"] = models.IsStaring(ctx.User.ID, repo.ID)
  342. }
  343. // repo is bare and display enable
  344. if ctx.Repo.Repository.IsBare {
  345. ctx.Data["BranchName"] = ctx.Repo.Repository.DefaultBranch
  346. return
  347. }
  348. ctx.Data["TagName"] = ctx.Repo.TagName
  349. brs, err := ctx.Repo.GitRepo.GetBranches()
  350. if err != nil {
  351. ctx.Handle(500, "GetBranches", err)
  352. return
  353. }
  354. ctx.Data["Branches"] = brs
  355. ctx.Data["BrancheCount"] = len(brs)
  356. // If not branch selected, try default one.
  357. // If default branch doesn't exists, fall back to some other branch.
  358. if len(ctx.Repo.BranchName) == 0 {
  359. if len(ctx.Repo.Repository.DefaultBranch) > 0 && gitRepo.IsBranchExist(ctx.Repo.Repository.DefaultBranch) {
  360. ctx.Repo.BranchName = ctx.Repo.Repository.DefaultBranch
  361. } else if len(brs) > 0 {
  362. ctx.Repo.BranchName = brs[0]
  363. }
  364. }
  365. ctx.Data["BranchName"] = ctx.Repo.BranchName
  366. ctx.Data["CommitID"] = ctx.Repo.CommitID
  367. if repo.IsFork {
  368. RetrieveBaseRepo(ctx, repo)
  369. if ctx.Written() {
  370. return
  371. }
  372. }
  373. // People who have push access or have forked repository can propose a new pull request.
  374. if ctx.Repo.IsWriter() || (ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID)) {
  375. // Pull request is allowed if this is a fork repository
  376. // and base repository accepts pull requests.
  377. if repo.BaseRepo != nil && repo.BaseRepo.AllowsPulls() {
  378. ctx.Data["BaseRepo"] = repo.BaseRepo
  379. ctx.Repo.PullRequest.BaseRepo = repo.BaseRepo
  380. ctx.Repo.PullRequest.Allowed = true
  381. ctx.Repo.PullRequest.HeadInfo = ctx.Repo.Owner.Name + ":" + ctx.Repo.BranchName
  382. } else {
  383. // Or, this is repository accepts pull requests between branches.
  384. if repo.AllowsPulls() {
  385. ctx.Data["BaseRepo"] = repo
  386. ctx.Repo.PullRequest.BaseRepo = repo
  387. ctx.Repo.PullRequest.Allowed = true
  388. ctx.Repo.PullRequest.SameRepo = true
  389. ctx.Repo.PullRequest.HeadInfo = ctx.Repo.BranchName
  390. }
  391. }
  392. // Reset repo units as otherwise user specific units wont be loaded later
  393. ctx.Repo.Repository.Units = nil
  394. }
  395. ctx.Data["PullRequestCtx"] = ctx.Repo.PullRequest
  396. if ctx.Query("go-get") == "1" {
  397. ctx.Data["GoGetImport"] = composeGoGetImport(owner.Name, repo.Name)
  398. prefix := setting.AppURL + path.Join(owner.Name, repo.Name, "src", ctx.Repo.BranchName)
  399. ctx.Data["GoDocDirectory"] = prefix + "{/dir}"
  400. ctx.Data["GoDocFile"] = prefix + "{/dir}/{file}#L{line}"
  401. }
  402. }
  403. }
  404. // RepoRef handles repository reference name including those contain `/`.
  405. func RepoRef() macaron.Handler {
  406. return func(ctx *Context) {
  407. // Empty repository does not have reference information.
  408. if ctx.Repo.Repository.IsBare {
  409. return
  410. }
  411. var (
  412. refName string
  413. err error
  414. )
  415. // For API calls.
  416. if ctx.Repo.GitRepo == nil {
  417. repoPath := models.RepoPath(ctx.Repo.Owner.Name, ctx.Repo.Repository.Name)
  418. ctx.Repo.GitRepo, err = git.OpenRepository(repoPath)
  419. if err != nil {
  420. ctx.Handle(500, "RepoRef Invalid repo "+repoPath, err)
  421. return
  422. }
  423. }
  424. // Get default branch.
  425. if len(ctx.Params("*")) == 0 {
  426. refName = ctx.Repo.Repository.DefaultBranch
  427. if !ctx.Repo.GitRepo.IsBranchExist(refName) {
  428. brs, err := ctx.Repo.GitRepo.GetBranches()
  429. if err != nil {
  430. ctx.Handle(500, "GetBranches", err)
  431. return
  432. } else if len(brs) == 0 {
  433. err = fmt.Errorf("No branches in non-bare repository %s",
  434. ctx.Repo.GitRepo.Path)
  435. ctx.Handle(500, "GetBranches", err)
  436. return
  437. }
  438. refName = brs[0]
  439. }
  440. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(refName)
  441. if err != nil {
  442. ctx.Handle(500, "GetBranchCommit", err)
  443. return
  444. }
  445. ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
  446. ctx.Repo.IsViewBranch = true
  447. } else {
  448. hasMatched := false
  449. parts := strings.Split(ctx.Params("*"), "/")
  450. for i, part := range parts {
  451. refName = strings.TrimPrefix(refName+"/"+part, "/")
  452. if ctx.Repo.GitRepo.IsBranchExist(refName) ||
  453. ctx.Repo.GitRepo.IsTagExist(refName) {
  454. if i < len(parts)-1 {
  455. ctx.Repo.TreePath = strings.Join(parts[i+1:], "/")
  456. }
  457. hasMatched = true
  458. break
  459. }
  460. }
  461. if !hasMatched && len(parts[0]) == 40 {
  462. refName = parts[0]
  463. ctx.Repo.TreePath = strings.Join(parts[1:], "/")
  464. }
  465. if ctx.Repo.GitRepo.IsBranchExist(refName) {
  466. ctx.Repo.IsViewBranch = true
  467. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(refName)
  468. if err != nil {
  469. ctx.Handle(500, "GetBranchCommit", err)
  470. return
  471. }
  472. ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
  473. } else if ctx.Repo.GitRepo.IsTagExist(refName) {
  474. ctx.Repo.IsViewTag = true
  475. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetTagCommit(refName)
  476. if err != nil {
  477. ctx.Handle(500, "GetTagCommit", err)
  478. return
  479. }
  480. ctx.Repo.CommitID = ctx.Repo.Commit.ID.String()
  481. } else if len(refName) == 40 {
  482. ctx.Repo.IsViewCommit = true
  483. ctx.Repo.CommitID = refName
  484. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetCommit(refName)
  485. if err != nil {
  486. ctx.Handle(404, "GetCommit", nil)
  487. return
  488. }
  489. } else {
  490. ctx.Handle(404, "RepoRef invalid repo", fmt.Errorf("branch or tag not exist: %s", refName))
  491. return
  492. }
  493. }
  494. ctx.Repo.BranchName = refName
  495. ctx.Data["BranchName"] = ctx.Repo.BranchName
  496. ctx.Data["CommitID"] = ctx.Repo.CommitID
  497. ctx.Data["TreePath"] = ctx.Repo.TreePath
  498. ctx.Data["IsViewBranch"] = ctx.Repo.IsViewBranch
  499. ctx.Data["IsViewTag"] = ctx.Repo.IsViewTag
  500. ctx.Data["IsViewCommit"] = ctx.Repo.IsViewCommit
  501. ctx.Repo.CommitsCount, err = ctx.Repo.Commit.CommitsCount()
  502. if err != nil {
  503. ctx.Handle(500, "CommitsCount", err)
  504. return
  505. }
  506. ctx.Data["CommitsCount"] = ctx.Repo.CommitsCount
  507. }
  508. }
  509. // RequireRepoAdmin returns a macaron middleware for requiring repository admin permission
  510. func RequireRepoAdmin() macaron.Handler {
  511. return func(ctx *Context) {
  512. if !ctx.IsSigned || (!ctx.Repo.IsAdmin() && !ctx.User.IsAdmin) {
  513. ctx.Handle(404, ctx.Req.RequestURI, nil)
  514. return
  515. }
  516. }
  517. }
  518. // RequireRepoWriter returns a macaron middleware for requiring repository write permission
  519. func RequireRepoWriter() macaron.Handler {
  520. return func(ctx *Context) {
  521. if !ctx.IsSigned || (!ctx.Repo.IsWriter() && !ctx.User.IsAdmin) {
  522. ctx.Handle(404, ctx.Req.RequestURI, nil)
  523. return
  524. }
  525. }
  526. }
  527. // LoadRepoUnits loads repsitory's units, it should be called after repository and user loaded
  528. func LoadRepoUnits() macaron.Handler {
  529. return func(ctx *Context) {
  530. var isAdmin bool
  531. if ctx.User != nil && ctx.User.IsAdmin {
  532. isAdmin = true
  533. }
  534. var userID int64
  535. if ctx.User != nil {
  536. userID = ctx.User.ID
  537. }
  538. err := ctx.Repo.Repository.LoadUnitsByUserID(userID, isAdmin)
  539. if err != nil {
  540. ctx.Handle(500, "LoadUnitsByUserID", err)
  541. return
  542. }
  543. }
  544. }
  545. // CheckUnit will check whether
  546. func CheckUnit(unitType models.UnitType) macaron.Handler {
  547. return func(ctx *Context) {
  548. if !ctx.Repo.Repository.UnitEnabled(unitType) {
  549. ctx.Handle(404, "CheckUnit", fmt.Errorf("%s: %v", ctx.Tr("units.error.unit_not_allowed"), unitType))
  550. }
  551. }
  552. }
  553. // GitHookService checks if repository Git hooks service has been enabled.
  554. func GitHookService() macaron.Handler {
  555. return func(ctx *Context) {
  556. if !ctx.User.CanEditGitHook() {
  557. ctx.Handle(404, "GitHookService", nil)
  558. return
  559. }
  560. }
  561. }
  562. // UnitTypes returns a macaron middleware to set unit types to context variables.
  563. func UnitTypes() macaron.Handler {
  564. return func(ctx *Context) {
  565. ctx.Data["UnitTypeCode"] = models.UnitTypeCode
  566. ctx.Data["UnitTypeIssues"] = models.UnitTypeIssues
  567. ctx.Data["UnitTypePullRequests"] = models.UnitTypePullRequests
  568. ctx.Data["UnitTypeReleases"] = models.UnitTypeReleases
  569. ctx.Data["UnitTypeWiki"] = models.UnitTypeWiki
  570. ctx.Data["UnitTypeExternalWiki"] = models.UnitTypeExternalWiki
  571. ctx.Data["UnitTypeExternalTracker"] = models.UnitTypeExternalTracker
  572. }
  573. }