mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Before: <img width="364" alt="Screen Shot 2023-06-20 at 11 59 11" src="https://github.com/go-gitea/gitea/assets/17645053/ad284b7e-8d21-43be-b178-bbcfd37cb5bd"> Might trigger many posts when keep clicking the buttons above. <img width="448" alt="Screen Shot 2023-06-20 at 11 52 28" src="https://github.com/go-gitea/gitea/assets/17645053/a60aa6ac-af74-45e4-b13a-512b436b81b0"> <img width="678" alt="Screen Shot 2023-06-20 at 11 52 37" src="https://github.com/go-gitea/gitea/assets/17645053/d6662700-3643-4cc7-a2ec-64e1c0f5fbdb"> After (PR sidebar, Same for issue): https://github.com/go-gitea/gitea/assets/17645053/9df3ad1f-e29c-439b-8bde-e6b917d63cc6 For delete, it is using `base/modal_actions_confirm` subtemplate, and we might need another general solution for this (maybe add another attribute to the subtemplate or something) --------- Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: Giteabot <teabot@gitea.io> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
		
			
				
	
	
		
			99 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2023 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package repo
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
 | 
						|
	issues_model "code.gitea.io/gitea/models/issues"
 | 
						|
	"code.gitea.io/gitea/modules/context"
 | 
						|
	"code.gitea.io/gitea/modules/json"
 | 
						|
	"code.gitea.io/gitea/modules/log"
 | 
						|
)
 | 
						|
 | 
						|
// IssuePinOrUnpin pin or unpin a Issue
 | 
						|
func IssuePinOrUnpin(ctx *context.Context) {
 | 
						|
	issue := GetActionIssue(ctx)
 | 
						|
 | 
						|
	// If we don't do this, it will crash when trying to add the pin event to the comment history
 | 
						|
	err := issue.LoadRepo(ctx)
 | 
						|
	if err != nil {
 | 
						|
		ctx.Status(http.StatusInternalServerError)
 | 
						|
		log.Error(err.Error())
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	err = issue.PinOrUnpin(ctx, ctx.Doer)
 | 
						|
	if err != nil {
 | 
						|
		ctx.Status(http.StatusInternalServerError)
 | 
						|
		log.Error(err.Error())
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	ctx.JSONRedirect(issue.Link())
 | 
						|
}
 | 
						|
 | 
						|
// IssueUnpin unpins a Issue
 | 
						|
func IssueUnpin(ctx *context.Context) {
 | 
						|
	issue, err := issues_model.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index"))
 | 
						|
	if err != nil {
 | 
						|
		ctx.Status(http.StatusInternalServerError)
 | 
						|
		log.Error(err.Error())
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	// If we don't do this, it will crash when trying to add the pin event to the comment history
 | 
						|
	err = issue.LoadRepo(ctx)
 | 
						|
	if err != nil {
 | 
						|
		ctx.Status(http.StatusInternalServerError)
 | 
						|
		log.Error(err.Error())
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	err = issue.Unpin(ctx, ctx.Doer)
 | 
						|
	if err != nil {
 | 
						|
		ctx.Status(http.StatusInternalServerError)
 | 
						|
		log.Error(err.Error())
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	ctx.Status(http.StatusNoContent)
 | 
						|
}
 | 
						|
 | 
						|
// IssuePinMove moves a pinned Issue
 | 
						|
func IssuePinMove(ctx *context.Context) {
 | 
						|
	if ctx.Doer == nil {
 | 
						|
		ctx.JSON(http.StatusForbidden, "Only signed in users are allowed to perform this action.")
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	type movePinIssueForm struct {
 | 
						|
		ID       int64 `json:"id"`
 | 
						|
		Position int   `json:"position"`
 | 
						|
	}
 | 
						|
 | 
						|
	form := &movePinIssueForm{}
 | 
						|
	if err := json.NewDecoder(ctx.Req.Body).Decode(&form); err != nil {
 | 
						|
		ctx.Status(http.StatusInternalServerError)
 | 
						|
		log.Error(err.Error())
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	issue, err := issues_model.GetIssueByID(ctx, form.ID)
 | 
						|
	if err != nil {
 | 
						|
		ctx.Status(http.StatusInternalServerError)
 | 
						|
		log.Error(err.Error())
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	err = issue.MovePin(ctx, form.Position)
 | 
						|
	if err != nil {
 | 
						|
		ctx.Status(http.StatusInternalServerError)
 | 
						|
		log.Error(err.Error())
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	ctx.Status(http.StatusNoContent)
 | 
						|
}
 |