2016-12-06 23:36:28 -05:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package org
|
|
|
|
|
|
|
|
import (
|
2019-12-20 12:07:12 -05:00
|
|
|
"net/http"
|
|
|
|
|
2016-12-06 23:36:28 -05:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-11-09 23:41:51 -05:00
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2019-08-23 12:40:30 -04:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2016-12-06 23:36:28 -05:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
|
|
|
)
|
|
|
|
|
|
|
|
// 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
|
|
|
|
// description: page size of results, maximum page size is 50
|
|
|
|
// type: integer
|
2017-11-13 02:02:25 -05:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/HookList"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2016-12-06 23:36:28 -05:00
|
|
|
org := ctx.Org.Organization
|
2020-01-24 14:00:29 -05:00
|
|
|
orgHooks, err := models.GetWebhooksByOrgID(org.ID, utils.GetListOptions(ctx))
|
2016-12-06 23:36:28 -05:00
|
|
|
if err != nil {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetWebhooksByOrgID", err)
|
2016-12-06 23:36:28 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
hooks := make([]*api.Hook, len(orgHooks))
|
|
|
|
for i, hook := range orgHooks {
|
|
|
|
hooks[i] = convert.ToHook(org.HomeLink(), hook)
|
|
|
|
}
|
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
|
|
|
|
}
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.JSON(http.StatusOK, convert.ToHook(org.HomeLink(), hook))
|
2016-12-06 23:36:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateHook create a hook for an organization
|
|
|
|
func CreateHook(ctx *context.APIContext, form api.CreateHookOption) {
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:operation POST /orgs/{org}/hooks/ organization orgCreateHook
|
|
|
|
// ---
|
|
|
|
// 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
|
|
|
|
|
|
|
//TODO in body params
|
2016-12-06 23:36:28 -05:00
|
|
|
if !utils.CheckCreateHookOption(ctx, &form) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
utils.AddOrgHook(ctx, &form)
|
|
|
|
}
|
|
|
|
|
|
|
|
// EditHook modify a hook of a repository
|
|
|
|
func EditHook(ctx *context.APIContext, form api.EditHookOption) {
|
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
|
|
|
|
|
|
|
//TODO in body params
|
2016-12-06 23:36:28 -05:00
|
|
|
hookID := ctx.ParamsInt64(":id")
|
|
|
|
utils.EditOrgHook(ctx, &form, hookID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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")
|
|
|
|
if err := models.DeleteWebhookByOrgID(org.ID, hookID); err != nil {
|
2017-01-13 21:14:48 -05:00
|
|
|
if models.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
|
|
|
}
|