bench-forgejo/routers/repo/issue.go

269 lines
7.2 KiB
Go
Raw Normal View History

2014-03-22 23:20:50 +05:30
// 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-23 01:30:46 +05:30
"fmt"
2014-03-28 06:45:53 +05:30
"net/url"
2014-03-23 01:30:46 +05:30
2014-03-22 23:20:50 +05:30
"github.com/codegangsta/martini"
"github.com/gogits/gogs/models"
2014-03-23 01:30:46 +05:30
"github.com/gogits/gogs/modules/auth"
2014-03-22 23:20:50 +05:30
"github.com/gogits/gogs/modules/base"
2014-03-23 01:30:46 +05:30
"github.com/gogits/gogs/modules/log"
2014-03-26 07:07:18 +05:30
"github.com/gogits/gogs/modules/mailer"
2014-03-22 23:20:50 +05:30
"github.com/gogits/gogs/modules/middleware"
)
2014-03-27 22:18:29 +05:30
func Issues(ctx *middleware.Context) {
if !ctx.Repo.IsValid {
ctx.Handle(404, "issue.Issues(invalid repo):", nil)
}
2014-03-23 01:30:46 +05:30
ctx.Data["Title"] = "Issues"
2014-03-22 23:20:50 +05:30
ctx.Data["IsRepoToolbarIssues"] = true
2014-03-26 19:17:20 +05:30
ctx.Data["IsRepoToolbarIssuesList"] = true
2014-03-28 02:01:32 +05:30
ctx.Data["ViewType"] = "all"
2014-03-22 23:20:50 +05:30
2014-03-27 22:18:29 +05:30
milestoneId, _ := base.StrTo(ctx.Query("milestone")).Int()
page, _ := base.StrTo(ctx.Query("page")).Int()
2014-03-22 23:20:50 +05:30
ctx.Data["IssueCreatedCount"] = 0
2014-03-28 02:01:32 +05:30
var posterId int64 = 0
if ctx.Query("type") == "created_by" {
if !ctx.IsSigned {
2014-03-28 06:45:53 +05:30
ctx.SetCookie("redirect_to", "/"+url.QueryEscape(ctx.Req.RequestURI))
ctx.Redirect("/user/login/", 302)
2014-03-28 06:45:53 +05:30
return
}
2014-03-28 02:01:32 +05:30
ctx.Data["ViewType"] = "created_by"
}
2014-03-25 23:34:57 +05:30
// Get issues.
2014-03-28 02:01:32 +05:30
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 23:20:50 +05:30
if err != nil {
ctx.Handle(200, "issue.Issues: %v", err)
return
}
2014-03-25 23:34:57 +05:30
2014-03-28 18:46:12 +05:30
if ctx.IsSigned {
posterId = ctx.User.Id
}
var createdByCount int
2014-03-25 23:34:57 +05:30
// 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
}
issues[i].Poster = u
2014-03-28 18:46:12 +05:30
if u.Id == posterId {
createdByCount++
}
2014-03-25 23:34:57 +05:30
}
ctx.Data["Issues"] = issues
2014-03-27 22:18:29 +05:30
ctx.Data["IssueCount"] = ctx.Repo.Repository.NumIssues
ctx.Data["OpenCount"] = ctx.Repo.Repository.NumIssues - ctx.Repo.Repository.NumClosedIssues
ctx.Data["ClosedCount"] = ctx.Repo.Repository.NumClosedIssues
2014-03-28 18:46:12 +05:30
ctx.Data["IssueCreatedCount"] = createdByCount
2014-03-27 22:18:29 +05:30
ctx.Data["IsShowClosed"] = ctx.Query("state") == "closed"
2014-03-25 21:42:27 +05:30
ctx.HTML(200, "issue/list")
2014-03-22 23:20:50 +05:30
}
2014-03-22 23:57:03 +05:30
2014-03-23 01:30:46 +05:30
func CreateIssue(ctx *middleware.Context, params martini.Params, form auth.CreateIssueForm) {
if !ctx.Repo.IsValid {
ctx.Handle(404, "issue.CreateIssue(invalid repo):", nil)
}
2014-03-23 01:30:46 +05:30
ctx.Data["Title"] = "Create issue"
2014-03-25 15:57:29 +05:30
ctx.Data["IsRepoToolbarIssues"] = true
2014-03-26 17:32:04 +05:30
ctx.Data["IsRepoToolbarIssuesList"] = false
2014-03-23 01:30:46 +05:30
if ctx.Req.Method == "GET" {
ctx.HTML(200, "issue/create")
return
}
if ctx.HasError() {
ctx.HTML(200, "issue/create")
return
}
2014-03-25 21:42:27 +05:30
issue, err := models.CreateIssue(ctx.User.Id, ctx.Repo.Repository.Id, form.MilestoneId, form.AssigneeId,
2014-03-27 22:18:29 +05:30
ctx.Repo.Repository.NumIssues, form.IssueName, form.Labels, form.Content, false)
2014-03-25 23:34:57 +05:30
if err != nil {
ctx.Handle(200, "issue.CreateIssue", err)
2014-03-23 01:30:46 +05:30
return
}
2014-03-25 23:34:57 +05:30
// Notify watchers.
2014-03-29 17:20:25 +05:30
if err = models.NotifyWatchers(&models.Action{ActUserId: ctx.User.Id, ActUserName: ctx.User.Name, ActEmail: ctx.User.Email,
2014-03-27 21:07:33 +05:30
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-03-25 23:34:57 +05:30
ctx.Handle(200, "issue.CreateIssue", err)
return
}
2014-03-26 07:07:18 +05:30
// Mail watchers.
if base.Service.NotifyMail {
if err = mailer.SendNotifyMail(ctx.User.Id, ctx.Repo.Repository.Id, ctx.User.Name, ctx.Repo.Repository.Name, issue.Name, issue.Content); err != nil {
ctx.Handle(200, "issue.CreateIssue", err)
return
}
}
2014-03-25 23:34:57 +05:30
log.Trace("%d Issue created: %d", ctx.Repo.Repository.Id, issue.Id)
ctx.Redirect(fmt.Sprintf("/%s/%s/issues/%d", params["username"], params["reponame"], issue.Index))
2014-03-23 01:30:46 +05:30
}
func ViewIssue(ctx *middleware.Context, params martini.Params) {
if !ctx.Repo.IsValid {
ctx.Handle(404, "issue.ViewIssue(invalid repo):", nil)
}
2014-03-24 04:39:11 +05:30
index, err := base.StrTo(params["index"]).Int()
2014-03-23 01:30:46 +05:30
if err != nil {
2014-03-23 10:42:55 +05:30
ctx.Handle(404, "issue.ViewIssue", err)
2014-03-23 01:30:46 +05:30
return
}
2014-03-24 04:39:11 +05:30
issue, err := models.GetIssueByIndex(ctx.Repo.Repository.Id, int64(index))
2014-03-23 01:30:46 +05:30
if err != nil {
if err == models.ErrIssueNotExist {
2014-03-23 10:42:55 +05:30
ctx.Handle(404, "issue.ViewIssue", err)
2014-03-23 01:30:46 +05:30
} else {
ctx.Handle(200, "issue.ViewIssue", err)
}
return
}
2014-03-26 22:01:01 +05:30
// 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-03-29 19:54:42 +05:30
issue.RenderedContent = string(base.RenderMarkdown([]byte(issue.Content), ""))
2014-03-26 22:01:01 +05:30
// 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-03-27 21:07:33 +05:30
comments[i].Content = string(base.RenderMarkdown([]byte(comments[i].Content), ""))
2014-03-26 22:01:01 +05:30
}
2014-03-23 01:30:46 +05:30
ctx.Data["Title"] = issue.Name
ctx.Data["Issue"] = issue
2014-03-26 22:01:01 +05:30
ctx.Data["Comments"] = comments
2014-03-26 17:32:04 +05:30
ctx.Data["IsRepoToolbarIssues"] = true
ctx.Data["IsRepoToolbarIssuesList"] = false
2014-03-23 01:30:46 +05:30
ctx.HTML(200, "issue/view")
2014-03-22 23:57:03 +05:30
}
2014-03-24 04:39:11 +05:30
func UpdateIssue(ctx *middleware.Context, params martini.Params, form auth.CreateIssueForm) {
if !ctx.Repo.IsValid {
ctx.Handle(404, "issue.UpdateIssue(invalid repo):", nil)
}
2014-03-24 04:39:11 +05:30
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 22:01:01 +05:30
ctx.Handle(200, "issue.UpdateIssue(get issue)", err)
2014-03-24 04:39:11 +05:30
}
return
}
2014-03-26 17:12:08 +05:30
if ctx.User.Id != issue.PosterId {
ctx.Handle(404, "issue.UpdateIssue", nil)
return
}
2014-03-24 04:39:11 +05:30
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 22:01:01 +05:30
ctx.Handle(200, "issue.UpdateIssue(update issue)", err)
2014-03-24 04:39:11 +05:30
return
}
2014-03-29 19:54:42 +05:30
ctx.JSON(200, map[string]interface{}{
"ok": true,
"title": issue.Name,
"content": string(base.RenderMarkdown([]byte(issue.Content), "")),
"raw_content": issue.Content,
})
2014-03-24 04:39:11 +05:30
}
2014-03-26 22:01:01 +05:30
func Comment(ctx *middleware.Context, params martini.Params) {
2014-03-29 16:25:51 +05:30
fmt.Println(ctx.Query("change_status"))
if !ctx.Repo.IsValid {
ctx.Handle(404, "issue.Comment(invalid repo):", nil)
}
2014-03-26 22:01:01 +05:30
index, err := base.StrTo(ctx.Query("issueIndex")).Int()
if err != nil {
ctx.Handle(404, "issue.Comment", err)
return
}
2014-03-29 03:04:07 +05:30
content := ctx.Query("content")
if len(content) == 0 {
ctx.Redirect(fmt.Sprintf("/%s/%s/issues/%d", ctx.User.Name, ctx.Repo.Repository.Name, index))
return
}
2014-03-26 22:01:01 +05:30
issue, err := models.GetIssueByIndex(ctx.Repo.Repository.Id, int64(index))
if err != nil {
if err == models.ErrIssueNotExist {
ctx.Handle(404, "issue.Comment", err)
} else {
ctx.Handle(200, "issue.Comment(get issue)", err)
}
return
}
switch params["action"] {
case "new":
if err = models.CreateComment(ctx.User.Id, issue.Id, 0, 0, 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)
return
}
ctx.Redirect(fmt.Sprintf("/%s/%s/issues/%d", ctx.User.Name, ctx.Repo.Repository.Name, index))
}