gitea/models/issue.go

1258 lines
33 KiB
Go
Raw Normal View History

2014-03-20 21:04:56 +01:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package models
2014-03-22 18:50:50 +01:00
import (
"bytes"
2014-03-22 21:00:46 +01:00
"errors"
"fmt"
"html/template"
2014-07-23 21:15:47 +02:00
"os"
"strconv"
2014-03-22 18:50:50 +01:00
"strings"
"time"
2014-07-26 06:24:27 +02:00
"github.com/Unknwon/com"
2015-08-04 16:24:04 +02:00
"github.com/go-xorm/xorm"
2014-05-13 20:49:20 +02:00
2014-07-23 21:15:47 +02:00
"github.com/gogits/gogs/modules/log"
"github.com/gogits/gogs/modules/setting"
2014-03-22 18:50:50 +01:00
)
2014-03-22 21:00:46 +01:00
var (
2014-07-23 21:15:47 +02:00
ErrIssueNotExist = errors.New("Issue does not exist")
ErrWrongIssueCounter = errors.New("Invalid number of issues for this milestone")
ErrAttachmentNotExist = errors.New("Attachment does not exist")
ErrAttachmentNotLinked = errors.New("Attachment does not belong to this issue")
ErrMissingIssueNumber = errors.New("No issue number specified")
2014-03-22 21:00:46 +01:00
)
2014-03-22 18:50:50 +01:00
// Issue represents an issue or pull request of repository.
2014-03-20 21:04:56 +01:00
type Issue struct {
ID int64 `xorm:"pk autoincr"`
2015-08-05 14:23:08 +02:00
RepoID int64 `xorm:"INDEX"`
2014-03-29 15:24:42 +01:00
Index int64 // Index in one repository.
Name string
Repo *Repository `xorm:"-"`
2015-08-05 14:23:08 +02:00
PosterID int64
2014-05-24 08:31:58 +02:00
Poster *User `xorm:"-"`
Labels []*Label `xorm:"-"`
2015-08-05 14:23:08 +02:00
MilestoneID int64
Milestone *Milestone `xorm:"-"`
AssigneeID int64
2014-05-08 18:24:11 +02:00
Assignee *User `xorm:"-"`
IsRead bool `xorm:"-"`
IsPull bool // Indicates whether is a pull request or not.
2014-03-29 15:24:42 +01:00
IsClosed bool
Content string `xorm:"TEXT"`
RenderedContent string `xorm:"-"`
2014-05-06 22:28:52 +02:00
Priority int
2014-03-29 15:24:42 +01:00
NumComments int
2014-05-06 22:28:52 +02:00
Deadline time.Time
2014-05-07 18:09:30 +02:00
Created time.Time `xorm:"CREATED"`
Updated time.Time `xorm:"UPDATED"`
}
2015-08-06 16:48:11 +02:00
func (i *Issue) AfterSet(colName string, _ xorm.Cell) {
2015-08-05 14:23:08 +02:00
var err error
switch colName {
case "milestone_id":
2015-08-06 17:25:35 +02:00
i.Milestone, err = GetMilestoneByID(i.MilestoneID)
2015-08-05 14:23:08 +02:00
if err != nil {
log.Error(3, "GetMilestoneById: %v", err)
}
}
}
2014-05-07 18:09:30 +02:00
func (i *Issue) GetPoster() (err error) {
2015-08-08 16:43:14 +02:00
i.Poster, err = GetUserByID(i.PosterID)
2015-08-05 05:14:17 +02:00
if IsErrUserNotExist(err) {
2014-05-09 02:00:07 +02:00
i.Poster = &User{Name: "FakeUser"}
return nil
}
2014-05-07 18:09:30 +02:00
return err
}
func (i *Issue) hasLabel(e Engine, labelID int64) bool {
return hasIssueLabel(e, i.ID, labelID)
}
// HasLabel returns true if issue has been labeled by given ID.
func (i *Issue) HasLabel(labelID int64) bool {
return i.hasLabel(x, labelID)
}
func (i *Issue) addLabel(e Engine, labelID int64) error {
return newIssueLabel(e, i.ID, labelID)
}
// AddLabel adds new label to issue by given ID.
func (i *Issue) AddLabel(labelID int64) error {
return i.addLabel(x, labelID)
}
func (i *Issue) getLabels(e Engine) (err error) {
if len(i.Labels) > 0 {
2014-05-24 08:31:58 +02:00
return nil
}
i.Labels, err = getLabelsByIssueID(e, i.ID)
if err != nil {
return fmt.Errorf("getLabelsByIssueID: %v", err)
2014-05-24 08:31:58 +02:00
}
return nil
}
// GetLabels retrieves all labels of issue and assign to corresponding field.
func (i *Issue) GetLabels() error {
return i.getLabels(x)
}
func (i *Issue) removeLabel(e Engine, labelID int64) error {
return deleteIssueLabel(e, i.ID, labelID)
}
// RemoveLabel removes a label from issue by given ID.
func (i *Issue) RemoveLabel(labelID int64) error {
return i.removeLabel(x, labelID)
}
2014-05-08 18:24:11 +02:00
func (i *Issue) GetAssignee() (err error) {
2015-08-05 14:23:08 +02:00
if i.AssigneeID == 0 {
2014-05-08 18:24:11 +02:00
return nil
}
2015-08-08 16:43:14 +02:00
i.Assignee, err = GetUserByID(i.AssigneeID)
2015-08-05 05:14:17 +02:00
if IsErrUserNotExist(err) {
2014-05-24 08:31:58 +02:00
return nil
}
2014-05-08 18:24:11 +02:00
return err
}
func (i *Issue) Attachments() []*Attachment {
a, _ := GetAttachmentsForIssue(i.ID)
return a
}
2014-07-23 21:15:47 +02:00
func (i *Issue) AfterDelete() {
_, err := DeleteAttachmentsByIssue(i.ID, true)
2014-07-23 21:15:47 +02:00
if err != nil {
log.Info("Could not delete files for issue #%d: %s", i.ID, err)
2014-07-23 21:15:47 +02:00
}
}
2015-08-10 10:52:08 +02:00
// CreateIssue creates new issue with labels for repository.
func NewIssue(issue *Issue, labelIDs []int64) (err error) {
2014-06-21 06:51:41 +02:00
sess := x.NewSession()
defer sessionRelease(sess)
2014-05-07 18:09:30 +02:00
if err = sess.Begin(); err != nil {
return err
2014-03-22 21:00:46 +01:00
}
2014-05-07 18:09:30 +02:00
2014-03-27 17:48:29 +01:00
if _, err = sess.Insert(issue); err != nil {
2014-05-07 18:09:30 +02:00
return err
} else if _, err = sess.Exec("UPDATE `repository` SET num_issues=num_issues+1 WHERE id=?", issue.RepoID); err != nil {
2014-05-07 18:09:30 +02:00
return err
2014-03-27 17:48:29 +01:00
}
2015-08-10 10:52:08 +02:00
for _, id := range labelIDs {
if err = issue.addLabel(sess, id); err != nil {
return fmt.Errorf("addLabel: %v", err)
}
}
2015-08-05 14:23:08 +02:00
if issue.MilestoneID > 0 {
2015-08-10 12:57:57 +02:00
if err = changeMilestoneAssign(sess, 0, issue); err != nil {
return err
}
}
2015-08-10 12:57:57 +02:00
return sess.Commit()
2014-03-20 21:04:56 +01:00
}
// GetIssueByRef returns an Issue specified by a GFM reference.
// See https://help.github.com/articles/writing-on-github#references for more information on the syntax.
func GetIssueByRef(ref string) (issue *Issue, err error) {
var issueNumber int64
var repo *Repository
n := strings.IndexByte(ref, byte('#'))
if n == -1 {
return nil, ErrMissingIssueNumber
}
if issueNumber, err = strconv.ParseInt(ref[n+1:], 10, 64); err != nil {
return
}
if repo, err = GetRepositoryByRef(ref[:n]); err != nil {
return
}
2015-08-08 16:43:14 +02:00
return GetIssueByIndex(repo.ID, issueNumber)
}
2014-05-07 18:09:30 +02:00
// GetIssueByIndex returns issue by given index in repository.
func GetIssueByIndex(rid, index int64) (*Issue, error) {
2015-08-05 14:23:08 +02:00
issue := &Issue{RepoID: rid, Index: index}
2014-06-21 06:51:41 +02:00
has, err := x.Get(issue)
2014-03-22 21:00:46 +01:00
if err != nil {
return nil, err
} else if !has {
return nil, ErrIssueNotExist
}
return issue, nil
}
// GetIssueById returns an issue by ID.
func GetIssueById(id int64) (*Issue, error) {
issue := &Issue{ID: id}
2014-06-21 06:51:41 +02:00
has, err := x.Get(issue)
if err != nil {
return nil, err
} else if !has {
return nil, ErrIssueNotExist
}
return issue, nil
}
2015-08-04 16:24:04 +02:00
// Issues returns a list of issues by given conditions.
func Issues(uid, assigneeID, repoID, posterID, milestoneID int64, page int, isClosed, isMention bool, labelIds, sortType string) ([]*Issue, error) {
sess := x.Limit(setting.IssuePagingNum, (page-1)*setting.IssuePagingNum)
2014-03-22 21:00:46 +01:00
2015-07-24 20:52:25 +02:00
if repoID > 0 {
sess.Where("issue.repo_id=?", repoID).And("issue.is_closed=?", isClosed)
2014-03-22 21:00:46 +01:00
} else {
2015-07-24 20:52:25 +02:00
sess.Where("issue.is_closed=?", isClosed)
2014-03-22 21:00:46 +01:00
}
2015-07-24 20:52:25 +02:00
if assigneeID > 0 {
sess.And("issue.assignee_id=?", assigneeID)
} else if posterID > 0 {
sess.And("issue.poster_id=?", posterID)
2014-03-22 18:50:50 +01:00
}
2015-07-24 20:52:25 +02:00
if milestoneID > 0 {
sess.And("issue.milestone_id=?", milestoneID)
2014-03-22 18:50:50 +01:00
}
2014-05-24 08:31:58 +02:00
if len(labelIds) > 0 {
for _, label := range strings.Split(labelIds, ",") {
2014-10-25 13:50:19 +02:00
if com.StrTo(label).MustInt() > 0 {
2015-07-24 20:52:25 +02:00
sess.And("label_ids like ?", "%$"+label+"|%")
2014-10-25 13:50:19 +02:00
}
2014-03-22 18:50:50 +01:00
}
}
switch sortType {
case "oldest":
2014-03-23 11:27:01 +01:00
sess.Asc("created")
2014-03-22 18:50:50 +01:00
case "recentupdate":
2014-03-23 11:27:01 +01:00
sess.Desc("updated")
2014-03-22 18:50:50 +01:00
case "leastupdate":
2014-03-23 11:27:01 +01:00
sess.Asc("updated")
2014-03-22 18:50:50 +01:00
case "mostcomment":
2014-03-23 11:27:01 +01:00
sess.Desc("num_comments")
2014-03-22 18:50:50 +01:00
case "leastcomment":
2014-03-23 11:27:01 +01:00
sess.Asc("num_comments")
2014-05-08 02:36:00 +02:00
case "priority":
sess.Desc("priority")
2014-03-22 18:50:50 +01:00
default:
2014-03-23 11:27:01 +01:00
sess.Desc("created")
2014-03-22 18:50:50 +01:00
}
2015-07-24 20:52:25 +02:00
if isMention {
2015-07-25 07:18:19 +02:00
queryStr := "issue.id = issue_user.issue_id AND issue_user.is_mentioned=1"
2015-07-24 20:52:25 +02:00
if uid > 0 {
queryStr += " AND issue_user.uid = " + com.ToStr(uid)
}
sess.Join("INNER", "issue_user", queryStr)
}
2015-08-04 16:24:04 +02:00
issues := make([]*Issue, 0, setting.IssuePagingNum)
return issues, sess.Find(&issues)
2014-03-22 18:50:50 +01:00
}
2014-05-24 09:05:41 +02:00
type IssueStatus int
const (
IS_OPEN = iota + 1
IS_CLOSE
)
// GetIssueCountByPoster returns number of issues of repository by poster.
func GetIssueCountByPoster(uid, rid int64, isClosed bool) int64 {
2014-06-21 06:51:41 +02:00
count, _ := x.Where("repo_id=?", rid).And("poster_id=?", uid).And("is_closed=?", isClosed).Count(new(Issue))
return count
}
// .___ ____ ___
// | | ______ ________ __ ____ | | \______ ___________
// | |/ ___// ___/ | \_/ __ \| | / ___// __ \_ __ \
// | |\___ \ \___ \| | /\ ___/| | /\___ \\ ___/| | \/
// |___/____ >____ >____/ \___ >______//____ >\___ >__|
// \/ \/ \/ \/ \/
// IssueUser represents an issue-user relation.
type IssueUser struct {
Id int64
2014-06-25 06:44:48 +02:00
Uid int64 `xorm:"INDEX"` // User ID.
IssueId int64
2014-06-25 06:44:48 +02:00
RepoId int64 `xorm:"INDEX"`
2014-05-14 19:04:57 +02:00
MilestoneId int64
IsRead bool
IsAssigned bool
IsMentioned bool
IsPoster bool
IsClosed bool
}
// FIXME: organization
// NewIssueUserPairs adds new issue-user pairs for new issue of repository.
func NewIssueUserPairs(repo *Repository, issue *Issue) error {
2015-02-12 03:58:37 +01:00
users, err := repo.GetCollaborators()
if err != nil {
return err
}
2015-02-12 03:58:37 +01:00
iu := &IssueUser{
IssueId: issue.ID,
2015-08-08 16:43:14 +02:00
RepoId: repo.ID,
2015-02-12 03:58:37 +01:00
}
2014-05-08 18:24:11 +02:00
isNeedAddPoster := true
2015-02-12 03:58:37 +01:00
for _, u := range users {
2015-03-27 11:47:02 +01:00
iu.Id = 0
2014-05-08 18:24:11 +02:00
iu.Uid = u.Id
iu.IsPoster = iu.Uid == issue.PosterID
2014-05-08 18:24:11 +02:00
if isNeedAddPoster && iu.IsPoster {
isNeedAddPoster = false
}
iu.IsAssigned = iu.Uid == issue.AssigneeID
2014-06-21 06:51:41 +02:00
if _, err = x.Insert(iu); err != nil {
2014-05-08 18:24:11 +02:00
return err
}
2014-05-08 18:24:11 +02:00
}
if isNeedAddPoster {
2015-03-27 11:47:02 +01:00
iu.Id = 0
iu.Uid = issue.PosterID
2014-05-08 18:24:11 +02:00
iu.IsPoster = true
iu.IsAssigned = iu.Uid == issue.AssigneeID
2014-06-21 06:51:41 +02:00
if _, err = x.Insert(iu); err != nil {
return err
}
}
2014-05-08 18:24:11 +02:00
// Add owner's as well.
if repo.OwnerID != issue.PosterID {
iu.Id = 0
2015-08-08 16:43:14 +02:00
iu.Uid = repo.OwnerID
iu.IsAssigned = iu.Uid == issue.AssigneeID
if _, err = x.Insert(iu); err != nil {
return err
}
}
return nil
}
2014-05-07 18:09:30 +02:00
// PairsContains returns true when pairs list contains given issue.
func PairsContains(ius []*IssueUser, issueId, uid int64) int {
2014-05-07 18:09:30 +02:00
for i := range ius {
if ius[i].IssueId == issueId &&
ius[i].Uid == uid {
return i
2014-05-07 18:09:30 +02:00
}
}
return -1
2014-05-07 18:09:30 +02:00
}
// GetIssueUserPairs returns issue-user pairs by given repository and user.
func GetIssueUserPairs(rid, uid int64, isClosed bool) ([]*IssueUser, error) {
ius := make([]*IssueUser, 0, 10)
2014-06-21 06:51:41 +02:00
err := x.Where("is_closed=?", isClosed).Find(&ius, &IssueUser{RepoId: rid, Uid: uid})
2014-05-07 18:09:30 +02:00
return ius, err
}
// GetIssueUserPairsByRepoIds returns issue-user pairs by given repository IDs.
func GetIssueUserPairsByRepoIds(rids []int64, isClosed bool, page int) ([]*IssueUser, error) {
2014-07-07 00:25:07 +02:00
if len(rids) == 0 {
return []*IssueUser{}, nil
}
buf := bytes.NewBufferString("")
for _, rid := range rids {
buf.WriteString("repo_id=")
2014-07-26 06:24:27 +02:00
buf.WriteString(com.ToStr(rid))
buf.WriteString(" OR ")
}
cond := strings.TrimSuffix(buf.String(), " OR ")
ius := make([]*IssueUser, 0, 10)
2014-06-21 06:51:41 +02:00
sess := x.Limit(20, (page-1)*20).Where("is_closed=?", isClosed)
if len(cond) > 0 {
sess.And(cond)
}
err := sess.Find(&ius)
return ius, err
}
// GetIssueUserPairsByMode returns issue-user pairs by given repository and user.
func GetIssueUserPairsByMode(uid, rid int64, isClosed bool, page, filterMode int) ([]*IssueUser, error) {
ius := make([]*IssueUser, 0, 10)
2014-06-21 06:51:41 +02:00
sess := x.Limit(20, (page-1)*20).Where("uid=?", uid).And("is_closed=?", isClosed)
if rid > 0 {
sess.And("repo_id=?", rid)
}
switch filterMode {
case FM_ASSIGN:
sess.And("is_assigned=?", true)
case FM_CREATE:
sess.And("is_poster=?", true)
default:
return ius, nil
}
err := sess.Find(&ius)
return ius, err
2014-03-27 21:31:32 +01:00
}
2014-05-07 18:09:30 +02:00
// IssueStats represents issue statistic information.
type IssueStats struct {
OpenCount, ClosedCount int64
AllCount int64
AssignCount int64
CreateCount int64
MentionCount int64
}
// Filter modes.
const (
2015-07-24 20:52:25 +02:00
FM_ALL = iota
FM_ASSIGN
2014-05-07 18:09:30 +02:00
FM_CREATE
FM_MENTION
)
// GetIssueStats returns issue statistic information by given conditions.
2015-08-05 14:52:17 +02:00
func GetIssueStats(repoID, uid, labelID, milestoneID int64, isShowClosed bool, filterMode int) *IssueStats {
2014-05-07 18:09:30 +02:00
stats := &IssueStats{}
issue := new(Issue)
2015-07-24 20:52:25 +02:00
2015-07-25 07:07:00 +02:00
queryStr := "issue.repo_id=? AND issue.is_closed=?"
if labelID > 0 {
queryStr += " AND issue.label_ids like '%$" + com.ToStr(labelID) + "|%'"
}
2015-08-05 14:52:17 +02:00
if milestoneID > 0 {
queryStr += " AND milestone_id=" + com.ToStr(milestoneID)
}
2015-07-24 20:52:25 +02:00
switch filterMode {
case FM_ALL:
stats.OpenCount, _ = x.Where(queryStr, repoID, false).Count(issue)
stats.ClosedCount, _ = x.Where(queryStr, repoID, true).Count(issue)
return stats
case FM_ASSIGN:
queryStr += " AND assignee_id=?"
stats.OpenCount, _ = x.Where(queryStr, repoID, false, uid).Count(issue)
stats.ClosedCount, _ = x.Where(queryStr, repoID, true, uid).Count(issue)
return stats
case FM_CREATE:
queryStr += " AND poster_id=?"
stats.OpenCount, _ = x.Where(queryStr, repoID, false, uid).Count(issue)
stats.ClosedCount, _ = x.Where(queryStr, repoID, true, uid).Count(issue)
return stats
case FM_MENTION:
queryStr += " AND uid=? AND is_mentioned=?"
2015-07-25 07:07:00 +02:00
if labelID > 0 {
stats.OpenCount, _ = x.Where(queryStr, repoID, false, uid, true).
Join("INNER", "issue", "issue.id = issue_id").Count(new(IssueUser))
stats.ClosedCount, _ = x.Where(queryStr, repoID, true, uid, true).
Join("INNER", "issue", "issue.id = issue_id").Count(new(IssueUser))
return stats
}
queryStr = strings.Replace(queryStr, "issue.", "", 2)
2015-07-24 20:52:25 +02:00
stats.OpenCount, _ = x.Where(queryStr, repoID, false, uid, true).Count(new(IssueUser))
stats.ClosedCount, _ = x.Where(queryStr, repoID, true, uid, true).Count(new(IssueUser))
return stats
}
2014-05-07 18:09:30 +02:00
return stats
}
// GetUserIssueStats returns issue statistic information for dashboard by given conditions.
2014-05-07 18:09:30 +02:00
func GetUserIssueStats(uid int64, filterMode int) *IssueStats {
stats := &IssueStats{}
issue := new(Issue)
2014-06-21 06:51:41 +02:00
stats.AssignCount, _ = x.Where("assignee_id=?", uid).And("is_closed=?", false).Count(issue)
stats.CreateCount, _ = x.Where("poster_id=?", uid).And("is_closed=?", false).Count(issue)
2014-05-07 18:09:30 +02:00
return stats
}
2015-08-10 12:57:57 +02:00
func updateIssue(e Engine, issue *Issue) error {
_, err := e.Id(issue.ID).AllCols().Update(issue)
return err
}
2014-03-24 00:09:11 +01:00
// UpdateIssue updates information of issue.
func UpdateIssue(issue *Issue) error {
2015-08-10 12:57:57 +02:00
return updateIssue(x, issue)
}
// UpdateIssueUserByStatus updates issue-user pairs by issue status.
func UpdateIssueUserPairsByStatus(iid int64, isClosed bool) error {
rawSql := "UPDATE `issue_user` SET is_closed = ? WHERE issue_id = ?"
2014-06-21 06:51:41 +02:00
_, err := x.Exec(rawSql, isClosed, iid)
2014-03-24 00:09:11 +01:00
return err
}
2014-05-08 23:17:45 +02:00
// UpdateIssueUserPairByAssignee updates issue-user pair for assigning.
func UpdateIssueUserPairByAssignee(aid, iid int64) error {
rawSql := "UPDATE `issue_user` SET is_assigned = ? WHERE issue_id = ?"
2014-06-21 06:51:41 +02:00
if _, err := x.Exec(rawSql, false, iid); err != nil {
2014-05-08 23:17:45 +02:00
return err
}
2014-05-11 19:46:36 +02:00
// Assignee ID equals to 0 means clear assignee.
if aid == 0 {
return nil
}
rawSql = "UPDATE `issue_user` SET is_assigned = ? WHERE uid = ? AND issue_id = ?"
_, err := x.Exec(rawSql, true, aid, iid)
2014-05-08 23:17:45 +02:00
return err
}
// UpdateIssueUserPairByRead updates issue-user pair for reading.
func UpdateIssueUserPairByRead(uid, iid int64) error {
rawSql := "UPDATE `issue_user` SET is_read = ? WHERE uid = ? AND issue_id = ?"
2014-06-21 06:51:41 +02:00
_, err := x.Exec(rawSql, true, uid, iid)
return err
}
// UpdateIssueUserPairsByMentions updates issue-user pairs by mentioning.
func UpdateIssueUserPairsByMentions(uids []int64, iid int64) error {
for _, uid := range uids {
iu := &IssueUser{Uid: uid, IssueId: iid}
2014-06-21 06:51:41 +02:00
has, err := x.Get(iu)
if err != nil {
return err
}
iu.IsMentioned = true
if has {
2014-06-21 06:51:41 +02:00
_, err = x.Id(iu.Id).AllCols().Update(iu)
} else {
2014-06-21 06:51:41 +02:00
_, err = x.Insert(iu)
}
if err != nil {
return err
}
}
return nil
}
2014-05-24 08:31:58 +02:00
// .____ ___. .__
// | | _____ \_ |__ ____ | |
// | | \__ \ | __ \_/ __ \| |
// | |___ / __ \| \_\ \ ___/| |__
// |_______ (____ /___ /\___ >____/
// \/ \/ \/ \/
// Label represents a label of repository for issues.
type Label struct {
ID int64 `xorm:"pk autoincr"`
RepoID int64 `xorm:"INDEX"`
2014-05-24 08:31:58 +02:00
Name string
Color string `xorm:"VARCHAR(7)"`
NumIssues int
NumClosedIssues int
NumOpenIssues int `xorm:"-"`
IsChecked bool `xorm:"-"`
}
// CalOpenIssues calculates the open issues of label.
func (m *Label) CalOpenIssues() {
m.NumOpenIssues = m.NumIssues - m.NumClosedIssues
}
// NewLabel creates new label of repository.
func NewLabel(l *Label) error {
2014-06-21 06:51:41 +02:00
_, err := x.Insert(l)
2014-05-24 08:31:58 +02:00
return err
}
func getLabelByID(e Engine, id int64) (*Label, error) {
2014-05-24 21:34:02 +02:00
if id <= 0 {
return nil, ErrLabelNotExist{id}
2014-05-24 21:34:02 +02:00
}
l := &Label{ID: id}
2014-06-21 06:51:41 +02:00
has, err := x.Get(l)
2014-05-24 08:31:58 +02:00
if err != nil {
return nil, err
} else if !has {
return nil, ErrLabelNotExist{l.ID}
2014-05-24 08:31:58 +02:00
}
return l, nil
}
// GetLabelByID returns a label by given ID.
func GetLabelByID(id int64) (*Label, error) {
return getLabelByID(x, id)
}
// GetLabelsByRepoID returns all labels that belong to given repository by ID.
func GetLabelsByRepoID(repoID int64) ([]*Label, error) {
2014-05-24 08:31:58 +02:00
labels := make([]*Label, 0, 10)
return labels, x.Where("repo_id=?", repoID).Find(&labels)
}
func getLabelsByIssueID(e Engine, issueID int64) ([]*Label, error) {
issueLabels, err := getIssueLabels(e, issueID)
if err != nil {
return nil, fmt.Errorf("getIssueLabels: %v", err)
}
var label *Label
labels := make([]*Label, 0, len(issueLabels))
for idx := range issueLabels {
label, err = getLabelByID(e, issueLabels[idx].LabelID)
if err != nil && !IsErrLabelNotExist(err) {
return nil, fmt.Errorf("getLabelByID: %v", err)
}
labels = append(labels, label)
}
return labels, nil
}
// GetLabelsByIssueID returns all labels that belong to given issue by ID.
func GetLabelsByIssueID(issueID int64) ([]*Label, error) {
return getLabelsByIssueID(x, issueID)
2014-05-24 08:31:58 +02:00
}
// UpdateLabel updates label information.
func UpdateLabel(l *Label) error {
_, err := x.Id(l.ID).AllCols().Update(l)
2014-05-24 08:31:58 +02:00
return err
}
// DeleteLabel delete a label of given repository.
func DeleteLabel(repoID, labelID int64) error {
l, err := GetLabelByID(labelID)
2014-05-24 08:31:58 +02:00
if err != nil {
if IsErrLabelNotExist(err) {
2014-05-24 08:31:58 +02:00
return nil
}
return err
}
2014-06-21 06:51:41 +02:00
sess := x.NewSession()
defer sessionRelease(sess)
2014-05-24 08:31:58 +02:00
if err = sess.Begin(); err != nil {
return err
}
if _, err = x.Where("label_id=?", labelID).Delete(new(IssueLabel)); err != nil {
return err
} else if _, err = sess.Delete(l); err != nil {
2014-05-24 08:31:58 +02:00
return err
}
return sess.Commit()
}
// .___ .____ ___. .__
// | | ______ ________ __ ____ | | _____ \_ |__ ____ | |
// | |/ ___// ___/ | \_/ __ \| | \__ \ | __ \_/ __ \| |
// | |\___ \ \___ \| | /\ ___/| |___ / __ \| \_\ \ ___/| |__
// |___/____ >____ >____/ \___ >_______ (____ /___ /\___ >____/
// \/ \/ \/ \/ \/ \/ \/
// IssueLabel represetns an issue-lable relation.
type IssueLabel struct {
ID int64 `xorm:"pk autoincr"`
IssueID int64 `xorm:"UNIQUE(s)"`
LabelID int64 `xorm:"UNIQUE(s)"`
}
func hasIssueLabel(e Engine, issueID, labelID int64) bool {
has, _ := e.Where("issue_id=? AND label_id=?", issueID, labelID).Get(new(IssueLabel))
return has
}
// HasIssueLabel returns true if issue has been labeled.
func HasIssueLabel(issueID, labelID int64) bool {
return hasIssueLabel(x, issueID, labelID)
}
func newIssueLabel(e Engine, issueID, labelID int64) error {
2015-08-10 10:52:08 +02:00
if issueID == 0 || labelID == 0 {
return nil
}
_, err := e.Insert(&IssueLabel{
IssueID: issueID,
LabelID: labelID,
})
return err
}
// NewIssueLabel creates a new issue-label relation.
func NewIssueLabel(issueID, labelID int64) error {
return newIssueLabel(x, issueID, labelID)
}
func getIssueLabels(e Engine, issueID int64) ([]*IssueLabel, error) {
issueLabels := make([]*IssueLabel, 0, 10)
2015-08-10 12:57:57 +02:00
return issueLabels, e.Where("issue_id=?", issueID).Asc("label_id").Find(&issueLabels)
}
// GetIssueLabels returns all issue-label relations of given issue by ID.
func GetIssueLabels(issueID int64) ([]*IssueLabel, error) {
return getIssueLabels(x, issueID)
}
func deleteIssueLabel(e Engine, issueID, labelID int64) error {
_, err := e.Delete(&IssueLabel{
IssueID: issueID,
LabelID: labelID,
})
return err
}
// DeleteIssueLabel deletes issue-label relation.
func DeleteIssueLabel(issueID, labelID int64) error {
return deleteIssueLabel(x, issueID, labelID)
}
// _____ .__.__ __
// / \ |__| | ____ _______/ |_ ____ ____ ____
// / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \
// / Y \ | |_\ ___/ \___ \ | | ( <_> ) | \ ___/
// \____|__ /__|____/\___ >____ > |__| \____/|___| /\___ >
// \/ \/ \/ \/ \/
2014-03-22 18:50:50 +01:00
// Milestone represents a milestone of repository.
type Milestone struct {
2015-08-03 11:42:09 +02:00
ID int64 `xorm:"pk autoincr"`
2015-08-04 16:24:04 +02:00
RepoID int64 `xorm:"INDEX"`
Name string
Content string `xorm:"TEXT"`
2014-05-12 20:06:42 +02:00
RenderedContent string `xorm:"-"`
IsClosed bool
NumIssues int
NumClosedIssues int
2014-05-12 20:06:42 +02:00
NumOpenIssues int `xorm:"-"`
Completeness int // Percentage(1-100).
Deadline time.Time
2014-05-13 19:28:21 +02:00
DeadlineString string `xorm:"-"`
2015-08-05 09:24:26 +02:00
IsOverDue bool `xorm:"-"`
ClosedDate time.Time
2014-03-22 18:50:50 +01:00
}
2015-08-09 16:45:38 +02:00
func (m *Milestone) BeforeUpdate() {
if m.NumIssues > 0 {
m.Completeness = m.NumClosedIssues * 100 / m.NumIssues
} else {
m.Completeness = 0
}
}
2015-08-06 16:48:11 +02:00
func (m *Milestone) AfterSet(colName string, _ xorm.Cell) {
2015-08-04 16:24:04 +02:00
if colName == "deadline" {
2015-08-06 16:48:11 +02:00
if m.Deadline.Year() == 9999 {
2015-08-04 16:24:04 +02:00
return
}
2015-08-06 16:48:11 +02:00
m.DeadlineString = m.Deadline.Format("2006-01-02")
if time.Now().After(m.Deadline) {
2015-08-05 09:24:26 +02:00
m.IsOverDue = true
}
2015-08-04 16:24:04 +02:00
}
}
2014-05-12 20:06:42 +02:00
// CalOpenIssues calculates the open issues of milestone.
func (m *Milestone) CalOpenIssues() {
m.NumOpenIssues = m.NumIssues - m.NumClosedIssues
}
// NewMilestone creates new milestone of repository.
func NewMilestone(m *Milestone) (err error) {
2014-06-21 06:51:41 +02:00
sess := x.NewSession()
2015-08-06 17:25:35 +02:00
defer sessionRelease(sess)
2014-05-12 20:06:42 +02:00
if err = sess.Begin(); err != nil {
return err
}
if _, err = sess.Insert(m); err != nil {
return err
}
2015-08-06 17:25:35 +02:00
if _, err = sess.Exec("UPDATE `repository` SET num_milestones=num_milestones+1 WHERE id=?", m.RepoID); err != nil {
2014-05-12 20:06:42 +02:00
return err
}
return sess.Commit()
}
2015-08-10 12:57:57 +02:00
func getMilestoneByID(e Engine, id int64) (*Milestone, error) {
m := &Milestone{ID: id}
has, err := x.Get(m)
if err != nil {
return nil, err
} else if !has {
return nil, ErrMilestoneNotExist{id, 0}
}
return m, nil
}
2015-08-06 17:25:35 +02:00
// GetMilestoneByID returns the milestone of given ID.
func GetMilestoneByID(id int64) (*Milestone, error) {
2015-08-10 12:57:57 +02:00
return getMilestoneByID(x, id)
}
// GetRepoMilestoneByID returns the milestone of given ID and repository.
func GetRepoMilestoneByID(repoID, milestoneID int64) (*Milestone, error) {
m := &Milestone{ID: milestoneID, RepoID: repoID}
2014-06-21 06:51:41 +02:00
has, err := x.Get(m)
2014-05-14 16:55:36 +02:00
if err != nil {
return nil, err
} else if !has {
2015-08-10 12:57:57 +02:00
return nil, ErrMilestoneNotExist{milestoneID, repoID}
2014-05-13 19:28:21 +02:00
}
return m, nil
}
2015-08-05 14:23:08 +02:00
// GetAllRepoMilestones returns all milestones of given repository.
func GetAllRepoMilestones(repoID int64) ([]*Milestone, error) {
miles := make([]*Milestone, 0, 10)
return miles, x.Where("repo_id=?", repoID).Find(&miles)
}
2015-08-05 05:18:24 +02:00
// GetMilestones returns a list of milestones of given repository and status.
func GetMilestones(repoID int64, page int, isClosed bool) ([]*Milestone, error) {
2015-08-04 16:24:04 +02:00
miles := make([]*Milestone, 0, setting.IssuePagingNum)
sess := x.Where("repo_id=? AND is_closed=?", repoID, isClosed)
if page > 0 {
sess = sess.Limit(setting.IssuePagingNum, (page-1)*setting.IssuePagingNum)
}
return miles, sess.Find(&miles)
2014-05-12 20:06:42 +02:00
}
2015-08-05 14:23:08 +02:00
func updateMilestone(e Engine, m *Milestone) error {
_, err := e.Id(m.ID).AllCols().Update(m)
return err
}
2014-05-13 19:28:21 +02:00
// UpdateMilestone updates information of given milestone.
func UpdateMilestone(m *Milestone) error {
2015-08-05 14:23:08 +02:00
return updateMilestone(x, m)
2014-05-13 19:28:21 +02:00
}
2015-08-05 14:23:08 +02:00
func countRepoMilestones(e Engine, repoID int64) int64 {
count, _ := e.Where("repo_id=?", repoID).Count(new(Milestone))
return count
}
// CountRepoMilestones returns number of milestones in given repository.
func CountRepoMilestones(repoID int64) int64 {
return countRepoMilestones(x, repoID)
}
func countRepoClosedMilestones(e Engine, repoID int64) int64 {
closed, _ := e.Where("repo_id=? AND is_closed=?", repoID, true).Count(new(Milestone))
2015-08-04 16:24:04 +02:00
return closed
}
2015-08-05 14:23:08 +02:00
// CountRepoClosedMilestones returns number of closed milestones in given repository.
func CountRepoClosedMilestones(repoID int64) int64 {
return countRepoClosedMilestones(x, repoID)
}
2015-08-04 16:24:04 +02:00
// MilestoneStats returns number of open and closed milestones of given repository.
func MilestoneStats(repoID int64) (open int64, closed int64) {
open, _ = x.Where("repo_id=? AND is_closed=?", repoID, false).Count(new(Milestone))
2015-08-05 14:23:08 +02:00
return open, CountRepoClosedMilestones(repoID)
2015-08-04 16:24:04 +02:00
}
2014-05-14 01:46:48 +02:00
// ChangeMilestoneStatus changes the milestone open/closed status.
func ChangeMilestoneStatus(m *Milestone, isClosed bool) (err error) {
2015-08-08 16:43:14 +02:00
repo, err := GetRepositoryByID(m.RepoID)
2014-05-14 01:46:48 +02:00
if err != nil {
return err
}
2014-06-21 06:51:41 +02:00
sess := x.NewSession()
2015-08-04 16:24:04 +02:00
defer sessionRelease(sess)
2014-05-14 01:46:48 +02:00
if err = sess.Begin(); err != nil {
return err
}
m.IsClosed = isClosed
2015-08-05 14:23:08 +02:00
if err = updateMilestone(sess, m); err != nil {
2014-05-14 01:46:48 +02:00
return err
}
2015-08-08 16:43:14 +02:00
repo.NumMilestones = int(countRepoMilestones(sess, repo.ID))
repo.NumClosedMilestones = int(countRepoClosedMilestones(sess, repo.ID))
if _, err = sess.Id(repo.ID).AllCols().Update(repo); err != nil {
2014-05-14 01:46:48 +02:00
return err
}
return sess.Commit()
}
2015-08-04 16:24:04 +02:00
// ChangeMilestoneIssueStats updates the open/closed issues counter and progress
// for the milestone associated witht the given issue.
func ChangeMilestoneIssueStats(issue *Issue) error {
2015-08-05 14:23:08 +02:00
if issue.MilestoneID == 0 {
return nil
}
2015-08-06 17:25:35 +02:00
m, err := GetMilestoneByID(issue.MilestoneID)
if err != nil {
return err
}
if issue.IsClosed {
m.NumOpenIssues--
m.NumClosedIssues++
} else {
m.NumOpenIssues++
m.NumClosedIssues--
}
return UpdateMilestone(m)
}
2015-08-10 12:57:57 +02:00
func changeMilestoneAssign(e *xorm.Session, oldMid int64, issue *Issue) error {
2014-05-14 16:55:36 +02:00
if oldMid > 0 {
2015-08-10 12:57:57 +02:00
m, err := getMilestoneByID(e, oldMid)
2014-05-14 16:55:36 +02:00
if err != nil {
return err
}
m.NumIssues--
if issue.IsClosed {
2014-05-14 16:55:36 +02:00
m.NumClosedIssues--
}
2015-08-10 12:57:57 +02:00
if err = updateMilestone(e, m); err != nil {
2014-05-14 16:55:36 +02:00
return err
2015-08-10 12:57:57 +02:00
} else if _, err = e.Exec("UPDATE `issue_user` SET milestone_id=0 WHERE issue_id=?", issue.ID); err != nil {
return err
}
2014-05-14 16:55:36 +02:00
}
2015-08-10 12:57:57 +02:00
if issue.MilestoneID > 0 {
m, err := GetMilestoneByID(issue.MilestoneID)
2014-05-14 17:14:51 +02:00
if err != nil {
return err
}
2014-05-14 17:14:51 +02:00
m.NumIssues++
if issue.IsClosed {
2014-05-14 17:14:51 +02:00
m.NumClosedIssues++
}
if m.NumIssues == 0 {
return ErrWrongIssueCounter
}
2015-08-10 12:57:57 +02:00
if err = updateMilestone(e, m); err != nil {
2014-05-14 17:14:51 +02:00
return err
2015-08-10 12:57:57 +02:00
} else if _, err = e.Exec("UPDATE `issue_user` SET milestone_id=? WHERE issue_id=?", m.ID, issue.ID); err != nil {
return err
}
2014-05-14 16:55:36 +02:00
}
2015-08-10 12:57:57 +02:00
return nil
}
// ChangeMilestoneAssign changes assignment of milestone for issue.
func ChangeMilestoneAssign(oldMid int64, issue *Issue) (err error) {
sess := x.NewSession()
defer sess.Close()
if err = sess.Begin(); err != nil {
return err
}
if err = changeMilestoneAssign(sess, oldMid, issue); err != nil {
return err
}
2014-05-14 16:55:36 +02:00
return sess.Commit()
}
2015-08-05 14:23:08 +02:00
// DeleteMilestoneByID deletes a milestone by given ID.
func DeleteMilestoneByID(mid int64) error {
2015-08-06 17:25:35 +02:00
m, err := GetMilestoneByID(mid)
2015-08-05 14:23:08 +02:00
if err != nil {
if IsErrMilestoneNotExist(err) {
return nil
}
2014-05-14 01:46:48 +02:00
return err
}
2015-08-08 16:43:14 +02:00
repo, err := GetRepositoryByID(m.RepoID)
2015-08-05 14:23:08 +02:00
if err != nil {
2014-05-14 01:46:48 +02:00
return err
}
2015-08-05 14:23:08 +02:00
sess := x.NewSession()
defer sessionRelease(sess)
if err = sess.Begin(); err != nil {
2014-05-14 01:46:48 +02:00
return err
}
2015-08-05 14:23:08 +02:00
if _, err = sess.Id(m.ID).Delete(m); err != nil {
2014-05-14 01:46:48 +02:00
return err
}
2015-08-08 16:43:14 +02:00
repo.NumMilestones = int(countRepoMilestones(sess, repo.ID))
repo.NumClosedMilestones = int(countRepoClosedMilestones(sess, repo.ID))
if _, err = sess.Id(repo.ID).AllCols().Update(repo); err != nil {
2015-08-05 14:23:08 +02:00
return err
}
if _, err = sess.Exec("UPDATE `issue` SET milestone_id=0 WHERE milestone_id=?", m.ID); err != nil {
return err
} else if _, err = sess.Exec("UPDATE `issue_user` SET milestone_id=0 WHERE milestone_id=?", m.ID); err != nil {
return err
}
2014-05-14 01:46:48 +02:00
return sess.Commit()
}
// _________ __
// \_ ___ \ ____ _____ _____ ____ _____/ |_
// / \ \/ / _ \ / \ / \_/ __ \ / \ __\
// \ \___( <_> ) Y Y \ Y Y \ ___/| | \ |
// \______ /\____/|__|_| /__|_| /\___ >___| /__|
// \/ \/ \/ \/ \/
// CommentType defines whether a comment is just a simple comment, an action (like close) or a reference.
type CommentType int
const (
// Plain comment, can be associated with a commit (CommitId > 0) and a line (Line > 0)
COMMENT_TYPE_COMMENT CommentType = iota
COMMENT_TYPE_REOPEN
COMMENT_TYPE_CLOSE
// References.
COMMENT_TYPE_ISSUE
// Reference from some commit (not part of a pull request)
COMMENT_TYPE_COMMIT
// Reference from some pull request
COMMENT_TYPE_PULL
)
2014-03-22 18:50:50 +01:00
// Comment represents a comment in commit and issue page.
2014-03-20 21:04:56 +01:00
type Comment struct {
2014-03-22 18:50:50 +01:00
Id int64
Type CommentType
2014-03-22 18:50:50 +01:00
PosterId int64
2014-03-26 17:31:01 +01:00
Poster *User `xorm:"-"`
2014-03-22 18:50:50 +01:00
IssueId int64
CommitId int64
2014-03-26 17:31:01 +01:00
Line int64
2014-06-03 03:59:56 +02:00
Content string `xorm:"TEXT"`
2014-05-07 18:09:30 +02:00
Created time.Time `xorm:"CREATED"`
2014-03-20 21:04:56 +01:00
}
2014-03-26 17:31:01 +01:00
// CreateComment creates comment of issue or commit.
func CreateComment(userId, repoId, issueId, commitId, line int64, cmtType CommentType, content string, attachments []int64) (*Comment, error) {
2014-06-21 06:51:41 +02:00
sess := x.NewSession()
2015-07-24 20:52:25 +02:00
defer sessionRelease(sess)
if err := sess.Begin(); err != nil {
2014-07-23 21:15:47 +02:00
return nil, err
}
2014-03-26 21:41:16 +01:00
2014-07-23 21:15:47 +02:00
comment := &Comment{PosterId: userId, Type: cmtType, IssueId: issueId,
CommitId: commitId, Line: line, Content: content}
if _, err := sess.Insert(comment); err != nil {
return nil, err
2014-03-26 21:41:16 +01:00
}
// Check comment type.
switch cmtType {
case COMMENT_TYPE_COMMENT:
rawSql := "UPDATE `issue` SET num_comments = num_comments + 1 WHERE id = ?"
if _, err := sess.Exec(rawSql, issueId); err != nil {
2014-07-23 21:15:47 +02:00
return nil, err
}
if len(attachments) > 0 {
rawSql = "UPDATE `attachment` SET comment_id = ? WHERE id IN (?)"
astrs := make([]string, 0, len(attachments))
for _, a := range attachments {
astrs = append(astrs, strconv.FormatInt(a, 10))
}
if _, err := sess.Exec(rawSql, comment.Id, strings.Join(astrs, ",")); err != nil {
return nil, err
}
}
case COMMENT_TYPE_REOPEN:
rawSql := "UPDATE `repository` SET num_closed_issues = num_closed_issues - 1 WHERE id = ?"
if _, err := sess.Exec(rawSql, repoId); err != nil {
2014-07-23 21:15:47 +02:00
return nil, err
}
case COMMENT_TYPE_CLOSE:
rawSql := "UPDATE `repository` SET num_closed_issues = num_closed_issues + 1 WHERE id = ?"
if _, err := sess.Exec(rawSql, repoId); err != nil {
2014-07-23 21:15:47 +02:00
return nil, err
}
2014-03-26 21:41:16 +01:00
}
2014-07-23 21:15:47 +02:00
return comment, sess.Commit()
2014-03-26 17:31:01 +01:00
}
// GetCommentById returns the comment with the given id
func GetCommentById(commentId int64) (*Comment, error) {
c := &Comment{Id: commentId}
_, err := x.Get(c)
return c, err
}
func (c *Comment) ContentHtml() template.HTML {
return template.HTML(c.Content)
}
2014-03-26 17:31:01 +01:00
// GetIssueComments returns list of comment by given issue id.
func GetIssueComments(issueId int64) ([]Comment, error) {
comments := make([]Comment, 0, 10)
2014-06-21 06:51:41 +02:00
err := x.Asc("created").Find(&comments, &Comment{IssueId: issueId})
2014-03-26 17:31:01 +01:00
return comments, err
}
2014-07-23 21:15:47 +02:00
// Attachments returns the attachments for this comment.
func (c *Comment) Attachments() []*Attachment {
a, _ := GetAttachmentsByComment(c.Id)
return a
2014-07-23 21:15:47 +02:00
}
func (c *Comment) AfterDelete() {
_, err := DeleteAttachmentsByComment(c.Id, true)
if err != nil {
log.Info("Could not delete files for comment %d on issue #%d: %s", c.Id, c.IssueId, err)
}
}
type Attachment struct {
Id int64
IssueId int64
CommentId int64
Name string
Path string `xorm:"TEXT"`
2014-07-23 21:15:47 +02:00
Created time.Time `xorm:"CREATED"`
}
// CreateAttachment creates a new attachment inside the database and
func CreateAttachment(issueId, commentId int64, name, path string) (*Attachment, error) {
sess := x.NewSession()
defer sess.Close()
if err := sess.Begin(); err != nil {
return nil, err
}
a := &Attachment{IssueId: issueId, CommentId: commentId, Name: name, Path: path}
if _, err := sess.Insert(a); err != nil {
sess.Rollback()
return nil, err
}
return a, sess.Commit()
}
// Attachment returns the attachment by given ID.
func GetAttachmentById(id int64) (*Attachment, error) {
m := &Attachment{Id: id}
has, err := x.Get(m)
if err != nil {
return nil, err
}
if !has {
return nil, ErrAttachmentNotExist
}
return m, nil
}
func GetAttachmentsForIssue(issueId int64) ([]*Attachment, error) {
attachments := make([]*Attachment, 0, 10)
err := x.Where("issue_id = ?", issueId).And("comment_id = 0").Find(&attachments)
return attachments, err
}
2014-07-23 21:15:47 +02:00
// GetAttachmentsByIssue returns a list of attachments for the given issue
func GetAttachmentsByIssue(issueId int64) ([]*Attachment, error) {
attachments := make([]*Attachment, 0, 10)
err := x.Where("issue_id = ?", issueId).And("comment_id > 0").Find(&attachments)
2014-07-23 21:15:47 +02:00
return attachments, err
}
// GetAttachmentsByComment returns a list of attachments for the given comment
func GetAttachmentsByComment(commentId int64) ([]*Attachment, error) {
attachments := make([]*Attachment, 0, 10)
err := x.Where("comment_id = ?", commentId).Find(&attachments)
return attachments, err
}
// DeleteAttachment deletes the given attachment and optionally the associated file.
func DeleteAttachment(a *Attachment, remove bool) error {
_, err := DeleteAttachments([]*Attachment{a}, remove)
return err
}
// DeleteAttachments deletes the given attachments and optionally the associated files.
func DeleteAttachments(attachments []*Attachment, remove bool) (int, error) {
for i, a := range attachments {
if remove {
if err := os.Remove(a.Path); err != nil {
return i, err
}
}
if _, err := x.Delete(a.Id); err != nil {
return i, err
}
}
return len(attachments), nil
}
// DeleteAttachmentsByIssue deletes all attachments associated with the given issue.
func DeleteAttachmentsByIssue(issueId int64, remove bool) (int, error) {
attachments, err := GetAttachmentsByIssue(issueId)
if err != nil {
return 0, err
}
return DeleteAttachments(attachments, remove)
}
// DeleteAttachmentsByComment deletes all attachments associated with the given comment.
func DeleteAttachmentsByComment(commentId int64, remove bool) (int, error) {
attachments, err := GetAttachmentsByComment(commentId)
if err != nil {
return 0, err
}
return DeleteAttachments(attachments, remove)
}