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.

view.go 11 kB

Git LFS support v2 (#122) * Import github.com/git-lfs/lfs-test-server as lfs module base Imported commit is 3968aac269a77b73924649b9412ae03f7ccd3198 Removed: Dockerfile CONTRIBUTING.md mgmt* script/ vendor/ kvlogger.go .dockerignore .gitignore README.md * Remove config, add JWT support from github.com/mgit-at/lfs-test-server Imported commit f0cdcc5a01599c5a955dc1bbf683bb4acecdba83 * Add LFS settings * Add LFS meta object model * Add LFS routes and initialization * Import github.com/dgrijalva/jwt-go into vendor/ * Adapt LFS module: handlers, routing, meta store * Move LFS routes to /user/repo/info/lfs/* * Add request header checks to LFS BatchHandler / PostHandler * Implement LFS basic authentication * Rework JWT secret generation / load * Implement LFS SSH token authentication with JWT Specification: https://github.com/github/git-lfs/tree/master/docs/api * Integrate LFS settings into install process * Remove LFS objects when repository is deleted Only removes objects from content store when deleted repo is the only referencing repository * Make LFS module stateless Fixes bug where LFS would not work after installation without restarting Gitea * Change 500 'Internal Server Error' to 400 'Bad Request' * Change sql query to xorm call * Remove unneeded type from LFS module * Change internal imports to code.gitea.io/gitea/ * Add Gitea authors copyright * Change basic auth realm to "gitea-lfs" * Add unique indexes to LFS model * Use xorm count function in LFS check on repository delete * Return io.ReadCloser from content store and close after usage * Add LFS info to runWeb() * Export LFS content store base path * LFS file download from UI * Work around git-lfs client issue with unauthenticated requests Returning a dummy Authorization header for unauthenticated requests lets git-lfs client skip asking for auth credentials See: https://github.com/github/git-lfs/issues/1088 * Fix unauthenticated UI downloads from public repositories * Authentication check order, Finish LFS file view logic * Ignore LFS hooks if installed for current OS user Fixes Gitea UI actions for repositories tracking LFS files. Checks for minimum needed git version by parsing the semantic version string. * Hide LFS metafile diff from commit view, marking as binary * Show LFS notice if file in commit view is tracked * Add notbefore/nbf JWT claim * Correct lint suggestions - comments for structs and functions - Add comments to LFS model - Function comment for GetRandomBytesAsBase64 - LFS server function comments and lint variable suggestion * Move secret generation code out of conditional Ensures no LFS code may run with an empty secret * Do not hand out JWT tokens if LFS server support is disabled
9 years ago
11 years ago
Git LFS support v2 (#122) * Import github.com/git-lfs/lfs-test-server as lfs module base Imported commit is 3968aac269a77b73924649b9412ae03f7ccd3198 Removed: Dockerfile CONTRIBUTING.md mgmt* script/ vendor/ kvlogger.go .dockerignore .gitignore README.md * Remove config, add JWT support from github.com/mgit-at/lfs-test-server Imported commit f0cdcc5a01599c5a955dc1bbf683bb4acecdba83 * Add LFS settings * Add LFS meta object model * Add LFS routes and initialization * Import github.com/dgrijalva/jwt-go into vendor/ * Adapt LFS module: handlers, routing, meta store * Move LFS routes to /user/repo/info/lfs/* * Add request header checks to LFS BatchHandler / PostHandler * Implement LFS basic authentication * Rework JWT secret generation / load * Implement LFS SSH token authentication with JWT Specification: https://github.com/github/git-lfs/tree/master/docs/api * Integrate LFS settings into install process * Remove LFS objects when repository is deleted Only removes objects from content store when deleted repo is the only referencing repository * Make LFS module stateless Fixes bug where LFS would not work after installation without restarting Gitea * Change 500 'Internal Server Error' to 400 'Bad Request' * Change sql query to xorm call * Remove unneeded type from LFS module * Change internal imports to code.gitea.io/gitea/ * Add Gitea authors copyright * Change basic auth realm to "gitea-lfs" * Add unique indexes to LFS model * Use xorm count function in LFS check on repository delete * Return io.ReadCloser from content store and close after usage * Add LFS info to runWeb() * Export LFS content store base path * LFS file download from UI * Work around git-lfs client issue with unauthenticated requests Returning a dummy Authorization header for unauthenticated requests lets git-lfs client skip asking for auth credentials See: https://github.com/github/git-lfs/issues/1088 * Fix unauthenticated UI downloads from public repositories * Authentication check order, Finish LFS file view logic * Ignore LFS hooks if installed for current OS user Fixes Gitea UI actions for repositories tracking LFS files. Checks for minimum needed git version by parsing the semantic version string. * Hide LFS metafile diff from commit view, marking as binary * Show LFS notice if file in commit view is tracked * Add notbefore/nbf JWT claim * Correct lint suggestions - comments for structs and functions - Add comments to LFS model - Function comment for GetRandomBytesAsBase64 - LFS server function comments and lint variable suggestion * Move secret generation code out of conditional Ensures no LFS code may run with an empty secret * Do not hand out JWT tokens if LFS server support is disabled
9 years ago
10 years ago
10 years ago
10 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. // Copyright 2017 The Gitea Authors. All rights reserved.
  2. // Copyright 2014 The Gogs 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 repo
  6. import (
  7. "bytes"
  8. "encoding/base64"
  9. "fmt"
  10. gotemplate "html/template"
  11. "io/ioutil"
  12. "path"
  13. "strconv"
  14. "strings"
  15. "code.gitea.io/git"
  16. "code.gitea.io/gitea/models"
  17. "code.gitea.io/gitea/modules/base"
  18. "code.gitea.io/gitea/modules/context"
  19. "code.gitea.io/gitea/modules/highlight"
  20. "code.gitea.io/gitea/modules/lfs"
  21. "code.gitea.io/gitea/modules/log"
  22. "code.gitea.io/gitea/modules/markup"
  23. "code.gitea.io/gitea/modules/setting"
  24. "code.gitea.io/gitea/modules/templates"
  25. "github.com/Unknwon/paginater"
  26. )
  27. const (
  28. tplRepoBARE base.TplName = "repo/bare"
  29. tplRepoHome base.TplName = "repo/home"
  30. tplWatchers base.TplName = "repo/watchers"
  31. tplForks base.TplName = "repo/forks"
  32. )
  33. func renderDirectory(ctx *context.Context, treeLink string) {
  34. tree, err := ctx.Repo.Commit.SubTree(ctx.Repo.TreePath)
  35. if err != nil {
  36. ctx.NotFoundOrServerError("Repo.Commit.SubTree", git.IsErrNotExist, err)
  37. return
  38. }
  39. entries, err := tree.ListEntries()
  40. if err != nil {
  41. ctx.Handle(500, "ListEntries", err)
  42. return
  43. }
  44. entries.CustomSort(base.NaturalSortLess)
  45. ctx.Data["Files"], err = entries.GetCommitsInfo(ctx.Repo.Commit, ctx.Repo.TreePath)
  46. if err != nil {
  47. ctx.Handle(500, "GetCommitsInfo", err)
  48. return
  49. }
  50. var readmeFile *git.Blob
  51. for _, entry := range entries {
  52. if entry.IsDir() {
  53. continue
  54. }
  55. if !markup.IsReadmeFile(entry.Name()) {
  56. continue
  57. }
  58. readmeFile = entry.Blob()
  59. if markup.Type(entry.Name()) != "" {
  60. break
  61. }
  62. }
  63. if readmeFile != nil {
  64. ctx.Data["RawFileLink"] = ""
  65. ctx.Data["ReadmeInList"] = true
  66. ctx.Data["ReadmeExist"] = true
  67. dataRc, err := readmeFile.Data()
  68. if err != nil {
  69. ctx.Handle(500, "Data", err)
  70. return
  71. }
  72. buf := make([]byte, 1024)
  73. n, _ := dataRc.Read(buf)
  74. buf = buf[:n]
  75. isTextFile := base.IsTextFile(buf)
  76. ctx.Data["FileIsText"] = isTextFile
  77. ctx.Data["FileName"] = readmeFile.Name()
  78. // FIXME: what happens when README file is an image?
  79. if isTextFile {
  80. d, _ := ioutil.ReadAll(dataRc)
  81. buf = append(buf, d...)
  82. ctx.Data["IsRenderedHTML"] = true
  83. if markup.Type(readmeFile.Name()) != "" {
  84. ctx.Data["FileContent"] = string(markup.Render(readmeFile.Name(), buf, treeLink, ctx.Repo.Repository.ComposeMetas()))
  85. } else {
  86. ctx.Data["FileContent"] = string(bytes.Replace(buf, []byte("\n"), []byte(`<br>`), -1))
  87. }
  88. }
  89. }
  90. // Show latest commit info of repository in table header,
  91. // or of directory if not in root directory.
  92. latestCommit := ctx.Repo.Commit
  93. if len(ctx.Repo.TreePath) > 0 {
  94. latestCommit, err = ctx.Repo.Commit.GetCommitByPath(ctx.Repo.TreePath)
  95. if err != nil {
  96. ctx.Handle(500, "GetCommitByPath", err)
  97. return
  98. }
  99. }
  100. ctx.Data["LatestCommit"] = latestCommit
  101. ctx.Data["LatestCommitVerification"] = models.ParseCommitWithSignature(latestCommit)
  102. ctx.Data["LatestCommitUser"] = models.ValidateCommitWithEmail(latestCommit)
  103. statuses, err := models.GetLatestCommitStatus(ctx.Repo.Repository, ctx.Repo.Commit.ID.String(), 0)
  104. if err != nil {
  105. log.Error(3, "GetLatestCommitStatus: %v", err)
  106. }
  107. ctx.Data["LatestCommitStatus"] = models.CalcCommitStatus(statuses)
  108. // Check permission to add or upload new file.
  109. if ctx.Repo.IsWriter() && ctx.Repo.IsViewBranch {
  110. ctx.Data["CanAddFile"] = true
  111. ctx.Data["CanUploadFile"] = setting.Repository.Upload.Enabled
  112. }
  113. }
  114. func renderFile(ctx *context.Context, entry *git.TreeEntry, treeLink, rawLink string) {
  115. ctx.Data["IsViewFile"] = true
  116. blob := entry.Blob()
  117. dataRc, err := blob.Data()
  118. if err != nil {
  119. ctx.Handle(500, "Data", err)
  120. return
  121. }
  122. ctx.Data["FileSize"] = blob.Size()
  123. ctx.Data["FileName"] = blob.Name()
  124. ctx.Data["HighlightClass"] = highlight.FileNameToHighlightClass(blob.Name())
  125. ctx.Data["RawFileLink"] = rawLink + "/" + ctx.Repo.TreePath
  126. buf := make([]byte, 1024)
  127. n, _ := dataRc.Read(buf)
  128. buf = buf[:n]
  129. isTextFile := base.IsTextFile(buf)
  130. ctx.Data["IsTextFile"] = isTextFile
  131. //Check for LFS meta file
  132. if isTextFile && setting.LFS.StartServer {
  133. headString := string(buf)
  134. if strings.HasPrefix(headString, models.LFSMetaFileIdentifier) {
  135. splitLines := strings.Split(headString, "\n")
  136. if len(splitLines) >= 3 {
  137. oid := strings.TrimPrefix(splitLines[1], models.LFSMetaFileOidPrefix)
  138. size, err := strconv.ParseInt(strings.TrimPrefix(splitLines[2], "size "), 10, 64)
  139. if len(oid) == 64 && err == nil {
  140. contentStore := &lfs.ContentStore{BasePath: setting.LFS.ContentPath}
  141. meta := &models.LFSMetaObject{Oid: oid}
  142. if contentStore.Exists(meta) {
  143. ctx.Data["IsTextFile"] = false
  144. isTextFile = false
  145. ctx.Data["IsLFSFile"] = true
  146. ctx.Data["FileSize"] = size
  147. filenameBase64 := base64.RawURLEncoding.EncodeToString([]byte(blob.Name()))
  148. ctx.Data["RawFileLink"] = fmt.Sprintf("%s%s/info/lfs/objects/%s/%s", setting.AppURL, ctx.Repo.Repository.FullName(), oid, filenameBase64)
  149. }
  150. }
  151. }
  152. }
  153. }
  154. // Assume file is not editable first.
  155. if !isTextFile {
  156. ctx.Data["EditFileTooltip"] = ctx.Tr("repo.editor.cannot_edit_non_text_files")
  157. }
  158. switch {
  159. case isTextFile:
  160. if blob.Size() >= setting.UI.MaxDisplayFileSize {
  161. ctx.Data["IsFileTooLarge"] = true
  162. break
  163. }
  164. d, _ := ioutil.ReadAll(dataRc)
  165. buf = append(buf, d...)
  166. readmeExist := markup.IsReadmeFile(blob.Name())
  167. ctx.Data["ReadmeExist"] = readmeExist
  168. if markup.Type(blob.Name()) != "" {
  169. ctx.Data["IsRenderedHTML"] = true
  170. ctx.Data["FileContent"] = string(markup.Render(blob.Name(), buf, path.Dir(treeLink), ctx.Repo.Repository.ComposeMetas()))
  171. } else if readmeExist {
  172. ctx.Data["IsRenderedHTML"] = true
  173. ctx.Data["FileContent"] = string(bytes.Replace(buf, []byte("\n"), []byte(`<br>`), -1))
  174. } else {
  175. // Building code view blocks with line number on server side.
  176. var fileContent string
  177. if content, err := templates.ToUTF8WithErr(buf); err != nil {
  178. if err != nil {
  179. log.Error(4, "ToUTF8WithErr: %v", err)
  180. }
  181. fileContent = string(buf)
  182. } else {
  183. fileContent = content
  184. }
  185. var output bytes.Buffer
  186. lines := strings.Split(fileContent, "\n")
  187. for index, line := range lines {
  188. line = gotemplate.HTMLEscapeString(line)
  189. if index != len(lines)-1 {
  190. line += "\n"
  191. }
  192. output.WriteString(fmt.Sprintf(`<li class="L%d" rel="L%d">%s</li>`, index+1, index+1, line))
  193. }
  194. ctx.Data["FileContent"] = gotemplate.HTML(output.String())
  195. output.Reset()
  196. for i := 0; i < len(lines); i++ {
  197. output.WriteString(fmt.Sprintf(`<span id="L%d">%d</span>`, i+1, i+1))
  198. }
  199. ctx.Data["LineNums"] = gotemplate.HTML(output.String())
  200. }
  201. if ctx.Repo.CanEnableEditor() {
  202. ctx.Data["CanEditFile"] = true
  203. ctx.Data["EditFileTooltip"] = ctx.Tr("repo.editor.edit_this_file")
  204. } else if !ctx.Repo.IsViewBranch {
  205. ctx.Data["EditFileTooltip"] = ctx.Tr("repo.editor.must_be_on_a_branch")
  206. } else if !ctx.Repo.IsWriter() {
  207. ctx.Data["EditFileTooltip"] = ctx.Tr("repo.editor.fork_before_edit")
  208. }
  209. case base.IsPDFFile(buf):
  210. ctx.Data["IsPDFFile"] = true
  211. case base.IsVideoFile(buf):
  212. ctx.Data["IsVideoFile"] = true
  213. case base.IsImageFile(buf):
  214. ctx.Data["IsImageFile"] = true
  215. }
  216. if ctx.Repo.CanEnableEditor() {
  217. ctx.Data["CanDeleteFile"] = true
  218. ctx.Data["DeleteFileTooltip"] = ctx.Tr("repo.editor.delete_this_file")
  219. } else if !ctx.Repo.IsViewBranch {
  220. ctx.Data["DeleteFileTooltip"] = ctx.Tr("repo.editor.must_be_on_a_branch")
  221. } else if !ctx.Repo.IsWriter() {
  222. ctx.Data["DeleteFileTooltip"] = ctx.Tr("repo.editor.must_have_write_access")
  223. }
  224. }
  225. // Home render repository home page
  226. func Home(ctx *context.Context) {
  227. if len(ctx.Repo.Repository.Units) > 0 {
  228. var firstUnit *models.Unit
  229. for _, repoUnit := range ctx.Repo.Repository.Units {
  230. if repoUnit.Type == models.UnitTypeCode {
  231. renderCode(ctx)
  232. return
  233. }
  234. unit, ok := models.Units[repoUnit.Type]
  235. if ok && (firstUnit == nil || !firstUnit.IsLessThan(unit)) {
  236. firstUnit = &unit
  237. }
  238. }
  239. if firstUnit != nil {
  240. ctx.Redirect(fmt.Sprintf("%s/%s%s", setting.AppSubURL, ctx.Repo.Repository.FullName(), firstUnit.URI))
  241. return
  242. }
  243. }
  244. ctx.Handle(404, "Home", fmt.Errorf(ctx.Tr("units.error.no_unit_allowed_repo")))
  245. }
  246. func renderCode(ctx *context.Context) {
  247. ctx.Data["PageIsViewCode"] = true
  248. if ctx.Repo.Repository.IsBare {
  249. ctx.HTML(200, tplRepoBARE)
  250. return
  251. }
  252. title := ctx.Repo.Repository.Owner.Name + "/" + ctx.Repo.Repository.Name
  253. if len(ctx.Repo.Repository.Description) > 0 {
  254. title += ": " + ctx.Repo.Repository.Description
  255. }
  256. ctx.Data["Title"] = title
  257. ctx.Data["RequireHighlightJS"] = true
  258. branchLink := ctx.Repo.RepoLink + "/src/" + ctx.Repo.BranchName
  259. treeLink := branchLink
  260. rawLink := ctx.Repo.RepoLink + "/raw/" + ctx.Repo.BranchName
  261. if len(ctx.Repo.TreePath) > 0 {
  262. treeLink += "/" + ctx.Repo.TreePath
  263. }
  264. // Get current entry user currently looking at.
  265. entry, err := ctx.Repo.Commit.GetTreeEntryByPath(ctx.Repo.TreePath)
  266. if err != nil {
  267. ctx.NotFoundOrServerError("Repo.Commit.GetTreeEntryByPath", git.IsErrNotExist, err)
  268. return
  269. }
  270. if entry.IsDir() {
  271. renderDirectory(ctx, treeLink)
  272. } else {
  273. renderFile(ctx, entry, treeLink, rawLink)
  274. }
  275. if ctx.Written() {
  276. return
  277. }
  278. var treeNames []string
  279. paths := make([]string, 0, 5)
  280. if len(ctx.Repo.TreePath) > 0 {
  281. treeNames = strings.Split(ctx.Repo.TreePath, "/")
  282. for i := range treeNames {
  283. paths = append(paths, strings.Join(treeNames[:i+1], "/"))
  284. }
  285. ctx.Data["HasParentPath"] = true
  286. if len(paths)-2 >= 0 {
  287. ctx.Data["ParentPath"] = "/" + paths[len(paths)-2]
  288. }
  289. }
  290. ctx.Data["Paths"] = paths
  291. ctx.Data["TreeLink"] = treeLink
  292. ctx.Data["TreeNames"] = treeNames
  293. ctx.Data["BranchLink"] = branchLink
  294. ctx.HTML(200, tplRepoHome)
  295. }
  296. // RenderUserCards render a page show users according the input templaet
  297. func RenderUserCards(ctx *context.Context, total int, getter func(page int) ([]*models.User, error), tpl base.TplName) {
  298. page := ctx.QueryInt("page")
  299. if page <= 0 {
  300. page = 1
  301. }
  302. pager := paginater.New(total, models.ItemsPerPage, page, 5)
  303. ctx.Data["Page"] = pager
  304. items, err := getter(pager.Current())
  305. if err != nil {
  306. ctx.Handle(500, "getter", err)
  307. return
  308. }
  309. ctx.Data["Cards"] = items
  310. ctx.HTML(200, tpl)
  311. }
  312. // Watchers render repository's watch users
  313. func Watchers(ctx *context.Context) {
  314. ctx.Data["Title"] = ctx.Tr("repo.watchers")
  315. ctx.Data["CardsTitle"] = ctx.Tr("repo.watchers")
  316. ctx.Data["PageIsWatchers"] = true
  317. RenderUserCards(ctx, ctx.Repo.Repository.NumWatches, ctx.Repo.Repository.GetWatchers, tplWatchers)
  318. }
  319. // Stars render repository's starred users
  320. func Stars(ctx *context.Context) {
  321. ctx.Data["Title"] = ctx.Tr("repo.stargazers")
  322. ctx.Data["CardsTitle"] = ctx.Tr("repo.stargazers")
  323. ctx.Data["PageIsStargazers"] = true
  324. RenderUserCards(ctx, ctx.Repo.Repository.NumStars, ctx.Repo.Repository.GetStargazers, tplWatchers)
  325. }
  326. // Forks render repository's forked users
  327. func Forks(ctx *context.Context) {
  328. ctx.Data["Title"] = ctx.Tr("repos.forks")
  329. forks, err := ctx.Repo.Repository.GetForks()
  330. if err != nil {
  331. ctx.Handle(500, "GetForks", err)
  332. return
  333. }
  334. for _, fork := range forks {
  335. if err = fork.GetOwner(); err != nil {
  336. ctx.Handle(500, "GetOwner", err)
  337. return
  338. }
  339. }
  340. ctx.Data["Forks"] = forks
  341. ctx.HTML(200, tplForks)
  342. }