bench-forgejo/routers/repo/issue.go

1189 lines
30 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 (
2017-01-25 08:13:02 +05:30
"bytes"
"errors"
"fmt"
"io"
"io/ioutil"
2017-03-15 06:40:35 +05:30
"strconv"
"strings"
"time"
"github.com/Unknwon/com"
2015-07-28 00:44:37 +05:30
"github.com/Unknwon/paginater"
"code.gitea.io/git"
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/auth"
"code.gitea.io/gitea/modules/base"
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/markdown"
"code.gitea.io/gitea/modules/notification"
"code.gitea.io/gitea/modules/setting"
2017-01-25 08:13:02 +05:30
"code.gitea.io/gitea/modules/util"
)
const (
2016-11-24 12:34:31 +05:30
tplIssues base.TplName = "repo/issue/list"
tplIssueNew base.TplName = "repo/issue/new"
tplIssueView base.TplName = "repo/issue/view"
2016-11-24 12:34:31 +05:30
tplMilestone base.TplName = "repo/issue/milestones"
tplMilestoneNew base.TplName = "repo/issue/milestone_new"
tplMilestoneEdit base.TplName = "repo/issue/milestone_edit"
2016-11-24 12:34:31 +05:30
issueTemplateKey = "IssueTemplate"
)
var (
2016-11-24 12:34:31 +05:30
// ErrFileTypeForbidden not allowed file type error
ErrFileTypeForbidden = errors.New("File type is not allowed")
2016-11-24 12:34:31 +05:30
// ErrTooManyFiles upload too many files
ErrTooManyFiles = errors.New("Maximum number of files to upload exceeded")
// IssueTemplateCandidates issue templates
IssueTemplateCandidates = []string{
"ISSUE_TEMPLATE.md",
"issue_template.md",
".gitea/ISSUE_TEMPLATE.md",
".gitea/issue_template.md",
".github/ISSUE_TEMPLATE.md",
".github/issue_template.md",
}
)
2016-11-24 12:34:31 +05:30
// MustEnableIssues check if repository enable internal issues
2016-03-11 22:26:52 +05:30
func MustEnableIssues(ctx *context.Context) {
if !ctx.Repo.Repository.EnableUnit(models.UnitTypeIssues) &&
!ctx.Repo.Repository.EnableUnit(models.UnitTypeExternalTracker) {
2015-12-05 08:00:33 +05:30
ctx.Handle(404, "MustEnableIssues", nil)
2016-03-07 10:27:46 +05:30
return
2015-12-05 08:00:33 +05:30
}
unit, err := ctx.Repo.Repository.GetUnit(models.UnitTypeExternalTracker)
if err == nil {
ctx.Redirect(unit.ExternalTrackerConfig().ExternalTrackerURL)
return
}
2015-12-05 08:00:33 +05:30
}
2016-11-24 12:34:31 +05:30
// MustAllowPulls check if repository enable pull requests
2016-03-11 22:26:52 +05:30
func MustAllowPulls(ctx *context.Context) {
if !ctx.Repo.Repository.AllowsPulls() {
ctx.Handle(404, "MustAllowPulls", nil)
2016-03-07 10:27:46 +05:30
return
2015-12-05 08:00:33 +05:30
}
2015-12-20 08:37:06 +05:30
2016-03-07 10:27:46 +05:30
// User can send pull request if owns a forked repository.
if ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID) {
ctx.Repo.PullRequest.Allowed = true
ctx.Repo.PullRequest.HeadInfo = ctx.User.Name + ":" + ctx.Repo.BranchName
}
2015-12-05 08:00:33 +05:30
}
2016-11-24 12:34:31 +05:30
// Issues render issues page
2016-03-11 22:26:52 +05:30
func Issues(ctx *context.Context) {
2015-09-03 01:48:09 +05:30
isPullList := ctx.Params(":type") == "pulls"
if isPullList {
MustAllowPulls(ctx)
2015-12-20 08:37:06 +05:30
if ctx.Written() {
return
}
2015-09-03 01:48:09 +05:30
ctx.Data["Title"] = ctx.Tr("repo.pulls")
ctx.Data["PageIsPullList"] = true
2015-12-05 08:00:33 +05:30
2015-09-03 01:48:09 +05:30
} else {
2015-12-05 08:00:33 +05:30
MustEnableIssues(ctx)
if ctx.Written() {
return
}
2015-09-03 01:48:09 +05:30
ctx.Data["Title"] = ctx.Tr("repo.issues")
ctx.Data["PageIsIssueList"] = true
}
viewType := ctx.Query("type")
2015-08-15 09:37:08 +05:30
sortType := ctx.Query("sort")
types := []string{"all", "assigned", "created_by", "mentioned"}
if !com.IsSliceContainsStr(types, viewType) {
viewType = "all"
}
2015-08-15 09:37:08 +05:30
var (
assigneeID = ctx.QueryInt64("assignee")
posterID int64
mentionedID int64
forceEmpty bool
2015-08-15 09:37:08 +05:30
)
if ctx.IsSigned {
switch viewType {
case "created_by":
posterID = ctx.User.ID
case "mentioned":
mentionedID = ctx.User.ID
}
}
2015-07-25 00:22:25 +05:30
repo := ctx.Repo.Repository
2015-07-25 05:29:54 +05:30
selectLabels := ctx.Query("labels")
2015-07-25 00:22:25 +05:30
milestoneID := ctx.QueryInt64("milestone")
2015-08-04 19:54:04 +05:30
isShowClosed := ctx.Query("state") == "closed"
keyword := strings.Trim(ctx.Query("q"), " ")
2017-01-25 08:13:02 +05:30
if bytes.Contains([]byte(keyword), []byte{0x00}) {
keyword = ""
}
var issueIDs []int64
var err error
if len(keyword) > 0 {
issueIDs, err = models.SearchIssuesByKeyword(repo.ID, keyword)
if len(issueIDs) == 0 {
forceEmpty = true
}
}
var issueStats *models.IssueStats
if forceEmpty {
issueStats = &models.IssueStats{}
} else {
2017-01-25 08:13:02 +05:30
var err error
issueStats, err = models.GetIssueStats(&models.IssueStatsOptions{
RepoID: repo.ID,
Labels: selectLabels,
MilestoneID: milestoneID,
AssigneeID: assigneeID,
MentionedID: mentionedID,
PosterID: posterID,
IsPull: isPullList,
2017-01-25 08:13:02 +05:30
IssueIDs: issueIDs,
})
2017-01-25 08:13:02 +05:30
if err != nil {
ctx.Handle(500, "GetIssueStats", err)
2017-01-25 08:13:02 +05:30
return
}
}
page := ctx.QueryInt("page")
if page <= 1 {
page = 1
}
2015-07-28 00:44:37 +05:30
var total int
if !isShowClosed {
total = int(issueStats.OpenCount)
} else {
total = int(issueStats.ClosedCount)
}
2016-07-23 21:53:54 +05:30
pager := paginater.New(total, setting.UI.IssuePagingNum, page, 5)
2015-11-04 20:46:50 +05:30
ctx.Data["Page"] = pager
var issues []*models.Issue
if forceEmpty {
issues = []*models.Issue{}
} else {
issues, err = models.Issues(&models.IssuesOptions{
AssigneeID: assigneeID,
RepoID: repo.ID,
PosterID: posterID,
MentionedID: mentionedID,
MilestoneID: milestoneID,
Page: pager.Current(),
2017-01-25 08:13:02 +05:30
IsClosed: util.OptionalBoolOf(isShowClosed),
IsPull: util.OptionalBoolOf(isPullList),
Labels: selectLabels,
SortType: sortType,
2017-01-25 08:13:02 +05:30
IssueIDs: issueIDs,
})
if err != nil {
ctx.Handle(500, "Issues", err)
return
}
}
// Get posters.
for i := range issues {
// Check read status
2015-07-25 00:22:25 +05:30
if !ctx.IsSigned {
issues[i].IsRead = true
} else if err = issues[i].GetIsRead(ctx.User.ID); err != nil {
ctx.Handle(500, "GetIsRead", err)
return
}
}
2015-08-05 17:53:08 +05:30
ctx.Data["Issues"] = issues
// Get milestones.
2016-08-25 04:35:56 +05:30
ctx.Data["Milestones"], err = models.GetMilestonesByRepoID(repo.ID)
2015-08-05 17:53:08 +05:30
if err != nil {
ctx.Handle(500, "GetAllRepoMilestones", err)
2015-08-05 17:53:08 +05:30
return
}
2015-08-15 08:54:41 +05:30
// Get assignees.
ctx.Data["Assignees"], err = repo.GetAssignees()
if err != nil {
ctx.Handle(500, "GetAssignees", err)
2015-08-15 08:54:41 +05:30
return
}
if ctx.QueryInt64("assignee") == 0 {
2016-07-17 06:55:30 +05:30
assigneeID = 0 // Reset ID to prevent unexpected selection of assignee.
}
ctx.Data["IssueStats"] = issueStats
ctx.Data["SelectLabels"] = com.StrTo(selectLabels).MustInt64()
ctx.Data["ViewType"] = viewType
2015-08-15 09:37:08 +05:30
ctx.Data["SortType"] = sortType
2015-08-05 17:53:08 +05:30
ctx.Data["MilestoneID"] = milestoneID
2015-08-15 08:54:41 +05:30
ctx.Data["AssigneeID"] = assigneeID
ctx.Data["IsShowClosed"] = isShowClosed
2017-01-25 08:13:02 +05:30
ctx.Data["Keyword"] = keyword
if isShowClosed {
ctx.Data["State"] = "closed"
} else {
2015-07-25 00:22:25 +05:30
ctx.Data["State"] = "open"
}
2015-07-25 00:22:25 +05:30
2016-11-24 12:34:31 +05:30
ctx.HTML(200, tplIssues)
}
2016-11-24 12:34:31 +05:30
// RetrieveRepoMilestonesAndAssignees find all the milestones and assignees of a repository
2016-03-11 22:26:52 +05:30
func RetrieveRepoMilestonesAndAssignees(ctx *context.Context, repo *models.Repository) {
2015-09-02 04:37:02 +05:30
var err error
ctx.Data["OpenMilestones"], err = models.GetMilestones(repo.ID, -1, false, "")
2015-09-02 04:37:02 +05:30
if err != nil {
ctx.Handle(500, "GetMilestones", err)
2015-09-02 04:37:02 +05:30
return
}
ctx.Data["ClosedMilestones"], err = models.GetMilestones(repo.ID, -1, true, "")
2015-09-02 04:37:02 +05:30
if err != nil {
ctx.Handle(500, "GetMilestones", err)
2015-09-02 04:37:02 +05:30
return
}
ctx.Data["Assignees"], err = repo.GetAssignees()
if err != nil {
ctx.Handle(500, "GetAssignees", err)
2015-09-02 04:37:02 +05:30
return
}
}
2016-11-24 12:34:31 +05:30
// RetrieveRepoMetas find all the meta information of a repository
2016-03-11 22:26:52 +05:30
func RetrieveRepoMetas(ctx *context.Context, repo *models.Repository) []*models.Label {
if !ctx.Repo.IsWriter() {
2015-08-31 12:54:28 +05:30
return nil
}
labels, err := models.GetLabelsByRepoID(repo.ID, "")
2015-08-31 12:54:28 +05:30
if err != nil {
ctx.Handle(500, "GetLabelsByRepoID", err)
2015-08-31 12:54:28 +05:30
return nil
}
ctx.Data["Labels"] = labels
2015-09-02 04:37:02 +05:30
RetrieveRepoMilestonesAndAssignees(ctx, repo)
if ctx.Written() {
2015-08-31 12:54:28 +05:30
return nil
}
return labels
}
2016-03-11 22:26:52 +05:30
func getFileContentFromDefaultBranch(ctx *context.Context, filename string) (string, bool) {
var r io.Reader
var bytes []byte
if ctx.Repo.Commit == nil {
var err error
ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(ctx.Repo.Repository.DefaultBranch)
if err != nil {
return "", false
}
}
entry, err := ctx.Repo.Commit.GetTreeEntryByPath(filename)
if err != nil {
return "", false
}
r, err = entry.Blob().Data()
if err != nil {
return "", false
}
bytes, err = ioutil.ReadAll(r)
if err != nil {
return "", false
}
return string(bytes), true
}
2016-03-11 22:26:52 +05:30
func setTemplateIfExists(ctx *context.Context, ctxDataKey string, possibleFiles []string) {
for _, filename := range possibleFiles {
content, found := getFileContentFromDefaultBranch(ctx, filename)
if found {
ctx.Data[ctxDataKey] = content
return
}
}
}
2016-11-24 12:34:31 +05:30
// NewIssue render createing issue page
2016-03-11 22:26:52 +05:30
func NewIssue(ctx *context.Context) {
ctx.Data["Title"] = ctx.Tr("repo.issues.new")
ctx.Data["PageIsIssueList"] = true
2016-08-25 10:05:03 +05:30
ctx.Data["RequireHighlightJS"] = true
ctx.Data["RequireSimpleMDE"] = true
2016-11-24 12:34:31 +05:30
setTemplateIfExists(ctx, issueTemplateKey, IssueTemplateCandidates)
renderAttachmentSettings(ctx)
2015-08-31 12:54:28 +05:30
RetrieveRepoMetas(ctx, ctx.Repo.Repository)
if ctx.Written() {
return
2015-08-10 16:27:57 +05:30
}
2016-11-24 12:34:31 +05:30
ctx.HTML(200, tplIssueNew)
}
2016-11-24 12:34:31 +05:30
// ValidateRepoMetas check and returns repository's meta informations
2016-03-11 22:26:52 +05:30
func ValidateRepoMetas(ctx *context.Context, form auth.CreateIssueForm) ([]int64, int64, int64) {
2015-09-02 04:37:02 +05:30
var (
repo = ctx.Repo.Repository
err error
)
labels := RetrieveRepoMetas(ctx, ctx.Repo.Repository)
if ctx.Written() {
return nil, 0, 0
}
if !ctx.Repo.IsWriter() {
2015-09-02 04:37:02 +05:30
return nil, 0, 0
}
var labelIDs []int64
2015-09-02 04:37:02 +05:30
hasSelected := false
// Check labels.
if len(form.LabelIDs) > 0 {
labelIDs, err = base.StringsToInt64s(strings.Split(form.LabelIDs, ","))
if err != nil {
return nil, 0, 0
}
labelIDMark := base.Int64sToMap(labelIDs)
for i := range labels {
if labelIDMark[labels[i].ID] {
labels[i].IsChecked = true
hasSelected = true
}
2015-09-02 04:37:02 +05:30
}
}
ctx.Data["Labels"] = labels
2015-09-02 04:37:02 +05:30
ctx.Data["HasSelectedLabel"] = hasSelected
ctx.Data["label_ids"] = form.LabelIDs
// Check milestone.
milestoneID := form.MilestoneID
if milestoneID > 0 {
ctx.Data["Milestone"], err = repo.GetMilestoneByID(milestoneID)
if err != nil {
ctx.Handle(500, "GetMilestoneByID", err)
2015-09-02 04:37:02 +05:30
return nil, 0, 0
}
ctx.Data["milestone_id"] = milestoneID
}
// Check assignee.
assigneeID := form.AssigneeID
if assigneeID > 0 {
ctx.Data["Assignee"], err = repo.GetAssigneeByID(assigneeID)
if err != nil {
ctx.Handle(500, "GetAssigneeByID", err)
2015-09-02 04:37:02 +05:30
return nil, 0, 0
}
ctx.Data["assignee_id"] = assigneeID
}
return labelIDs, milestoneID, assigneeID
}
2016-11-24 12:34:31 +05:30
// NewIssuePost response for creating new issue
2016-03-11 22:26:52 +05:30
func NewIssuePost(ctx *context.Context, form auth.CreateIssueForm) {
ctx.Data["Title"] = ctx.Tr("repo.issues.new")
ctx.Data["PageIsIssueList"] = true
Squashed commit of the following: commit 0afcb843d7ffd596991c4885cab768273a6eb42c Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 17:13:29 2016 -0600 Removed Upload stats as the upload table is just a temporary table commit 7ecd73ff5535612d79d471409173ee7f1fcfa157 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 08:42:41 2016 -0600 Fix for CodeMirror mode commit c29b9ab531e2e7af0fb5db24dc17e51027dd1174 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 08:03:33 2016 -0600 Made tabbing in editor use spaces commit 23af384c53206a8a40e11e45bf49d7a149c4adcd Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:56:46 2016 -0600 Fix for data-url commit cfb8a97591cb6fc0a92e49563b7b764c524db0e9 Merge: 7fc8a89 991ce42 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:42:53 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go public/js/gogs.js commit 7fc8a89cb495478225b02d613e647f99a1489634 Merge: fd3d86c c03d040 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:40:00 2016 -0600 Merge branch 'feature-create-and-edit-repo-file' of github.com:richmahn/gogs into feature-create-and-edit-repo-file commit fd3d86ca6bbc02cfda566a504ffd6b03db4f75ef Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:39:44 2016 -0600 Code cleanup commit c03d0401c1049eeeccc32ab1f9c3303c130be5ee Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 29 15:38:23 2016 -0600 Code cleanup commit 98e1206ccf9f9a4503c020e3a7830cf9f861dfae Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Thu Jul 28 18:36:01 2016 -0600 Code cleanup and fixes commit c2895dc742f25f8412879c9fa15e18f27f42f194 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Thu Jul 28 18:24:04 2016 -0600 Fixes per Unknwon's requests commit 6aa7e46b21ad4c96e562daa2eac26a8fb408f8ef Merge: 889e9fa ad7ea88 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Thu Jul 28 17:13:43 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go modules/setting/setting.go commit 889e9faf1bd8559a4979c8f46005d488c1a234d4 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 22 14:09:18 2016 -0600 Fix in gogs.js commit 47603edf223f147b114be65f3bd27bc1e88827a5 Merge: bb57912 cf85e9e Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 22 14:07:36 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go public/js/gogs.js commit bb5791255867a71c11a77b639db050ad09c597a4 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 22 14:02:18 2016 -0600 Update for using CodeMirror mode addon commit d10d128c51039be19e2af9c66c63db66a9f2ec6d Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Tue Jul 19 16:12:57 2016 -0600 Update for Edit commit 34a34982025144e3225e389f7849eb6273c1d576 Merge: fa1b752 1c7dcdd Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Tue Jul 19 11:52:02 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go commit fa1b752be29cd455c5184ddac2ffe80b3489763e Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 15 18:35:42 2016 -0600 Feature for editing, creating, uploading and deleting files
2016-08-11 18:18:08 +05:30
ctx.Data["RequireHighlightJS"] = true
ctx.Data["RequireSimpleMDE"] = true
renderAttachmentSettings(ctx)
2015-08-10 14:22:08 +05:30
var (
2015-08-10 16:27:57 +05:30
repo = ctx.Repo.Repository
2015-08-11 20:54:40 +05:30
attachments []string
2015-08-10 14:22:08 +05:30
)
2015-08-31 12:54:28 +05:30
2015-09-02 04:37:02 +05:30
labelIDs, milestoneID, assigneeID := ValidateRepoMetas(ctx, form)
if ctx.Written() {
return
2015-08-10 14:22:08 +05:30
}
2015-08-11 20:54:40 +05:30
if setting.AttachmentEnabled {
Squashed commit of the following: commit 0afcb843d7ffd596991c4885cab768273a6eb42c Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 17:13:29 2016 -0600 Removed Upload stats as the upload table is just a temporary table commit 7ecd73ff5535612d79d471409173ee7f1fcfa157 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 08:42:41 2016 -0600 Fix for CodeMirror mode commit c29b9ab531e2e7af0fb5db24dc17e51027dd1174 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 08:03:33 2016 -0600 Made tabbing in editor use spaces commit 23af384c53206a8a40e11e45bf49d7a149c4adcd Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:56:46 2016 -0600 Fix for data-url commit cfb8a97591cb6fc0a92e49563b7b764c524db0e9 Merge: 7fc8a89 991ce42 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:42:53 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go public/js/gogs.js commit 7fc8a89cb495478225b02d613e647f99a1489634 Merge: fd3d86c c03d040 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:40:00 2016 -0600 Merge branch 'feature-create-and-edit-repo-file' of github.com:richmahn/gogs into feature-create-and-edit-repo-file commit fd3d86ca6bbc02cfda566a504ffd6b03db4f75ef Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:39:44 2016 -0600 Code cleanup commit c03d0401c1049eeeccc32ab1f9c3303c130be5ee Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 29 15:38:23 2016 -0600 Code cleanup commit 98e1206ccf9f9a4503c020e3a7830cf9f861dfae Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Thu Jul 28 18:36:01 2016 -0600 Code cleanup and fixes commit c2895dc742f25f8412879c9fa15e18f27f42f194 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Thu Jul 28 18:24:04 2016 -0600 Fixes per Unknwon's requests commit 6aa7e46b21ad4c96e562daa2eac26a8fb408f8ef Merge: 889e9fa ad7ea88 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Thu Jul 28 17:13:43 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go modules/setting/setting.go commit 889e9faf1bd8559a4979c8f46005d488c1a234d4 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 22 14:09:18 2016 -0600 Fix in gogs.js commit 47603edf223f147b114be65f3bd27bc1e88827a5 Merge: bb57912 cf85e9e Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 22 14:07:36 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go public/js/gogs.js commit bb5791255867a71c11a77b639db050ad09c597a4 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 22 14:02:18 2016 -0600 Update for using CodeMirror mode addon commit d10d128c51039be19e2af9c66c63db66a9f2ec6d Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Tue Jul 19 16:12:57 2016 -0600 Update for Edit commit 34a34982025144e3225e389f7849eb6273c1d576 Merge: fa1b752 1c7dcdd Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Tue Jul 19 11:52:02 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go commit fa1b752be29cd455c5184ddac2ffe80b3489763e Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 15 18:35:42 2016 -0600 Feature for editing, creating, uploading and deleting files
2016-08-11 18:18:08 +05:30
attachments = form.Files
2015-08-11 20:54:40 +05:30
}
if ctx.HasError() {
2016-11-24 12:34:31 +05:30
ctx.HTML(200, tplIssueNew)
return
}
issue := &models.Issue{
RepoID: repo.ID,
Title: form.Title,
2016-07-23 22:38:22 +05:30
PosterID: ctx.User.ID,
2015-08-10 21:01:59 +05:30
Poster: ctx.User,
2015-08-10 16:27:57 +05:30
MilestoneID: milestoneID,
AssigneeID: assigneeID,
Content: form.Content,
}
2015-08-11 20:54:40 +05:30
if err := models.NewIssue(repo, issue, labelIDs, attachments); err != nil {
ctx.Handle(500, "NewIssue", err)
return
2015-08-10 21:01:59 +05:30
}
notification.Service.NotifyIssue(issue, ctx.User.ID)
2015-09-02 04:37:02 +05:30
log.Trace("Issue created: %d/%d", repo.ID, issue.ID)
2015-08-10 21:01:59 +05:30
ctx.Redirect(ctx.Repo.RepoLink + "/issues/" + com.ToStr(issue.Index))
}
2016-11-24 12:34:31 +05:30
// ViewIssue render issue view page
2016-03-11 22:26:52 +05:30
func ViewIssue(ctx *context.Context) {
2016-08-25 10:05:03 +05:30
ctx.Data["RequireHighlightJS"] = true
ctx.Data["RequireDropzone"] = true
renderAttachmentSettings(ctx)
issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index"))
if err != nil {
if models.IsErrIssueNotExist(err) {
2015-08-05 15:56:18 +05:30
ctx.Handle(404, "GetIssueByIndex", err)
} else {
2015-08-05 15:56:18 +05:30
ctx.Handle(500, "GetIssueByIndex", err)
}
return
}
2016-10-12 18:58:51 +05:30
ctx.Data["Title"] = fmt.Sprintf("#%d - %s", issue.Index, issue.Title)
var iw *models.IssueWatch
var exists bool
if ctx.User != nil {
iw, exists, err = models.GetIssueWatch(ctx.User.ID, issue.ID)
if err != nil {
ctx.Handle(500, "GetIssueWatch", err)
return
}
if !exists {
iw = &models.IssueWatch{
UserID: ctx.User.ID,
IssueID: issue.ID,
IsWatching: models.IsWatching(ctx.User.ID, ctx.Repo.Repository.ID),
}
2017-03-30 05:01:47 +05:30
}
}
ctx.Data["IssueWatch"] = iw
2015-09-02 04:37:02 +05:30
// Make sure type and URL matches.
if ctx.Params(":type") == "issues" && issue.IsPull {
ctx.Redirect(ctx.Repo.RepoLink + "/pulls/" + com.ToStr(issue.Index))
return
} else if ctx.Params(":type") == "pulls" && !issue.IsPull {
ctx.Redirect(ctx.Repo.RepoLink + "/issues/" + com.ToStr(issue.Index))
return
}
2015-09-02 13:38:05 +05:30
if issue.IsPull {
2016-03-07 10:27:46 +05:30
MustAllowPulls(ctx)
if ctx.Written() {
return
}
ctx.Data["PageIsPullList"] = true
2015-09-02 13:38:05 +05:30
ctx.Data["PageIsPullConversation"] = true
} else {
2015-12-05 08:00:33 +05:30
MustEnableIssues(ctx)
if ctx.Written() {
return
}
2015-09-02 13:38:05 +05:30
ctx.Data["PageIsIssueList"] = true
}
2016-02-21 03:40:05 +05:30
issue.RenderedContent = string(markdown.Render([]byte(issue.Content), ctx.Repo.RepoLink,
2015-12-05 08:00:33 +05:30
ctx.Repo.Repository.ComposeMetas()))
repo := ctx.Repo.Repository
2015-09-02 04:37:02 +05:30
// Get more information if it's a pull request.
if issue.IsPull {
if issue.PullRequest.HasMerged {
ctx.Data["DisableStatusChange"] = issue.PullRequest.HasMerged
2015-09-02 18:56:56 +05:30
PrepareMergedViewPullInfo(ctx, issue)
} else {
PrepareViewPullInfo(ctx, issue)
}
2015-09-02 13:38:05 +05:30
if ctx.Written() {
2015-09-02 04:37:02 +05:30
return
}
}
// Metas.
// Check labels.
labelIDMark := make(map[int64]bool)
for i := range issue.Labels {
labelIDMark[issue.Labels[i].ID] = true
}
labels, err := models.GetLabelsByRepoID(repo.ID, "")
if err != nil {
ctx.Handle(500, "GetLabelsByRepoID", err)
return
}
hasSelected := false
for i := range labels {
if labelIDMark[labels[i].ID] {
labels[i].IsChecked = true
hasSelected = true
}
}
ctx.Data["HasSelectedLabel"] = hasSelected
ctx.Data["Labels"] = labels
// Check milestone and assignee.
if ctx.Repo.IsWriter() {
2015-09-02 04:37:02 +05:30
RetrieveRepoMilestonesAndAssignees(ctx, repo)
if ctx.Written() {
return
}
}
if ctx.IsSigned {
2015-08-12 16:14:09 +05:30
// Update issue-user.
2016-07-23 22:38:22 +05:30
if err = issue.ReadBy(ctx.User.ID); err != nil {
ctx.Handle(500, "ReadBy", err)
2015-08-12 16:14:09 +05:30
return
}
}
var (
tag models.CommentTag
ok bool
marked = make(map[int64]models.CommentTag)
comment *models.Comment
2016-02-02 07:25:12 +05:30
participants = make([]*models.User, 1, 10)
)
2016-02-02 07:25:12 +05:30
// Render comments and and fetch participants.
participants[0] = issue.Poster
for _, comment = range issue.Comments {
2016-11-07 22:00:04 +05:30
if comment.Type == models.CommentTypeComment {
2016-02-21 03:40:05 +05:30
comment.RenderedContent = string(markdown.Render([]byte(comment.Content), ctx.Repo.RepoLink,
2015-12-05 08:00:33 +05:30
ctx.Repo.Repository.ComposeMetas()))
// Check tag.
tag, ok = marked[comment.PosterID]
if ok {
comment.ShowTag = tag
continue
}
if repo.IsOwnedBy(comment.PosterID) ||
(repo.Owner.IsOrganization() && repo.Owner.IsOwnedBy(comment.PosterID)) {
2016-11-07 22:05:34 +05:30
comment.ShowTag = models.CommentTagOwner
} else if comment.Poster.IsWriterOfRepo(repo) {
2016-11-07 22:00:04 +05:30
comment.ShowTag = models.CommentTagWriter
} else if comment.PosterID == issue.PosterID {
2016-11-07 22:00:04 +05:30
comment.ShowTag = models.CommentTagPoster
}
marked[comment.PosterID] = comment.ShowTag
2016-01-28 00:41:07 +05:30
isAdded := false
for j := range participants {
if comment.Poster == participants[j] {
2016-01-28 00:41:07 +05:30
isAdded = true
2016-01-20 20:46:39 +05:30
break
}
}
2016-07-23 22:38:22 +05:30
if !isAdded && !issue.IsPoster(comment.Poster.ID) {
participants = append(participants, comment.Poster)
}
} else if comment.Type == models.CommentTypeLabel {
if err = comment.LoadLabel(); err != nil {
ctx.Handle(500, "LoadLabel", err)
return
}
} else if comment.Type == models.CommentTypeMilestone {
if err = comment.LoadMilestone(); err != nil {
ctx.Handle(500, "LoadMilestone", err)
return
}
} else if comment.Type == models.CommentTypeAssignees {
if err = comment.LoadAssignees(); err != nil {
ctx.Handle(500, "LoadAssignees", err)
return
}
2015-08-13 13:37:11 +05:30
}
}
if issue.IsPull {
pull := issue.PullRequest
canDelete := false
if ctx.IsSigned && pull.HeadBranch != "master" {
if err := pull.GetHeadRepo(); err != nil {
log.Error(4, "GetHeadRepo: %v", err)
} else if ctx.User.IsWriterOfRepo(pull.HeadRepo) {
canDelete = true
deleteBranchURL := pull.HeadRepo.Link() + "/branches/" + pull.HeadBranch + "/delete"
ctx.Data["DeleteBranchLink"] = fmt.Sprintf("%s?commit=%s&redirect_to=%s&issue_id=%d",
deleteBranchURL, pull.MergedCommitID, ctx.Data["Link"], issue.ID)
}
}
ctx.Data["IsPullBranchDeletable"] = canDelete && git.IsBranchExist(pull.HeadRepo.RepoPath(), pull.HeadBranch)
}
ctx.Data["Participants"] = participants
2016-02-02 07:25:12 +05:30
ctx.Data["NumParticipants"] = len(participants)
ctx.Data["Issue"] = issue
2016-07-23 22:38:22 +05:30
ctx.Data["IsIssueOwner"] = ctx.Repo.IsWriter() || (ctx.IsSigned && issue.IsPoster(ctx.User.ID))
ctx.Data["SignInLink"] = setting.AppSubURL + "/user/login?redirect_to=" + ctx.Data["Link"].(string)
2016-11-24 12:34:31 +05:30
ctx.HTML(200, tplIssueView)
}
2016-03-11 22:26:52 +05:30
func getActionIssue(ctx *context.Context) *models.Issue {
2015-08-19 20:44:57 +05:30
issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index"))
if err != nil {
if models.IsErrIssueNotExist(err) {
2015-08-19 20:44:57 +05:30
ctx.Error(404, "GetIssueByIndex")
} else {
2015-08-19 20:44:57 +05:30
ctx.Handle(500, "GetIssueByIndex", err)
}
2015-08-19 20:44:57 +05:30
return nil
}
return issue
}
2017-03-15 06:40:35 +05:30
func getActionIssues(ctx *context.Context) []*models.Issue {
commaSeparatedIssueIDs := ctx.Query("issue_ids")
if len(commaSeparatedIssueIDs) == 0 {
return nil
}
issueIDs := make([]int64, 0, 10)
for _, stringIssueID := range strings.Split(commaSeparatedIssueIDs, ",") {
issueID, err := strconv.ParseInt(stringIssueID, 10, 64)
if err != nil {
ctx.Handle(500, "ParseInt", err)
return nil
}
issueIDs = append(issueIDs, issueID)
}
issues, err := models.GetIssuesByIDs(issueIDs)
if err != nil {
ctx.Handle(500, "GetIssuesByIDs", err)
return nil
}
return issues
}
2016-11-24 12:34:31 +05:30
// UpdateIssueTitle change issue's title
2016-03-11 22:26:52 +05:30
func UpdateIssueTitle(ctx *context.Context) {
2015-08-19 20:44:57 +05:30
issue := getActionIssue(ctx)
if ctx.Written() {
return
}
2016-07-23 22:38:22 +05:30
if !ctx.IsSigned || (!issue.IsPoster(ctx.User.ID) && !ctx.Repo.IsWriter()) {
ctx.Error(403)
return
}
title := ctx.QueryTrim("title")
if len(title) == 0 {
2015-08-20 02:01:28 +05:30
ctx.Error(204)
2015-08-19 20:44:57 +05:30
return
}
2015-08-19 20:44:57 +05:30
if err := issue.ChangeTitle(ctx.User, title); err != nil {
ctx.Handle(500, "ChangeTitle", err)
return
}
ctx.JSON(200, map[string]interface{}{
"title": issue.Title,
})
}
2016-11-24 12:34:31 +05:30
// UpdateIssueContent change issue's content
2016-03-11 22:26:52 +05:30
func UpdateIssueContent(ctx *context.Context) {
2015-08-20 02:01:28 +05:30
issue := getActionIssue(ctx)
if ctx.Written() {
return
}
2016-07-23 22:38:22 +05:30
if !ctx.IsSigned || (ctx.User.ID != issue.PosterID && !ctx.Repo.IsWriter()) {
2015-08-20 02:01:28 +05:30
ctx.Error(403)
return
}
content := ctx.Query("content")
if err := issue.ChangeContent(ctx.User, content); err != nil {
ctx.Handle(500, "ChangeContent", err)
2015-08-20 02:01:28 +05:30
return
}
ctx.JSON(200, map[string]interface{}{
2016-02-21 03:40:05 +05:30
"content": string(markdown.Render([]byte(issue.Content), ctx.Query("context"), ctx.Repo.Repository.ComposeMetas())),
2015-08-20 02:01:28 +05:30
})
}
2016-11-24 12:34:31 +05:30
// UpdateIssueMilestone change issue's milestone
2016-03-11 22:26:52 +05:30
func UpdateIssueMilestone(ctx *context.Context) {
2017-03-15 06:40:35 +05:30
issues := getActionIssues(ctx)
if ctx.Written() {
return
}
milestoneID := ctx.QueryInt64("id")
2017-03-15 06:40:35 +05:30
for _, issue := range issues {
oldMilestoneID := issue.MilestoneID
if oldMilestoneID == milestoneID {
continue
}
issue.MilestoneID = milestoneID
if err := models.ChangeMilestoneAssign(issue, ctx.User, oldMilestoneID); err != nil {
ctx.Handle(500, "ChangeMilestoneAssign", err)
return
}
}
ctx.JSON(200, map[string]interface{}{
"ok": true,
})
}
2016-11-24 12:34:31 +05:30
// UpdateIssueAssignee change issue's assignee
2016-03-11 22:26:52 +05:30
func UpdateIssueAssignee(ctx *context.Context) {
2017-03-15 06:40:35 +05:30
issues := getActionIssues(ctx)
if ctx.Written() {
return
}
assigneeID := ctx.QueryInt64("id")
2017-03-15 06:40:35 +05:30
for _, issue := range issues {
if issue.AssigneeID == assigneeID {
continue
}
if err := issue.ChangeAssignee(ctx.User, assigneeID); err != nil {
ctx.Handle(500, "ChangeAssignee", err)
return
}
}
2017-03-15 06:40:35 +05:30
ctx.JSON(200, map[string]interface{}{
"ok": true,
})
}
2017-03-15 06:40:35 +05:30
// UpdateIssueStatus change issue's status
func UpdateIssueStatus(ctx *context.Context) {
issues := getActionIssues(ctx)
if ctx.Written() {
return
}
2017-03-15 06:40:35 +05:30
var isClosed bool
switch action := ctx.Query("action"); action {
case "open":
isClosed = false
case "close":
isClosed = true
default:
log.Warn("Unrecognized action: %s", action)
}
if _, err := models.IssueList(issues).LoadRepositories(); err != nil {
ctx.Handle(500, "LoadRepositories", err)
return
}
for _, issue := range issues {
if err := issue.ChangeStatus(ctx.User, issue.Repo, isClosed); err != nil {
ctx.Handle(500, "ChangeStatus", err)
return
}
}
ctx.JSON(200, map[string]interface{}{
"ok": true,
})
}
2016-11-24 12:34:31 +05:30
// NewComment create a comment for issue
2016-03-11 22:26:52 +05:30
func NewComment(ctx *context.Context, form auth.CreateCommentForm) {
2015-08-13 13:37:11 +05:30
issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index"))
if err != nil {
2016-08-30 14:38:38 +05:30
ctx.NotFoundOrServerError("GetIssueByIndex", models.IsErrIssueNotExist, err)
return
}
2015-08-13 13:37:11 +05:30
var attachments []string
if setting.AttachmentEnabled {
Squashed commit of the following: commit 0afcb843d7ffd596991c4885cab768273a6eb42c Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 17:13:29 2016 -0600 Removed Upload stats as the upload table is just a temporary table commit 7ecd73ff5535612d79d471409173ee7f1fcfa157 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 08:42:41 2016 -0600 Fix for CodeMirror mode commit c29b9ab531e2e7af0fb5db24dc17e51027dd1174 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 08:03:33 2016 -0600 Made tabbing in editor use spaces commit 23af384c53206a8a40e11e45bf49d7a149c4adcd Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:56:46 2016 -0600 Fix for data-url commit cfb8a97591cb6fc0a92e49563b7b764c524db0e9 Merge: 7fc8a89 991ce42 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:42:53 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go public/js/gogs.js commit 7fc8a89cb495478225b02d613e647f99a1489634 Merge: fd3d86c c03d040 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:40:00 2016 -0600 Merge branch 'feature-create-and-edit-repo-file' of github.com:richmahn/gogs into feature-create-and-edit-repo-file commit fd3d86ca6bbc02cfda566a504ffd6b03db4f75ef Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:39:44 2016 -0600 Code cleanup commit c03d0401c1049eeeccc32ab1f9c3303c130be5ee Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 29 15:38:23 2016 -0600 Code cleanup commit 98e1206ccf9f9a4503c020e3a7830cf9f861dfae Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Thu Jul 28 18:36:01 2016 -0600 Code cleanup and fixes commit c2895dc742f25f8412879c9fa15e18f27f42f194 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Thu Jul 28 18:24:04 2016 -0600 Fixes per Unknwon's requests commit 6aa7e46b21ad4c96e562daa2eac26a8fb408f8ef Merge: 889e9fa ad7ea88 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Thu Jul 28 17:13:43 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go modules/setting/setting.go commit 889e9faf1bd8559a4979c8f46005d488c1a234d4 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 22 14:09:18 2016 -0600 Fix in gogs.js commit 47603edf223f147b114be65f3bd27bc1e88827a5 Merge: bb57912 cf85e9e Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 22 14:07:36 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go public/js/gogs.js commit bb5791255867a71c11a77b639db050ad09c597a4 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 22 14:02:18 2016 -0600 Update for using CodeMirror mode addon commit d10d128c51039be19e2af9c66c63db66a9f2ec6d Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Tue Jul 19 16:12:57 2016 -0600 Update for Edit commit 34a34982025144e3225e389f7849eb6273c1d576 Merge: fa1b752 1c7dcdd Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Tue Jul 19 11:52:02 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go commit fa1b752be29cd455c5184ddac2ffe80b3489763e Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 15 18:35:42 2016 -0600 Feature for editing, creating, uploading and deleting files
2016-08-11 18:18:08 +05:30
attachments = form.Files
}
2015-08-13 13:37:11 +05:30
if ctx.HasError() {
ctx.Flash.Error(ctx.Data["ErrorMsg"].(string))
ctx.Redirect(fmt.Sprintf("%s/issues/%d", ctx.Repo.RepoLink, issue.Index))
return
}
var comment *models.Comment
2015-09-13 20:56:25 +05:30
defer func() {
2015-11-01 04:29:07 +05:30
// Check if issue admin/poster changes the status of issue.
2016-07-23 22:38:22 +05:30
if (ctx.Repo.IsWriter() || (ctx.IsSigned && issue.IsPoster(ctx.User.ID))) &&
2015-09-13 20:56:25 +05:30
(form.Status == "reopen" || form.Status == "close") &&
!(issue.IsPull && issue.PullRequest.HasMerged) {
2015-10-25 12:40:22 +05:30
// Duplication and conflict check should apply to reopen pull request.
var pr *models.PullRequest
2015-10-23 20:01:13 +05:30
if form.Status == "reopen" && issue.IsPull {
pull := issue.PullRequest
pr, err = models.GetUnmergedPullRequest(pull.HeadRepoID, pull.BaseRepoID, pull.HeadBranch, pull.BaseBranch)
if err != nil {
if !models.IsErrPullRequestNotExist(err) {
ctx.Handle(500, "GetUnmergedPullRequest", err)
return
}
}
2015-10-25 12:40:22 +05:30
// Regenerate patch and test conflict.
if pr == nil {
if err = issue.PullRequest.UpdatePatch(); err != nil {
2015-10-25 12:40:22 +05:30
ctx.Handle(500, "UpdatePatch", err)
return
}
issue.PullRequest.AddToTaskQueue()
2015-10-25 12:40:22 +05:30
}
}
if pr != nil {
ctx.Flash.Info(ctx.Tr("repo.pulls.open_unmerged_pull_exists", pr.Index))
2015-09-13 20:56:25 +05:30
} else {
if err = issue.ChangeStatus(ctx.User, ctx.Repo.Repository, form.Status == "close"); err != nil {
log.Error(4, "ChangeStatus: %v", err)
} else {
log.Trace("Issue [%d] status changed to closed: %v", issue.ID, issue.IsClosed)
notification.Service.NotifyIssue(issue, ctx.User.ID)
}
2015-09-13 20:56:25 +05:30
}
}
// Redirect to comment hashtag if there is any actual content.
typeName := "issues"
if issue.IsPull {
typeName = "pulls"
}
if comment != nil {
ctx.Redirect(fmt.Sprintf("%s/%s/%d#%s", ctx.Repo.RepoLink, typeName, issue.Index, comment.HashTag()))
} else {
ctx.Redirect(fmt.Sprintf("%s/%s/%d", ctx.Repo.RepoLink, typeName, issue.Index))
}
2015-09-13 20:56:25 +05:30
}()
2015-08-13 13:37:11 +05:30
// Fix #321: Allow empty comments, as long as we have attachments.
if len(form.Content) == 0 && len(attachments) == 0 {
return
}
comment, err = models.CreateIssueComment(ctx.User, ctx.Repo.Repository, issue, form.Content, attachments)
2015-08-13 13:37:11 +05:30
if err != nil {
ctx.Handle(500, "CreateIssueComment", err)
return
}
notification.Service.NotifyIssue(issue, ctx.User.ID)
2015-08-13 13:37:11 +05:30
log.Trace("Comment created: %d/%d/%d", ctx.Repo.Repository.ID, issue.ID, comment.ID)
}
2016-11-24 12:34:31 +05:30
// UpdateCommentContent change comment of issue's content
2016-03-11 22:26:52 +05:30
func UpdateCommentContent(ctx *context.Context) {
2015-08-20 02:01:28 +05:30
comment, err := models.GetCommentByID(ctx.ParamsInt64(":id"))
if err != nil {
2016-08-30 14:38:38 +05:30
ctx.NotFoundOrServerError("GetCommentByID", models.IsErrCommentNotExist, err)
2015-08-20 02:01:28 +05:30
return
}
2016-07-23 22:38:22 +05:30
if !ctx.IsSigned || (ctx.User.ID != comment.PosterID && !ctx.Repo.IsAdmin()) {
2015-08-20 02:01:28 +05:30
ctx.Error(403)
return
2016-11-07 22:00:04 +05:30
} else if comment.Type != models.CommentTypeComment {
2015-08-20 02:01:28 +05:30
ctx.Error(204)
return
}
comment.Content = ctx.Query("content")
if len(comment.Content) == 0 {
ctx.JSON(200, map[string]interface{}{
"content": "",
})
return
}
2016-07-26 00:18:17 +05:30
if err = models.UpdateComment(comment); err != nil {
2015-08-20 02:01:28 +05:30
ctx.Handle(500, "UpdateComment", err)
return
}
ctx.JSON(200, map[string]interface{}{
2016-02-21 03:40:05 +05:30
"content": string(markdown.Render([]byte(comment.Content), ctx.Query("context"), ctx.Repo.Repository.ComposeMetas())),
2015-08-20 02:01:28 +05:30
})
}
2016-11-24 12:34:31 +05:30
// DeleteComment delete comment of issue
2016-07-26 00:18:17 +05:30
func DeleteComment(ctx *context.Context) {
comment, err := models.GetCommentByID(ctx.ParamsInt64(":id"))
if err != nil {
2016-08-30 14:38:38 +05:30
ctx.NotFoundOrServerError("GetCommentByID", models.IsErrCommentNotExist, err)
2016-07-26 00:18:17 +05:30
return
}
if !ctx.IsSigned || (ctx.User.ID != comment.PosterID && !ctx.Repo.IsAdmin()) {
ctx.Error(403)
return
2016-11-07 22:00:04 +05:30
} else if comment.Type != models.CommentTypeComment {
2016-07-26 00:18:17 +05:30
ctx.Error(204)
return
}
2017-01-25 08:13:02 +05:30
if err = models.DeleteComment(comment); err != nil {
2016-07-26 00:18:17 +05:30
ctx.Handle(500, "DeleteCommentByID", err)
return
}
ctx.Status(200)
}
2016-11-24 12:34:31 +05:30
// Milestones render milestones page
2016-03-11 22:26:52 +05:30
func Milestones(ctx *context.Context) {
MustEnableIssues(ctx)
if ctx.Written() {
return
}
2015-08-03 15:12:09 +05:30
ctx.Data["Title"] = ctx.Tr("repo.milestones")
2015-12-03 07:26:26 +05:30
ctx.Data["PageIsIssueList"] = true
2015-08-03 15:12:09 +05:30
ctx.Data["PageIsMilestones"] = true
isShowClosed := ctx.Query("state") == "closed"
2015-08-08 20:13:14 +05:30
openCount, closedCount := models.MilestoneStats(ctx.Repo.Repository.ID)
2015-08-04 19:54:04 +05:30
ctx.Data["OpenCount"] = openCount
ctx.Data["ClosedCount"] = closedCount
sortType := ctx.Query("sort")
2015-08-04 19:54:04 +05:30
page := ctx.QueryInt("page")
if page <= 1 {
page = 1
}
var total int
if !isShowClosed {
total = int(openCount)
} else {
total = int(closedCount)
}
2016-07-23 21:53:54 +05:30
ctx.Data["Page"] = paginater.New(total, setting.UI.IssuePagingNum, page, 5)
miles, err := models.GetMilestones(ctx.Repo.Repository.ID, page, isShowClosed, sortType)
if err != nil {
2015-07-30 17:30:57 +05:30
ctx.Handle(500, "GetMilestones", err)
return
}
for _, m := range miles {
2016-02-21 03:40:05 +05:30
m.RenderedContent = string(markdown.Render([]byte(m.Content), ctx.Repo.RepoLink, ctx.Repo.Repository.ComposeMetas()))
}
ctx.Data["Milestones"] = miles
if isShowClosed {
ctx.Data["State"] = "closed"
} else {
ctx.Data["State"] = "open"
}
2015-08-03 15:12:09 +05:30
ctx.Data["SortType"] = sortType
2015-08-03 15:12:09 +05:30
ctx.Data["IsShowClosed"] = isShowClosed
2016-11-24 12:34:31 +05:30
ctx.HTML(200, tplMilestone)
}
2016-11-24 12:34:31 +05:30
// NewMilestone render creating milestone page
2016-03-11 22:26:52 +05:30
func NewMilestone(ctx *context.Context) {
2015-08-05 12:54:26 +05:30
ctx.Data["Title"] = ctx.Tr("repo.milestones.new")
2015-12-03 07:26:26 +05:30
ctx.Data["PageIsIssueList"] = true
2015-08-05 12:54:26 +05:30
ctx.Data["PageIsMilestones"] = true
2015-08-11 15:24:00 +05:30
ctx.Data["RequireDatetimepicker"] = true
2015-08-05 12:54:26 +05:30
ctx.Data["DateLang"] = setting.DateLang(ctx.Locale.Language())
2016-11-24 12:34:31 +05:30
ctx.HTML(200, tplMilestoneNew)
}
2016-11-24 12:34:31 +05:30
// NewMilestonePost response for creating milestone
2016-03-11 22:26:52 +05:30
func NewMilestonePost(ctx *context.Context, form auth.CreateMilestoneForm) {
2015-08-05 12:54:26 +05:30
ctx.Data["Title"] = ctx.Tr("repo.milestones.new")
2015-12-03 07:26:26 +05:30
ctx.Data["PageIsIssueList"] = true
2015-08-05 12:54:26 +05:30
ctx.Data["PageIsMilestones"] = true
2015-08-11 15:24:00 +05:30
ctx.Data["RequireDatetimepicker"] = true
2015-08-05 12:54:26 +05:30
ctx.Data["DateLang"] = setting.DateLang(ctx.Locale.Language())
if ctx.HasError() {
2016-11-24 12:34:31 +05:30
ctx.HTML(200, tplMilestoneNew)
return
}
if len(form.Deadline) == 0 {
2015-08-05 18:07:14 +05:30
form.Deadline = "9999-12-31"
}
2016-02-06 04:40:32 +05:30
deadline, err := time.ParseInLocation("2006-01-02", form.Deadline, time.Local)
if err != nil {
2015-08-05 12:54:26 +05:30
ctx.Data["Err_Deadline"] = true
2016-11-24 12:34:31 +05:30
ctx.RenderWithErr(ctx.Tr("repo.milestones.invalid_due_date_format"), tplMilestoneNew, &form)
return
}
2015-08-05 12:54:26 +05:30
if err = models.NewMilestone(&models.Milestone{
2015-08-08 20:13:14 +05:30
RepoID: ctx.Repo.Repository.ID,
Name: form.Title,
Content: form.Content,
Deadline: deadline,
2015-08-05 12:54:26 +05:30
}); err != nil {
2015-07-30 17:30:57 +05:30
ctx.Handle(500, "NewMilestone", err)
return
}
2015-08-05 12:54:26 +05:30
ctx.Flash.Success(ctx.Tr("repo.milestones.create_success", form.Title))
2015-07-30 17:30:57 +05:30
ctx.Redirect(ctx.Repo.RepoLink + "/milestones")
}
2016-11-24 12:34:31 +05:30
// EditMilestone render edting milestone page
2016-03-11 22:26:52 +05:30
func EditMilestone(ctx *context.Context) {
2015-08-05 15:56:18 +05:30
ctx.Data["Title"] = ctx.Tr("repo.milestones.edit")
ctx.Data["PageIsMilestones"] = true
ctx.Data["PageIsEditMilestone"] = true
2015-08-11 15:24:00 +05:30
ctx.Data["RequireDatetimepicker"] = true
2015-08-05 15:56:18 +05:30
ctx.Data["DateLang"] = setting.DateLang(ctx.Locale.Language())
2016-08-25 04:35:56 +05:30
m, err := models.GetMilestoneByRepoID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id"))
2015-08-05 15:56:18 +05:30
if err != nil {
if models.IsErrMilestoneNotExist(err) {
2016-08-25 04:35:56 +05:30
ctx.Handle(404, "", nil)
2015-08-05 15:56:18 +05:30
} else {
2016-08-25 04:35:56 +05:30
ctx.Handle(500, "GetMilestoneByRepoID", err)
2015-08-05 15:56:18 +05:30
}
return
}
ctx.Data["title"] = m.Name
ctx.Data["content"] = m.Content
if len(m.DeadlineString) > 0 {
ctx.Data["deadline"] = m.DeadlineString
}
2016-11-24 12:34:31 +05:30
ctx.HTML(200, tplMilestoneNew)
2015-08-05 15:56:18 +05:30
}
2016-11-24 12:34:31 +05:30
// EditMilestonePost response for edting milestone
2016-03-11 22:26:52 +05:30
func EditMilestonePost(ctx *context.Context, form auth.CreateMilestoneForm) {
2015-08-05 15:56:18 +05:30
ctx.Data["Title"] = ctx.Tr("repo.milestones.edit")
ctx.Data["PageIsMilestones"] = true
ctx.Data["PageIsEditMilestone"] = true
2015-08-11 15:24:00 +05:30
ctx.Data["RequireDatetimepicker"] = true
2015-08-05 15:56:18 +05:30
ctx.Data["DateLang"] = setting.DateLang(ctx.Locale.Language())
if ctx.HasError() {
2016-11-24 12:34:31 +05:30
ctx.HTML(200, tplMilestoneNew)
2015-08-05 15:56:18 +05:30
return
}
if len(form.Deadline) == 0 {
form.Deadline = "9999-12-31"
}
2016-02-06 04:40:32 +05:30
deadline, err := time.ParseInLocation("2006-01-02", form.Deadline, time.Local)
2015-08-05 15:56:18 +05:30
if err != nil {
ctx.Data["Err_Deadline"] = true
2016-11-24 12:34:31 +05:30
ctx.RenderWithErr(ctx.Tr("repo.milestones.invalid_due_date_format"), tplMilestoneNew, &form)
2015-08-05 15:56:18 +05:30
return
}
2016-08-25 04:35:56 +05:30
m, err := models.GetMilestoneByRepoID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id"))
2015-08-05 15:56:18 +05:30
if err != nil {
if models.IsErrMilestoneNotExist(err) {
2016-08-25 04:35:56 +05:30
ctx.Handle(404, "", nil)
2015-08-05 15:56:18 +05:30
} else {
2016-08-25 04:35:56 +05:30
ctx.Handle(500, "GetMilestoneByRepoID", err)
2015-08-05 15:56:18 +05:30
}
return
}
m.Name = form.Title
m.Content = form.Content
m.Deadline = deadline
if err = models.UpdateMilestone(m); err != nil {
ctx.Handle(500, "UpdateMilestone", err)
return
}
ctx.Flash.Success(ctx.Tr("repo.milestones.edit_success", m.Name))
ctx.Redirect(ctx.Repo.RepoLink + "/milestones")
}
2015-08-04 19:54:04 +05:30
2016-11-24 12:34:31 +05:30
// ChangeMilestonStatus response for change a milestone's status
2016-03-11 22:26:52 +05:30
func ChangeMilestonStatus(ctx *context.Context) {
2016-08-25 04:35:56 +05:30
m, err := models.GetMilestoneByRepoID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id"))
if err != nil {
2015-08-05 15:56:18 +05:30
if models.IsErrMilestoneNotExist(err) {
2016-08-25 04:35:56 +05:30
ctx.Handle(404, "", err)
} else {
2016-08-25 04:35:56 +05:30
ctx.Handle(500, "GetMilestoneByRepoID", err)
}
return
}
2015-08-05 17:53:08 +05:30
switch ctx.Params(":action") {
case "open":
if m.IsClosed {
if err = models.ChangeMilestoneStatus(m, false); err != nil {
ctx.Handle(500, "ChangeMilestoneStatus", err)
return
}
2015-08-05 17:53:08 +05:30
}
ctx.Redirect(ctx.Repo.RepoLink + "/milestones?state=open")
case "close":
if !m.IsClosed {
m.ClosedDate = time.Now()
if err = models.ChangeMilestoneStatus(m, true); err != nil {
ctx.Handle(500, "ChangeMilestoneStatus", err)
return
}
}
2015-08-05 17:53:08 +05:30
ctx.Redirect(ctx.Repo.RepoLink + "/milestones?state=closed")
default:
2015-07-30 17:30:57 +05:30
ctx.Redirect(ctx.Repo.RepoLink + "/milestones")
}
}
2016-11-24 12:34:31 +05:30
// DeleteMilestone delete a milestone
2016-03-11 22:26:52 +05:30
func DeleteMilestone(ctx *context.Context) {
2016-08-25 04:35:56 +05:30
if err := models.DeleteMilestoneByRepoID(ctx.Repo.Repository.ID, ctx.QueryInt64("id")); err != nil {
ctx.Flash.Error("DeleteMilestoneByRepoID: " + err.Error())
2015-08-05 17:53:08 +05:30
} else {
ctx.Flash.Success(ctx.Tr("repo.milestones.deletion_success"))
}
2015-08-05 17:53:08 +05:30
ctx.JSON(200, map[string]interface{}{
"redirect": ctx.Repo.RepoLink + "/milestones",
})
}