issue.go 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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. "errors"
  7. "strings"
  8. "time"
  9. "github.com/gogits/gogs/modules/base"
  10. )
  11. var (
  12. ErrIssueNotExist = errors.New("Issue does not exist")
  13. )
  14. // Issue represents an issue or pull request of repository.
  15. type Issue struct {
  16. Id int64
  17. Index int64 // Index in one repository.
  18. Name string
  19. RepoId int64 `xorm:"index"`
  20. Repo *Repository `xorm:"-"`
  21. PosterId int64
  22. Poster *User `xorm:"-"`
  23. MilestoneId int64
  24. AssigneeId int64
  25. IsPull bool // Indicates whether is a pull request or not.
  26. IsClosed bool
  27. Labels string `xorm:"TEXT"`
  28. Mentions string `xorm:"TEXT"`
  29. Content string `xorm:"TEXT"`
  30. RenderedContent string `xorm:"-"`
  31. NumComments int
  32. Created time.Time `xorm:"created"`
  33. Updated time.Time `xorm:"updated"`
  34. }
  35. // CreateIssue creates new issue for repository.
  36. func CreateIssue(userId, repoId, milestoneId, assigneeId int64, issueCount int, name, labels, content string, isPull bool) (issue *Issue, err error) {
  37. // TODO: find out mentions
  38. mentions := ""
  39. sess := orm.NewSession()
  40. defer sess.Close()
  41. sess.Begin()
  42. issue = &Issue{
  43. Index: int64(issueCount) + 1,
  44. Name: name,
  45. RepoId: repoId,
  46. PosterId: userId,
  47. MilestoneId: milestoneId,
  48. AssigneeId: assigneeId,
  49. IsPull: isPull,
  50. Labels: labels,
  51. Mentions: mentions,
  52. Content: content,
  53. }
  54. if _, err = sess.Insert(issue); err != nil {
  55. sess.Rollback()
  56. return nil, err
  57. }
  58. rawSql := "UPDATE `repository` SET num_issues = num_issues + 1 WHERE id = ?"
  59. if _, err = sess.Exec(rawSql, repoId); err != nil {
  60. sess.Rollback()
  61. return nil, err
  62. }
  63. if err = sess.Commit(); err != nil {
  64. sess.Rollback()
  65. return nil, err
  66. }
  67. return issue, nil
  68. }
  69. // GetIssueById returns issue object by given id.
  70. func GetIssueByIndex(repoId, index int64) (*Issue, error) {
  71. issue := &Issue{RepoId: repoId, Index: index}
  72. has, err := orm.Get(issue)
  73. if err != nil {
  74. return nil, err
  75. } else if !has {
  76. return nil, ErrIssueNotExist
  77. }
  78. return issue, nil
  79. }
  80. // GetIssues returns a list of issues by given conditions.
  81. func GetIssues(userId, repoId, posterId, milestoneId int64, page int, isClosed, isMention bool, labels, sortType string) ([]Issue, error) {
  82. sess := orm.Limit(20, (page-1)*20)
  83. if repoId > 0 {
  84. sess.Where("repo_id=?", repoId).And("is_closed=?", isClosed)
  85. } else {
  86. sess.Where("is_closed=?", isClosed)
  87. }
  88. if userId > 0 {
  89. sess.And("assignee_id=?", userId)
  90. } else if posterId > 0 {
  91. sess.And("poster_id=?", posterId)
  92. } else if isMention {
  93. sess.And("mentions like '%$" + base.ToStr(userId) + "|%'")
  94. }
  95. if milestoneId > 0 {
  96. sess.And("milestone_id=?", milestoneId)
  97. }
  98. if len(labels) > 0 {
  99. for _, label := range strings.Split(labels, ",") {
  100. sess.And("mentions like '%$" + label + "|%'")
  101. }
  102. }
  103. switch sortType {
  104. case "oldest":
  105. sess.Asc("created")
  106. case "recentupdate":
  107. sess.Desc("updated")
  108. case "leastupdate":
  109. sess.Asc("updated")
  110. case "mostcomment":
  111. sess.Desc("num_comments")
  112. case "leastcomment":
  113. sess.Asc("num_comments")
  114. default:
  115. sess.Desc("created")
  116. }
  117. var issues []Issue
  118. err := sess.Find(&issues)
  119. return issues, err
  120. }
  121. // GetUserIssueCount returns the number of issues that were created by given user in repository.
  122. func GetUserIssueCount(userId, repoId int64) int64 {
  123. count, _ := orm.Where("poster_id=?", userId).And("repo_id=?", repoId).Count(new(Issue))
  124. return count
  125. }
  126. // UpdateIssue updates information of issue.
  127. func UpdateIssue(issue *Issue) error {
  128. _, err := orm.Id(issue.Id).AllCols().Update(issue)
  129. return err
  130. }
  131. // Label represents a list of labels of repository for issues.
  132. type Label struct {
  133. Id int64
  134. RepoId int64 `xorm:"index"`
  135. Names string
  136. Colors string
  137. }
  138. // Milestone represents a milestone of repository.
  139. type Milestone struct {
  140. Id int64
  141. Name string
  142. RepoId int64 `xorm:"index"`
  143. IsClosed bool
  144. Content string
  145. NumIssues int
  146. DueDate time.Time
  147. Created time.Time `xorm:"created"`
  148. }
  149. // Comment represents a comment in commit and issue page.
  150. type Comment struct {
  151. Id int64
  152. PosterId int64
  153. Poster *User `xorm:"-"`
  154. IssueId int64
  155. CommitId int64
  156. Line int64
  157. Content string
  158. Created time.Time `xorm:"created"`
  159. }
  160. // CreateComment creates comment of issue or commit.
  161. func CreateComment(userId, issueId, commitId, line int64, content string) error {
  162. sess := orm.NewSession()
  163. defer sess.Close()
  164. sess.Begin()
  165. if _, err := orm.Insert(&Comment{PosterId: userId, IssueId: issueId,
  166. CommitId: commitId, Line: line, Content: content}); err != nil {
  167. sess.Rollback()
  168. return err
  169. }
  170. rawSql := "UPDATE `issue` SET num_comments = num_comments + 1 WHERE id = ?"
  171. if _, err := sess.Exec(rawSql, issueId); err != nil {
  172. sess.Rollback()
  173. return err
  174. }
  175. return sess.Commit()
  176. }
  177. // GetIssueComments returns list of comment by given issue id.
  178. func GetIssueComments(issueId int64) ([]Comment, error) {
  179. comments := make([]Comment, 0, 10)
  180. err := orm.Asc("created").Find(&comments, &Comment{IssueId: issueId})
  181. return comments, err
  182. }