pull.go 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784
  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. "os"
  8. "path"
  9. "strings"
  10. "time"
  11. "github.com/Unknwon/com"
  12. "github.com/go-xorm/xorm"
  13. log "gopkg.in/clog.v1"
  14. "github.com/gogits/git-module"
  15. api "github.com/gogits/go-gogs-client"
  16. "github.com/gogits/gogs/models/errors"
  17. "github.com/gogits/gogs/modules/process"
  18. "github.com/gogits/gogs/modules/setting"
  19. "github.com/gogits/gogs/modules/sync"
  20. )
  21. var PullRequestQueue = sync.NewUniqueQueue(setting.Repository.PullRequestQueueLength)
  22. type PullRequestType int
  23. const (
  24. PULL_REQUEST_GOGS PullRequestType = iota
  25. PLLL_ERQUEST_GIT
  26. )
  27. type PullRequestStatus int
  28. const (
  29. PULL_REQUEST_STATUS_CONFLICT PullRequestStatus = iota
  30. PULL_REQUEST_STATUS_CHECKING
  31. PULL_REQUEST_STATUS_MERGEABLE
  32. )
  33. // PullRequest represents relation between pull request and repositories.
  34. type PullRequest struct {
  35. ID int64 `xorm:"pk autoincr"`
  36. Type PullRequestType
  37. Status PullRequestStatus
  38. IssueID int64 `xorm:"INDEX"`
  39. Issue *Issue `xorm:"-"`
  40. Index int64
  41. HeadRepoID int64
  42. HeadRepo *Repository `xorm:"-"`
  43. BaseRepoID int64
  44. BaseRepo *Repository `xorm:"-"`
  45. HeadUserName string
  46. HeadBranch string
  47. BaseBranch string
  48. MergeBase string `xorm:"VARCHAR(40)"`
  49. HasMerged bool
  50. MergedCommitID string `xorm:"VARCHAR(40)"`
  51. MergerID int64
  52. Merger *User `xorm:"-"`
  53. Merged time.Time `xorm:"-"`
  54. MergedUnix int64
  55. }
  56. func (pr *PullRequest) BeforeUpdate() {
  57. pr.MergedUnix = pr.Merged.Unix()
  58. }
  59. // Note: don't try to get Issue because will end up recursive querying.
  60. func (pr *PullRequest) AfterSet(colName string, _ xorm.Cell) {
  61. switch colName {
  62. case "merged_unix":
  63. if !pr.HasMerged {
  64. return
  65. }
  66. pr.Merged = time.Unix(pr.MergedUnix, 0).Local()
  67. }
  68. }
  69. // Note: don't try to get Issue because will end up recursive querying.
  70. func (pr *PullRequest) loadAttributes(e Engine) (err error) {
  71. if pr.HeadRepo == nil {
  72. pr.HeadRepo, err = getRepositoryByID(e, pr.HeadRepoID)
  73. if err != nil && !IsErrRepoNotExist(err) {
  74. return fmt.Errorf("getRepositoryByID.(HeadRepo) [%d]: %v", pr.HeadRepoID, err)
  75. }
  76. }
  77. if pr.BaseRepo == nil {
  78. pr.BaseRepo, err = getRepositoryByID(e, pr.BaseRepoID)
  79. if err != nil {
  80. return fmt.Errorf("getRepositoryByID.(BaseRepo) [%d]: %v", pr.BaseRepoID, err)
  81. }
  82. }
  83. if pr.HasMerged && pr.Merger == nil {
  84. pr.Merger, err = getUserByID(e, pr.MergerID)
  85. if errors.IsUserNotExist(err) {
  86. pr.MergerID = -1
  87. pr.Merger = NewGhostUser()
  88. } else if err != nil {
  89. return fmt.Errorf("getUserByID [%d]: %v", pr.MergerID, err)
  90. }
  91. }
  92. return nil
  93. }
  94. func (pr *PullRequest) LoadAttributes() error {
  95. return pr.loadAttributes(x)
  96. }
  97. func (pr *PullRequest) LoadIssue() (err error) {
  98. if pr.Issue != nil {
  99. return nil
  100. }
  101. pr.Issue, err = GetIssueByID(pr.IssueID)
  102. return err
  103. }
  104. // This method assumes following fields have been assigned with valid values:
  105. // Required - Issue, BaseRepo
  106. // Optional - HeadRepo, Merger
  107. func (pr *PullRequest) APIFormat() *api.PullRequest {
  108. // In case of head repo has been deleted.
  109. var apiHeadRepo *api.Repository
  110. if pr.HeadRepo == nil {
  111. apiHeadRepo = &api.Repository{
  112. Name: "deleted",
  113. }
  114. } else {
  115. apiHeadRepo = pr.HeadRepo.APIFormat(nil)
  116. }
  117. apiIssue := pr.Issue.APIFormat()
  118. apiPullRequest := &api.PullRequest{
  119. ID: pr.ID,
  120. Index: pr.Index,
  121. Poster: apiIssue.Poster,
  122. Title: apiIssue.Title,
  123. Body: apiIssue.Body,
  124. Labels: apiIssue.Labels,
  125. Milestone: apiIssue.Milestone,
  126. Assignee: apiIssue.Assignee,
  127. State: apiIssue.State,
  128. Comments: apiIssue.Comments,
  129. HeadBranch: pr.HeadBranch,
  130. HeadRepo: apiHeadRepo,
  131. BaseBranch: pr.BaseBranch,
  132. BaseRepo: pr.BaseRepo.APIFormat(nil),
  133. HTMLURL: pr.Issue.HTMLURL(),
  134. HasMerged: pr.HasMerged,
  135. }
  136. if pr.Status != PULL_REQUEST_STATUS_CHECKING {
  137. mergeable := pr.Status != PULL_REQUEST_STATUS_CONFLICT
  138. apiPullRequest.Mergeable = &mergeable
  139. }
  140. if pr.HasMerged {
  141. apiPullRequest.Merged = &pr.Merged
  142. apiPullRequest.MergedCommitID = &pr.MergedCommitID
  143. apiPullRequest.MergedBy = pr.Merger.APIFormat()
  144. }
  145. return apiPullRequest
  146. }
  147. // IsChecking returns true if this pull request is still checking conflict.
  148. func (pr *PullRequest) IsChecking() bool {
  149. return pr.Status == PULL_REQUEST_STATUS_CHECKING
  150. }
  151. // CanAutoMerge returns true if this pull request can be merged automatically.
  152. func (pr *PullRequest) CanAutoMerge() bool {
  153. return pr.Status == PULL_REQUEST_STATUS_MERGEABLE
  154. }
  155. // Merge merges pull request to base repository.
  156. // FIXME: add repoWorkingPull make sure two merges does not happen at same time.
  157. func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository) (err error) {
  158. defer func() {
  159. go HookQueue.Add(pr.BaseRepo.ID)
  160. go AddTestPullRequestTask(doer, pr.BaseRepo.ID, pr.BaseBranch, false)
  161. }()
  162. sess := x.NewSession()
  163. defer sessionRelease(sess)
  164. if err = sess.Begin(); err != nil {
  165. return err
  166. }
  167. if err = pr.Issue.changeStatus(sess, doer, pr.Issue.Repo, true); err != nil {
  168. return fmt.Errorf("Issue.changeStatus: %v", err)
  169. }
  170. headRepoPath := RepoPath(pr.HeadUserName, pr.HeadRepo.Name)
  171. headGitRepo, err := git.OpenRepository(headRepoPath)
  172. if err != nil {
  173. return fmt.Errorf("OpenRepository: %v", err)
  174. }
  175. // Clone base repo.
  176. tmpBasePath := path.Join(setting.AppDataPath, "tmp/repos", com.ToStr(time.Now().Nanosecond())+".git")
  177. os.MkdirAll(path.Dir(tmpBasePath), os.ModePerm)
  178. defer os.RemoveAll(path.Dir(tmpBasePath))
  179. var stderr string
  180. if _, stderr, err = process.ExecTimeout(5*time.Minute,
  181. fmt.Sprintf("PullRequest.Merge (git clone): %s", tmpBasePath),
  182. "git", "clone", baseGitRepo.Path, tmpBasePath); err != nil {
  183. return fmt.Errorf("git clone: %s", stderr)
  184. }
  185. // Check out base branch.
  186. if _, stderr, err = process.ExecDir(-1, tmpBasePath,
  187. fmt.Sprintf("PullRequest.Merge (git checkout): %s", tmpBasePath),
  188. "git", "checkout", pr.BaseBranch); err != nil {
  189. return fmt.Errorf("git checkout: %s", stderr)
  190. }
  191. // Add head repo remote.
  192. if _, stderr, err = process.ExecDir(-1, tmpBasePath,
  193. fmt.Sprintf("PullRequest.Merge (git remote add): %s", tmpBasePath),
  194. "git", "remote", "add", "head_repo", headRepoPath); err != nil {
  195. return fmt.Errorf("git remote add [%s -> %s]: %s", headRepoPath, tmpBasePath, stderr)
  196. }
  197. // Merge commits.
  198. if _, stderr, err = process.ExecDir(-1, tmpBasePath,
  199. fmt.Sprintf("PullRequest.Merge (git fetch): %s", tmpBasePath),
  200. "git", "fetch", "head_repo"); err != nil {
  201. return fmt.Errorf("git fetch [%s -> %s]: %s", headRepoPath, tmpBasePath, stderr)
  202. }
  203. if _, stderr, err = process.ExecDir(-1, tmpBasePath,
  204. fmt.Sprintf("PullRequest.Merge (git merge --no-ff --no-commit): %s", tmpBasePath),
  205. "git", "merge", "--no-ff", "--no-commit", "head_repo/"+pr.HeadBranch); err != nil {
  206. return fmt.Errorf("git merge --no-ff --no-commit [%s]: %v - %s", tmpBasePath, err, stderr)
  207. }
  208. sig := doer.NewGitSig()
  209. if _, stderr, err = process.ExecDir(-1, tmpBasePath,
  210. fmt.Sprintf("PullRequest.Merge (git merge): %s", tmpBasePath),
  211. "git", "commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email),
  212. "-m", fmt.Sprintf("Merge branch '%s' of %s/%s into %s", pr.HeadBranch, pr.HeadUserName, pr.HeadRepo.Name, pr.BaseBranch)); err != nil {
  213. return fmt.Errorf("git commit [%s]: %v - %s", tmpBasePath, err, stderr)
  214. }
  215. // Push back to upstream.
  216. if _, stderr, err = process.ExecDir(-1, tmpBasePath,
  217. fmt.Sprintf("PullRequest.Merge (git push): %s", tmpBasePath),
  218. "git", "push", baseGitRepo.Path, pr.BaseBranch); err != nil {
  219. return fmt.Errorf("git push: %s", stderr)
  220. }
  221. pr.MergedCommitID, err = headGitRepo.GetBranchCommitID(pr.HeadBranch)
  222. if err != nil {
  223. return fmt.Errorf("GetBranchCommit: %v", err)
  224. }
  225. pr.HasMerged = true
  226. pr.Merged = time.Now()
  227. pr.MergerID = doer.ID
  228. if _, err = sess.Id(pr.ID).AllCols().Update(pr); err != nil {
  229. return fmt.Errorf("update pull request: %v", err)
  230. }
  231. if err = sess.Commit(); err != nil {
  232. return fmt.Errorf("Commit: %v", err)
  233. }
  234. if err = MergePullRequestAction(doer, pr.Issue.Repo, pr.Issue); err != nil {
  235. log.Error(4, "MergePullRequestAction [%d]: %v", pr.ID, err)
  236. }
  237. // Reload pull request information.
  238. if err = pr.LoadAttributes(); err != nil {
  239. log.Error(4, "LoadAttributes: %v", err)
  240. return nil
  241. }
  242. if err = PrepareWebhooks(pr.Issue.Repo, HOOK_EVENT_PULL_REQUEST, &api.PullRequestPayload{
  243. Action: api.HOOK_ISSUE_CLOSED,
  244. Index: pr.Index,
  245. PullRequest: pr.APIFormat(),
  246. Repository: pr.Issue.Repo.APIFormat(nil),
  247. Sender: doer.APIFormat(),
  248. }); err != nil {
  249. log.Error(4, "PrepareWebhooks: %v", err)
  250. return nil
  251. }
  252. l, err := headGitRepo.CommitsBetweenIDs(pr.MergedCommitID, pr.MergeBase)
  253. if err != nil {
  254. log.Error(4, "CommitsBetweenIDs: %v", err)
  255. return nil
  256. }
  257. // TODO: when squash commits, no need to append merge commit.
  258. // It is possible that head branch is not fully sync with base branch for merge commits,
  259. // so we need to get latest head commit and append merge commit manully
  260. // to avoid strange diff commits produced.
  261. mergeCommit, err := baseGitRepo.GetBranchCommit(pr.BaseBranch)
  262. if err != nil {
  263. log.Error(4, "GetBranchCommit: %v", err)
  264. return nil
  265. }
  266. l.PushFront(mergeCommit)
  267. p := &api.PushPayload{
  268. Ref: git.BRANCH_PREFIX + pr.BaseBranch,
  269. Before: pr.MergeBase,
  270. After: pr.MergedCommitID,
  271. CompareURL: setting.AppUrl + pr.BaseRepo.ComposeCompareURL(pr.MergeBase, pr.MergedCommitID),
  272. Commits: ListToPushCommits(l).ToApiPayloadCommits(pr.BaseRepo.HTMLURL()),
  273. Repo: pr.BaseRepo.APIFormat(nil),
  274. Pusher: pr.HeadRepo.MustOwner().APIFormat(),
  275. Sender: doer.APIFormat(),
  276. }
  277. if err = PrepareWebhooks(pr.BaseRepo, HOOK_EVENT_PUSH, p); err != nil {
  278. return fmt.Errorf("PrepareWebhooks: %v", err)
  279. }
  280. return nil
  281. }
  282. // testPatch checks if patch can be merged to base repository without conflit.
  283. // FIXME: make a mechanism to clean up stable local copies.
  284. func (pr *PullRequest) testPatch() (err error) {
  285. if pr.BaseRepo == nil {
  286. pr.BaseRepo, err = GetRepositoryByID(pr.BaseRepoID)
  287. if err != nil {
  288. return fmt.Errorf("GetRepositoryByID: %v", err)
  289. }
  290. }
  291. patchPath, err := pr.BaseRepo.PatchPath(pr.Index)
  292. if err != nil {
  293. return fmt.Errorf("BaseRepo.PatchPath: %v", err)
  294. }
  295. // Fast fail if patch does not exist, this assumes data is cruppted.
  296. if !com.IsFile(patchPath) {
  297. log.Trace("PullRequest[%d].testPatch: ignored cruppted data", pr.ID)
  298. return nil
  299. }
  300. repoWorkingPool.CheckIn(com.ToStr(pr.BaseRepoID))
  301. defer repoWorkingPool.CheckOut(com.ToStr(pr.BaseRepoID))
  302. log.Trace("PullRequest[%d].testPatch (patchPath): %s", pr.ID, patchPath)
  303. if err := pr.BaseRepo.UpdateLocalCopyBranch(pr.BaseBranch); err != nil {
  304. return fmt.Errorf("UpdateLocalCopy [%d]: %v", pr.BaseRepoID, err)
  305. }
  306. pr.Status = PULL_REQUEST_STATUS_CHECKING
  307. _, stderr, err := process.ExecDir(-1, pr.BaseRepo.LocalCopyPath(),
  308. fmt.Sprintf("testPatch (git apply --check): %d", pr.BaseRepo.ID),
  309. "git", "apply", "--check", patchPath)
  310. if err != nil {
  311. log.Trace("PullRequest[%d].testPatch (apply): has conflit\n%s", pr.ID, stderr)
  312. pr.Status = PULL_REQUEST_STATUS_CONFLICT
  313. return nil
  314. }
  315. return nil
  316. }
  317. // NewPullRequest creates new pull request with labels for repository.
  318. func NewPullRequest(repo *Repository, pull *Issue, labelIDs []int64, uuids []string, pr *PullRequest, patch []byte) (err error) {
  319. sess := x.NewSession()
  320. defer sessionRelease(sess)
  321. if err = sess.Begin(); err != nil {
  322. return err
  323. }
  324. if err = newIssue(sess, NewIssueOptions{
  325. Repo: repo,
  326. Issue: pull,
  327. LableIDs: labelIDs,
  328. Attachments: uuids,
  329. IsPull: true,
  330. }); err != nil {
  331. return fmt.Errorf("newIssue: %v", err)
  332. }
  333. pr.Index = pull.Index
  334. if err = repo.SavePatch(pr.Index, patch); err != nil {
  335. return fmt.Errorf("SavePatch: %v", err)
  336. }
  337. pr.BaseRepo = repo
  338. if err = pr.testPatch(); err != nil {
  339. return fmt.Errorf("testPatch: %v", err)
  340. }
  341. // No conflict appears after test means mergeable.
  342. if pr.Status == PULL_REQUEST_STATUS_CHECKING {
  343. pr.Status = PULL_REQUEST_STATUS_MERGEABLE
  344. }
  345. pr.IssueID = pull.ID
  346. if _, err = sess.Insert(pr); err != nil {
  347. return fmt.Errorf("insert pull repo: %v", err)
  348. }
  349. if err = sess.Commit(); err != nil {
  350. return fmt.Errorf("Commit: %v", err)
  351. }
  352. if err = NotifyWatchers(&Action{
  353. ActUserID: pull.Poster.ID,
  354. ActUserName: pull.Poster.Name,
  355. OpType: ACTION_CREATE_PULL_REQUEST,
  356. Content: fmt.Sprintf("%d|%s", pull.Index, pull.Title),
  357. RepoID: repo.ID,
  358. RepoUserName: repo.Owner.Name,
  359. RepoName: repo.Name,
  360. IsPrivate: repo.IsPrivate,
  361. }); err != nil {
  362. log.Error(2, "NotifyWatchers: %v", err)
  363. }
  364. if err = pull.MailParticipants(); err != nil {
  365. log.Error(2, "MailParticipants: %v", err)
  366. }
  367. pr.Issue = pull
  368. pull.PullRequest = pr
  369. if err = PrepareWebhooks(repo, HOOK_EVENT_PULL_REQUEST, &api.PullRequestPayload{
  370. Action: api.HOOK_ISSUE_OPENED,
  371. Index: pull.Index,
  372. PullRequest: pr.APIFormat(),
  373. Repository: repo.APIFormat(nil),
  374. Sender: pull.Poster.APIFormat(),
  375. }); err != nil {
  376. log.Error(2, "PrepareWebhooks: %v", err)
  377. }
  378. return nil
  379. }
  380. // GetUnmergedPullRequest returnss a pull request that is open and has not been merged
  381. // by given head/base and repo/branch.
  382. func GetUnmergedPullRequest(headRepoID, baseRepoID int64, headBranch, baseBranch string) (*PullRequest, error) {
  383. pr := new(PullRequest)
  384. has, err := x.Where("head_repo_id=? AND head_branch=? AND base_repo_id=? AND base_branch=? AND has_merged=? AND issue.is_closed=?",
  385. headRepoID, headBranch, baseRepoID, baseBranch, false, false).
  386. Join("INNER", "issue", "issue.id=pull_request.issue_id").Get(pr)
  387. if err != nil {
  388. return nil, err
  389. } else if !has {
  390. return nil, ErrPullRequestNotExist{0, 0, headRepoID, baseRepoID, headBranch, baseBranch}
  391. }
  392. return pr, nil
  393. }
  394. // GetUnmergedPullRequestsByHeadInfo returnss all pull requests that are open and has not been merged
  395. // by given head information (repo and branch).
  396. func GetUnmergedPullRequestsByHeadInfo(repoID int64, branch string) ([]*PullRequest, error) {
  397. prs := make([]*PullRequest, 0, 2)
  398. return prs, x.Where("head_repo_id = ? AND head_branch = ? AND has_merged = ? AND issue.is_closed = ?",
  399. repoID, branch, false, false).
  400. Join("INNER", "issue", "issue.id = pull_request.issue_id").Find(&prs)
  401. }
  402. // GetUnmergedPullRequestsByBaseInfo returnss all pull requests that are open and has not been merged
  403. // by given base information (repo and branch).
  404. func GetUnmergedPullRequestsByBaseInfo(repoID int64, branch string) ([]*PullRequest, error) {
  405. prs := make([]*PullRequest, 0, 2)
  406. return prs, x.Where("base_repo_id=? AND base_branch=? AND has_merged=? AND issue.is_closed=?",
  407. repoID, branch, false, false).
  408. Join("INNER", "issue", "issue.id=pull_request.issue_id").Find(&prs)
  409. }
  410. func getPullRequestByID(e Engine, id int64) (*PullRequest, error) {
  411. pr := new(PullRequest)
  412. has, err := e.Id(id).Get(pr)
  413. if err != nil {
  414. return nil, err
  415. } else if !has {
  416. return nil, ErrPullRequestNotExist{id, 0, 0, 0, "", ""}
  417. }
  418. return pr, pr.loadAttributes(e)
  419. }
  420. // GetPullRequestByID returns a pull request by given ID.
  421. func GetPullRequestByID(id int64) (*PullRequest, error) {
  422. return getPullRequestByID(x, id)
  423. }
  424. func getPullRequestByIssueID(e Engine, issueID int64) (*PullRequest, error) {
  425. pr := &PullRequest{
  426. IssueID: issueID,
  427. }
  428. has, err := e.Get(pr)
  429. if err != nil {
  430. return nil, err
  431. } else if !has {
  432. return nil, ErrPullRequestNotExist{0, issueID, 0, 0, "", ""}
  433. }
  434. return pr, pr.loadAttributes(e)
  435. }
  436. // GetPullRequestByIssueID returns pull request by given issue ID.
  437. func GetPullRequestByIssueID(issueID int64) (*PullRequest, error) {
  438. return getPullRequestByIssueID(x, issueID)
  439. }
  440. // Update updates all fields of pull request.
  441. func (pr *PullRequest) Update() error {
  442. _, err := x.Id(pr.ID).AllCols().Update(pr)
  443. return err
  444. }
  445. // Update updates specific fields of pull request.
  446. func (pr *PullRequest) UpdateCols(cols ...string) error {
  447. _, err := x.Id(pr.ID).Cols(cols...).Update(pr)
  448. return err
  449. }
  450. // UpdatePatch generates and saves a new patch.
  451. func (pr *PullRequest) UpdatePatch() (err error) {
  452. if pr.HeadRepo == nil {
  453. log.Trace("PullRequest[%d].UpdatePatch: ignored cruppted data", pr.ID)
  454. return nil
  455. }
  456. headGitRepo, err := git.OpenRepository(pr.HeadRepo.RepoPath())
  457. if err != nil {
  458. return fmt.Errorf("OpenRepository: %v", err)
  459. }
  460. // Add a temporary remote.
  461. tmpRemote := com.ToStr(time.Now().UnixNano())
  462. if err = headGitRepo.AddRemote(tmpRemote, RepoPath(pr.BaseRepo.MustOwner().Name, pr.BaseRepo.Name), true); err != nil {
  463. return fmt.Errorf("AddRemote: %v", err)
  464. }
  465. defer func() {
  466. headGitRepo.RemoveRemote(tmpRemote)
  467. }()
  468. remoteBranch := "remotes/" + tmpRemote + "/" + pr.BaseBranch
  469. pr.MergeBase, err = headGitRepo.GetMergeBase(remoteBranch, pr.HeadBranch)
  470. if err != nil {
  471. return fmt.Errorf("GetMergeBase: %v", err)
  472. } else if err = pr.Update(); err != nil {
  473. return fmt.Errorf("Update: %v", err)
  474. }
  475. patch, err := headGitRepo.GetPatch(pr.MergeBase, pr.HeadBranch)
  476. if err != nil {
  477. return fmt.Errorf("GetPatch: %v", err)
  478. }
  479. if err = pr.BaseRepo.SavePatch(pr.Index, patch); err != nil {
  480. return fmt.Errorf("BaseRepo.SavePatch: %v", err)
  481. }
  482. return nil
  483. }
  484. // PushToBaseRepo pushes commits from branches of head repository to
  485. // corresponding branches of base repository.
  486. // FIXME: Only push branches that are actually updates?
  487. func (pr *PullRequest) PushToBaseRepo() (err error) {
  488. log.Trace("PushToBaseRepo[%d]: pushing commits to base repo 'refs/pull/%d/head'", pr.BaseRepoID, pr.Index)
  489. headRepoPath := pr.HeadRepo.RepoPath()
  490. headGitRepo, err := git.OpenRepository(headRepoPath)
  491. if err != nil {
  492. return fmt.Errorf("OpenRepository: %v", err)
  493. }
  494. tmpRemoteName := fmt.Sprintf("tmp-pull-%d", pr.ID)
  495. if err = headGitRepo.AddRemote(tmpRemoteName, pr.BaseRepo.RepoPath(), false); err != nil {
  496. return fmt.Errorf("headGitRepo.AddRemote: %v", err)
  497. }
  498. // Make sure to remove the remote even if the push fails
  499. defer headGitRepo.RemoveRemote(tmpRemoteName)
  500. headFile := fmt.Sprintf("refs/pull/%d/head", pr.Index)
  501. // Remove head in case there is a conflict.
  502. os.Remove(path.Join(pr.BaseRepo.RepoPath(), headFile))
  503. if err = git.Push(headRepoPath, tmpRemoteName, fmt.Sprintf("%s:%s", pr.HeadBranch, headFile)); err != nil {
  504. return fmt.Errorf("Push: %v", err)
  505. }
  506. return nil
  507. }
  508. // AddToTaskQueue adds itself to pull request test task queue.
  509. func (pr *PullRequest) AddToTaskQueue() {
  510. go PullRequestQueue.AddFunc(pr.ID, func() {
  511. pr.Status = PULL_REQUEST_STATUS_CHECKING
  512. if err := pr.UpdateCols("status"); err != nil {
  513. log.Error(5, "AddToTaskQueue.UpdateCols[%d].(add to queue): %v", pr.ID, err)
  514. }
  515. })
  516. }
  517. type PullRequestList []*PullRequest
  518. func (prs PullRequestList) loadAttributes(e Engine) (err error) {
  519. if len(prs) == 0 {
  520. return nil
  521. }
  522. // Load issues
  523. issueIDs := make([]int64, 0, len(prs))
  524. for i := range prs {
  525. issueIDs = append(issueIDs, prs[i].IssueID)
  526. }
  527. issues := make([]*Issue, 0, len(issueIDs))
  528. if err = e.Where("id > 0").In("id", issueIDs).Find(&issues); err != nil {
  529. return fmt.Errorf("find issues: %v", err)
  530. }
  531. set := make(map[int64]*Issue)
  532. for i := range issues {
  533. set[issues[i].ID] = issues[i]
  534. }
  535. for i := range prs {
  536. prs[i].Issue = set[prs[i].IssueID]
  537. }
  538. // Load attributes
  539. for i := range prs {
  540. if err = prs[i].loadAttributes(e); err != nil {
  541. return fmt.Errorf("loadAttributes [%d]: %v", prs[i].ID, err)
  542. }
  543. }
  544. return nil
  545. }
  546. func (prs PullRequestList) LoadAttributes() error {
  547. return prs.loadAttributes(x)
  548. }
  549. func addHeadRepoTasks(prs []*PullRequest) {
  550. for _, pr := range prs {
  551. log.Trace("addHeadRepoTasks[%d]: composing new test task", pr.ID)
  552. if err := pr.UpdatePatch(); err != nil {
  553. log.Error(4, "UpdatePatch: %v", err)
  554. continue
  555. } else if err := pr.PushToBaseRepo(); err != nil {
  556. log.Error(4, "PushToBaseRepo: %v", err)
  557. continue
  558. }
  559. pr.AddToTaskQueue()
  560. }
  561. }
  562. // AddTestPullRequestTask adds new test tasks by given head/base repository and head/base branch,
  563. // and generate new patch for testing as needed.
  564. func AddTestPullRequestTask(doer *User, repoID int64, branch string, isSync bool) {
  565. log.Trace("AddTestPullRequestTask [head_repo_id: %d, head_branch: %s]: finding pull requests", repoID, branch)
  566. prs, err := GetUnmergedPullRequestsByHeadInfo(repoID, branch)
  567. if err != nil {
  568. log.Error(4, "Find pull requests [head_repo_id: %d, head_branch: %s]: %v", repoID, branch, err)
  569. return
  570. }
  571. if isSync {
  572. if err = PullRequestList(prs).LoadAttributes(); err != nil {
  573. log.Error(4, "PullRequestList.LoadAttributes: %v", err)
  574. }
  575. if err == nil {
  576. for _, pr := range prs {
  577. pr.Issue.PullRequest = pr
  578. if err = pr.Issue.LoadAttributes(); err != nil {
  579. log.Error(4, "LoadAttributes: %v", err)
  580. continue
  581. }
  582. if err = PrepareWebhooks(pr.Issue.Repo, HOOK_EVENT_PULL_REQUEST, &api.PullRequestPayload{
  583. Action: api.HOOK_ISSUE_SYNCHRONIZED,
  584. Index: pr.Issue.Index,
  585. PullRequest: pr.Issue.PullRequest.APIFormat(),
  586. Repository: pr.Issue.Repo.APIFormat(nil),
  587. Sender: doer.APIFormat(),
  588. }); err != nil {
  589. log.Error(4, "PrepareWebhooks [pull_id: %v]: %v", pr.ID, err)
  590. continue
  591. }
  592. go HookQueue.Add(pr.Issue.Repo.ID)
  593. }
  594. }
  595. }
  596. addHeadRepoTasks(prs)
  597. log.Trace("AddTestPullRequestTask [base_repo_id: %d, base_branch: %s]: finding pull requests", repoID, branch)
  598. prs, err = GetUnmergedPullRequestsByBaseInfo(repoID, branch)
  599. if err != nil {
  600. log.Error(4, "Find pull requests [base_repo_id: %d, base_branch: %s]: %v", repoID, branch, err)
  601. return
  602. }
  603. for _, pr := range prs {
  604. pr.AddToTaskQueue()
  605. }
  606. }
  607. func ChangeUsernameInPullRequests(oldUserName, newUserName string) error {
  608. pr := PullRequest{
  609. HeadUserName: strings.ToLower(newUserName),
  610. }
  611. _, err := x.Cols("head_user_name").Where("head_user_name = ?", strings.ToLower(oldUserName)).Update(pr)
  612. return err
  613. }
  614. // checkAndUpdateStatus checks if pull request is possible to levaing checking status,
  615. // and set to be either conflict or mergeable.
  616. func (pr *PullRequest) checkAndUpdateStatus() {
  617. // Status is not changed to conflict means mergeable.
  618. if pr.Status == PULL_REQUEST_STATUS_CHECKING {
  619. pr.Status = PULL_REQUEST_STATUS_MERGEABLE
  620. }
  621. // Make sure there is no waiting test to process before levaing the checking status.
  622. if !PullRequestQueue.Exist(pr.ID) {
  623. if err := pr.UpdateCols("status"); err != nil {
  624. log.Error(4, "Update[%d]: %v", pr.ID, err)
  625. }
  626. }
  627. }
  628. // TestPullRequests checks and tests untested patches of pull requests.
  629. // TODO: test more pull requests at same time.
  630. func TestPullRequests() {
  631. prs := make([]*PullRequest, 0, 10)
  632. x.Iterate(PullRequest{
  633. Status: PULL_REQUEST_STATUS_CHECKING,
  634. },
  635. func(idx int, bean interface{}) error {
  636. pr := bean.(*PullRequest)
  637. if err := pr.LoadAttributes(); err != nil {
  638. log.Error(3, "LoadAttributes: %v", err)
  639. return nil
  640. }
  641. if err := pr.testPatch(); err != nil {
  642. log.Error(3, "testPatch: %v", err)
  643. return nil
  644. }
  645. prs = append(prs, pr)
  646. return nil
  647. })
  648. // Update pull request status.
  649. for _, pr := range prs {
  650. pr.checkAndUpdateStatus()
  651. }
  652. // Start listening on new test requests.
  653. for prID := range PullRequestQueue.Queue() {
  654. log.Trace("TestPullRequests[%v]: processing test task", prID)
  655. PullRequestQueue.Remove(prID)
  656. pr, err := GetPullRequestByID(com.StrTo(prID).MustInt64())
  657. if err != nil {
  658. log.Error(4, "GetPullRequestByID[%s]: %v", prID, err)
  659. continue
  660. } else if err = pr.testPatch(); err != nil {
  661. log.Error(4, "testPatch[%d]: %v", pr.ID, err)
  662. continue
  663. }
  664. pr.checkAndUpdateStatus()
  665. }
  666. }
  667. func InitTestPullRequests() {
  668. go TestPullRequests()
  669. }