repo_editor.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  1. // Copyright 2016 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 db
  5. import (
  6. "fmt"
  7. "io"
  8. "io/ioutil"
  9. "mime/multipart"
  10. "os"
  11. "os/exec"
  12. "path"
  13. "path/filepath"
  14. "strings"
  15. "time"
  16. gouuid "github.com/satori/go.uuid"
  17. "github.com/unknwon/com"
  18. "github.com/gogs/git-module"
  19. "github.com/G-Node/gogs/internal/conf"
  20. "github.com/G-Node/gogs/internal/cryptoutil"
  21. "github.com/G-Node/gogs/internal/db/errors"
  22. "github.com/G-Node/gogs/internal/gitutil"
  23. "github.com/G-Node/gogs/internal/osutil"
  24. "github.com/G-Node/gogs/internal/process"
  25. "github.com/G-Node/gogs/internal/tool"
  26. )
  27. const (
  28. ENV_AUTH_USER_ID = "GOGS_AUTH_USER_ID"
  29. ENV_AUTH_USER_NAME = "GOGS_AUTH_USER_NAME"
  30. ENV_AUTH_USER_EMAIL = "GOGS_AUTH_USER_EMAIL"
  31. ENV_REPO_OWNER_NAME = "GOGS_REPO_OWNER_NAME"
  32. ENV_REPO_OWNER_SALT_MD5 = "GOGS_REPO_OWNER_SALT_MD5"
  33. ENV_REPO_ID = "GOGS_REPO_ID"
  34. ENV_REPO_NAME = "GOGS_REPO_NAME"
  35. ENV_REPO_CUSTOM_HOOKS_PATH = "GOGS_REPO_CUSTOM_HOOKS_PATH"
  36. )
  37. type ComposeHookEnvsOptions struct {
  38. AuthUser *User
  39. OwnerName string
  40. OwnerSalt string
  41. RepoID int64
  42. RepoName string
  43. RepoPath string
  44. }
  45. func ComposeHookEnvs(opts ComposeHookEnvsOptions) []string {
  46. envs := []string{
  47. "SSH_ORIGINAL_COMMAND=1",
  48. ENV_AUTH_USER_ID + "=" + com.ToStr(opts.AuthUser.ID),
  49. ENV_AUTH_USER_NAME + "=" + opts.AuthUser.Name,
  50. ENV_AUTH_USER_EMAIL + "=" + opts.AuthUser.Email,
  51. ENV_REPO_OWNER_NAME + "=" + opts.OwnerName,
  52. ENV_REPO_OWNER_SALT_MD5 + "=" + cryptoutil.MD5(opts.OwnerSalt),
  53. ENV_REPO_ID + "=" + com.ToStr(opts.RepoID),
  54. ENV_REPO_NAME + "=" + opts.RepoName,
  55. ENV_REPO_CUSTOM_HOOKS_PATH + "=" + filepath.Join(opts.RepoPath, "custom_hooks"),
  56. }
  57. return envs
  58. }
  59. // ___________ .___.__ __ ___________.__.__
  60. // \_ _____/ __| _/|__|/ |_ \_ _____/|__| | ____
  61. // | __)_ / __ | | \ __\ | __) | | | _/ __ \
  62. // | \/ /_/ | | || | | \ | | |_\ ___/
  63. // /_______ /\____ | |__||__| \___ / |__|____/\___ >
  64. // \/ \/ \/ \/
  65. // discardLocalRepoBranchChanges discards local commits/changes of
  66. // given branch to make sure it is even to remote branch.
  67. func discardLocalRepoBranchChanges(localPath, branch string) error {
  68. if !com.IsExist(localPath) {
  69. return nil
  70. }
  71. // No need to check if nothing in the repository.
  72. if !git.RepoHasBranch(localPath, branch) {
  73. return nil
  74. }
  75. rev := "origin/" + branch
  76. if err := git.RepoReset(localPath, rev, git.ResetOptions{Hard: true}); err != nil {
  77. return fmt.Errorf("reset [revision: %s]: %v", rev, err)
  78. }
  79. return nil
  80. }
  81. func (repo *Repository) DiscardLocalRepoBranchChanges(branch string) error {
  82. return discardLocalRepoBranchChanges(repo.LocalCopyPath(), branch)
  83. }
  84. // CheckoutNewBranch checks out to a new branch from the a branch name.
  85. func (repo *Repository) CheckoutNewBranch(oldBranch, newBranch string) error {
  86. if err := git.RepoCheckout(repo.LocalCopyPath(), newBranch, git.CheckoutOptions{
  87. BaseBranch: oldBranch,
  88. Timeout: time.Duration(conf.Git.Timeout.Pull) * time.Second,
  89. }); err != nil {
  90. return fmt.Errorf("checkout [base: %s, new: %s]: %v", oldBranch, newBranch, err)
  91. }
  92. return nil
  93. }
  94. type UpdateRepoFileOptions struct {
  95. LastCommitID string
  96. OldBranch string
  97. NewBranch string
  98. OldTreeName string
  99. NewTreeName string
  100. Message string
  101. Content string
  102. IsNewFile bool
  103. }
  104. // UpdateRepoFile adds or updates a file in repository.
  105. func (repo *Repository) UpdateRepoFile(doer *User, opts UpdateRepoFileOptions) (err error) {
  106. repoWorkingPool.CheckIn(com.ToStr(repo.ID))
  107. defer repoWorkingPool.CheckOut(com.ToStr(repo.ID))
  108. if err = repo.DiscardLocalRepoBranchChanges(opts.OldBranch); err != nil {
  109. return fmt.Errorf("discard local repo branch[%s] changes: %v", opts.OldBranch, err)
  110. } else if err = repo.UpdateLocalCopyBranch(opts.OldBranch); err != nil {
  111. return fmt.Errorf("update local copy branch[%s]: %v", opts.OldBranch, err)
  112. }
  113. repoPath := repo.RepoPath()
  114. localPath := repo.LocalCopyPath()
  115. if opts.OldBranch != opts.NewBranch {
  116. // Directly return error if new branch already exists in the server
  117. if git.RepoHasBranch(repoPath, opts.NewBranch) {
  118. return errors.BranchAlreadyExists{Name: opts.NewBranch}
  119. }
  120. // Otherwise, delete branch from local copy in case out of sync
  121. if git.RepoHasBranch(localPath, opts.NewBranch) {
  122. if err = git.RepoDeleteBranch(localPath, opts.NewBranch, git.DeleteBranchOptions{
  123. Force: true,
  124. }); err != nil {
  125. return fmt.Errorf("delete branch %q: %v", opts.NewBranch, err)
  126. }
  127. }
  128. if err := repo.CheckoutNewBranch(opts.OldBranch, opts.NewBranch); err != nil {
  129. return fmt.Errorf("checkout new branch[%s] from old branch[%s]: %v", opts.NewBranch, opts.OldBranch, err)
  130. }
  131. }
  132. oldFilePath := path.Join(localPath, opts.OldTreeName)
  133. filePath := path.Join(localPath, opts.NewTreeName)
  134. if err = os.MkdirAll(path.Dir(filePath), os.ModePerm); err != nil {
  135. return err
  136. }
  137. // If it's meant to be a new file, make sure it doesn't exist.
  138. if opts.IsNewFile {
  139. if com.IsExist(filePath) {
  140. return ErrRepoFileAlreadyExist{filePath}
  141. }
  142. }
  143. // Ignore move step if it's a new file under a directory.
  144. // Otherwise, move the file when name changed.
  145. if osutil.IsFile(oldFilePath) && opts.OldTreeName != opts.NewTreeName {
  146. if err = git.RepoMove(localPath, opts.OldTreeName, opts.NewTreeName); err != nil {
  147. return fmt.Errorf("git mv %q %q: %v", opts.OldTreeName, opts.NewTreeName, err)
  148. }
  149. }
  150. if err = ioutil.WriteFile(filePath, []byte(opts.Content), 0666); err != nil {
  151. return fmt.Errorf("write file: %v", err)
  152. }
  153. if err = git.RepoAdd(localPath, git.AddOptions{All: true}); err != nil {
  154. return fmt.Errorf("git add --all: %v", err)
  155. } else if err = git.RepoCommit(localPath, doer.NewGitSig(), opts.Message); err != nil {
  156. return fmt.Errorf("commit changes on %q: %v", localPath, err)
  157. }
  158. envs := ComposeHookEnvs(ComposeHookEnvsOptions{
  159. AuthUser: doer,
  160. OwnerName: repo.MustOwner().Name,
  161. OwnerSalt: repo.MustOwner().Salt,
  162. RepoID: repo.ID,
  163. RepoName: repo.Name,
  164. RepoPath: repo.RepoPath(),
  165. })
  166. if err = git.RepoPush(localPath, "origin", opts.NewBranch, git.PushOptions{Envs: envs}); err != nil {
  167. return fmt.Errorf("git push origin %s: %v", opts.NewBranch, err)
  168. }
  169. StartIndexing(*repo)
  170. return nil
  171. }
  172. // GetDiffPreview produces and returns diff result of a file which is not yet committed.
  173. func (repo *Repository) GetDiffPreview(branch, treePath, content string) (diff *gitutil.Diff, err error) {
  174. repoWorkingPool.CheckIn(com.ToStr(repo.ID))
  175. defer repoWorkingPool.CheckOut(com.ToStr(repo.ID))
  176. if err = repo.DiscardLocalRepoBranchChanges(branch); err != nil {
  177. return nil, fmt.Errorf("discard local repo branch[%s] changes: %v", branch, err)
  178. } else if err = repo.UpdateLocalCopyBranch(branch); err != nil {
  179. return nil, fmt.Errorf("update local copy branch[%s]: %v", branch, err)
  180. }
  181. localPath := repo.LocalCopyPath()
  182. filePath := path.Join(localPath, treePath)
  183. if err = os.MkdirAll(filepath.Dir(filePath), os.ModePerm); err != nil {
  184. return nil, err
  185. }
  186. if err = ioutil.WriteFile(filePath, []byte(content), 0666); err != nil {
  187. return nil, fmt.Errorf("write file: %v", err)
  188. }
  189. cmd := exec.Command("git", "diff", treePath)
  190. cmd.Dir = localPath
  191. cmd.Stderr = os.Stderr
  192. stdout, err := cmd.StdoutPipe()
  193. if err != nil {
  194. return nil, fmt.Errorf("get stdout pipe: %v", err)
  195. }
  196. if err = cmd.Start(); err != nil {
  197. return nil, fmt.Errorf("start: %v", err)
  198. }
  199. pid := process.Add(fmt.Sprintf("GetDiffPreview [repo_path: %s]", repo.RepoPath()), cmd)
  200. defer process.Remove(pid)
  201. diff, err = gitutil.ParseDiff(stdout, conf.Git.MaxDiffFiles, conf.Git.MaxDiffLines, conf.Git.MaxDiffLineChars)
  202. if err != nil {
  203. return nil, fmt.Errorf("parse diff: %v", err)
  204. }
  205. if err = cmd.Wait(); err != nil {
  206. return nil, fmt.Errorf("wait: %v", err)
  207. }
  208. return diff, nil
  209. }
  210. // ________ .__ __ ___________.__.__
  211. // \______ \ ____ | | _____/ |_ ____ \_ _____/|__| | ____
  212. // | | \_/ __ \| | _/ __ \ __\/ __ \ | __) | | | _/ __ \
  213. // | ` \ ___/| |_\ ___/| | \ ___/ | \ | | |_\ ___/
  214. // /_______ /\___ >____/\___ >__| \___ > \___ / |__|____/\___ >
  215. // \/ \/ \/ \/ \/ \/
  216. //
  217. type DeleteRepoFileOptions struct {
  218. LastCommitID string
  219. OldBranch string
  220. NewBranch string
  221. TreePath string
  222. Message string
  223. }
  224. func (repo *Repository) DeleteRepoFile(doer *User, opts DeleteRepoFileOptions) (err error) {
  225. repoWorkingPool.CheckIn(com.ToStr(repo.ID))
  226. defer repoWorkingPool.CheckOut(com.ToStr(repo.ID))
  227. if err = repo.DiscardLocalRepoBranchChanges(opts.OldBranch); err != nil {
  228. return fmt.Errorf("discard local repo branch[%s] changes: %v", opts.OldBranch, err)
  229. } else if err = repo.UpdateLocalCopyBranch(opts.OldBranch); err != nil {
  230. return fmt.Errorf("update local copy branch[%s]: %v", opts.OldBranch, err)
  231. }
  232. if opts.OldBranch != opts.NewBranch {
  233. if err := repo.CheckoutNewBranch(opts.OldBranch, opts.NewBranch); err != nil {
  234. return fmt.Errorf("checkout new branch[%s] from old branch[%s]: %v", opts.NewBranch, opts.OldBranch, err)
  235. }
  236. }
  237. localPath := repo.LocalCopyPath()
  238. if err = os.Remove(path.Join(localPath, opts.TreePath)); err != nil {
  239. return fmt.Errorf("remove file %q: %v", opts.TreePath, err)
  240. }
  241. if err = git.RepoAdd(localPath, git.AddOptions{All: true}); err != nil {
  242. return fmt.Errorf("git add --all: %v", err)
  243. } else if err = git.RepoCommit(localPath, doer.NewGitSig(), opts.Message); err != nil {
  244. return fmt.Errorf("commit changes to %q: %v", localPath, err)
  245. }
  246. envs := ComposeHookEnvs(ComposeHookEnvsOptions{
  247. AuthUser: doer,
  248. OwnerName: repo.MustOwner().Name,
  249. OwnerSalt: repo.MustOwner().Salt,
  250. RepoID: repo.ID,
  251. RepoName: repo.Name,
  252. RepoPath: repo.RepoPath(),
  253. })
  254. if err = git.RepoPush(localPath, "origin", opts.NewBranch, git.PushOptions{Envs: envs}); err != nil {
  255. return fmt.Errorf("git push origin %s: %v", opts.NewBranch, err)
  256. }
  257. return nil
  258. }
  259. // ____ ___ .__ .___ ___________.___.__
  260. // | | \______ | | _________ __| _/ \_ _____/| | | ____ ______
  261. // | | /\____ \| | / _ \__ \ / __ | | __) | | | _/ __ \ / ___/
  262. // | | / | |_> > |_( <_> ) __ \_/ /_/ | | \ | | |_\ ___/ \___ \
  263. // |______/ | __/|____/\____(____ /\____ | \___ / |___|____/\___ >____ >
  264. // |__| \/ \/ \/ \/ \/
  265. //
  266. // Upload represent a uploaded file to a repo to be deleted when moved
  267. type Upload struct {
  268. ID int64
  269. UUID string `xorm:"uuid UNIQUE"`
  270. Name string
  271. }
  272. // UploadLocalPath returns where uploads is stored in local file system based on given UUID.
  273. func UploadLocalPath(uuid string) string {
  274. return path.Join(conf.Repository.Upload.TempPath, uuid[0:1], uuid[1:2], uuid)
  275. }
  276. // LocalPath returns where uploads are temporarily stored in local file system.
  277. func (upload *Upload) LocalPath() string {
  278. return UploadLocalPath(upload.UUID)
  279. }
  280. // NewUpload creates a new upload object.
  281. func NewUpload(name string, buf []byte, file multipart.File) (_ *Upload, err error) {
  282. if tool.IsMaliciousPath(name) {
  283. return nil, fmt.Errorf("malicious path detected: %s", name)
  284. }
  285. upload := &Upload{
  286. UUID: gouuid.NewV4().String(),
  287. Name: name,
  288. }
  289. localPath := upload.LocalPath()
  290. if err = os.MkdirAll(path.Dir(localPath), os.ModePerm); err != nil {
  291. return nil, fmt.Errorf("mkdir all: %v", err)
  292. }
  293. fw, err := os.Create(localPath)
  294. if err != nil {
  295. return nil, fmt.Errorf("create: %v", err)
  296. }
  297. defer fw.Close()
  298. if _, err = fw.Write(buf); err != nil {
  299. return nil, fmt.Errorf("write: %v", err)
  300. } else if _, err = io.Copy(fw, file); err != nil {
  301. return nil, fmt.Errorf("copy: %v", err)
  302. }
  303. if _, err := x.Insert(upload); err != nil {
  304. return nil, err
  305. }
  306. return upload, nil
  307. }
  308. func GetUploadByUUID(uuid string) (*Upload, error) {
  309. upload := &Upload{UUID: uuid}
  310. has, err := x.Get(upload)
  311. if err != nil {
  312. return nil, err
  313. } else if !has {
  314. return nil, ErrUploadNotExist{0, uuid}
  315. }
  316. return upload, nil
  317. }
  318. func GetUploadsByUUIDs(uuids []string) ([]*Upload, error) {
  319. if len(uuids) == 0 {
  320. return []*Upload{}, nil
  321. }
  322. // Silently drop invalid uuids.
  323. uploads := make([]*Upload, 0, len(uuids))
  324. return uploads, x.In("uuid", uuids).Find(&uploads)
  325. }
  326. func DeleteUploads(uploads ...*Upload) (err error) {
  327. if len(uploads) == 0 {
  328. return nil
  329. }
  330. sess := x.NewSession()
  331. defer sess.Close()
  332. if err = sess.Begin(); err != nil {
  333. return err
  334. }
  335. ids := make([]int64, len(uploads))
  336. for i := 0; i < len(uploads); i++ {
  337. ids[i] = uploads[i].ID
  338. }
  339. if _, err = sess.In("id", ids).Delete(new(Upload)); err != nil {
  340. return fmt.Errorf("delete uploads: %v", err)
  341. }
  342. for _, upload := range uploads {
  343. localPath := upload.LocalPath()
  344. if !osutil.IsFile(localPath) {
  345. continue
  346. }
  347. if err := os.Remove(localPath); err != nil {
  348. return fmt.Errorf("remove upload: %v", err)
  349. }
  350. }
  351. return sess.Commit()
  352. }
  353. func DeleteUpload(u *Upload) error {
  354. return DeleteUploads(u)
  355. }
  356. func DeleteUploadByUUID(uuid string) error {
  357. upload, err := GetUploadByUUID(uuid)
  358. if err != nil {
  359. if IsErrUploadNotExist(err) {
  360. return nil
  361. }
  362. return fmt.Errorf("get upload by UUID[%s]: %v", uuid, err)
  363. }
  364. if err := DeleteUpload(upload); err != nil {
  365. return fmt.Errorf("delete upload: %v", err)
  366. }
  367. return nil
  368. }
  369. type UploadRepoFileOptions struct {
  370. LastCommitID string
  371. OldBranch string
  372. NewBranch string
  373. TreePath string
  374. Message string
  375. Files []string // In UUID format
  376. }
  377. // isRepositoryGitPath returns true if given path is or resides inside ".git" path of the repository.
  378. func isRepositoryGitPath(path string) bool {
  379. return strings.HasSuffix(path, ".git") || strings.Contains(path, ".git"+string(os.PathSeparator))
  380. }
  381. func (repo *Repository) UploadRepoFiles(doer *User, opts UploadRepoFileOptions) (err error) {
  382. if len(opts.Files) == 0 {
  383. return nil
  384. }
  385. uploads, err := GetUploadsByUUIDs(opts.Files)
  386. if err != nil {
  387. return fmt.Errorf("get uploads by UUIDs[%v]: %v", opts.Files, err)
  388. }
  389. repoWorkingPool.CheckIn(com.ToStr(repo.ID))
  390. defer repoWorkingPool.CheckOut(com.ToStr(repo.ID))
  391. if err = repo.DiscardLocalRepoBranchChanges(opts.OldBranch); err != nil {
  392. return fmt.Errorf("discard local repo branch[%s] changes: %v", opts.OldBranch, err)
  393. } else if err = repo.UpdateLocalCopyBranch(opts.OldBranch); err != nil {
  394. return fmt.Errorf("update local copy branch[%s]: %v", opts.OldBranch, err)
  395. }
  396. if opts.OldBranch != opts.NewBranch {
  397. if err = repo.CheckoutNewBranch(opts.OldBranch, opts.NewBranch); err != nil {
  398. return fmt.Errorf("checkout new branch[%s] from old branch[%s]: %v", opts.NewBranch, opts.OldBranch, err)
  399. }
  400. }
  401. localPath := repo.LocalCopyPath()
  402. dirPath := path.Join(localPath, opts.TreePath)
  403. if err = os.MkdirAll(dirPath, os.ModePerm); err != nil {
  404. return err
  405. }
  406. // Copy uploaded files into repository
  407. for _, upload := range uploads {
  408. tmpPath := upload.LocalPath()
  409. if !osutil.IsFile(tmpPath) {
  410. continue
  411. }
  412. // Prevent copying files into .git directory, see https://gogs.io/gogs/issues/5558.
  413. if isRepositoryGitPath(upload.Name) {
  414. continue
  415. }
  416. targetPath := path.Join(dirPath, upload.Name)
  417. // GIN: Create subdirectory for dirtree uploads
  418. if err = os.MkdirAll(filepath.Dir(targetPath), os.ModePerm); err != nil {
  419. return fmt.Errorf("mkdir: %v", err)
  420. }
  421. if err = com.Copy(tmpPath, targetPath); err != nil {
  422. return fmt.Errorf("copy: %v", err)
  423. }
  424. }
  425. annexSetup(localPath) // Initialise annex and set configuration (with add filter for filesizes)
  426. if err = annexAdd(localPath, true); err != nil {
  427. return fmt.Errorf("git annex add: %v", err)
  428. } else if err = git.RepoCommit(localPath, doer.NewGitSig(), opts.Message); err != nil {
  429. return fmt.Errorf("commit changes on %q: %v", localPath, err)
  430. }
  431. envs := ComposeHookEnvs(ComposeHookEnvsOptions{
  432. AuthUser: doer,
  433. OwnerName: repo.MustOwner().Name,
  434. OwnerSalt: repo.MustOwner().Salt,
  435. RepoID: repo.ID,
  436. RepoName: repo.Name,
  437. RepoPath: repo.RepoPath(),
  438. })
  439. if err = git.RepoPush(localPath, "origin", opts.NewBranch, git.PushOptions{Envs: envs}); err != nil {
  440. return fmt.Errorf("git push origin %s: %v", opts.NewBranch, err)
  441. }
  442. if err := annexUpload(localPath, "origin"); err != nil { // Copy new files
  443. return fmt.Errorf("annex copy %s: %v", localPath, err)
  444. }
  445. annexUninit(localPath) // Uninitialise annex to prepare for deletion
  446. StartIndexing(*repo) // Index the new data
  447. return DeleteUploads(uploads...)
  448. }