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.

action.go 15 kB

12 years ago
12 years ago
12 years ago
10 years ago
10 years ago
10 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
10 years ago
10 years ago
10 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
10 years ago
12 years ago
10 years ago
10 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  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/go-xorm/xorm"
  15. "github.com/Unknwon/com"
  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. issueIndex := com.StrTo(a.GetIssueInfos()[0]).MustInt64()
  116. issue, err := GetIssueByIndex(a.RepoID, issueIndex)
  117. if err != nil {
  118. log.Error(4, "GetIssueByID: %v", err)
  119. return "500 when get title"
  120. }
  121. return issue.Name
  122. }
  123. func newRepoAction(e Engine, u *User, repo *Repository) (err error) {
  124. if err = notifyWatchers(e, &Action{
  125. ActUserID: u.Id,
  126. ActUserName: u.Name,
  127. ActEmail: u.Email,
  128. OpType: CREATE_REPO,
  129. RepoID: repo.ID,
  130. RepoUserName: repo.Owner.Name,
  131. RepoName: repo.Name,
  132. IsPrivate: repo.IsPrivate,
  133. }); err != nil {
  134. return fmt.Errorf("notify watchers '%d/%d': %v", u.Id, repo.ID, err)
  135. }
  136. log.Trace("action.newRepoAction: %s/%s", u.Name, repo.Name)
  137. return err
  138. }
  139. // NewRepoAction adds new action for creating repository.
  140. func NewRepoAction(u *User, repo *Repository) (err error) {
  141. return newRepoAction(x, u, repo)
  142. }
  143. func renameRepoAction(e Engine, actUser *User, oldRepoName string, repo *Repository) (err error) {
  144. if err = notifyWatchers(e, &Action{
  145. ActUserID: actUser.Id,
  146. ActUserName: actUser.Name,
  147. ActEmail: actUser.Email,
  148. OpType: RENAME_REPO,
  149. RepoID: repo.ID,
  150. RepoUserName: repo.Owner.Name,
  151. RepoName: repo.Name,
  152. IsPrivate: repo.IsPrivate,
  153. Content: oldRepoName,
  154. }); err != nil {
  155. return fmt.Errorf("notify watchers: %v", err)
  156. }
  157. log.Trace("action.renameRepoAction: %s/%s", actUser.Name, repo.Name)
  158. return nil
  159. }
  160. // RenameRepoAction adds new action for renaming a repository.
  161. func RenameRepoAction(actUser *User, oldRepoName string, repo *Repository) error {
  162. return renameRepoAction(x, actUser, oldRepoName, repo)
  163. }
  164. func issueIndexTrimRight(c rune) bool {
  165. return !unicode.IsDigit(c)
  166. }
  167. // updateIssuesCommit checks if issues are manipulated by commit message.
  168. func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string, commits []*base.PushCommit) error {
  169. // Commits are appended in the reverse order.
  170. for i := len(commits) - 1; i >= 0; i-- {
  171. c := commits[i]
  172. refMarked := make(map[int64]bool)
  173. for _, ref := range IssueReferenceKeywordsPat.FindAllString(c.Message, -1) {
  174. ref = ref[strings.IndexByte(ref, byte(' '))+1:]
  175. ref = strings.TrimRightFunc(ref, issueIndexTrimRight)
  176. if len(ref) == 0 {
  177. continue
  178. }
  179. // Add repo name if missing
  180. if ref[0] == '#' {
  181. ref = fmt.Sprintf("%s/%s%s", repoUserName, repoName, ref)
  182. } else if !strings.Contains(ref, "/") {
  183. // FIXME: We don't support User#ID syntax yet
  184. // return ErrNotImplemented
  185. continue
  186. }
  187. issue, err := GetIssueByRef(ref)
  188. if err != nil {
  189. if IsErrIssueNotExist(err) {
  190. continue
  191. }
  192. return err
  193. }
  194. if refMarked[issue.ID] {
  195. continue
  196. }
  197. refMarked[issue.ID] = true
  198. url := fmt.Sprintf("%s/%s/%s/commit/%s", setting.AppSubUrl, repoUserName, repoName, c.Sha1)
  199. message := fmt.Sprintf(`<a href="%s">%s</a>`, url, c.Message)
  200. if err = CreateRefComment(u, repo, issue, message, c.Sha1); err != nil {
  201. return err
  202. }
  203. }
  204. refMarked = make(map[int64]bool)
  205. // FIXME: can merge this one and next one to a common function.
  206. for _, ref := range IssueCloseKeywordsPat.FindAllString(c.Message, -1) {
  207. ref = ref[strings.IndexByte(ref, byte(' '))+1:]
  208. ref = strings.TrimRightFunc(ref, issueIndexTrimRight)
  209. if len(ref) == 0 {
  210. continue
  211. }
  212. // Add repo name if missing
  213. if ref[0] == '#' {
  214. ref = fmt.Sprintf("%s/%s%s", repoUserName, repoName, ref)
  215. } else if !strings.Contains(ref, "/") {
  216. // We don't support User#ID syntax yet
  217. // return ErrNotImplemented
  218. continue
  219. }
  220. issue, err := GetIssueByRef(ref)
  221. if err != nil {
  222. if IsErrIssueNotExist(err) {
  223. continue
  224. }
  225. return err
  226. }
  227. if refMarked[issue.ID] {
  228. continue
  229. }
  230. refMarked[issue.ID] = true
  231. if issue.RepoID != repo.ID || issue.IsClosed {
  232. continue
  233. }
  234. if err = issue.ChangeStatus(u, true); err != nil {
  235. return err
  236. }
  237. }
  238. // It is conflict to have close and reopen at same time, so refsMarkd doesn't need to reinit here.
  239. for _, ref := range IssueReopenKeywordsPat.FindAllString(c.Message, -1) {
  240. ref = ref[strings.IndexByte(ref, byte(' '))+1:]
  241. ref = strings.TrimRightFunc(ref, issueIndexTrimRight)
  242. if len(ref) == 0 {
  243. continue
  244. }
  245. // Add repo name if missing
  246. if ref[0] == '#' {
  247. ref = fmt.Sprintf("%s/%s%s", repoUserName, repoName, ref)
  248. } else if !strings.Contains(ref, "/") {
  249. // We don't support User#ID syntax yet
  250. // return ErrNotImplemented
  251. continue
  252. }
  253. issue, err := GetIssueByRef(ref)
  254. if err != nil {
  255. if IsErrIssueNotExist(err) {
  256. continue
  257. }
  258. return err
  259. }
  260. if refMarked[issue.ID] {
  261. continue
  262. }
  263. refMarked[issue.ID] = true
  264. if issue.RepoID != repo.ID || !issue.IsClosed {
  265. continue
  266. }
  267. if err = issue.ChangeStatus(u, false); err != nil {
  268. return err
  269. }
  270. }
  271. }
  272. return nil
  273. }
  274. // CommitRepoAction adds new action for committing repository.
  275. func CommitRepoAction(
  276. userID, repoUserID int64,
  277. userName, actEmail string,
  278. repoID int64,
  279. repoUserName, repoName string,
  280. refFullName string,
  281. commit *base.PushCommits,
  282. oldCommitID string, newCommitID string) error {
  283. u, err := GetUserByID(userID)
  284. if err != nil {
  285. return fmt.Errorf("GetUserByID: %v", err)
  286. }
  287. repo, err := GetRepositoryByName(repoUserID, repoName)
  288. if err != nil {
  289. return fmt.Errorf("GetRepositoryByName: %v", err)
  290. } else if err = repo.GetOwner(); err != nil {
  291. return fmt.Errorf("GetOwner: %v", err)
  292. }
  293. // Change repository bare status and update last updated time.
  294. repo.IsBare = false
  295. if err = UpdateRepository(repo, false); err != nil {
  296. return fmt.Errorf("UpdateRepository: %v", err)
  297. }
  298. isNewBranch := false
  299. opType := COMMIT_REPO
  300. // Check it's tag push or branch.
  301. if strings.HasPrefix(refFullName, "refs/tags/") {
  302. opType = PUSH_TAG
  303. commit = &base.PushCommits{}
  304. } else {
  305. // if not the first commit, set the compareUrl
  306. if !strings.HasPrefix(oldCommitID, "0000000") {
  307. commit.CompareUrl = fmt.Sprintf("%s/%s/compare/%s...%s", repoUserName, repoName, oldCommitID, newCommitID)
  308. } else {
  309. isNewBranch = true
  310. }
  311. if err = updateIssuesCommit(u, repo, repoUserName, repoName, commit.Commits); err != nil {
  312. log.Error(4, "updateIssuesCommit: %v", err)
  313. }
  314. }
  315. if len(commit.Commits) > setting.FeedMaxCommitNum {
  316. commit.Commits = commit.Commits[:setting.FeedMaxCommitNum]
  317. }
  318. bs, err := json.Marshal(commit)
  319. if err != nil {
  320. return fmt.Errorf("Marshal: %v", err)
  321. }
  322. refName := git.RefEndName(refFullName)
  323. if err = NotifyWatchers(&Action{
  324. ActUserID: u.Id,
  325. ActUserName: userName,
  326. ActEmail: actEmail,
  327. OpType: opType,
  328. Content: string(bs),
  329. RepoID: repo.ID,
  330. RepoUserName: repoUserName,
  331. RepoName: repoName,
  332. RefName: refName,
  333. IsPrivate: repo.IsPrivate,
  334. }); err != nil {
  335. return fmt.Errorf("NotifyWatchers: %v", err)
  336. }
  337. repoLink := fmt.Sprintf("%s%s/%s", setting.AppUrl, repoUserName, repoName)
  338. payloadRepo := &api.PayloadRepo{
  339. ID: repo.ID,
  340. Name: repo.LowerName,
  341. URL: repoLink,
  342. Description: repo.Description,
  343. Website: repo.Website,
  344. Watchers: repo.NumWatches,
  345. Owner: &api.PayloadAuthor{
  346. Name: repo.Owner.DisplayName(),
  347. Email: repo.Owner.Email,
  348. UserName: repo.Owner.Name,
  349. },
  350. Private: repo.IsPrivate,
  351. }
  352. pusher_email, pusher_name := "", ""
  353. pusher, err := GetUserByName(userName)
  354. if err == nil {
  355. pusher_email = pusher.Email
  356. pusher_name = pusher.DisplayName()
  357. }
  358. payloadSender := &api.PayloadUser{
  359. UserName: pusher.Name,
  360. ID: pusher.Id,
  361. AvatarUrl: setting.AppUrl + pusher.RelAvatarLink(),
  362. }
  363. switch opType {
  364. case COMMIT_REPO: // Push
  365. commits := make([]*api.PayloadCommit, len(commit.Commits))
  366. for i, cmt := range commit.Commits {
  367. author_username := ""
  368. author, err := GetUserByEmail(cmt.AuthorEmail)
  369. if err == nil {
  370. author_username = author.Name
  371. }
  372. commits[i] = &api.PayloadCommit{
  373. ID: cmt.Sha1,
  374. Message: cmt.Message,
  375. URL: fmt.Sprintf("%s/commit/%s", repoLink, cmt.Sha1),
  376. Author: &api.PayloadAuthor{
  377. Name: cmt.AuthorName,
  378. Email: cmt.AuthorEmail,
  379. UserName: author_username,
  380. },
  381. }
  382. }
  383. p := &api.PushPayload{
  384. Ref: refFullName,
  385. Before: oldCommitID,
  386. After: newCommitID,
  387. CompareUrl: setting.AppUrl + commit.CompareUrl,
  388. Commits: commits,
  389. Repo: payloadRepo,
  390. Pusher: &api.PayloadAuthor{
  391. Name: pusher_name,
  392. Email: pusher_email,
  393. UserName: userName,
  394. },
  395. Sender: payloadSender,
  396. }
  397. if err = PrepareWebhooks(repo, HOOK_EVENT_PUSH, p); err != nil {
  398. return fmt.Errorf("PrepareWebhooks: %v", err)
  399. }
  400. if isNewBranch {
  401. return PrepareWebhooks(repo, HOOK_EVENT_CREATE, &api.CreatePayload{
  402. Ref: refName,
  403. RefType: "branch",
  404. Repo: payloadRepo,
  405. Sender: payloadSender,
  406. })
  407. }
  408. case PUSH_TAG: // Create
  409. return PrepareWebhooks(repo, HOOK_EVENT_CREATE, &api.CreatePayload{
  410. Ref: refName,
  411. RefType: "tag",
  412. Repo: payloadRepo,
  413. Sender: payloadSender,
  414. })
  415. }
  416. return nil
  417. }
  418. func transferRepoAction(e Engine, actUser, oldOwner, newOwner *User, repo *Repository) (err error) {
  419. if err = notifyWatchers(e, &Action{
  420. ActUserID: actUser.Id,
  421. ActUserName: actUser.Name,
  422. ActEmail: actUser.Email,
  423. OpType: TRANSFER_REPO,
  424. RepoID: repo.ID,
  425. RepoUserName: newOwner.Name,
  426. RepoName: repo.Name,
  427. IsPrivate: repo.IsPrivate,
  428. Content: path.Join(oldOwner.LowerName, repo.LowerName),
  429. }); err != nil {
  430. return fmt.Errorf("notify watchers '%d/%d': %v", actUser.Id, repo.ID, err)
  431. }
  432. // Remove watch for organization.
  433. if repo.Owner.IsOrganization() {
  434. if err = watchRepo(e, repo.Owner.Id, repo.ID, false); err != nil {
  435. return fmt.Errorf("watch repository: %v", err)
  436. }
  437. }
  438. log.Trace("action.transferRepoAction: %s/%s", actUser.Name, repo.Name)
  439. return nil
  440. }
  441. // TransferRepoAction adds new action for transferring repository.
  442. func TransferRepoAction(actUser, oldOwner, newOwner *User, repo *Repository) error {
  443. return transferRepoAction(x, actUser, oldOwner, newOwner, repo)
  444. }
  445. func mergePullRequestAction(e Engine, actUser *User, repo *Repository, pull *Issue) error {
  446. return notifyWatchers(e, &Action{
  447. ActUserID: actUser.Id,
  448. ActUserName: actUser.Name,
  449. ActEmail: actUser.Email,
  450. OpType: MERGE_PULL_REQUEST,
  451. Content: fmt.Sprintf("%d|%s", pull.Index, pull.Name),
  452. RepoID: repo.ID,
  453. RepoUserName: repo.Owner.Name,
  454. RepoName: repo.Name,
  455. IsPrivate: repo.IsPrivate,
  456. })
  457. }
  458. // MergePullRequestAction adds new action for merging pull request.
  459. func MergePullRequestAction(actUser *User, repo *Repository, pull *Issue) error {
  460. return mergePullRequestAction(x, actUser, repo, pull)
  461. }
  462. // GetFeeds returns action list of given user in given context.
  463. func GetFeeds(uid, offset int64, isProfile bool) ([]*Action, error) {
  464. actions := make([]*Action, 0, 20)
  465. sess := x.Limit(20, int(offset)).Desc("id").Where("user_id=?", uid)
  466. if isProfile {
  467. sess.And("is_private=?", false).And("act_user_id=?", uid)
  468. }
  469. err := sess.Find(&actions)
  470. return actions, err
  471. }