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