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