2016-12-06 23:36:28 -05:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-12-06 23:36:28 -05:00
|
|
|
|
|
|
|
package org
|
|
|
|
|
|
|
|
import (
|
2019-12-20 12:07:12 -05:00
|
|
|
"net/http"
|
|
|
|
|
2023-01-01 10:23:15 -05:00
|
|
|
webhook_model "code.gitea.io/gitea/models/webhook"
|
2016-12-06 23:36:28 -05:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-08-23 12:40:30 -04:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 10:36:53 -05:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2016-12-06 23:36:28 -05:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2023-01-01 10:23:15 -05:00
|
|
|
webhook_service "code.gitea.io/gitea/services/webhook"
|
2016-12-06 23:36:28 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// ListHooks list an organziation's webhooks
|
|
|
|
func ListHooks(ctx *context.APIContext) {
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:operation GET /orgs/{org}/hooks organization orgListHooks
|
|
|
|
// ---
|
|
|
|
// summary: List an organization's webhooks
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
2018-06-12 10:59:22 -04:00
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2020-01-24 14:00:29 -05:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 00:57:38 -04:00
|
|
|
// description: page size of results
|
2020-01-24 14:00:29 -05:00
|
|
|
// type: integer
|
2017-11-13 02:02:25 -05:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/HookList"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2023-01-01 10:23:15 -05:00
|
|
|
opts := &webhook_model.ListWebhookOptions{
|
2021-08-12 08:43:08 -04:00
|
|
|
ListOptions: utils.GetListOptions(ctx),
|
|
|
|
OrgID: ctx.Org.Organization.ID,
|
|
|
|
}
|
|
|
|
|
2023-01-01 10:23:15 -05:00
|
|
|
count, err := webhook_model.CountWebhooksByOpts(opts)
|
2021-08-12 08:43:08 -04:00
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-01-01 10:23:15 -05:00
|
|
|
orgHooks, err := webhook_model.ListWebhooksByOpts(ctx, opts)
|
2016-12-06 23:36:28 -05:00
|
|
|
if err != nil {
|
2021-08-12 08:43:08 -04:00
|
|
|
ctx.InternalServerError(err)
|
2016-12-06 23:36:28 -05:00
|
|
|
return
|
|
|
|
}
|
2021-08-12 08:43:08 -04:00
|
|
|
|
2016-12-06 23:36:28 -05:00
|
|
|
hooks := make([]*api.Hook, len(orgHooks))
|
|
|
|
for i, hook := range orgHooks {
|
2023-01-01 10:23:15 -05:00
|
|
|
hooks[i], err = webhook_service.ToHook(ctx.Org.Organization.AsUser().HomeLink(), hook)
|
2022-11-03 14:23:20 -04:00
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
2016-12-06 23:36:28 -05:00
|
|
|
}
|
2021-08-12 08:43:08 -04:00
|
|
|
|
|
|
|
ctx.SetTotalCountHeader(count)
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.JSON(http.StatusOK, hooks)
|
2016-12-06 23:36:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetHook get an organization's hook by id
|
|
|
|
func GetHook(ctx *context.APIContext) {
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:operation GET /orgs/{org}/hooks/{id} organization orgGetHook
|
|
|
|
// ---
|
|
|
|
// summary: Get a hook
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
2018-06-12 10:59:22 -04: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-20 23:40:42 -04:00
|
|
|
// format: int64
|
2018-06-12 10:59:22 -04:00
|
|
|
// required: true
|
2017-11-13 02:02:25 -05:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Hook"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2016-12-06 23:36:28 -05:00
|
|
|
org := ctx.Org.Organization
|
|
|
|
hookID := ctx.ParamsInt64(":id")
|
|
|
|
hook, err := utils.GetOrgHook(ctx, org.ID, hookID)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2022-11-03 14:23:20 -04:00
|
|
|
|
2023-01-01 10:23:15 -05:00
|
|
|
apiHook, err := webhook_service.ToHook(org.AsUser().HomeLink(), hook)
|
2022-11-03 14:23:20 -04:00
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.JSON(http.StatusOK, apiHook)
|
2016-12-06 23:36:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateHook create a hook for an organization
|
2021-01-26 10:36:53 -05:00
|
|
|
func CreateHook(ctx *context.APIContext) {
|
2022-07-11 19:07:16 -04:00
|
|
|
// swagger:operation POST /orgs/{org}/hooks organization orgCreateHook
|
2017-11-13 02:02:25 -05:00
|
|
|
// ---
|
|
|
|
// summary: Create a hook
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
2018-06-12 10:59:22 -04:00
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2018-10-20 23:40:42 -04:00
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// required: true
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/CreateHookOption"
|
2017-11-13 02:02:25 -05:00
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Hook"
|
2018-06-12 10:59:22 -04:00
|
|
|
|
2021-01-26 10:36:53 -05:00
|
|
|
form := web.GetForm(ctx).(*api.CreateHookOption)
|
2022-01-20 12:46:10 -05:00
|
|
|
// TODO in body params
|
2021-01-26 10:36:53 -05:00
|
|
|
if !utils.CheckCreateHookOption(ctx, form) {
|
2016-12-06 23:36:28 -05:00
|
|
|
return
|
|
|
|
}
|
2021-01-26 10:36:53 -05:00
|
|
|
utils.AddOrgHook(ctx, form)
|
2016-12-06 23:36:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// EditHook modify a hook of a repository
|
2021-01-26 10:36:53 -05:00
|
|
|
func EditHook(ctx *context.APIContext) {
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:operation PATCH /orgs/{org}/hooks/{id} organization orgEditHook
|
|
|
|
// ---
|
|
|
|
// summary: Update a hook
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
2018-06-12 10:59:22 -04: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-20 23:40:42 -04:00
|
|
|
// format: int64
|
2018-06-12 10:59:22 -04:00
|
|
|
// required: true
|
2018-10-20 23:40:42 -04:00
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/EditHookOption"
|
2017-11-13 02:02:25 -05:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Hook"
|
2018-06-12 10:59:22 -04:00
|
|
|
|
2021-01-26 10:36:53 -05:00
|
|
|
form := web.GetForm(ctx).(*api.EditHookOption)
|
|
|
|
|
2022-01-20 12:46:10 -05:00
|
|
|
// TODO in body params
|
2016-12-06 23:36:28 -05:00
|
|
|
hookID := ctx.ParamsInt64(":id")
|
2021-01-26 10:36:53 -05:00
|
|
|
utils.EditOrgHook(ctx, form, hookID)
|
2016-12-06 23:36:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteHook delete a hook of an organization
|
|
|
|
func DeleteHook(ctx *context.APIContext) {
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:operation DELETE /orgs/{org}/hooks/{id} organization orgDeleteHook
|
|
|
|
// ---
|
|
|
|
// summary: Delete a hook
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
2018-06-12 10:59:22 -04: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-20 23:40:42 -04:00
|
|
|
// format: int64
|
2018-06-12 10:59:22 -04:00
|
|
|
// required: true
|
2017-11-13 02:02:25 -05:00
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2016-12-06 23:36:28 -05:00
|
|
|
org := ctx.Org.Organization
|
|
|
|
hookID := ctx.ParamsInt64(":id")
|
2023-01-01 10:23:15 -05:00
|
|
|
if err := webhook_model.DeleteWebhookByOrgID(org.ID, hookID); err != nil {
|
|
|
|
if webhook_model.IsErrWebhookNotExist(err) {
|
2019-03-18 22:29:43 -04:00
|
|
|
ctx.NotFound()
|
2017-01-13 21:14:48 -05:00
|
|
|
} else {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteWebhookByOrgID", err)
|
2017-01-13 21:14:48 -05:00
|
|
|
}
|
2016-12-06 23:36:28 -05:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2016-12-06 23:36:28 -05:00
|
|
|
}
|