Files

190 lines
4.2 KiB
Go
Raw Permalink Normal View History

2016-12-06 23:36:28 -05:00
// Copyright 2016 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2016-12-06 23:36:28 -05:00
package org
import (
2019-12-20 18:07:12 +01:00
"net/http"
2019-08-23 09:40:30 -07:00
api "code.gitea.io/gitea/modules/structs"
2021-01-26 23:36:53 +08:00
"code.gitea.io/gitea/modules/web"
2016-12-06 23:36:28 -05:00
"code.gitea.io/gitea/routers/api/v1/utils"
"code.gitea.io/gitea/services/context"
2023-01-01 16:23:15 +01:00
webhook_service "code.gitea.io/gitea/services/webhook"
2016-12-06 23:36:28 -05:00
)
2026-02-28 20:23:20 +01:00
// ListHooks list an organization's webhooks
2016-12-06 23:36:28 -05:00
func ListHooks(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation GET /orgs/{org}/hooks organization orgListHooks
// ---
// summary: List an organization's webhooks
// produces:
// - application/json
2018-06-12 16:59:22 +02:00
// parameters:
// - name: org
// in: path
// description: name of the organization
// type: string
// required: true
2020-01-24 19:00:29 +00:00
// - name: page
// in: query
// description: page number of results to return (1-based)
// type: integer
// - name: limit
// in: query
// description: page size of results
2020-01-24 19:00:29 +00:00
// type: integer
2017-11-12 23:02:25 -08:00
// responses:
// "200":
// "$ref": "#/responses/HookList"
// "404":
// "$ref": "#/responses/notFound"
2019-12-20 18:07:12 +01:00
2023-03-10 15:28:32 +01:00
utils.ListOwnerHooks(
ctx,
ctx.ContextUser,
)
2016-12-06 23:36:28 -05:00
}
// GetHook get an organization's hook by id
func GetHook(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation GET /orgs/{org}/hooks/{id} organization orgGetHook
// ---
// summary: Get a hook
// produces:
// - application/json
2018-06-12 16:59:22 +02:00
// parameters:
// - name: org
// in: path
// description: name of the organization
// type: string
// required: true
// - name: id
// in: path
// description: id of the hook to get
// type: integer
// format: int64
2018-06-12 16:59:22 +02:00
// required: true
2017-11-12 23:02:25 -08:00
// responses:
// "200":
// "$ref": "#/responses/Hook"
// "404":
// "$ref": "#/responses/notFound"
2019-12-20 18:07:12 +01:00
2024-06-19 06:32:45 +08:00
hook, err := utils.GetOwnerHook(ctx, ctx.ContextUser.ID, ctx.PathParamInt64("id"))
2016-12-06 23:36:28 -05:00
if err != nil {
return
}
2022-11-03 19:23:20 +01:00
2023-03-10 15:28:32 +01:00
apiHook, err := webhook_service.ToHook(ctx.ContextUser.HomeLink(), hook)
2022-11-03 19:23:20 +01:00
if err != nil {
2025-02-17 14:13:17 +08:00
ctx.APIErrorInternal(err)
2022-11-03 19:23:20 +01:00
return
}
ctx.JSON(http.StatusOK, apiHook)
2016-12-06 23:36:28 -05:00
}
// CreateHook create a hook for an organization
2021-01-26 23:36:53 +08:00
func CreateHook(ctx *context.APIContext) {
2022-07-12 01:07:16 +02:00
// swagger:operation POST /orgs/{org}/hooks organization orgCreateHook
2017-11-12 23:02:25 -08:00
// ---
// summary: Create a hook
// consumes:
// - application/json
// produces:
// - application/json
2018-06-12 16:59:22 +02:00
// parameters:
// - name: org
// in: path
// description: name of the organization
// type: string
// required: true
// - name: body
// in: body
// required: true
// schema:
// "$ref": "#/definitions/CreateHookOption"
2017-11-12 23:02:25 -08:00
// responses:
// "201":
// "$ref": "#/responses/Hook"
// "404":
// "$ref": "#/responses/notFound"
2018-06-12 16:59:22 +02:00
2023-03-10 15:28:32 +01:00
utils.AddOwnerHook(
ctx,
ctx.ContextUser,
web.GetForm(ctx).(*api.CreateHookOption),
)
2016-12-06 23:36:28 -05:00
}
2023-03-10 15:28:32 +01:00
// EditHook modify a hook of an organization
2021-01-26 23:36:53 +08:00
func EditHook(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation PATCH /orgs/{org}/hooks/{id} organization orgEditHook
// ---
// summary: Update a hook
// consumes:
// - application/json
// produces:
// - application/json
2018-06-12 16:59:22 +02:00
// parameters:
// - name: org
// in: path
// description: name of the organization
// type: string
// required: true
// - name: id
// in: path
// description: id of the hook to update
// type: integer
// format: int64
2018-06-12 16:59:22 +02:00
// required: true
// - name: body
// in: body
// schema:
// "$ref": "#/definitions/EditHookOption"
2017-11-12 23:02:25 -08:00
// responses:
// "200":
// "$ref": "#/responses/Hook"
// "404":
// "$ref": "#/responses/notFound"
2018-06-12 16:59:22 +02:00
2023-03-10 15:28:32 +01:00
utils.EditOwnerHook(
ctx,
ctx.ContextUser,
web.GetForm(ctx).(*api.EditHookOption),
2024-06-19 06:32:45 +08:00
ctx.PathParamInt64("id"),
2023-03-10 15:28:32 +01:00
)
2016-12-06 23:36:28 -05:00
}
// DeleteHook delete a hook of an organization
func DeleteHook(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation DELETE /orgs/{org}/hooks/{id} organization orgDeleteHook
// ---
// summary: Delete a hook
// produces:
// - application/json
2018-06-12 16:59:22 +02:00
// parameters:
// - name: org
// in: path
// description: name of the organization
// type: string
// required: true
// - name: id
// in: path
// description: id of the hook to delete
// type: integer
// format: int64
2018-06-12 16:59:22 +02:00
// required: true
2017-11-12 23:02:25 -08:00
// responses:
// "204":
// "$ref": "#/responses/empty"
// "404":
// "$ref": "#/responses/notFound"
2019-12-20 18:07:12 +01:00
2023-03-10 15:28:32 +01:00
utils.DeleteOwnerHook(
ctx,
ctx.ContextUser,
2024-06-19 06:32:45 +08:00
ctx.PathParamInt64("id"),
2023-03-10 15:28:32 +01:00
)
2016-12-06 23:36:28 -05:00
}