mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 22:41:03 +00:00 
			
		
		
		
	The JSONRedirect/JSONOK/JSONError functions were put into "Base" context incorrectly, it would cause abuse. Actually, they are for "web context" only, so, move them to the correct place. And by the way, use them to simplify old code: +75 -196
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2023 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package setting
 | |
| 
 | |
| import (
 | |
| 	"net/http"
 | |
| 
 | |
| 	"code.gitea.io/gitea/models/webhook"
 | |
| 	"code.gitea.io/gitea/modules/base"
 | |
| 	"code.gitea.io/gitea/modules/context"
 | |
| 	"code.gitea.io/gitea/modules/setting"
 | |
| )
 | |
| 
 | |
| const (
 | |
| 	tplSettingsHooks base.TplName = "user/settings/hooks"
 | |
| )
 | |
| 
 | |
| // Webhooks render webhook list page
 | |
| func Webhooks(ctx *context.Context) {
 | |
| 	ctx.Data["Title"] = ctx.Tr("settings")
 | |
| 	ctx.Data["PageIsSettingsHooks"] = true
 | |
| 	ctx.Data["BaseLink"] = setting.AppSubURL + "/user/settings/hooks"
 | |
| 	ctx.Data["BaseLinkNew"] = setting.AppSubURL + "/user/settings/hooks"
 | |
| 	ctx.Data["Description"] = ctx.Tr("settings.hooks.desc")
 | |
| 
 | |
| 	ws, err := webhook.ListWebhooksByOpts(ctx, &webhook.ListWebhookOptions{OwnerID: ctx.Doer.ID})
 | |
| 	if err != nil {
 | |
| 		ctx.ServerError("ListWebhooksByOpts", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	ctx.Data["Webhooks"] = ws
 | |
| 	ctx.HTML(http.StatusOK, tplSettingsHooks)
 | |
| }
 | |
| 
 | |
| // DeleteWebhook response for delete webhook
 | |
| func DeleteWebhook(ctx *context.Context) {
 | |
| 	if err := webhook.DeleteWebhookByOwnerID(ctx.Doer.ID, ctx.FormInt64("id")); err != nil {
 | |
| 		ctx.Flash.Error("DeleteWebhookByOwnerID: " + err.Error())
 | |
| 	} else {
 | |
| 		ctx.Flash.Success(ctx.Tr("repo.settings.webhook_deletion_success"))
 | |
| 	}
 | |
| 
 | |
| 	ctx.JSONRedirect(setting.AppSubURL + "/user/settings/hooks")
 | |
| }
 |