2014-03-22 18:50:50 +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 repo
|
|
|
|
|
|
|
|
import (
|
2014-03-22 21:00:46 +01:00
|
|
|
"fmt"
|
2014-03-28 02:15:53 +01:00
|
|
|
"net/url"
|
2014-03-29 22:50:51 +01:00
|
|
|
"strings"
|
2014-03-22 21:00:46 +01:00
|
|
|
|
2014-04-07 18:56:40 +02:00
|
|
|
"github.com/Unknwon/com"
|
2014-03-30 18:11:28 +02:00
|
|
|
"github.com/go-martini/martini"
|
2014-03-22 18:50:50 +01:00
|
|
|
|
|
|
|
"github.com/gogits/gogs/models"
|
2014-03-22 21:00:46 +01:00
|
|
|
"github.com/gogits/gogs/modules/auth"
|
2014-03-22 18:50:50 +01:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-03-22 21:00:46 +01:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-03-26 02:37:18 +01:00
|
|
|
"github.com/gogits/gogs/modules/mailer"
|
2014-03-22 18:50:50 +01:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
|
|
|
)
|
|
|
|
|
2014-03-27 17:48:29 +01:00
|
|
|
func Issues(ctx *middleware.Context) {
|
2014-03-22 21:00:46 +01:00
|
|
|
ctx.Data["Title"] = "Issues"
|
2014-03-22 18:50:50 +01:00
|
|
|
ctx.Data["IsRepoToolbarIssues"] = true
|
2014-03-26 14:47:20 +01:00
|
|
|
ctx.Data["IsRepoToolbarIssuesList"] = true
|
2014-03-27 21:31:32 +01:00
|
|
|
ctx.Data["ViewType"] = "all"
|
2014-03-22 18:50:50 +01:00
|
|
|
|
2014-03-27 17:48:29 +01:00
|
|
|
milestoneId, _ := base.StrTo(ctx.Query("milestone")).Int()
|
|
|
|
page, _ := base.StrTo(ctx.Query("page")).Int()
|
2014-03-22 18:50:50 +01:00
|
|
|
|
2014-03-28 01:38:49 +01:00
|
|
|
ctx.Data["IssueCreatedCount"] = 0
|
|
|
|
|
2014-03-27 21:31:32 +01:00
|
|
|
var posterId int64 = 0
|
2014-04-02 16:38:30 +02:00
|
|
|
isCreatedBy := ctx.Query("type") == "created_by"
|
|
|
|
if isCreatedBy {
|
2014-03-28 01:38:49 +01:00
|
|
|
if !ctx.IsSigned {
|
2014-03-28 02:15:53 +01:00
|
|
|
ctx.SetCookie("redirect_to", "/"+url.QueryEscape(ctx.Req.RequestURI))
|
2014-03-28 01:38:49 +01:00
|
|
|
ctx.Redirect("/user/login/", 302)
|
2014-03-28 02:15:53 +01:00
|
|
|
return
|
2014-03-28 01:38:49 +01:00
|
|
|
}
|
2014-03-27 21:31:32 +01:00
|
|
|
ctx.Data["ViewType"] = "created_by"
|
|
|
|
}
|
|
|
|
|
2014-03-25 19:04:57 +01:00
|
|
|
// Get issues.
|
2014-03-27 21:31:32 +01:00
|
|
|
issues, err := models.GetIssues(0, ctx.Repo.Repository.Id, posterId, int64(milestoneId), page,
|
|
|
|
ctx.Query("state") == "closed", false, ctx.Query("labels"), ctx.Query("sortType"))
|
2014-03-22 18:50:50 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(200, "issue.Issues: %v", err)
|
|
|
|
return
|
|
|
|
}
|
2014-03-25 19:04:57 +01:00
|
|
|
|
2014-03-28 14:16:12 +01:00
|
|
|
if ctx.IsSigned {
|
|
|
|
posterId = ctx.User.Id
|
|
|
|
}
|
|
|
|
var createdByCount int
|
|
|
|
|
2014-04-02 16:38:30 +02:00
|
|
|
showIssues := make([]models.Issue, 0, len(issues))
|
2014-03-25 19:04:57 +01:00
|
|
|
// Get posters.
|
|
|
|
for i := range issues {
|
|
|
|
u, err := models.GetUserById(issues[i].PosterId)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(200, "issue.Issues(get poster): %v", err)
|
|
|
|
return
|
|
|
|
}
|
2014-04-02 16:38:30 +02:00
|
|
|
if isCreatedBy && u.Id != posterId {
|
|
|
|
continue
|
|
|
|
}
|
2014-03-28 14:16:12 +01:00
|
|
|
if u.Id == posterId {
|
|
|
|
createdByCount++
|
|
|
|
}
|
2014-04-02 16:38:30 +02:00
|
|
|
issues[i].Poster = u
|
|
|
|
showIssues = append(showIssues, issues[i])
|
2014-03-25 19:04:57 +01:00
|
|
|
}
|
|
|
|
|
2014-04-02 16:38:30 +02:00
|
|
|
ctx.Data["Issues"] = showIssues
|
2014-03-27 17:48:29 +01:00
|
|
|
ctx.Data["IssueCount"] = ctx.Repo.Repository.NumIssues
|
2014-04-02 18:43:31 +02:00
|
|
|
ctx.Data["OpenCount"] = ctx.Repo.Repository.NumOpenIssues
|
2014-03-27 17:48:29 +01:00
|
|
|
ctx.Data["ClosedCount"] = ctx.Repo.Repository.NumClosedIssues
|
2014-03-28 14:16:12 +01:00
|
|
|
ctx.Data["IssueCreatedCount"] = createdByCount
|
2014-03-27 17:48:29 +01:00
|
|
|
ctx.Data["IsShowClosed"] = ctx.Query("state") == "closed"
|
2014-03-25 17:12:27 +01:00
|
|
|
ctx.HTML(200, "issue/list")
|
2014-03-22 18:50:50 +01:00
|
|
|
}
|
2014-03-22 19:27:03 +01:00
|
|
|
|
2014-04-11 00:09:57 +02:00
|
|
|
func CreateIssue(ctx *middleware.Context, params martini.Params) {
|
2014-03-22 21:00:46 +01:00
|
|
|
ctx.Data["Title"] = "Create issue"
|
2014-03-25 11:27:29 +01:00
|
|
|
ctx.Data["IsRepoToolbarIssues"] = true
|
2014-03-26 13:02:04 +01:00
|
|
|
ctx.Data["IsRepoToolbarIssuesList"] = false
|
2014-04-11 00:09:57 +02:00
|
|
|
ctx.HTML(200, "issue/create")
|
|
|
|
}
|
2014-03-22 21:00:46 +01:00
|
|
|
|
2014-04-11 00:09:57 +02:00
|
|
|
func CreateIssuePost(ctx *middleware.Context, params martini.Params, form auth.CreateIssueForm) {
|
|
|
|
ctx.Data["Title"] = "Create issue"
|
|
|
|
ctx.Data["IsRepoToolbarIssues"] = true
|
|
|
|
ctx.Data["IsRepoToolbarIssuesList"] = false
|
2014-03-22 21:00:46 +01:00
|
|
|
|
|
|
|
if ctx.HasError() {
|
|
|
|
ctx.HTML(200, "issue/create")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-25 17:12:27 +01:00
|
|
|
issue, err := models.CreateIssue(ctx.User.Id, ctx.Repo.Repository.Id, form.MilestoneId, form.AssigneeId,
|
2014-03-27 17:48:29 +01:00
|
|
|
ctx.Repo.Repository.NumIssues, form.IssueName, form.Labels, form.Content, false)
|
2014-03-25 19:04:57 +01:00
|
|
|
if err != nil {
|
2014-04-11 00:09:57 +02:00
|
|
|
ctx.Handle(500, "issue.CreateIssue(CreateIssue)", err)
|
2014-03-22 21:00:46 +01:00
|
|
|
return
|
|
|
|
}
|
2014-03-25 19:04:57 +01:00
|
|
|
|
|
|
|
// Notify watchers.
|
2014-03-29 12:50:25 +01:00
|
|
|
if err = models.NotifyWatchers(&models.Action{ActUserId: ctx.User.Id, ActUserName: ctx.User.Name, ActEmail: ctx.User.Email,
|
2014-03-27 16:37:33 +01:00
|
|
|
OpType: models.OP_CREATE_ISSUE, Content: fmt.Sprintf("%d|%s", issue.Index, issue.Name),
|
|
|
|
RepoId: ctx.Repo.Repository.Id, RepoName: ctx.Repo.Repository.Name, RefName: ""}); err != nil {
|
2014-04-11 00:09:57 +02:00
|
|
|
ctx.Handle(500, "issue.CreateIssue(NotifyWatchers)", err)
|
2014-03-25 19:04:57 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-04-07 18:56:40 +02:00
|
|
|
// Mail watchers and mentions.
|
2014-03-26 02:37:18 +01:00
|
|
|
if base.Service.NotifyMail {
|
2014-04-07 18:56:40 +02:00
|
|
|
tos, err := mailer.SendIssueNotifyMail(ctx.User, ctx.Repo.Owner, ctx.Repo.Repository, issue)
|
|
|
|
if err != nil {
|
2014-04-11 00:09:57 +02:00
|
|
|
ctx.Handle(500, "issue.CreateIssue(SendIssueNotifyMail)", err)
|
2014-04-07 18:56:40 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
tos = append(tos, ctx.User.LowerName)
|
|
|
|
ms := base.MentionPattern.FindAllString(issue.Content, -1)
|
|
|
|
newTos := make([]string, 0, len(ms))
|
|
|
|
for _, m := range ms {
|
|
|
|
if com.IsSliceContainsStr(tos, m[1:]) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
newTos = append(newTos, m[1:])
|
|
|
|
}
|
|
|
|
if err = mailer.SendIssueMentionMail(ctx.User, ctx.Repo.Owner, ctx.Repo.Repository,
|
|
|
|
issue, models.GetUserEmailsByNames(newTos)); err != nil {
|
2014-04-11 00:09:57 +02:00
|
|
|
ctx.Handle(500, "issue.CreateIssue(SendIssueMentionMail)", err)
|
2014-03-26 02:37:18 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2014-03-25 19:04:57 +01:00
|
|
|
log.Trace("%d Issue created: %d", ctx.Repo.Repository.Id, issue.Id)
|
2014-04-11 00:09:57 +02:00
|
|
|
|
2014-03-25 19:04:57 +01:00
|
|
|
ctx.Redirect(fmt.Sprintf("/%s/%s/issues/%d", params["username"], params["reponame"], issue.Index))
|
2014-03-22 21:00:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func ViewIssue(ctx *middleware.Context, params martini.Params) {
|
2014-03-24 00:09:11 +01:00
|
|
|
index, err := base.StrTo(params["index"]).Int()
|
2014-03-22 21:00:46 +01:00
|
|
|
if err != nil {
|
2014-03-23 06:12:55 +01:00
|
|
|
ctx.Handle(404, "issue.ViewIssue", err)
|
2014-03-22 21:00:46 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-24 00:09:11 +01:00
|
|
|
issue, err := models.GetIssueByIndex(ctx.Repo.Repository.Id, int64(index))
|
2014-03-22 21:00:46 +01:00
|
|
|
if err != nil {
|
|
|
|
if err == models.ErrIssueNotExist {
|
2014-03-23 06:12:55 +01:00
|
|
|
ctx.Handle(404, "issue.ViewIssue", err)
|
2014-03-22 21:00:46 +01:00
|
|
|
} else {
|
|
|
|
ctx.Handle(200, "issue.ViewIssue", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-26 17:31:01 +01:00
|
|
|
// Get posters.
|
|
|
|
u, err := models.GetUserById(issue.PosterId)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(200, "issue.ViewIssue(get poster): %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
issue.Poster = u
|
2014-04-07 07:55:22 +02:00
|
|
|
issue.RenderedContent = string(base.RenderMarkdown([]byte(issue.Content), ctx.Repo.RepoLink))
|
2014-03-26 17:31:01 +01:00
|
|
|
|
|
|
|
// Get comments.
|
|
|
|
comments, err := models.GetIssueComments(issue.Id)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(200, "issue.ViewIssue(get comments): %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get posters.
|
|
|
|
for i := range comments {
|
|
|
|
u, err := models.GetUserById(comments[i].PosterId)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(200, "issue.ViewIssue(get poster): %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
comments[i].Poster = u
|
2014-04-07 07:55:22 +02:00
|
|
|
comments[i].Content = string(base.RenderMarkdown([]byte(comments[i].Content), ctx.Repo.RepoLink))
|
2014-03-26 17:31:01 +01:00
|
|
|
}
|
|
|
|
|
2014-03-22 21:00:46 +01:00
|
|
|
ctx.Data["Title"] = issue.Name
|
|
|
|
ctx.Data["Issue"] = issue
|
2014-03-26 17:31:01 +01:00
|
|
|
ctx.Data["Comments"] = comments
|
2014-03-30 22:34:23 +02:00
|
|
|
ctx.Data["IsIssueOwner"] = ctx.Repo.IsOwner || (ctx.IsSigned && issue.PosterId == ctx.User.Id)
|
2014-03-26 13:02:04 +01:00
|
|
|
ctx.Data["IsRepoToolbarIssues"] = true
|
|
|
|
ctx.Data["IsRepoToolbarIssuesList"] = false
|
2014-03-22 21:00:46 +01:00
|
|
|
ctx.HTML(200, "issue/view")
|
2014-03-22 19:27:03 +01:00
|
|
|
}
|
2014-03-24 00:09:11 +01:00
|
|
|
|
|
|
|
func UpdateIssue(ctx *middleware.Context, params martini.Params, form auth.CreateIssueForm) {
|
|
|
|
index, err := base.StrTo(params["index"]).Int()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(404, "issue.UpdateIssue", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
issue, err := models.GetIssueByIndex(ctx.Repo.Repository.Id, int64(index))
|
|
|
|
if err != nil {
|
|
|
|
if err == models.ErrIssueNotExist {
|
|
|
|
ctx.Handle(404, "issue.UpdateIssue", err)
|
|
|
|
} else {
|
2014-03-26 17:31:01 +01:00
|
|
|
ctx.Handle(200, "issue.UpdateIssue(get issue)", err)
|
2014-03-24 00:09:11 +01:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-04-07 07:55:22 +02:00
|
|
|
if ctx.User.Id != issue.PosterId && !ctx.Repo.IsOwner {
|
2014-03-26 12:42:08 +01:00
|
|
|
ctx.Handle(404, "issue.UpdateIssue", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-24 00:09:11 +01:00
|
|
|
issue.Name = form.IssueName
|
|
|
|
issue.MilestoneId = form.MilestoneId
|
|
|
|
issue.AssigneeId = form.AssigneeId
|
|
|
|
issue.Labels = form.Labels
|
|
|
|
issue.Content = form.Content
|
|
|
|
if err = models.UpdateIssue(issue); err != nil {
|
2014-03-26 17:31:01 +01:00
|
|
|
ctx.Handle(200, "issue.UpdateIssue(update issue)", err)
|
2014-03-24 00:09:11 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-29 15:24:42 +01:00
|
|
|
ctx.JSON(200, map[string]interface{}{
|
2014-03-29 16:56:00 +01:00
|
|
|
"ok": true,
|
|
|
|
"title": issue.Name,
|
2014-04-07 07:55:22 +02:00
|
|
|
"content": string(base.RenderMarkdown([]byte(issue.Content), ctx.Repo.RepoLink)),
|
2014-03-29 15:24:42 +01:00
|
|
|
})
|
2014-03-24 00:09:11 +01:00
|
|
|
}
|
2014-03-26 17:31:01 +01:00
|
|
|
|
|
|
|
func Comment(ctx *middleware.Context, params martini.Params) {
|
2014-03-29 22:50:51 +01:00
|
|
|
index, err := base.StrTo(ctx.Query("issueIndex")).Int64()
|
2014-03-26 17:31:01 +01:00
|
|
|
if err != nil {
|
2014-03-29 22:50:51 +01:00
|
|
|
ctx.Handle(404, "issue.Comment(get index)", err)
|
2014-03-26 17:31:01 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-29 22:50:51 +01:00
|
|
|
issue, err := models.GetIssueByIndex(ctx.Repo.Repository.Id, index)
|
2014-03-26 17:31:01 +01:00
|
|
|
if err != nil {
|
|
|
|
if err == models.ErrIssueNotExist {
|
|
|
|
ctx.Handle(404, "issue.Comment", err)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(200, "issue.Comment(get issue)", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-29 22:50:51 +01:00
|
|
|
// Check if issue owner changes the status of issue.
|
|
|
|
var newStatus string
|
|
|
|
if ctx.Repo.IsOwner || issue.PosterId == ctx.User.Id {
|
|
|
|
newStatus = ctx.Query("change_status")
|
|
|
|
}
|
|
|
|
if len(newStatus) > 0 {
|
|
|
|
if (strings.Contains(newStatus, "Reopen") && issue.IsClosed) ||
|
|
|
|
(strings.Contains(newStatus, "Close") && !issue.IsClosed) {
|
|
|
|
issue.IsClosed = !issue.IsClosed
|
|
|
|
if err = models.UpdateIssue(issue); err != nil {
|
|
|
|
ctx.Handle(200, "issue.Comment(update issue status)", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cmtType := models.IT_CLOSE
|
|
|
|
if !issue.IsClosed {
|
|
|
|
cmtType = models.IT_REOPEN
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = models.CreateComment(ctx.User.Id, ctx.Repo.Repository.Id, issue.Id, 0, 0, cmtType, ""); err != nil {
|
|
|
|
ctx.Handle(200, "issue.Comment(create status change comment)", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("%s Issue(%d) status changed: %v", ctx.Req.RequestURI, issue.Id, !issue.IsClosed)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
content := ctx.Query("content")
|
|
|
|
if len(content) > 0 {
|
|
|
|
switch params["action"] {
|
|
|
|
case "new":
|
|
|
|
if err = models.CreateComment(ctx.User.Id, ctx.Repo.Repository.Id, issue.Id, 0, 0, models.IT_PLAIN, content); err != nil {
|
|
|
|
ctx.Handle(500, "issue.Comment(create comment)", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("%s Comment created: %d", ctx.Req.RequestURI, issue.Id)
|
|
|
|
default:
|
|
|
|
ctx.Handle(404, "issue.Comment", err)
|
2014-03-26 17:31:01 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Redirect(fmt.Sprintf("/%s/%s/issues/%d", ctx.User.Name, ctx.Repo.Repository.Name, index))
|
|
|
|
}
|