Files

205 lines
4.7 KiB
Go
Raw Permalink Normal View History

2023-01-29 02:12:10 +08:00
// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package admin
import (
"errors"
2023-01-29 02:12:10 +08:00
"net/http"
"code.gitea.io/gitea/models/webhook"
"code.gitea.io/gitea/modules/optional"
2023-01-29 02:12:10 +08:00
"code.gitea.io/gitea/modules/setting"
api "code.gitea.io/gitea/modules/structs"
"code.gitea.io/gitea/modules/util"
"code.gitea.io/gitea/modules/web"
"code.gitea.io/gitea/routers/api/v1/utils"
"code.gitea.io/gitea/services/context"
2023-01-29 02:12:10 +08:00
webhook_service "code.gitea.io/gitea/services/webhook"
)
// ListHooks list system's webhooks
func ListHooks(ctx *context.APIContext) {
// swagger:operation GET /admin/hooks admin adminListHooks
// ---
// summary: List system's webhooks
// produces:
// - application/json
// parameters:
// - name: page
// in: query
// description: page number of results to return (1-based)
// type: integer
// - name: limit
// in: query
// description: page size of results
// type: integer
// - type: string
// enum:
// - system
// - default
// - all
// description: system, default or both kinds of webhooks
// name: type
// default: system
// in: query
//
2023-01-29 02:12:10 +08:00
// responses:
// "200":
// "$ref": "#/responses/HookList"
// for compatibility the default value is true
isSystemWebhook := optional.Some(true)
typeValue := ctx.FormString("type")
2025-03-29 22:32:28 +01:00
switch typeValue {
case "default":
isSystemWebhook = optional.Some(false)
2025-03-29 22:32:28 +01:00
case "all":
isSystemWebhook = optional.None[bool]()
}
2026-02-06 14:12:05 +01:00
listOptions := utils.GetListOptions(ctx)
opts := &webhook.ListSystemWebhookOptions{
ListOptions: listOptions,
IsSystem: isSystemWebhook,
}
2026-02-06 14:12:05 +01:00
sysHooks, total, err := webhook.GetGlobalWebhooks(ctx, opts)
2023-01-29 02:12:10 +08:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2023-01-29 02:12:10 +08:00
return
}
hooks := make([]*api.Hook, len(sysHooks))
for i, hook := range sysHooks {
h, err := webhook_service.ToHook(setting.AppURL+"/-/admin", hook)
2023-01-29 02:12:10 +08:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2023-01-29 02:12:10 +08:00
return
}
hooks[i] = h
}
2026-03-08 15:35:50 +01:00
ctx.SetLinkHeader(total, listOptions.PageSize)
2026-02-06 14:12:05 +01:00
ctx.SetTotalCountHeader(total)
2023-01-29 02:12:10 +08:00
ctx.JSON(http.StatusOK, hooks)
}
// GetHook get an organization's hook by id
func GetHook(ctx *context.APIContext) {
// swagger:operation GET /admin/hooks/{id} admin adminGetHook
// ---
// summary: Get a hook
// produces:
// - application/json
// parameters:
// - name: id
// in: path
// description: id of the hook to get
// type: integer
// format: int64
// required: true
// responses:
// "200":
// "$ref": "#/responses/Hook"
2024-12-24 21:47:45 +08:00
hookID := ctx.PathParamInt64("id")
2023-01-29 02:12:10 +08:00
hook, err := webhook.GetSystemOrDefaultWebhook(ctx, hookID)
if err != nil {
if errors.Is(err, util.ErrNotExist) {
2025-02-17 14:13:17 +08:00
ctx.APIErrorNotFound()
} else {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
}
2023-01-29 02:12:10 +08:00
return
}
h, err := webhook_service.ToHook("/-/admin/", hook)
2023-01-29 02:12:10 +08:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2023-01-29 02:12:10 +08:00
return
}
ctx.JSON(http.StatusOK, h)
}
// CreateHook create a hook for an organization
func CreateHook(ctx *context.APIContext) {
// swagger:operation POST /admin/hooks admin adminCreateHook
// ---
// summary: Create a hook
// consumes:
// - application/json
// produces:
// - application/json
// parameters:
// - name: body
// in: body
// required: true
// schema:
// "$ref": "#/definitions/CreateHookOption"
// responses:
// "201":
// "$ref": "#/responses/Hook"
form := web.GetForm(ctx).(*api.CreateHookOption)
2023-03-10 15:28:32 +01:00
2023-01-29 02:12:10 +08:00
utils.AddSystemHook(ctx, form)
}
// EditHook modify a hook of a repository
func EditHook(ctx *context.APIContext) {
// swagger:operation PATCH /admin/hooks/{id} admin adminEditHook
// ---
// summary: Update a hook
// consumes:
// - application/json
// produces:
// - application/json
// parameters:
// - name: id
// in: path
// description: id of the hook to update
// type: integer
// format: int64
// required: true
// - name: body
// in: body
// schema:
// "$ref": "#/definitions/EditHookOption"
// responses:
// "200":
// "$ref": "#/responses/Hook"
form := web.GetForm(ctx).(*api.EditHookOption)
// TODO in body params
2024-12-24 21:47:45 +08:00
hookID := ctx.PathParamInt64("id")
2023-01-29 02:12:10 +08:00
utils.EditSystemHook(ctx, form, hookID)
}
// DeleteHook delete a system hook
func DeleteHook(ctx *context.APIContext) {
2023-04-24 20:44:27 +02:00
// swagger:operation DELETE /admin/hooks/{id} admin adminDeleteHook
2023-01-29 02:12:10 +08:00
// ---
// summary: Delete a hook
// produces:
// - application/json
// parameters:
// - name: id
// in: path
// description: id of the hook to delete
// type: integer
// format: int64
// required: true
// responses:
// "204":
// "$ref": "#/responses/empty"
2024-12-24 21:47:45 +08:00
hookID := ctx.PathParamInt64("id")
2023-01-29 02:12:10 +08:00
if err := webhook.DeleteDefaultSystemWebhook(ctx, hookID); err != nil {
if errors.Is(err, util.ErrNotExist) {
2025-02-17 14:13:17 +08:00
ctx.APIErrorNotFound()
2023-01-29 02:12:10 +08:00
} else {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2023-01-29 02:12:10 +08:00
}
return
}
ctx.Status(http.StatusNoContent)
}