12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088 |
- // 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
- import (
- "bytes"
- "errors"
- "html/template"
- "os"
- "strconv"
- "strings"
- "time"
- "github.com/Unknwon/com"
- "github.com/go-xorm/xorm"
- "github.com/gogits/gogs/modules/log"
- )
- var (
- ErrIssueNotExist = errors.New("Issue does not exist")
- ErrLabelNotExist = errors.New("Label does not exist")
- ErrMilestoneNotExist = errors.New("Milestone 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")
- )
- // Issue represents an issue or pull request of repository.
- type Issue struct {
- Id int64
- RepoId int64 `xorm:"INDEX"`
- Index int64 // Index in one repository.
- Name string
- Repo *Repository `xorm:"-"`
- PosterId int64
- Poster *User `xorm:"-"`
- LabelIds string `xorm:"TEXT"`
- Labels []*Label `xorm:"-"`
- MilestoneId int64
- AssigneeId int64
- Assignee *User `xorm:"-"`
- IsRead bool `xorm:"-"`
- IsPull bool // Indicates whether is a pull request or not.
- IsClosed bool
- Content string `xorm:"TEXT"`
- RenderedContent string `xorm:"-"`
- Priority int
- NumComments int
- Deadline time.Time
- Created time.Time `xorm:"CREATED"`
- Updated time.Time `xorm:"UPDATED"`
- }
- func (i *Issue) GetPoster() (err error) {
- i.Poster, err = GetUserById(i.PosterId)
- if err == ErrUserNotExist {
- i.Poster = &User{Name: "DeletedUser"}
- return nil
- }
- return err
- }
- func (i *Issue) GetLabels() error {
- if len(i.LabelIds) < 3 {
- return nil
- }
- strIds := strings.Split(strings.TrimSuffix(i.LabelIds[1:], "|"), "|$")
- i.Labels = make([]*Label, 0, len(strIds))
- for _, strId := range strIds {
- id, _ := com.StrTo(strId).Int64()
- if id > 0 {
- l, err := GetLabelById(id)
- if err != nil {
- if err == ErrLabelNotExist {
- continue
- }
- return err
- }
- i.Labels = append(i.Labels, l)
- }
- }
- return nil
- }
- func (i *Issue) GetAssignee() (err error) {
- if i.AssigneeId == 0 {
- return nil
- }
- i.Assignee, err = GetUserById(i.AssigneeId)
- if err == ErrUserNotExist {
- return nil
- }
- return err
- }
- func (i *Issue) Attachments() []*Attachment {
- a, _ := GetAttachmentsForIssue(i.Id)
- return a
- }
- func (i *Issue) AfterDelete() {
- _, err := DeleteAttachmentsByIssue(i.Id, true)
- if err != nil {
- log.Info("Could not delete files for issue #%d: %s", i.Id, err)
- }
- }
- // CreateIssue creates new issue for repository.
- func NewIssue(issue *Issue) (err error) {
- sess := x.NewSession()
- defer sess.Close()
- if err = sess.Begin(); err != nil {
- return err
- }
- if _, err = sess.Insert(issue); err != nil {
- sess.Rollback()
- return err
- }
- rawSql := "UPDATE `repository` SET num_issues = num_issues + 1 WHERE id = ?"
- if _, err = sess.Exec(rawSql, issue.RepoId); err != nil {
- sess.Rollback()
- return err
- }
- if err = sess.Commit(); err != nil {
- return err
- }
- if issue.MilestoneId > 0 {
- // FIXES(280): Update milestone counter.
- return ChangeMilestoneAssign(0, issue.MilestoneId, issue)
- }
- return
- }
- // 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
- }
- return GetIssueByIndex(repo.Id, issueNumber)
- }
- // GetIssueByIndex returns issue by given index in repository.
- func GetIssueByIndex(rid, index int64) (*Issue, error) {
- issue := &Issue{RepoId: rid, Index: index}
- has, err := x.Get(issue)
- 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}
- has, err := x.Get(issue)
- if err != nil {
- return nil, err
- } else if !has {
- return nil, ErrIssueNotExist
- }
- return issue, nil
- }
- // GetIssues returns a list of issues by given conditions.
- func GetIssues(uid, rid, pid, mid int64, page int, isClosed bool, labelIds, sortType string) ([]Issue, error) {
- sess := x.Limit(20, (page-1)*20)
- if rid > 0 {
- sess.Where("repo_id=?", rid).And("is_closed=?", isClosed)
- } else {
- sess.Where("is_closed=?", isClosed)
- }
- if uid > 0 {
- sess.And("assignee_id=?", uid)
- } else if pid > 0 {
- sess.And("poster_id=?", pid)
- }
- if mid > 0 {
- sess.And("milestone_id=?", mid)
- }
- if len(labelIds) > 0 {
- for _, label := range strings.Split(labelIds, ",") {
- // Prevent SQL inject.
- if com.StrTo(label).MustInt() > 0 {
- sess.And("label_ids like '%$" + label + "|%'")
- }
- }
- }
- switch sortType {
- case "oldest":
- sess.Asc("created")
- case "recentupdate":
- sess.Desc("updated")
- case "leastupdate":
- sess.Asc("updated")
- case "mostcomment":
- sess.Desc("num_comments")
- case "leastcomment":
- sess.Asc("num_comments")
- case "priority":
- sess.Desc("priority")
- default:
- sess.Desc("created")
- }
- var issues []Issue
- err := sess.Find(&issues)
- return issues, err
- }
- type IssueStatus int
- const (
- IS_OPEN = iota + 1
- IS_CLOSE
- )
- // GetIssuesByLabel returns a list of issues by given label and repository.
- func GetIssuesByLabel(repoId int64, label string) ([]*Issue, error) {
- issues := make([]*Issue, 0, 10)
- err := x.Where("repo_id=?", repoId).And("label_ids like '%$" + label + "|%'").Find(&issues)
- return issues, err
- }
- // GetIssueCountByPoster returns number of issues of repository by poster.
- func GetIssueCountByPoster(uid, rid int64, isClosed bool) int64 {
- 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
- Uid int64 `xorm:"INDEX"` // User ID.
- IssueId int64
- RepoId int64 `xorm:"INDEX"`
- MilestoneId int64
- IsRead bool
- IsAssigned bool
- IsMentioned bool
- IsPoster bool
- IsClosed bool
- }
- // NewIssueUserPairs adds new issue-user pairs for new issue of repository.
- func NewIssueUserPairs(repo *Repository, issueID, orgID, posterID, assigneeID int64) (err error) {
- users, err := repo.GetCollaborators()
- if err != nil {
- return err
- }
- iu := &IssueUser{
- IssueId: issueID,
- RepoId: repo.Id,
- }
- isNeedAddPoster := true
- for _, u := range users {
- iu.Uid = u.Id
- iu.IsPoster = iu.Uid == posterID
- if isNeedAddPoster && iu.IsPoster {
- isNeedAddPoster = false
- }
- iu.IsAssigned = iu.Uid == assigneeID
- if _, err = x.Insert(iu); err != nil {
- return err
- }
- }
- if isNeedAddPoster {
- iu.Uid = posterID
- iu.IsPoster = true
- iu.IsAssigned = iu.Uid == assigneeID
- if _, err = x.Insert(iu); err != nil {
- return err
- }
- }
- return nil
- }
- // PairsContains returns true when pairs list contains given issue.
- func PairsContains(ius []*IssueUser, issueId int64) int {
- for i := range ius {
- if ius[i].IssueId == issueId {
- return i
- }
- }
- return -1
- }
- // GetIssueUserPairs returns issue-user pairs by given repository and user.
- func GetIssueUserPairs(rid, uid int64, isClosed bool) ([]*IssueUser, error) {
- ius := make([]*IssueUser, 0, 10)
- err := x.Where("is_closed=?", isClosed).Find(&ius, &IssueUser{RepoId: rid, Uid: uid})
- return ius, err
- }
- // GetIssueUserPairsByRepoIds returns issue-user pairs by given repository IDs.
- func GetIssueUserPairsByRepoIds(rids []int64, isClosed bool, page int) ([]*IssueUser, error) {
- if len(rids) == 0 {
- return []*IssueUser{}, nil
- }
- buf := bytes.NewBufferString("")
- for _, rid := range rids {
- buf.WriteString("repo_id=")
- buf.WriteString(com.ToStr(rid))
- buf.WriteString(" OR ")
- }
- cond := strings.TrimSuffix(buf.String(), " OR ")
- ius := make([]*IssueUser, 0, 10)
- 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)
- 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
- }
- // IssueStats represents issue statistic information.
- type IssueStats struct {
- OpenCount, ClosedCount int64
- AllCount int64
- AssignCount int64
- CreateCount int64
- MentionCount int64
- }
- // Filter modes.
- const (
- FM_ASSIGN = iota + 1
- FM_CREATE
- FM_MENTION
- )
- // GetIssueStats returns issue statistic information by given conditions.
- func GetIssueStats(rid, uid int64, isShowClosed bool, filterMode int) *IssueStats {
- stats := &IssueStats{}
- issue := new(Issue)
- tmpSess := &xorm.Session{}
- sess := x.Where("repo_id=?", rid)
- *tmpSess = *sess
- stats.OpenCount, _ = tmpSess.And("is_closed=?", false).Count(issue)
- *tmpSess = *sess
- stats.ClosedCount, _ = tmpSess.And("is_closed=?", true).Count(issue)
- if isShowClosed {
- stats.AllCount = stats.ClosedCount
- } else {
- stats.AllCount = stats.OpenCount
- }
- if filterMode != FM_MENTION {
- sess = x.Where("repo_id=?", rid)
- switch filterMode {
- case FM_ASSIGN:
- sess.And("assignee_id=?", uid)
- case FM_CREATE:
- sess.And("poster_id=?", uid)
- default:
- goto nofilter
- }
- *tmpSess = *sess
- stats.OpenCount, _ = tmpSess.And("is_closed=?", false).Count(issue)
- *tmpSess = *sess
- stats.ClosedCount, _ = tmpSess.And("is_closed=?", true).Count(issue)
- } else {
- sess := x.Where("repo_id=?", rid).And("uid=?", uid).And("is_mentioned=?", true)
- *tmpSess = *sess
- stats.OpenCount, _ = tmpSess.And("is_closed=?", false).Count(new(IssueUser))
- *tmpSess = *sess
- stats.ClosedCount, _ = tmpSess.And("is_closed=?", true).Count(new(IssueUser))
- }
- nofilter:
- stats.AssignCount, _ = x.Where("repo_id=?", rid).And("is_closed=?", isShowClosed).And("assignee_id=?", uid).Count(issue)
- stats.CreateCount, _ = x.Where("repo_id=?", rid).And("is_closed=?", isShowClosed).And("poster_id=?", uid).Count(issue)
- stats.MentionCount, _ = x.Where("repo_id=?", rid).And("uid=?", uid).And("is_closed=?", isShowClosed).And("is_mentioned=?", true).Count(new(IssueUser))
- return stats
- }
- // GetUserIssueStats returns issue statistic information for dashboard by given conditions.
- func GetUserIssueStats(uid int64, filterMode int) *IssueStats {
- stats := &IssueStats{}
- issue := new(Issue)
- 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)
- return stats
- }
- // UpdateIssue updates information of issue.
- func UpdateIssue(issue *Issue) error {
- _, err := x.Id(issue.Id).AllCols().Update(issue)
- if err != nil {
- return err
- }
- return err
- }
- // 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 = ?"
- _, err := x.Exec(rawSql, isClosed, iid)
- return err
- }
- // UpdateIssueUserPairByAssignee updates issue-user pair for assigning.
- func UpdateIssueUserPairByAssignee(aid, iid int64) error {
- rawSql := "UPDATE `issue_user` SET is_assigned = ? WHERE issue_id = ?"
- if _, err := x.Exec(rawSql, false, iid); err != nil {
- return err
- }
- // 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)
- 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 = ?"
- _, 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}
- has, err := x.Get(iu)
- if err != nil {
- return err
- }
- iu.IsMentioned = true
- if has {
- _, err = x.Id(iu.Id).AllCols().Update(iu)
- } else {
- _, err = x.Insert(iu)
- }
- if err != nil {
- return err
- }
- }
- return nil
- }
- // .____ ___. .__
- // | | _____ \_ |__ ____ | |
- // | | \__ \ | __ \_/ __ \| |
- // | |___ / __ \| \_\ \ ___/| |__
- // |_______ (____ /___ /\___ >____/
- // \/ \/ \/ \/
- // Label represents a label of repository for issues.
- type Label struct {
- Id int64
- RepoId int64 `xorm:"INDEX"`
- 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 {
- _, err := x.Insert(l)
- return err
- }
- // GetLabelById returns a label by given ID.
- func GetLabelById(id int64) (*Label, error) {
- if id <= 0 {
- return nil, ErrLabelNotExist
- }
- l := &Label{Id: id}
- has, err := x.Get(l)
- if err != nil {
- return nil, err
- } else if !has {
- return nil, ErrLabelNotExist
- }
- return l, nil
- }
- // GetLabels returns a list of labels of given repository ID.
- func GetLabels(repoId int64) ([]*Label, error) {
- labels := make([]*Label, 0, 10)
- err := x.Where("repo_id=?", repoId).Find(&labels)
- return labels, err
- }
- // UpdateLabel updates label information.
- func UpdateLabel(l *Label) error {
- _, err := x.Id(l.Id).AllCols().Update(l)
- return err
- }
- // DeleteLabel delete a label of given repository.
- func DeleteLabel(repoId int64, strId string) error {
- id, _ := com.StrTo(strId).Int64()
- l, err := GetLabelById(id)
- if err != nil {
- if err == ErrLabelNotExist {
- return nil
- }
- return err
- }
- issues, err := GetIssuesByLabel(repoId, strId)
- if err != nil {
- return err
- }
- sess := x.NewSession()
- defer sess.Close()
- if err = sess.Begin(); err != nil {
- return err
- }
- for _, issue := range issues {
- issue.LabelIds = strings.Replace(issue.LabelIds, "$"+strId+"|", "", -1)
- if _, err = sess.Id(issue.Id).AllCols().Update(issue); err != nil {
- sess.Rollback()
- return err
- }
- }
- if _, err = sess.Delete(l); err != nil {
- sess.Rollback()
- return err
- }
- return sess.Commit()
- }
- // _____ .__.__ __
- // / \ |__| | ____ _______/ |_ ____ ____ ____
- // / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \
- // / Y \ | |_\ ___/ \___ \ | | ( <_> ) | \ ___/
- // \____|__ /__|____/\___ >____ > |__| \____/|___| /\___ >
- // \/ \/ \/ \/ \/
- // Milestone represents a milestone of repository.
- type Milestone struct {
- Id int64
- RepoId int64 `xorm:"INDEX"`
- Index int64
- Name string
- Content string `xorm:"TEXT"`
- RenderedContent string `xorm:"-"`
- IsClosed bool
- NumIssues int
- NumClosedIssues int
- NumOpenIssues int `xorm:"-"`
- Completeness int // Percentage(1-100).
- Deadline time.Time
- DeadlineString string `xorm:"-"`
- ClosedDate time.Time
- }
- // 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) {
- sess := x.NewSession()
- defer sess.Close()
- if err = sess.Begin(); err != nil {
- return err
- }
- if _, err = sess.Insert(m); err != nil {
- sess.Rollback()
- return err
- }
- rawSql := "UPDATE `repository` SET num_milestones = num_milestones + 1 WHERE id = ?"
- if _, err = sess.Exec(rawSql, m.RepoId); err != nil {
- sess.Rollback()
- return err
- }
- return sess.Commit()
- }
- // GetMilestoneById returns the milestone by given ID.
- func GetMilestoneById(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
- }
- return m, nil
- }
- // GetMilestoneByIndex returns the milestone of given repository and index.
- func GetMilestoneByIndex(repoId, idx int64) (*Milestone, error) {
- m := &Milestone{RepoId: repoId, Index: idx}
- has, err := x.Get(m)
- if err != nil {
- return nil, err
- } else if !has {
- return nil, ErrMilestoneNotExist
- }
- return m, nil
- }
- // GetMilestones returns a list of milestones of given repository and status.
- func GetMilestones(repoId int64, isClosed bool) ([]*Milestone, error) {
- miles := make([]*Milestone, 0, 10)
- err := x.Where("repo_id=?", repoId).And("is_closed=?", isClosed).Find(&miles)
- return miles, err
- }
- // UpdateMilestone updates information of given milestone.
- func UpdateMilestone(m *Milestone) error {
- _, err := x.Id(m.Id).Update(m)
- return err
- }
- // ChangeMilestoneStatus changes the milestone open/closed status.
- func ChangeMilestoneStatus(m *Milestone, isClosed bool) (err error) {
- repo, err := GetRepositoryById(m.RepoId)
- if err != nil {
- return err
- }
- sess := x.NewSession()
- defer sess.Close()
- if err = sess.Begin(); err != nil {
- return err
- }
- m.IsClosed = isClosed
- if _, err = sess.Id(m.Id).AllCols().Update(m); err != nil {
- sess.Rollback()
- return err
- }
- if isClosed {
- repo.NumClosedMilestones++
- } else {
- repo.NumClosedMilestones--
- }
- if _, err = sess.Id(repo.Id).Update(repo); err != nil {
- sess.Rollback()
- return err
- }
- return sess.Commit()
- }
- // ChangeMilestoneIssueStats updates the open/closed issues counter and progress for the
- // milestone associated witht the given issue.
- func ChangeMilestoneIssueStats(issue *Issue) error {
- if issue.MilestoneId == 0 {
- return nil
- }
- m, err := GetMilestoneById(issue.MilestoneId)
- if err != nil {
- return err
- }
- if issue.IsClosed {
- m.NumOpenIssues--
- m.NumClosedIssues++
- } else {
- m.NumOpenIssues++
- m.NumClosedIssues--
- }
- m.Completeness = m.NumClosedIssues * 100 / m.NumIssues
- return UpdateMilestone(m)
- }
- // ChangeMilestoneAssign changes assignment of milestone for issue.
- func ChangeMilestoneAssign(oldMid, mid int64, issue *Issue) (err error) {
- sess := x.NewSession()
- defer sess.Close()
- if err = sess.Begin(); err != nil {
- return err
- }
- if oldMid > 0 {
- m, err := GetMilestoneById(oldMid)
- if err != nil {
- return err
- }
- m.NumIssues--
- if issue.IsClosed {
- m.NumClosedIssues--
- }
- if m.NumIssues > 0 {
- m.Completeness = m.NumClosedIssues * 100 / m.NumIssues
- } else {
- m.Completeness = 0
- }
- if _, err = sess.Id(m.Id).Cols("num_issues,num_completeness,num_closed_issues").Update(m); err != nil {
- sess.Rollback()
- return err
- }
- rawSql := "UPDATE `issue_user` SET milestone_id = 0 WHERE issue_id = ?"
- if _, err = sess.Exec(rawSql, issue.Id); err != nil {
- sess.Rollback()
- return err
- }
- }
- if mid > 0 {
- m, err := GetMilestoneById(mid)
- if err != nil {
- return err
- }
- m.NumIssues++
- if issue.IsClosed {
- m.NumClosedIssues++
- }
- if m.NumIssues == 0 {
- return ErrWrongIssueCounter
- }
- m.Completeness = m.NumClosedIssues * 100 / m.NumIssues
- if _, err = sess.Id(m.Id).Cols("num_issues,num_completeness,num_closed_issues").Update(m); err != nil {
- sess.Rollback()
- return err
- }
- rawSql := "UPDATE `issue_user` SET milestone_id = ? WHERE issue_id = ?"
- if _, err = sess.Exec(rawSql, m.Id, issue.Id); err != nil {
- sess.Rollback()
- return err
- }
- }
- return sess.Commit()
- }
- // DeleteMilestone deletes a milestone.
- func DeleteMilestone(m *Milestone) (err error) {
- sess := x.NewSession()
- defer sess.Close()
- if err = sess.Begin(); err != nil {
- return err
- }
- if _, err = sess.Delete(m); err != nil {
- sess.Rollback()
- return err
- }
- rawSql := "UPDATE `repository` SET num_milestones = num_milestones - 1 WHERE id = ?"
- if _, err = sess.Exec(rawSql, m.RepoId); err != nil {
- sess.Rollback()
- return err
- }
- rawSql = "UPDATE `issue` SET milestone_id = 0 WHERE milestone_id = ?"
- if _, err = sess.Exec(rawSql, m.Id); err != nil {
- sess.Rollback()
- return err
- }
- rawSql = "UPDATE `issue_user` SET milestone_id = 0 WHERE milestone_id = ?"
- if _, err = sess.Exec(rawSql, m.Id); err != nil {
- sess.Rollback()
- return err
- }
- 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
- )
- // Comment represents a comment in commit and issue page.
- type Comment struct {
- Id int64
- Type CommentType
- PosterId int64
- Poster *User `xorm:"-"`
- IssueId int64
- CommitId int64
- Line int64
- Content string `xorm:"TEXT"`
- Created time.Time `xorm:"CREATED"`
- }
- // CreateComment creates comment of issue or commit.
- func CreateComment(userId, repoId, issueId, commitId, line int64, cmtType CommentType, content string, attachments []int64) (*Comment, error) {
- sess := x.NewSession()
- defer sess.Close()
- if err := sess.Begin(); err != nil {
- return nil, err
- }
- comment := &Comment{PosterId: userId, Type: cmtType, IssueId: issueId,
- CommitId: commitId, Line: line, Content: content}
- if _, err := sess.Insert(comment); err != nil {
- sess.Rollback()
- return nil, err
- }
- // 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 {
- sess.Rollback()
- 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 {
- sess.Rollback()
- 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 {
- sess.Rollback()
- 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 {
- sess.Rollback()
- return nil, err
- }
- }
- return comment, sess.Commit()
- }
- // 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)
- }
- // GetIssueComments returns list of comment by given issue id.
- func GetIssueComments(issueId int64) ([]Comment, error) {
- comments := make([]Comment, 0, 10)
- err := x.Asc("created").Find(&comments, &Comment{IssueId: issueId})
- return comments, err
- }
- // Attachments returns the attachments for this comment.
- func (c *Comment) Attachments() []*Attachment {
- a, _ := GetAttachmentsByComment(c.Id)
- return a
- }
- 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"`
- 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
- }
- // 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)
- 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)
- }
|