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

187 lines
5.9 KiB

9 years ago
  1. // Copyright 2015 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package models
  5. import (
  6. "fmt"
  7. "io/ioutil"
  8. "net/url"
  9. "os"
  10. "path"
  11. "path/filepath"
  12. "strings"
  13. "github.com/Unknwon/com"
  14. "code.gitea.io/git"
  15. "code.gitea.io/gitea/modules/setting"
  16. "code.gitea.io/gitea/modules/sync"
  17. )
  18. var wikiWorkingPool = sync.NewExclusivePool()
  19. // ToWikiPageURL formats a string to corresponding wiki URL name.
  20. func ToWikiPageURL(name string) string {
  21. return url.QueryEscape(strings.Replace(name, " ", "-", -1))
  22. }
  23. // ToWikiPageName formats a URL back to corresponding wiki page name,
  24. // and removes leading characters './' to prevent changing files
  25. // that are not belong to wiki repository.
  26. func ToWikiPageName(urlString string) string {
  27. name, _ := url.QueryUnescape(strings.Replace(urlString, "-", " ", -1))
  28. return strings.Replace(strings.TrimLeft(name, "./"), "/", " ", -1)
  29. }
  30. // WikiCloneLink returns clone URLs of repository wiki.
  31. func (repo *Repository) WikiCloneLink() (cl *CloneLink) {
  32. return repo.cloneLink(true)
  33. }
  34. // WikiPath returns wiki data path by given user and repository name.
  35. func WikiPath(userName, repoName string) string {
  36. return filepath.Join(UserPath(userName), strings.ToLower(repoName)+".wiki.git")
  37. }
  38. // WikiPath returns wiki data path for given repository.
  39. func (repo *Repository) WikiPath() string {
  40. return WikiPath(repo.MustOwner().Name, repo.Name)
  41. }
  42. // HasWiki returns true if repository has wiki.
  43. func (repo *Repository) HasWiki() bool {
  44. return com.IsDir(repo.WikiPath())
  45. }
  46. // InitWiki initializes a wiki for repository,
  47. // it does nothing when repository already has wiki.
  48. func (repo *Repository) InitWiki() error {
  49. if repo.HasWiki() {
  50. return nil
  51. }
  52. if err := git.InitRepository(repo.WikiPath(), true); err != nil {
  53. return fmt.Errorf("InitRepository: %v", err)
  54. } else if err = createUpdateHook(repo.WikiPath()); err != nil {
  55. return fmt.Errorf("createUpdateHook: %v", err)
  56. }
  57. return nil
  58. }
  59. // LocalWikiPath returns the path to the local wiki repository (?).
  60. func (repo *Repository) LocalWikiPath() string {
  61. return path.Join(setting.AppDataPath, "tmp/local-wiki", com.ToStr(repo.ID))
  62. }
  63. // UpdateLocalWiki makes sure the local copy of repository wiki is up-to-date.
  64. func (repo *Repository) UpdateLocalWiki() error {
  65. // Don't pass branch name here because it fails to clone and
  66. // checkout to a specific branch when wiki is an empty repository.
  67. return UpdateLocalCopyBranch(repo.WikiPath(), repo.LocalWikiPath(), "")
  68. }
  69. func discardLocalWikiChanges(localPath string) error {
  70. return discardLocalRepoBranchChanges(localPath, "master")
  71. }
  72. // updateWikiPage adds new page to repository wiki.
  73. func (repo *Repository) updateWikiPage(doer *User, oldTitle, title, content, message string, isNew bool) (err error) {
  74. wikiWorkingPool.CheckIn(com.ToStr(repo.ID))
  75. defer wikiWorkingPool.CheckOut(com.ToStr(repo.ID))
  76. if err = repo.InitWiki(); err != nil {
  77. return fmt.Errorf("InitWiki: %v", err)
  78. }
  79. localPath := repo.LocalWikiPath()
  80. if err = discardLocalWikiChanges(localPath); err != nil {
  81. return fmt.Errorf("discardLocalWikiChanges: %v", err)
  82. } else if err = repo.UpdateLocalWiki(); err != nil {
  83. return fmt.Errorf("UpdateLocalWiki: %v", err)
  84. }
  85. title = ToWikiPageName(title)
  86. filename := path.Join(localPath, title+".md")
  87. // If not a new file, show perform update not create.
  88. if isNew {
  89. if com.IsExist(filename) {
  90. return ErrWikiAlreadyExist{filename}
  91. }
  92. } else {
  93. os.Remove(path.Join(localPath, oldTitle+".md"))
  94. }
  95. // SECURITY: if new file is a symlink to non-exist critical file,
  96. // attack content can be written to the target file (e.g. authorized_keys2)
  97. // as a new page operation.
  98. // So we want to make sure the symlink is removed before write anything.
  99. // The new file we created will be in normal text format.
  100. os.Remove(filename)
  101. if err = ioutil.WriteFile(filename, []byte(content), 0666); err != nil {
  102. return fmt.Errorf("WriteFile: %v", err)
  103. }
  104. if len(message) == 0 {
  105. message = "Update page '" + title + "'"
  106. }
  107. if err = git.AddChanges(localPath, true); err != nil {
  108. return fmt.Errorf("AddChanges: %v", err)
  109. } else if err = git.CommitChanges(localPath, git.CommitChangesOptions{
  110. Committer: doer.NewGitSig(),
  111. Message: message,
  112. }); err != nil {
  113. return fmt.Errorf("CommitChanges: %v", err)
  114. } else if err = git.Push(localPath, "origin", "master"); err != nil {
  115. return fmt.Errorf("Push: %v", err)
  116. }
  117. return nil
  118. }
  119. // AddWikiPage adds a new wiki page with a given title.
  120. func (repo *Repository) AddWikiPage(doer *User, title, content, message string) error {
  121. return repo.updateWikiPage(doer, "", title, content, message, true)
  122. }
  123. // EditWikiPage updates a wiki page identified by its title,
  124. // optionally also changing title.
  125. func (repo *Repository) EditWikiPage(doer *User, oldTitle, title, content, message string) error {
  126. return repo.updateWikiPage(doer, oldTitle, title, content, message, false)
  127. }
  128. // DeleteWikiPage deletes a wiki page identified by its title.
  129. func (repo *Repository) DeleteWikiPage(doer *User, title string) (err error) {
  130. wikiWorkingPool.CheckIn(com.ToStr(repo.ID))
  131. defer wikiWorkingPool.CheckOut(com.ToStr(repo.ID))
  132. localPath := repo.LocalWikiPath()
  133. if err = discardLocalWikiChanges(localPath); err != nil {
  134. return fmt.Errorf("discardLocalWikiChanges: %v", err)
  135. } else if err = repo.UpdateLocalWiki(); err != nil {
  136. return fmt.Errorf("UpdateLocalWiki: %v", err)
  137. }
  138. title = ToWikiPageName(title)
  139. filename := path.Join(localPath, title+".md")
  140. os.Remove(filename)
  141. message := "Delete page '" + title + "'"
  142. if err = git.AddChanges(localPath, true); err != nil {
  143. return fmt.Errorf("AddChanges: %v", err)
  144. } else if err = git.CommitChanges(localPath, git.CommitChangesOptions{
  145. Committer: doer.NewGitSig(),
  146. Message: message,
  147. }); err != nil {
  148. return fmt.Errorf("CommitChanges: %v", err)
  149. } else if err = git.Push(localPath, "origin", "master"); err != nil {
  150. return fmt.Errorf("Push: %v", err)
  151. }
  152. return nil
  153. }