mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	
		
			
				
	
	
		
			150 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			150 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // 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 (
 | |
| 	"fmt"
 | |
| 
 | |
| 	"github.com/codegangsta/martini"
 | |
| 
 | |
| 	"github.com/gogits/gogs/models"
 | |
| 	"github.com/gogits/gogs/modules/auth"
 | |
| 	"github.com/gogits/gogs/modules/base"
 | |
| 	"github.com/gogits/gogs/modules/log"
 | |
| 	"github.com/gogits/gogs/modules/middleware"
 | |
| )
 | |
| 
 | |
| func Issues(ctx *middleware.Context, params martini.Params) {
 | |
| 	ctx.Data["Title"] = "Issues"
 | |
| 	ctx.Data["IsRepoToolbarIssues"] = true
 | |
| 
 | |
| 	milestoneId, _ := base.StrTo(params["milestone"]).Int()
 | |
| 	page, _ := base.StrTo(params["page"]).Int()
 | |
| 
 | |
| 	// Get issues.
 | |
| 	issues, err := models.GetIssues(0, ctx.Repo.Repository.Id, 0,
 | |
| 		int64(milestoneId), page, params["state"] == "closed", false, params["labels"], params["sortType"])
 | |
| 	if err != nil {
 | |
| 		ctx.Handle(200, "issue.Issues: %v", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	var closedCount int
 | |
| 	// 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
 | |
| 		}
 | |
| 
 | |
| 		if issues[i].IsClosed {
 | |
| 			closedCount++
 | |
| 		}
 | |
| 		issues[i].Poster = u
 | |
| 	}
 | |
| 
 | |
| 	ctx.Data["Issues"] = issues
 | |
| 	ctx.Data["IssueCount"] = len(issues)
 | |
| 	ctx.Data["OpenCount"] = len(issues) - closedCount
 | |
| 	ctx.Data["ClosedCount"] = closedCount
 | |
| 	ctx.HTML(200, "issue/list")
 | |
| }
 | |
| 
 | |
| func CreateIssue(ctx *middleware.Context, params martini.Params, form auth.CreateIssueForm) {
 | |
| 	if !ctx.Repo.IsOwner {
 | |
| 		ctx.Handle(404, "issue.CreateIssue", nil)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	ctx.Data["Title"] = "Create issue"
 | |
| 	ctx.Data["IsRepoToolbarIssues"] = true
 | |
| 
 | |
| 	if ctx.Req.Method == "GET" {
 | |
| 		ctx.HTML(200, "issue/create")
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if ctx.HasError() {
 | |
| 		ctx.HTML(200, "issue/create")
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	issue, err := models.CreateIssue(ctx.User.Id, ctx.Repo.Repository.Id, form.MilestoneId, form.AssigneeId,
 | |
| 		form.IssueName, form.Labels, form.Content, false)
 | |
| 	if err != nil {
 | |
| 		ctx.Handle(200, "issue.CreateIssue", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	// Notify watchers.
 | |
| 	if err = models.NotifyWatchers(ctx.User.Id, ctx.Repo.Repository.Id, models.OP_CREATE_ISSUE,
 | |
| 		ctx.User.Name, ctx.Repo.Repository.Name, "", fmt.Sprintf("%d|%s", issue.Index, issue.Name)); err != nil {
 | |
| 		ctx.Handle(200, "issue.CreateIssue", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	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))
 | |
| }
 | |
| 
 | |
| func ViewIssue(ctx *middleware.Context, params martini.Params) {
 | |
| 	index, err := base.StrTo(params["index"]).Int()
 | |
| 	if err != nil {
 | |
| 		ctx.Handle(404, "issue.ViewIssue", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	issue, err := models.GetIssueByIndex(ctx.Repo.Repository.Id, int64(index))
 | |
| 	if err != nil {
 | |
| 		if err == models.ErrIssueNotExist {
 | |
| 			ctx.Handle(404, "issue.ViewIssue", err)
 | |
| 		} else {
 | |
| 			ctx.Handle(200, "issue.ViewIssue", err)
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	ctx.Data["Title"] = issue.Name
 | |
| 	ctx.Data["Issue"] = issue
 | |
| 	ctx.HTML(200, "issue/view")
 | |
| }
 | |
| 
 | |
| func UpdateIssue(ctx *middleware.Context, params martini.Params, form auth.CreateIssueForm) {
 | |
| 	if !ctx.Repo.IsOwner {
 | |
| 		ctx.Handle(404, "issue.UpdateIssue", nil)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	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 {
 | |
| 			ctx.Handle(200, "issue.UpdateIssue", err)
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	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 {
 | |
| 		ctx.Handle(200, "issue.UpdateIssue", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	ctx.Data["Title"] = issue.Name
 | |
| 	ctx.Data["Issue"] = issue
 | |
| }
 |