| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249 | // 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 repoimport (	"errors"	"fmt"	"io"	"io/ioutil"	"net/http"	"net/url"	"strings"	"time"	"github.com/Unknwon/com"	"github.com/Unknwon/paginater"	"github.com/gogits/gogs/models"	"github.com/gogits/gogs/modules/auth"	"github.com/gogits/gogs/modules/base"	"github.com/gogits/gogs/modules/context"	"github.com/gogits/gogs/modules/log"	"github.com/gogits/gogs/modules/mailer"	"github.com/gogits/gogs/modules/markdown"	"github.com/gogits/gogs/modules/setting")const (	ISSUES     base.TplName = "repo/issue/list"	ISSUE_NEW  base.TplName = "repo/issue/new"	ISSUE_VIEW base.TplName = "repo/issue/view"	LABELS base.TplName = "repo/issue/labels"	MILESTONE      base.TplName = "repo/issue/milestones"	MILESTONE_NEW  base.TplName = "repo/issue/milestone_new"	MILESTONE_EDIT base.TplName = "repo/issue/milestone_edit"	ISSUE_TEMPLATE_KEY = "IssueTemplate")var (	ErrFileTypeForbidden = errors.New("File type is not allowed")	ErrTooManyFiles      = errors.New("Maximum number of files to upload exceeded")	IssueTemplateCandidates = []string{		"ISSUE_TEMPLATE.md",		".gogs/ISSUE_TEMPLATE.md",		".github/ISSUE_TEMPLATE.md",	})func MustEnableIssues(ctx *context.Context) {	if !ctx.Repo.Repository.EnableIssues {		ctx.Handle(404, "MustEnableIssues", nil)		return	}}func MustAllowPulls(ctx *context.Context) {	if !ctx.Repo.Repository.AllowsPulls() {		ctx.Handle(404, "MustAllowPulls", nil)		return	}	// 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	}}func RetrieveLabels(ctx *context.Context) {	labels, err := models.GetLabelsByRepoID(ctx.Repo.Repository.ID)	if err != nil {		ctx.Handle(500, "RetrieveLabels.GetLabels: %v", err)		return	}	for _, l := range labels {		l.CalOpenIssues()	}	ctx.Data["Labels"] = labels	ctx.Data["NumLabels"] = len(labels)}func Issues(ctx *context.Context) {	isPullList := ctx.Params(":type") == "pulls"	if isPullList {		MustAllowPulls(ctx)		if ctx.Written() {			return		}		ctx.Data["Title"] = ctx.Tr("repo.pulls")		ctx.Data["PageIsPullList"] = true	} else {		MustEnableIssues(ctx)		if ctx.Written() {			return		}		ctx.Data["Title"] = ctx.Tr("repo.issues")		ctx.Data["PageIsIssueList"] = true	}	viewType := ctx.Query("type")	sortType := ctx.Query("sort")	types := []string{"assigned", "created_by", "mentioned"}	if !com.IsSliceContainsStr(types, viewType) {		viewType = "all"	}	// Must sign in to see issues about you.	if viewType != "all" && !ctx.IsSigned {		ctx.SetCookie("redirect_to", "/"+url.QueryEscape(setting.AppSubUrl+ctx.Req.RequestURI), 0, setting.AppSubUrl)		ctx.Redirect(setting.AppSubUrl + "/user/login")		return	}	var (		assigneeID = ctx.QueryInt64("assignee")		posterID   int64	)	filterMode := models.FM_ALL	switch viewType {	case "assigned":		filterMode = models.FM_ASSIGN		assigneeID = ctx.User.Id	case "created_by":		filterMode = models.FM_CREATE		posterID = ctx.User.Id	case "mentioned":		filterMode = models.FM_MENTION	}	var uid int64 = -1	if ctx.IsSigned {		uid = ctx.User.Id	}	repo := ctx.Repo.Repository	selectLabels := ctx.Query("labels")	milestoneID := ctx.QueryInt64("milestone")	isShowClosed := ctx.Query("state") == "closed"	issueStats := models.GetIssueStats(&models.IssueStatsOptions{		RepoID:      repo.ID,		UserID:      uid,		Labels:      selectLabels,		MilestoneID: milestoneID,		AssigneeID:  assigneeID,		FilterMode:  filterMode,		IsPull:      isPullList,	})	page := ctx.QueryInt("page")	if page <= 1 {		page = 1	}	var total int	if !isShowClosed {		total = int(issueStats.OpenCount)	} else {		total = int(issueStats.ClosedCount)	}	pager := paginater.New(total, setting.IssuePagingNum, page, 5)	ctx.Data["Page"] = pager	// Get issues.	issues, err := models.Issues(&models.IssuesOptions{		UserID:      uid,		AssigneeID:  assigneeID,		RepoID:      repo.ID,		PosterID:    posterID,		MilestoneID: milestoneID,		Page:        pager.Current(),		IsClosed:    isShowClosed,		IsMention:   filterMode == models.FM_MENTION,		IsPull:      isPullList,		Labels:      selectLabels,		SortType:    sortType,	})	if err != nil {		ctx.Handle(500, "Issues: %v", err)		return	}	// Get issue-user relations.	pairs, err := models.GetIssueUsers(repo.ID, posterID, isShowClosed)	if err != nil {		ctx.Handle(500, "GetIssueUsers: %v", err)		return	}	// Get posters.	for i := range issues {		if !ctx.IsSigned {			issues[i].IsRead = true			continue		}		// Check read status.		idx := models.PairsContains(pairs, issues[i].ID, ctx.User.Id)		if idx > -1 {			issues[i].IsRead = pairs[idx].IsRead		} else {			issues[i].IsRead = true		}	}	ctx.Data["Issues"] = issues	// Get milestones.	ctx.Data["Milestones"], err = models.GetAllRepoMilestones(repo.ID)	if err != nil {		ctx.Handle(500, "GetAllRepoMilestones: %v", err)		return	}	// Get assignees.	ctx.Data["Assignees"], err = repo.GetAssignees()	if err != nil {		ctx.Handle(500, "GetAssignees: %v", err)		return	}	ctx.Data["IssueStats"] = issueStats	ctx.Data["SelectLabels"] = com.StrTo(selectLabels).MustInt64()	ctx.Data["ViewType"] = viewType	ctx.Data["SortType"] = sortType	ctx.Data["MilestoneID"] = milestoneID	ctx.Data["AssigneeID"] = assigneeID	ctx.Data["IsShowClosed"] = isShowClosed	if isShowClosed {		ctx.Data["State"] = "closed"	} else {		ctx.Data["State"] = "open"	}	ctx.HTML(200, ISSUES)}func renderAttachmentSettings(ctx *context.Context) {	ctx.Data["RequireDropzone"] = true	ctx.Data["IsAttachmentEnabled"] = setting.AttachmentEnabled	ctx.Data["AttachmentAllowedTypes"] = setting.AttachmentAllowedTypes	ctx.Data["AttachmentMaxSize"] = setting.AttachmentMaxSize	ctx.Data["AttachmentMaxFiles"] = setting.AttachmentMaxFiles}func RetrieveRepoMilestonesAndAssignees(ctx *context.Context, repo *models.Repository) {	var err error	ctx.Data["OpenMilestones"], err = models.GetMilestones(repo.ID, -1, false)	if err != nil {		ctx.Handle(500, "GetMilestones: %v", err)		return	}	ctx.Data["ClosedMilestones"], err = models.GetMilestones(repo.ID, -1, true)	if err != nil {		ctx.Handle(500, "GetMilestones: %v", err)		return	}	ctx.Data["Assignees"], err = repo.GetAssignees()	if err != nil {		ctx.Handle(500, "GetAssignees: %v", err)		return	}}func RetrieveRepoMetas(ctx *context.Context, repo *models.Repository) []*models.Label {	if !ctx.Repo.IsWriter() {		return nil	}	labels, err := models.GetLabelsByRepoID(repo.ID)	if err != nil {		ctx.Handle(500, "GetLabelsByRepoID: %v", err)		return nil	}	ctx.Data["Labels"] = labels	RetrieveRepoMilestonesAndAssignees(ctx, repo)	if ctx.Written() {		return nil	}	return labels}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}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		}	}}func NewIssue(ctx *context.Context) {	ctx.Data["Title"] = ctx.Tr("repo.issues.new")	ctx.Data["PageIsIssueList"] = true	setTemplateIfExists(ctx, ISSUE_TEMPLATE_KEY, IssueTemplateCandidates)	renderAttachmentSettings(ctx)	RetrieveRepoMetas(ctx, ctx.Repo.Repository)	if ctx.Written() {		return	}	ctx.Data["RequireHighlightJS"] = true	ctx.HTML(200, ISSUE_NEW)}func ValidateRepoMetas(ctx *context.Context, form auth.CreateIssueForm) ([]int64, int64, int64) {	var (		repo = ctx.Repo.Repository		err  error	)	labels := RetrieveRepoMetas(ctx, ctx.Repo.Repository)	if ctx.Written() {		return nil, 0, 0	}	if !ctx.Repo.IsWriter() {		return nil, 0, 0	}	// Check labels.	labelIDs := base.StringsToInt64s(strings.Split(form.LabelIDs, ","))	labelIDMark := base.Int64sToMap(labelIDs)	hasSelected := false	for i := range labels {		if labelIDMark[labels[i].ID] {			labels[i].IsChecked = true			hasSelected = true		}	}	ctx.Data["HasSelectedLabel"] = hasSelected	ctx.Data["label_ids"] = form.LabelIDs	ctx.Data["Labels"] = labels	// Check milestone.	milestoneID := form.MilestoneID	if milestoneID > 0 {		ctx.Data["Milestone"], err = repo.GetMilestoneByID(milestoneID)		if err != nil {			ctx.Handle(500, "GetMilestoneByID: %v", err)			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: %v", err)			return nil, 0, 0		}		ctx.Data["assignee_id"] = assigneeID	}	return labelIDs, milestoneID, assigneeID}func MailWatchersAndMentions(ctx *context.Context, issue *models.Issue) error {	// Update mentions	mentions := markdown.MentionPattern.FindAllString(issue.Content, -1)	if len(mentions) > 0 {		for i := range mentions {			mentions[i] = strings.TrimSpace(mentions[i])[1:]		}		if err := models.UpdateMentions(mentions, issue.ID); err != nil {			return fmt.Errorf("UpdateMentions: %v", err)		}	}	repo := ctx.Repo.Repository	// Mail watchers and mentions.	if setting.Service.EnableNotifyMail {		tos, err := mailer.SendIssueNotifyMail(ctx.User, ctx.Repo.Owner, repo, issue)		if err != nil {			return fmt.Errorf("SendIssueNotifyMail: %v", err)		}		tos = append(tos, ctx.User.LowerName)		newTos := make([]string, 0, len(mentions))		for _, m := range mentions {			if com.IsSliceContainsStr(tos, m) {				continue			}			newTos = append(newTos, m)		}		if err = mailer.SendIssueMentionMail(ctx.Render, ctx.User, ctx.Repo.Owner,			repo, issue, models.GetUserEmailsByNames(newTos)); err != nil {			return fmt.Errorf("SendIssueMentionMail: %v", err)		}	}	return nil}func NewIssuePost(ctx *context.Context, form auth.CreateIssueForm) {	ctx.Data["Title"] = ctx.Tr("repo.issues.new")	ctx.Data["PageIsIssueList"] = true	renderAttachmentSettings(ctx)	var (		repo        = ctx.Repo.Repository		attachments []string	)	labelIDs, milestoneID, assigneeID := ValidateRepoMetas(ctx, form)	if ctx.Written() {		return	}	if setting.AttachmentEnabled {		attachments = form.Attachments	}	if ctx.HasError() {		ctx.HTML(200, ISSUE_NEW)		return	}	issue := &models.Issue{		RepoID:      repo.ID,		Name:        form.Title,		PosterID:    ctx.User.Id,		Poster:      ctx.User,		MilestoneID: milestoneID,		AssigneeID:  assigneeID,		Content:     form.Content,	}	if err := models.NewIssue(repo, issue, labelIDs, attachments); err != nil {		ctx.Handle(500, "NewIssue", err)		return	} else if err := MailWatchersAndMentions(ctx, issue); err != nil {		ctx.Handle(500, "MailWatchersAndMentions", err)		return	}	log.Trace("Issue created: %d/%d", repo.ID, issue.ID)	ctx.Redirect(ctx.Repo.RepoLink + "/issues/" + com.ToStr(issue.Index))}func UploadIssueAttachment(ctx *context.Context) {	if !setting.AttachmentEnabled {		ctx.Error(404, "attachment is not enabled")		return	}	allowedTypes := strings.Split(setting.AttachmentAllowedTypes, ",")	file, header, err := ctx.Req.FormFile("file")	if err != nil {		ctx.Error(500, fmt.Sprintf("FormFile: %v", err))		return	}	defer file.Close()	buf := make([]byte, 1024)	n, _ := file.Read(buf)	if n > 0 {		buf = buf[:n]	}	fileType := http.DetectContentType(buf)	allowed := false	for _, t := range allowedTypes {		t := strings.Trim(t, " ")		if t == "*/*" || t == fileType {			allowed = true			break		}	}	if !allowed {		ctx.Error(400, ErrFileTypeForbidden.Error())		return	}	attach, err := models.NewAttachment(header.Filename, buf, file)	if err != nil {		ctx.Error(500, fmt.Sprintf("NewAttachment: %v", err))		return	}	log.Trace("New attachment uploaded: %s", attach.UUID)	ctx.JSON(200, map[string]string{		"uuid": attach.UUID,	})}func ViewIssue(ctx *context.Context) {	ctx.Data["RequireDropzone"] = true	renderAttachmentSettings(ctx)	issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index"))	if err != nil {		if models.IsErrIssueNotExist(err) {			ctx.Handle(404, "GetIssueByIndex", err)		} else {			ctx.Handle(500, "GetIssueByIndex", err)		}		return	}	ctx.Data["Title"] = issue.Name	// 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	}	if issue.IsPull {		MustAllowPulls(ctx)		if ctx.Written() {			return		}		ctx.Data["PageIsPullList"] = true		if err = issue.GetPullRequest(); err != nil {			ctx.Handle(500, "GetPullRequest", err)			return		}		ctx.Data["PageIsPullConversation"] = true	} else {		MustEnableIssues(ctx)		if ctx.Written() {			return		}		ctx.Data["PageIsIssueList"] = true	}	issue.RenderedContent = string(markdown.Render([]byte(issue.Content), ctx.Repo.RepoLink,		ctx.Repo.Repository.ComposeMetas()))	repo := ctx.Repo.Repository	// Get more information if it's a pull request.	if issue.IsPull {		if issue.HasMerged {			ctx.Data["DisableStatusChange"] = issue.HasMerged			PrepareMergedViewPullInfo(ctx, issue)		} else {			PrepareViewPullInfo(ctx, issue)		}		if ctx.Written() {			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: %v", 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() {		RetrieveRepoMilestonesAndAssignees(ctx, repo)		if ctx.Written() {			return		}	}	if ctx.IsSigned {		// Update issue-user.		if err = issue.ReadBy(ctx.User.Id); err != nil {			ctx.Handle(500, "ReadBy", err)			return		}	}	var (		tag          models.CommentTag		ok           bool		marked       = make(map[int64]models.CommentTag)		comment      *models.Comment		participants = make([]*models.User, 1, 10)	)	// Render comments and and fetch participants.	participants[0] = issue.Poster	for _, comment = range issue.Comments {		if comment.Type == models.COMMENT_TYPE_COMMENT {			comment.RenderedContent = string(markdown.Render([]byte(comment.Content), ctx.Repo.RepoLink,				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)) {				comment.ShowTag = models.COMMENT_TAG_OWNER			} else if comment.Poster.IsWriterOfRepo(repo) {				comment.ShowTag = models.COMMENT_TAG_WRITER			} else if comment.PosterID == issue.PosterID {				comment.ShowTag = models.COMMENT_TAG_POSTER			}			marked[comment.PosterID] = comment.ShowTag			isAdded := false			for j := range participants {				if comment.Poster == participants[j] {					isAdded = true					break				}			}			if !isAdded && !issue.IsPoster(comment.Poster.Id) {				participants = append(participants, comment.Poster)			}		}	}	ctx.Data["Participants"] = participants	ctx.Data["NumParticipants"] = len(participants)	ctx.Data["Issue"] = issue	ctx.Data["IsIssueOwner"] = ctx.Repo.IsWriter() || (ctx.IsSigned && issue.IsPoster(ctx.User.Id))	ctx.Data["SignInLink"] = setting.AppSubUrl + "/user/login"	ctx.Data["RequireHighlightJS"] = true	ctx.HTML(200, ISSUE_VIEW)}func getActionIssue(ctx *context.Context) *models.Issue {	issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index"))	if err != nil {		if models.IsErrIssueNotExist(err) {			ctx.Error(404, "GetIssueByIndex")		} else {			ctx.Handle(500, "GetIssueByIndex", err)		}		return nil	}	return issue}func UpdateIssueTitle(ctx *context.Context) {	issue := getActionIssue(ctx)	if ctx.Written() {		return	}	if !ctx.IsSigned || (!issue.IsPoster(ctx.User.Id) && !ctx.Repo.IsWriter()) {		ctx.Error(403)		return	}	issue.Name = ctx.QueryTrim("title")	if len(issue.Name) == 0 {		ctx.Error(204)		return	}	if err := models.UpdateIssue(issue); err != nil {		ctx.Handle(500, "UpdateIssue", err)		return	}	ctx.JSON(200, map[string]interface{}{		"title": issue.Name,	})}func UpdateIssueContent(ctx *context.Context) {	issue := getActionIssue(ctx)	if ctx.Written() {		return	}	if !ctx.IsSigned || (ctx.User.Id != issue.PosterID && !ctx.Repo.IsWriter()) {		ctx.Error(403)		return	}	issue.Content = ctx.Query("content")	if err := models.UpdateIssue(issue); err != nil {		ctx.Handle(500, "UpdateIssue", err)		return	}	ctx.JSON(200, map[string]interface{}{		"content": string(markdown.Render([]byte(issue.Content), ctx.Query("context"), ctx.Repo.Repository.ComposeMetas())),	})}func UpdateIssueLabel(ctx *context.Context) {	issue := getActionIssue(ctx)	if ctx.Written() {		return	}	if ctx.Query("action") == "clear" {		if err := issue.ClearLabels(); err != nil {			ctx.Handle(500, "ClearLabels", err)			return		}	} else {		isAttach := ctx.Query("action") == "attach"		label, err := models.GetLabelByID(ctx.QueryInt64("id"))		if err != nil {			if models.IsErrLabelNotExist(err) {				ctx.Error(404, "GetLabelByID")			} else {				ctx.Handle(500, "GetLabelByID", err)			}			return		}		if isAttach && !issue.HasLabel(label.ID) {			if err = issue.AddLabel(label); err != nil {				ctx.Handle(500, "AddLabel", err)				return			}		} else if !isAttach && issue.HasLabel(label.ID) {			if err = issue.RemoveLabel(label); err != nil {				ctx.Handle(500, "RemoveLabel", err)				return			}		}	}	ctx.JSON(200, map[string]interface{}{		"ok": true,	})}func UpdateIssueMilestone(ctx *context.Context) {	issue := getActionIssue(ctx)	if ctx.Written() {		return	}	oldMid := issue.MilestoneID	mid := ctx.QueryInt64("id")	if oldMid == mid {		ctx.JSON(200, map[string]interface{}{			"ok": true,		})		return	}	// Not check for invalid milestone id and give responsibility to owners.	issue.MilestoneID = mid	if err := models.ChangeMilestoneAssign(oldMid, issue); err != nil {		ctx.Handle(500, "ChangeMilestoneAssign", err)		return	}	ctx.JSON(200, map[string]interface{}{		"ok": true,	})}func UpdateIssueAssignee(ctx *context.Context) {	issue := getActionIssue(ctx)	if ctx.Written() {		return	}	aid := ctx.QueryInt64("id")	if issue.AssigneeID == aid {		ctx.JSON(200, map[string]interface{}{			"ok": true,		})		return	}	// Not check for invalid assignee id and give responsibility to owners.	issue.AssigneeID = aid	if err := models.UpdateIssueUserByAssignee(issue); err != nil {		ctx.Handle(500, "UpdateIssueUserByAssignee: %v", err)		return	}	ctx.JSON(200, map[string]interface{}{		"ok": true,	})}func NewComment(ctx *context.Context, form auth.CreateCommentForm) {	issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index"))	if err != nil {		if models.IsErrIssueNotExist(err) {			ctx.Handle(404, "GetIssueByIndex", err)		} else {			ctx.Handle(500, "GetIssueByIndex", err)		}		return	}	if issue.IsPull {		if err = issue.GetPullRequest(); err != nil {			ctx.Handle(500, "GetPullRequest", err)			return		}	}	var attachments []string	if setting.AttachmentEnabled {		attachments = form.Attachments	}	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	defer func() {		// Check if issue admin/poster changes the status of issue.		if (ctx.Repo.IsWriter() || (ctx.IsSigned && issue.IsPoster(ctx.User.Id))) &&			(form.Status == "reopen" || form.Status == "close") &&			!(issue.IsPull && issue.HasMerged) {			// Duplication and conflict check should apply to reopen pull request.			var pr *models.PullRequest			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					}				}				// Regenerate patch and test conflict.				if pr == nil {					if err = issue.UpdatePatch(); err != nil {						ctx.Handle(500, "UpdatePatch", err)						return					}					issue.AddToTaskQueue()				}			}			if pr != nil {				ctx.Flash.Info(ctx.Tr("repo.pulls.open_unmerged_pull_exists", pr.Index))			} 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)				}			}		}		// 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))		}	}()	// 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)	if err != nil {		ctx.Handle(500, "CreateIssueComment", err)		return	}	MailWatchersAndMentions(ctx, &models.Issue{		ID:      issue.ID,		Index:   issue.Index,		Name:    issue.Name,		Content: form.Content,	})	if ctx.Written() {		return	}	log.Trace("Comment created: %d/%d/%d", ctx.Repo.Repository.ID, issue.ID, comment.ID)}func UpdateCommentContent(ctx *context.Context) {	comment, err := models.GetCommentByID(ctx.ParamsInt64(":id"))	if err != nil {		if models.IsErrCommentNotExist(err) {			ctx.Error(404, "GetCommentByID")		} else {			ctx.Handle(500, "GetCommentByID", err)		}		return	}	if !ctx.IsSigned || (ctx.User.Id != comment.PosterID && !ctx.Repo.IsAdmin()) {		ctx.Error(403)		return	} else if comment.Type != models.COMMENT_TYPE_COMMENT {		ctx.Error(204)		return	}	comment.Content = ctx.Query("content")	if len(comment.Content) == 0 {		ctx.JSON(200, map[string]interface{}{			"content": "",		})		return	}	if err := models.UpdateComment(comment); err != nil {		ctx.Handle(500, "UpdateComment", err)		return	}	ctx.JSON(200, map[string]interface{}{		"content": string(markdown.Render([]byte(comment.Content), ctx.Query("context"), ctx.Repo.Repository.ComposeMetas())),	})}func Labels(ctx *context.Context) {	ctx.Data["Title"] = ctx.Tr("repo.labels")	ctx.Data["PageIsIssueList"] = true	ctx.Data["PageIsLabels"] = true	ctx.Data["RequireMinicolors"] = true	ctx.HTML(200, LABELS)}func NewLabel(ctx *context.Context, form auth.CreateLabelForm) {	ctx.Data["Title"] = ctx.Tr("repo.labels")	ctx.Data["PageIsLabels"] = true	if ctx.HasError() {		ctx.Flash.Error(ctx.Data["ErrorMsg"].(string))		ctx.Redirect(ctx.Repo.RepoLink + "/labels")		return	}	l := &models.Label{		RepoID: ctx.Repo.Repository.ID,		Name:   form.Title,		Color:  form.Color,	}	if err := models.NewLabel(l); err != nil {		ctx.Handle(500, "NewLabel", err)		return	}	ctx.Redirect(ctx.Repo.RepoLink + "/labels")}func UpdateLabel(ctx *context.Context, form auth.CreateLabelForm) {	l, err := models.GetLabelByID(form.ID)	if err != nil {		switch {		case models.IsErrLabelNotExist(err):			ctx.Error(404)		default:			ctx.Handle(500, "UpdateLabel", err)		}		return	}	fmt.Println(form.Title, form.Color)	l.Name = form.Title	l.Color = form.Color	if err := models.UpdateLabel(l); err != nil {		ctx.Handle(500, "UpdateLabel", err)		return	}	ctx.Redirect(ctx.Repo.RepoLink + "/labels")}func DeleteLabel(ctx *context.Context) {	if err := models.DeleteLabel(ctx.Repo.Repository.ID, ctx.QueryInt64("id")); err != nil {		ctx.Flash.Error("DeleteLabel: " + err.Error())	} else {		ctx.Flash.Success(ctx.Tr("repo.issues.label_deletion_success"))	}	ctx.JSON(200, map[string]interface{}{		"redirect": ctx.Repo.RepoLink + "/labels",	})	return}func Milestones(ctx *context.Context) {	ctx.Data["Title"] = ctx.Tr("repo.milestones")	ctx.Data["PageIsIssueList"] = true	ctx.Data["PageIsMilestones"] = true	isShowClosed := ctx.Query("state") == "closed"	openCount, closedCount := models.MilestoneStats(ctx.Repo.Repository.ID)	ctx.Data["OpenCount"] = openCount	ctx.Data["ClosedCount"] = closedCount	page := ctx.QueryInt("page")	if page <= 1 {		page = 1	}	var total int	if !isShowClosed {		total = int(openCount)	} else {		total = int(closedCount)	}	ctx.Data["Page"] = paginater.New(total, setting.IssuePagingNum, page, 5)	miles, err := models.GetMilestones(ctx.Repo.Repository.ID, page, isShowClosed)	if err != nil {		ctx.Handle(500, "GetMilestones", err)		return	}	for _, m := range miles {		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"	}	ctx.Data["IsShowClosed"] = isShowClosed	ctx.HTML(200, MILESTONE)}func NewMilestone(ctx *context.Context) {	ctx.Data["Title"] = ctx.Tr("repo.milestones.new")	ctx.Data["PageIsIssueList"] = true	ctx.Data["PageIsMilestones"] = true	ctx.Data["RequireDatetimepicker"] = true	ctx.Data["DateLang"] = setting.DateLang(ctx.Locale.Language())	ctx.HTML(200, MILESTONE_NEW)}func NewMilestonePost(ctx *context.Context, form auth.CreateMilestoneForm) {	ctx.Data["Title"] = ctx.Tr("repo.milestones.new")	ctx.Data["PageIsIssueList"] = true	ctx.Data["PageIsMilestones"] = true	ctx.Data["RequireDatetimepicker"] = true	ctx.Data["DateLang"] = setting.DateLang(ctx.Locale.Language())	if ctx.HasError() {		ctx.HTML(200, MILESTONE_NEW)		return	}	if len(form.Deadline) == 0 {		form.Deadline = "9999-12-31"	}	deadline, err := time.ParseInLocation("2006-01-02", form.Deadline, time.Local)	if err != nil {		ctx.Data["Err_Deadline"] = true		ctx.RenderWithErr(ctx.Tr("repo.milestones.invalid_due_date_format"), MILESTONE_NEW, &form)		return	}	if err = models.NewMilestone(&models.Milestone{		RepoID:   ctx.Repo.Repository.ID,		Name:     form.Title,		Content:  form.Content,		Deadline: deadline,	}); err != nil {		ctx.Handle(500, "NewMilestone", err)		return	}	ctx.Flash.Success(ctx.Tr("repo.milestones.create_success", form.Title))	ctx.Redirect(ctx.Repo.RepoLink + "/milestones")}func EditMilestone(ctx *context.Context) {	ctx.Data["Title"] = ctx.Tr("repo.milestones.edit")	ctx.Data["PageIsMilestones"] = true	ctx.Data["PageIsEditMilestone"] = true	ctx.Data["RequireDatetimepicker"] = true	ctx.Data["DateLang"] = setting.DateLang(ctx.Locale.Language())	m, err := models.GetMilestoneByID(ctx.ParamsInt64(":id"))	if err != nil {		if models.IsErrMilestoneNotExist(err) {			ctx.Handle(404, "GetMilestoneByID", nil)		} else {			ctx.Handle(500, "GetMilestoneByID", err)		}		return	}	ctx.Data["title"] = m.Name	ctx.Data["content"] = m.Content	if len(m.DeadlineString) > 0 {		ctx.Data["deadline"] = m.DeadlineString	}	ctx.HTML(200, MILESTONE_NEW)}func EditMilestonePost(ctx *context.Context, form auth.CreateMilestoneForm) {	ctx.Data["Title"] = ctx.Tr("repo.milestones.edit")	ctx.Data["PageIsMilestones"] = true	ctx.Data["PageIsEditMilestone"] = true	ctx.Data["RequireDatetimepicker"] = true	ctx.Data["DateLang"] = setting.DateLang(ctx.Locale.Language())	if ctx.HasError() {		ctx.HTML(200, MILESTONE_NEW)		return	}	if len(form.Deadline) == 0 {		form.Deadline = "9999-12-31"	}	deadline, err := time.ParseInLocation("2006-01-02", form.Deadline, time.Local)	if err != nil {		ctx.Data["Err_Deadline"] = true		ctx.RenderWithErr(ctx.Tr("repo.milestones.invalid_due_date_format"), MILESTONE_NEW, &form)		return	}	m, err := models.GetMilestoneByID(ctx.ParamsInt64(":id"))	if err != nil {		if models.IsErrMilestoneNotExist(err) {			ctx.Handle(404, "GetMilestoneByID", nil)		} else {			ctx.Handle(500, "GetMilestoneByID", err)		}		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")}func ChangeMilestonStatus(ctx *context.Context) {	m, err := models.GetMilestoneByID(ctx.ParamsInt64(":id"))	if err != nil {		if models.IsErrMilestoneNotExist(err) {			ctx.Handle(404, "GetMilestoneByID", err)		} else {			ctx.Handle(500, "GetMilestoneByID", err)		}		return	}	switch ctx.Params(":action") {	case "open":		if m.IsClosed {			if err = models.ChangeMilestoneStatus(m, false); err != nil {				ctx.Handle(500, "ChangeMilestoneStatus", err)				return			}		}		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			}		}		ctx.Redirect(ctx.Repo.RepoLink + "/milestones?state=closed")	default:		ctx.Redirect(ctx.Repo.RepoLink + "/milestones")	}}func DeleteMilestone(ctx *context.Context) {	if err := models.DeleteMilestoneByID(ctx.QueryInt64("id")); err != nil {		ctx.Flash.Error("DeleteMilestoneByID: " + err.Error())	} else {		ctx.Flash.Success(ctx.Tr("repo.milestones.deletion_success"))	}	ctx.JSON(200, map[string]interface{}{		"redirect": ctx.Repo.RepoLink + "/milestones",	})}
 |