* Create system webhook column (and migration) * Create system webhook DB methods Based on the default webhook ones * Modify router to handle system webhooks and default ones * Remove old unused admin nav template * Adjust orgRepoCtx to differentiate system and default webhook URLs * Assign IsSystemWebhook when creating webhooks * Correctly use booleans for IsSystemWebhook * Use system webhooks when preparing webhooks for payload * Add UI and locale changes * Use router params to differentiate admin hook pages * Fix deleting admin webhooks and rename method * Add clarity to webhook docs * Revert "Remove old unused admin nav template" This reverts commit 191a20a7389fe5f6256b0ad6aafd04b9b0e295c5. * Rename WebHooksNewPost to GiteaHooksNewPost for clarity * Reintroduce blank line lost during merge conflict Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Lauris BH <lauris@nix.lv>
		
			
				
	
	
		
			66 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2018 The Gitea 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 admin
 | |
| 
 | |
| import (
 | |
| 	"code.gitea.io/gitea/models"
 | |
| 	"code.gitea.io/gitea/modules/base"
 | |
| 	"code.gitea.io/gitea/modules/context"
 | |
| 	"code.gitea.io/gitea/modules/setting"
 | |
| )
 | |
| 
 | |
| const (
 | |
| 	// tplAdminHooks template path to render hook settings
 | |
| 	tplAdminHooks base.TplName = "admin/hooks"
 | |
| )
 | |
| 
 | |
| // DefaultOrSystemWebhooks renders both admin default and system webhook list pages
 | |
| func DefaultOrSystemWebhooks(ctx *context.Context) {
 | |
| 	var ws []*models.Webhook
 | |
| 	var err error
 | |
| 
 | |
| 	// Are we looking at default webhooks?
 | |
| 	if ctx.Params(":configType") == "hooks" {
 | |
| 		ctx.Data["Title"] = ctx.Tr("admin.hooks")
 | |
| 		ctx.Data["Description"] = ctx.Tr("admin.hooks.desc")
 | |
| 		ctx.Data["PageIsAdminHooks"] = true
 | |
| 		ctx.Data["BaseLink"] = setting.AppSubURL + "/admin/hooks"
 | |
| 		ws, err = models.GetDefaultWebhooks()
 | |
| 	} else {
 | |
| 		ctx.Data["Title"] = ctx.Tr("admin.systemhooks")
 | |
| 		ctx.Data["Description"] = ctx.Tr("admin.systemhooks.desc")
 | |
| 		ctx.Data["PageIsAdminSystemHooks"] = true
 | |
| 		ctx.Data["BaseLink"] = setting.AppSubURL + "/admin/system-hooks"
 | |
| 		ws, err = models.GetSystemWebhooks()
 | |
| 	}
 | |
| 
 | |
| 	if err != nil {
 | |
| 		ctx.ServerError("GetWebhooksAdmin", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	ctx.Data["Webhooks"] = ws
 | |
| 	ctx.HTML(200, tplAdminHooks)
 | |
| }
 | |
| 
 | |
| // DeleteDefaultOrSystemWebhook handler to delete an admin-defined system or default webhook
 | |
| func DeleteDefaultOrSystemWebhook(ctx *context.Context) {
 | |
| 	if err := models.DeleteDefaultSystemWebhook(ctx.QueryInt64("id")); err != nil {
 | |
| 		ctx.Flash.Error("DeleteDefaultWebhook: " + err.Error())
 | |
| 	} else {
 | |
| 		ctx.Flash.Success(ctx.Tr("repo.settings.webhook_deletion_success"))
 | |
| 	}
 | |
| 
 | |
| 	// Are we looking at default webhooks?
 | |
| 	if ctx.Params(":configType") == "hooks" {
 | |
| 		ctx.JSON(200, map[string]interface{}{
 | |
| 			"redirect": setting.AppSubURL + "/admin/hooks",
 | |
| 		})
 | |
| 	} else {
 | |
| 		ctx.JSON(200, map[string]interface{}{
 | |
| 			"redirect": setting.AppSubURL + "/admin/system-hooks",
 | |
| 		})
 | |
| 	}
 | |
| }
 |