action.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559
  1. // Copyright 2014 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. "encoding/json"
  7. "errors"
  8. "fmt"
  9. "path"
  10. "regexp"
  11. "strings"
  12. "time"
  13. "unicode"
  14. "github.com/Unknwon/com"
  15. "github.com/go-xorm/xorm"
  16. api "github.com/gogits/go-gogs-client"
  17. "github.com/gogits/gogs/modules/base"
  18. "github.com/gogits/gogs/modules/git"
  19. "github.com/gogits/gogs/modules/log"
  20. "github.com/gogits/gogs/modules/setting"
  21. )
  22. type ActionType int
  23. const (
  24. CREATE_REPO ActionType = iota + 1 // 1
  25. RENAME_REPO // 2
  26. STAR_REPO // 3
  27. FOLLOW_REPO // 4
  28. COMMIT_REPO // 5
  29. CREATE_ISSUE // 6
  30. CREATE_PULL_REQUEST // 7
  31. TRANSFER_REPO // 8
  32. PUSH_TAG // 9
  33. COMMENT_ISSUE // 10
  34. MERGE_PULL_REQUEST // 11
  35. )
  36. var (
  37. ErrNotImplemented = errors.New("Not implemented yet")
  38. )
  39. var (
  40. // Same as Github. See https://help.github.com/articles/closing-issues-via-commit-messages
  41. IssueCloseKeywords = []string{"close", "closes", "closed", "fix", "fixes", "fixed", "resolve", "resolves", "resolved"}
  42. IssueReopenKeywords = []string{"reopen", "reopens", "reopened"}
  43. IssueCloseKeywordsPat, IssueReopenKeywordsPat *regexp.Regexp
  44. IssueReferenceKeywordsPat *regexp.Regexp
  45. )
  46. func assembleKeywordsPattern(words []string) string {
  47. return fmt.Sprintf(`(?i)(?:%s) \S+`, strings.Join(words, "|"))
  48. }
  49. func init() {
  50. IssueCloseKeywordsPat = regexp.MustCompile(assembleKeywordsPattern(IssueCloseKeywords))
  51. IssueReopenKeywordsPat = regexp.MustCompile(assembleKeywordsPattern(IssueReopenKeywords))
  52. IssueReferenceKeywordsPat = regexp.MustCompile(`(?i)(?:)(^| )\S+`)
  53. }
  54. // Action represents user operation type and other information to repository.,
  55. // it implemented interface base.Actioner so that can be used in template render.
  56. type Action struct {
  57. ID int64 `xorm:"pk autoincr"`
  58. UserID int64 // Receiver user id.
  59. OpType ActionType
  60. ActUserID int64 // Action user id.
  61. ActUserName string // Action user name.
  62. ActEmail string
  63. ActAvatar string `xorm:"-"`
  64. RepoID int64
  65. RepoUserName string
  66. RepoName string
  67. RefName string
  68. IsPrivate bool `xorm:"NOT NULL DEFAULT false"`
  69. Content string `xorm:"TEXT"`
  70. Created time.Time `xorm:"created"`
  71. }
  72. func (a *Action) AfterSet(colName string, _ xorm.Cell) {
  73. switch colName {
  74. case "created":
  75. a.Created = regulateTimeZone(a.Created)
  76. }
  77. }
  78. func (a Action) GetOpType() int {
  79. return int(a.OpType)
  80. }
  81. func (a Action) GetActUserName() string {
  82. return a.ActUserName
  83. }
  84. func (a Action) GetActEmail() string {
  85. return a.ActEmail
  86. }
  87. func (a Action) GetRepoUserName() string {
  88. return a.RepoUserName
  89. }
  90. func (a Action) GetRepoName() string {
  91. return a.RepoName
  92. }
  93. func (a Action) GetRepoPath() string {
  94. return path.Join(a.RepoUserName, a.RepoName)
  95. }
  96. func (a Action) GetRepoLink() string {
  97. if len(setting.AppSubUrl) > 0 {
  98. return path.Join(setting.AppSubUrl, a.GetRepoPath())
  99. }
  100. return "/" + a.GetRepoPath()
  101. }
  102. func (a Action) GetBranch() string {
  103. return a.RefName
  104. }
  105. func (a Action) GetContent() string {
  106. return a.Content
  107. }
  108. func (a Action) GetCreate() time.Time {
  109. return a.Created
  110. }
  111. func (a Action) GetIssueInfos() []string {
  112. return strings.SplitN(a.Content, "|", 2)
  113. }
  114. func (a Action) GetIssueTitle() string {
  115. index := com.StrTo(a.GetIssueInfos()[0]).MustInt64()
  116. issue, err := GetIssueByIndex(a.RepoID, index)
  117. if err != nil {
  118. log.Error(4, "GetIssueByIndex: %v", err)
  119. return "500 when get issue"
  120. }
  121. return issue.Name
  122. }
  123. func (a Action) GetIssueContent() string {
  124. index := com.StrTo(a.GetIssueInfos()[0]).MustInt64()
  125. issue, err := GetIssueByIndex(a.RepoID, index)
  126. if err != nil {
  127. log.Error(4, "GetIssueByIndex: %v", err)
  128. return "500 when get issue"
  129. }
  130. return issue.Content
  131. }
  132. func newRepoAction(e Engine, u *User, repo *Repository) (err error) {
  133. if err = notifyWatchers(e, &Action{
  134. ActUserID: u.Id,
  135. ActUserName: u.Name,
  136. ActEmail: u.Email,
  137. OpType: CREATE_REPO,
  138. RepoID: repo.ID,
  139. RepoUserName: repo.Owner.Name,
  140. RepoName: repo.Name,
  141. IsPrivate: repo.IsPrivate,
  142. }); err != nil {
  143. return fmt.Errorf("notify watchers '%d/%d': %v", u.Id, repo.ID, err)
  144. }
  145. log.Trace("action.newRepoAction: %s/%s", u.Name, repo.Name)
  146. return err
  147. }
  148. // NewRepoAction adds new action for creating repository.
  149. func NewRepoAction(u *User, repo *Repository) (err error) {
  150. return newRepoAction(x, u, repo)
  151. }
  152. func renameRepoAction(e Engine, actUser *User, oldRepoName string, repo *Repository) (err error) {
  153. if err = notifyWatchers(e, &Action{
  154. ActUserID: actUser.Id,
  155. ActUserName: actUser.Name,
  156. ActEmail: actUser.Email,
  157. OpType: RENAME_REPO,
  158. RepoID: repo.ID,
  159. RepoUserName: repo.Owner.Name,
  160. RepoName: repo.Name,
  161. IsPrivate: repo.IsPrivate,
  162. Content: oldRepoName,
  163. }); err != nil {
  164. return fmt.Errorf("notify watchers: %v", err)
  165. }
  166. log.Trace("action.renameRepoAction: %s/%s", actUser.Name, repo.Name)
  167. return nil
  168. }
  169. // RenameRepoAction adds new action for renaming a repository.
  170. func RenameRepoAction(actUser *User, oldRepoName string, repo *Repository) error {
  171. return renameRepoAction(x, actUser, oldRepoName, repo)
  172. }
  173. func issueIndexTrimRight(c rune) bool {
  174. return !unicode.IsDigit(c)
  175. }
  176. // updateIssuesCommit checks if issues are manipulated by commit message.
  177. func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string, commits []*base.PushCommit) error {
  178. // Commits are appended in the reverse order.
  179. for i := len(commits) - 1; i >= 0; i-- {
  180. c := commits[i]
  181. refMarked := make(map[int64]bool)
  182. for _, ref := range IssueReferenceKeywordsPat.FindAllString(c.Message, -1) {
  183. ref = ref[strings.IndexByte(ref, byte(' '))+1:]
  184. ref = strings.TrimRightFunc(ref, issueIndexTrimRight)
  185. if len(ref) == 0 {
  186. continue
  187. }
  188. // Add repo name if missing
  189. if ref[0] == '#' {
  190. ref = fmt.Sprintf("%s/%s%s", repoUserName, repoName, ref)
  191. } else if !strings.Contains(ref, "/") {
  192. // FIXME: We don't support User#ID syntax yet
  193. // return ErrNotImplemented
  194. continue
  195. }
  196. issue, err := GetIssueByRef(ref)
  197. if err != nil {
  198. if IsErrIssueNotExist(err) {
  199. continue
  200. }
  201. return err
  202. }
  203. if refMarked[issue.ID] {
  204. continue
  205. }
  206. refMarked[issue.ID] = true
  207. url := fmt.Sprintf("%s/%s/%s/commit/%s", setting.AppSubUrl, repoUserName, repoName, c.Sha1)
  208. message := fmt.Sprintf(`<a href="%s">%s</a>`, url, c.Message)
  209. if err = CreateRefComment(u, repo, issue, message, c.Sha1); err != nil {
  210. return err
  211. }
  212. }
  213. refMarked = make(map[int64]bool)
  214. // FIXME: can merge this one and next one to a common function.
  215. for _, ref := range IssueCloseKeywordsPat.FindAllString(c.Message, -1) {
  216. ref = ref[strings.IndexByte(ref, byte(' '))+1:]
  217. ref = strings.TrimRightFunc(ref, issueIndexTrimRight)
  218. if len(ref) == 0 {
  219. continue
  220. }
  221. // Add repo name if missing
  222. if ref[0] == '#' {
  223. ref = fmt.Sprintf("%s/%s%s", repoUserName, repoName, ref)
  224. } else if !strings.Contains(ref, "/") {
  225. // We don't support User#ID syntax yet
  226. // return ErrNotImplemented
  227. continue
  228. }
  229. issue, err := GetIssueByRef(ref)
  230. if err != nil {
  231. if IsErrIssueNotExist(err) {
  232. continue
  233. }
  234. return err
  235. }
  236. if refMarked[issue.ID] {
  237. continue
  238. }
  239. refMarked[issue.ID] = true
  240. if issue.RepoID != repo.ID || issue.IsClosed {
  241. continue
  242. }
  243. if err = issue.ChangeStatus(u, true); err != nil {
  244. return err
  245. }
  246. }
  247. // It is conflict to have close and reopen at same time, so refsMarkd doesn't need to reinit here.
  248. for _, ref := range IssueReopenKeywordsPat.FindAllString(c.Message, -1) {
  249. ref = ref[strings.IndexByte(ref, byte(' '))+1:]
  250. ref = strings.TrimRightFunc(ref, issueIndexTrimRight)
  251. if len(ref) == 0 {
  252. continue
  253. }
  254. // Add repo name if missing
  255. if ref[0] == '#' {
  256. ref = fmt.Sprintf("%s/%s%s", repoUserName, repoName, ref)
  257. } else if !strings.Contains(ref, "/") {
  258. // We don't support User#ID syntax yet
  259. // return ErrNotImplemented
  260. continue
  261. }
  262. issue, err := GetIssueByRef(ref)
  263. if err != nil {
  264. if IsErrIssueNotExist(err) {
  265. continue
  266. }
  267. return err
  268. }
  269. if refMarked[issue.ID] {
  270. continue
  271. }
  272. refMarked[issue.ID] = true
  273. if issue.RepoID != repo.ID || !issue.IsClosed {
  274. continue
  275. }
  276. if err = issue.ChangeStatus(u, false); err != nil {
  277. return err
  278. }
  279. }
  280. }
  281. return nil
  282. }
  283. // CommitRepoAction adds new action for committing repository.
  284. func CommitRepoAction(
  285. userID, repoUserID int64,
  286. userName, actEmail string,
  287. repoID int64,
  288. repoUserName, repoName string,
  289. refFullName string,
  290. commit *base.PushCommits,
  291. oldCommitID string, newCommitID string) error {
  292. u, err := GetUserByID(userID)
  293. if err != nil {
  294. return fmt.Errorf("GetUserByID: %v", err)
  295. }
  296. repo, err := GetRepositoryByName(repoUserID, repoName)
  297. if err != nil {
  298. return fmt.Errorf("GetRepositoryByName: %v", err)
  299. } else if err = repo.GetOwner(); err != nil {
  300. return fmt.Errorf("GetOwner: %v", err)
  301. }
  302. // Change repository bare status and update last updated time.
  303. repo.IsBare = false
  304. if err = UpdateRepository(repo, false); err != nil {
  305. return fmt.Errorf("UpdateRepository: %v", err)
  306. }
  307. isNewBranch := false
  308. opType := COMMIT_REPO
  309. // Check it's tag push or branch.
  310. if strings.HasPrefix(refFullName, "refs/tags/") {
  311. opType = PUSH_TAG
  312. commit = &base.PushCommits{}
  313. } else {
  314. // if not the first commit, set the compareUrl
  315. if !strings.HasPrefix(oldCommitID, "0000000") {
  316. commit.CompareUrl = fmt.Sprintf("%s/%s/compare/%s...%s", repoUserName, repoName, oldCommitID, newCommitID)
  317. } else {
  318. isNewBranch = true
  319. }
  320. if err = updateIssuesCommit(u, repo, repoUserName, repoName, commit.Commits); err != nil {
  321. log.Error(4, "updateIssuesCommit: %v", err)
  322. }
  323. }
  324. if len(commit.Commits) > setting.FeedMaxCommitNum {
  325. commit.Commits = commit.Commits[:setting.FeedMaxCommitNum]
  326. }
  327. bs, err := json.Marshal(commit)
  328. if err != nil {
  329. return fmt.Errorf("Marshal: %v", err)
  330. }
  331. refName := git.RefEndName(refFullName)
  332. if err = NotifyWatchers(&Action{
  333. ActUserID: u.Id,
  334. ActUserName: userName,
  335. ActEmail: actEmail,
  336. OpType: opType,
  337. Content: string(bs),
  338. RepoID: repo.ID,
  339. RepoUserName: repoUserName,
  340. RepoName: repoName,
  341. RefName: refName,
  342. IsPrivate: repo.IsPrivate,
  343. }); err != nil {
  344. return fmt.Errorf("NotifyWatchers: %v", err)
  345. }
  346. repoLink := fmt.Sprintf("%s%s/%s", setting.AppUrl, repoUserName, repoName)
  347. payloadRepo := &api.PayloadRepo{
  348. ID: repo.ID,
  349. Name: repo.LowerName,
  350. URL: repoLink,
  351. Description: repo.Description,
  352. Website: repo.Website,
  353. Watchers: repo.NumWatches,
  354. Owner: &api.PayloadAuthor{
  355. Name: repo.Owner.DisplayName(),
  356. Email: repo.Owner.Email,
  357. UserName: repo.Owner.Name,
  358. },
  359. Private: repo.IsPrivate,
  360. }
  361. pusher_email, pusher_name := "", ""
  362. pusher, err := GetUserByName(userName)
  363. if err == nil {
  364. pusher_email = pusher.Email
  365. pusher_name = pusher.DisplayName()
  366. }
  367. payloadSender := &api.PayloadUser{
  368. UserName: pusher.Name,
  369. ID: pusher.Id,
  370. AvatarUrl: setting.AppUrl + pusher.RelAvatarLink(),
  371. }
  372. switch opType {
  373. case COMMIT_REPO: // Push
  374. commits := make([]*api.PayloadCommit, len(commit.Commits))
  375. for i, cmt := range commit.Commits {
  376. author_username := ""
  377. author, err := GetUserByEmail(cmt.AuthorEmail)
  378. if err == nil {
  379. author_username = author.Name
  380. }
  381. commits[i] = &api.PayloadCommit{
  382. ID: cmt.Sha1,
  383. Message: cmt.Message,
  384. URL: fmt.Sprintf("%s/commit/%s", repoLink, cmt.Sha1),
  385. Author: &api.PayloadAuthor{
  386. Name: cmt.AuthorName,
  387. Email: cmt.AuthorEmail,
  388. UserName: author_username,
  389. },
  390. }
  391. }
  392. p := &api.PushPayload{
  393. Ref: refFullName,
  394. Before: oldCommitID,
  395. After: newCommitID,
  396. CompareUrl: setting.AppUrl + commit.CompareUrl,
  397. Commits: commits,
  398. Repo: payloadRepo,
  399. Pusher: &api.PayloadAuthor{
  400. Name: pusher_name,
  401. Email: pusher_email,
  402. UserName: userName,
  403. },
  404. Sender: payloadSender,
  405. }
  406. if err = PrepareWebhooks(repo, HOOK_EVENT_PUSH, p); err != nil {
  407. return fmt.Errorf("PrepareWebhooks: %v", err)
  408. }
  409. if isNewBranch {
  410. return PrepareWebhooks(repo, HOOK_EVENT_CREATE, &api.CreatePayload{
  411. Ref: refName,
  412. RefType: "branch",
  413. Repo: payloadRepo,
  414. Sender: payloadSender,
  415. })
  416. }
  417. case PUSH_TAG: // Create
  418. return PrepareWebhooks(repo, HOOK_EVENT_CREATE, &api.CreatePayload{
  419. Ref: refName,
  420. RefType: "tag",
  421. Repo: payloadRepo,
  422. Sender: payloadSender,
  423. })
  424. }
  425. return nil
  426. }
  427. func transferRepoAction(e Engine, actUser, oldOwner, newOwner *User, repo *Repository) (err error) {
  428. if err = notifyWatchers(e, &Action{
  429. ActUserID: actUser.Id,
  430. ActUserName: actUser.Name,
  431. ActEmail: actUser.Email,
  432. OpType: TRANSFER_REPO,
  433. RepoID: repo.ID,
  434. RepoUserName: newOwner.Name,
  435. RepoName: repo.Name,
  436. IsPrivate: repo.IsPrivate,
  437. Content: path.Join(oldOwner.LowerName, repo.LowerName),
  438. }); err != nil {
  439. return fmt.Errorf("notify watchers '%d/%d': %v", actUser.Id, repo.ID, err)
  440. }
  441. // Remove watch for organization.
  442. if repo.Owner.IsOrganization() {
  443. if err = watchRepo(e, repo.Owner.Id, repo.ID, false); err != nil {
  444. return fmt.Errorf("watch repository: %v", err)
  445. }
  446. }
  447. log.Trace("action.transferRepoAction: %s/%s", actUser.Name, repo.Name)
  448. return nil
  449. }
  450. // TransferRepoAction adds new action for transferring repository.
  451. func TransferRepoAction(actUser, oldOwner, newOwner *User, repo *Repository) error {
  452. return transferRepoAction(x, actUser, oldOwner, newOwner, repo)
  453. }
  454. func mergePullRequestAction(e Engine, actUser *User, repo *Repository, pull *Issue) error {
  455. return notifyWatchers(e, &Action{
  456. ActUserID: actUser.Id,
  457. ActUserName: actUser.Name,
  458. ActEmail: actUser.Email,
  459. OpType: MERGE_PULL_REQUEST,
  460. Content: fmt.Sprintf("%d|%s", pull.Index, pull.Name),
  461. RepoID: repo.ID,
  462. RepoUserName: repo.Owner.Name,
  463. RepoName: repo.Name,
  464. IsPrivate: repo.IsPrivate,
  465. })
  466. }
  467. // MergePullRequestAction adds new action for merging pull request.
  468. func MergePullRequestAction(actUser *User, repo *Repository, pull *Issue) error {
  469. return mergePullRequestAction(x, actUser, repo, pull)
  470. }
  471. // GetFeeds returns action list of given user in given context.
  472. func GetFeeds(uid, offset int64, isProfile bool) ([]*Action, error) {
  473. actions := make([]*Action, 0, 20)
  474. sess := x.Limit(20, int(offset)).Desc("id").Where("user_id=?", uid)
  475. if isProfile {
  476. sess.And("is_private=?", false).And("act_user_id=?", uid)
  477. }
  478. err := sess.Find(&actions)
  479. return actions, err
  480. }