2014-11-13 08:32:18 +01:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2020-01-24 20:00:29 +01:00
|
|
|
// Copyright 2020 The Gitea Authors.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2014-11-13 08:32:18 +01:00
|
|
|
|
2015-12-04 23:16:42 +01:00
|
|
|
package repo
|
2014-11-13 08:32:18 +01:00
|
|
|
|
|
|
|
import (
|
2019-12-20 18:07:12 +01:00
|
|
|
"net/http"
|
|
|
|
|
2021-11-28 12:58:28 +01:00
|
|
|
"code.gitea.io/gitea/models/perm"
|
2023-06-22 15:08:08 +02:00
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
2021-11-10 06:13:16 +01:00
|
|
|
"code.gitea.io/gitea/models/webhook"
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-03-27 10:33:00 +01:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2022-09-04 11:18:07 +02:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-05-11 12:21:34 +02:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 16:36:53 +01:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2023-01-01 16:23:15 +01:00
|
|
|
webhook_module "code.gitea.io/gitea/modules/webhook"
|
2016-12-07 05:36:28 +01:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2022-12-29 03:57:15 +01:00
|
|
|
"code.gitea.io/gitea/services/convert"
|
2021-11-10 06:13:16 +01:00
|
|
|
webhook_service "code.gitea.io/gitea/services/webhook"
|
2014-11-13 08:32:18 +01:00
|
|
|
)
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// ListHooks list all hooks of a repository
|
2016-03-13 23:49:16 +01:00
|
|
|
func ListHooks(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/hooks repository repoListHooks
|
|
|
|
// ---
|
|
|
|
// summary: List the hooks in a repository
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2020-01-24 20:00:29 +01:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 06:57:38 +02:00
|
|
|
// description: page size of results
|
2020-01-24 20:00:29 +01:00
|
|
|
// type: integer
|
2017-11-13 08:02:25 +01:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/HookList"
|
2023-09-13 04:37:54 +02:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 18:07:12 +01:00
|
|
|
|
2021-11-10 06:13:16 +01:00
|
|
|
opts := &webhook.ListWebhookOptions{
|
2021-08-12 14:43:08 +02:00
|
|
|
ListOptions: utils.GetListOptions(ctx),
|
|
|
|
RepoID: ctx.Repo.Repository.ID,
|
|
|
|
}
|
|
|
|
|
2023-10-14 10:37:24 +02:00
|
|
|
count, err := webhook.CountWebhooksByOpts(ctx, opts)
|
2014-11-13 08:32:18 +01:00
|
|
|
if err != nil {
|
2021-08-12 14:43:08 +02:00
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-20 16:08:52 +02:00
|
|
|
hooks, err := webhook.ListWebhooksByOpts(ctx, opts)
|
2021-08-12 14:43:08 +02:00
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
2014-11-13 08:32:18 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-14 23:11:30 +01:00
|
|
|
apiHooks := make([]*api.Hook, len(hooks))
|
2014-11-13 08:32:18 +01:00
|
|
|
for i := range hooks {
|
2023-01-01 16:23:15 +01:00
|
|
|
apiHooks[i], err = webhook_service.ToHook(ctx.Repo.RepoLink, hooks[i])
|
2022-11-03 19:23:20 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
2014-11-13 08:32:18 +01:00
|
|
|
}
|
2021-08-12 14:43:08 +02:00
|
|
|
|
|
|
|
ctx.SetTotalCountHeader(count)
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.JSON(http.StatusOK, &apiHooks)
|
2014-11-13 08:32:18 +01:00
|
|
|
}
|
2014-11-13 18:57:00 +01:00
|
|
|
|
2016-12-07 05:36:28 +01:00
|
|
|
// GetHook get a repo's hook by id
|
|
|
|
func GetHook(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/hooks/{id} repository repoGetHook
|
|
|
|
// ---
|
|
|
|
// summary: Get a hook
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the hook to get
|
|
|
|
// type: integer
|
2018-10-21 05:40:42 +02:00
|
|
|
// format: int64
|
2017-11-13 08:02:25 +01:00
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Hook"
|
2019-12-20 18:07:12 +01:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
2016-12-07 05:36:28 +01:00
|
|
|
repo := ctx.Repo
|
|
|
|
hookID := ctx.ParamsInt64(":id")
|
|
|
|
hook, err := utils.GetRepoHook(ctx, repo.Repository.ID, hookID)
|
|
|
|
if err != nil {
|
2014-11-13 18:57:00 +01:00
|
|
|
return
|
|
|
|
}
|
2023-01-01 16:23:15 +01:00
|
|
|
apiHook, err := webhook_service.ToHook(repo.RepoLink, hook)
|
2022-11-03 19:23:20 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.JSON(http.StatusOK, apiHook)
|
2016-12-07 05:36:28 +01:00
|
|
|
}
|
2014-11-13 18:57:00 +01:00
|
|
|
|
2018-04-29 08:21:33 +02:00
|
|
|
// TestHook tests a hook
|
|
|
|
func TestHook(ctx *context.APIContext) {
|
|
|
|
// swagger:operation POST /repos/{owner}/{repo}/hooks/{id}/tests repository repoTestHook
|
|
|
|
// ---
|
|
|
|
// summary: Test a push webhook
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the hook to test
|
|
|
|
// type: integer
|
2018-10-21 05:40:42 +02:00
|
|
|
// format: int64
|
2018-04-29 08:21:33 +02:00
|
|
|
// required: true
|
2022-04-21 17:17:57 +02:00
|
|
|
// - name: ref
|
|
|
|
// in: query
|
2022-09-04 11:18:07 +02:00
|
|
|
// description: "The name of the commit/branch/tag, indicates which commit will be loaded to the webhook payload."
|
2022-04-21 17:17:57 +02:00
|
|
|
// type: string
|
|
|
|
// required: false
|
2018-04-29 08:21:33 +02:00
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2023-09-13 04:37:54 +02:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 18:07:12 +01:00
|
|
|
|
2018-04-29 08:21:33 +02:00
|
|
|
if ctx.Repo.Commit == nil {
|
|
|
|
// if repo does not have any commits, then don't send a webhook
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2018-04-29 08:21:33 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-09-04 11:18:07 +02:00
|
|
|
ref := git.BranchPrefix + ctx.Repo.Repository.DefaultBranch
|
|
|
|
if r := ctx.FormTrim("ref"); r != "" {
|
|
|
|
ref = r
|
|
|
|
}
|
|
|
|
|
2018-04-29 08:21:33 +02:00
|
|
|
hookID := ctx.ParamsInt64(":id")
|
|
|
|
hook, err := utils.GetRepoHook(ctx, ctx.Repo.Repository.ID, hookID)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
Add context cache as a request level cache (#22294)
To avoid duplicated load of the same data in an HTTP request, we can set
a context cache to do that. i.e. Some pages may load a user from a
database with the same id in different areas on the same page. But the
code is hidden in two different deep logic. How should we share the
user? As a result of this PR, now if both entry functions accept
`context.Context` as the first parameter and we just need to refactor
`GetUserByID` to reuse the user from the context cache. Then it will not
be loaded twice on an HTTP request.
But of course, sometimes we would like to reload an object from the
database, that's why `RemoveContextData` is also exposed.
The core context cache is here. It defines a new context
```go
type cacheContext struct {
ctx context.Context
data map[any]map[any]any
lock sync.RWMutex
}
var cacheContextKey = struct{}{}
func WithCacheContext(ctx context.Context) context.Context {
return context.WithValue(ctx, cacheContextKey, &cacheContext{
ctx: ctx,
data: make(map[any]map[any]any),
})
}
```
Then you can use the below 4 methods to read/write/del the data within
the same context.
```go
func GetContextData(ctx context.Context, tp, key any) any
func SetContextData(ctx context.Context, tp, key, value any)
func RemoveContextData(ctx context.Context, tp, key any)
func GetWithContextCache[T any](ctx context.Context, cacheGroupKey string, cacheTargetID any, f func() (T, error)) (T, error)
```
Then let's take a look at how `system.GetString` implement it.
```go
func GetSetting(ctx context.Context, key string) (string, error) {
return cache.GetWithContextCache(ctx, contextCacheKey, key, func() (string, error) {
return cache.GetString(genSettingCacheKey(key), func() (string, error) {
res, err := GetSettingNoCache(ctx, key)
if err != nil {
return "", err
}
return res.SettingValue, nil
})
})
}
```
First, it will check if context data include the setting object with the
key. If not, it will query from the global cache which may be memory or
a Redis cache. If not, it will get the object from the database. In the
end, if the object gets from the global cache or database, it will be
set into the context cache.
An object stored in the context cache will only be destroyed after the
context disappeared.
2023-02-15 14:37:34 +01:00
|
|
|
commit := convert.ToPayloadCommit(ctx, ctx.Repo.Repository, ctx.Repo.Commit)
|
2021-06-29 15:34:03 +02:00
|
|
|
|
2022-09-04 11:18:07 +02:00
|
|
|
commitID := ctx.Repo.Commit.ID.String()
|
2023-01-01 16:23:15 +01:00
|
|
|
if err := webhook_service.PrepareWebhook(ctx, hook, webhook_module.HookEventPush, &api.PushPayload{
|
2022-10-16 18:22:34 +02:00
|
|
|
Ref: ref,
|
|
|
|
Before: commitID,
|
|
|
|
After: commitID,
|
|
|
|
CompareURL: setting.AppURL + ctx.Repo.Repository.ComposeCompareURL(commitID, commitID),
|
|
|
|
Commits: []*api.PayloadCommit{commit},
|
|
|
|
TotalCommits: 1,
|
|
|
|
HeadCommit: commit,
|
2023-06-22 15:08:08 +02:00
|
|
|
Repo: convert.ToRepo(ctx, ctx.Repo.Repository, access_model.Permission{AccessMode: perm.AccessModeNone}),
|
Add context cache as a request level cache (#22294)
To avoid duplicated load of the same data in an HTTP request, we can set
a context cache to do that. i.e. Some pages may load a user from a
database with the same id in different areas on the same page. But the
code is hidden in two different deep logic. How should we share the
user? As a result of this PR, now if both entry functions accept
`context.Context` as the first parameter and we just need to refactor
`GetUserByID` to reuse the user from the context cache. Then it will not
be loaded twice on an HTTP request.
But of course, sometimes we would like to reload an object from the
database, that's why `RemoveContextData` is also exposed.
The core context cache is here. It defines a new context
```go
type cacheContext struct {
ctx context.Context
data map[any]map[any]any
lock sync.RWMutex
}
var cacheContextKey = struct{}{}
func WithCacheContext(ctx context.Context) context.Context {
return context.WithValue(ctx, cacheContextKey, &cacheContext{
ctx: ctx,
data: make(map[any]map[any]any),
})
}
```
Then you can use the below 4 methods to read/write/del the data within
the same context.
```go
func GetContextData(ctx context.Context, tp, key any) any
func SetContextData(ctx context.Context, tp, key, value any)
func RemoveContextData(ctx context.Context, tp, key any)
func GetWithContextCache[T any](ctx context.Context, cacheGroupKey string, cacheTargetID any, f func() (T, error)) (T, error)
```
Then let's take a look at how `system.GetString` implement it.
```go
func GetSetting(ctx context.Context, key string) (string, error) {
return cache.GetWithContextCache(ctx, contextCacheKey, key, func() (string, error) {
return cache.GetString(genSettingCacheKey(key), func() (string, error) {
res, err := GetSettingNoCache(ctx, key)
if err != nil {
return "", err
}
return res.SettingValue, nil
})
})
}
```
First, it will check if context data include the setting object with the
key. If not, it will query from the global cache which may be memory or
a Redis cache. If not, it will get the object from the database. In the
end, if the object gets from the global cache or database, it will be
set into the context cache.
An object stored in the context cache will only be destroyed after the
context disappeared.
2023-02-15 14:37:34 +01:00
|
|
|
Pusher: convert.ToUserWithAccessMode(ctx, ctx.Doer, perm.AccessModeNone),
|
|
|
|
Sender: convert.ToUserWithAccessMode(ctx, ctx.Doer, perm.AccessModeNone),
|
2018-04-29 08:21:33 +02:00
|
|
|
}); err != nil {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "PrepareWebhook: ", err)
|
2018-04-29 08:21:33 +02:00
|
|
|
return
|
|
|
|
}
|
2019-11-02 03:35:12 +01:00
|
|
|
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2018-04-29 08:21:33 +02:00
|
|
|
}
|
|
|
|
|
2016-12-07 05:36:28 +01:00
|
|
|
// CreateHook create a hook for a repository
|
2021-01-26 16:36:53 +01:00
|
|
|
func CreateHook(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation POST /repos/{owner}/{repo}/hooks repository repoCreateHook
|
|
|
|
// ---
|
|
|
|
// summary: Create a hook
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/CreateHookOption"
|
|
|
|
// responses:
|
2017-11-20 08:00:53 +01:00
|
|
|
// "201":
|
2017-11-13 08:02:25 +01:00
|
|
|
// "$ref": "#/responses/Hook"
|
2023-09-13 04:37:54 +02:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2021-01-26 16:36:53 +01:00
|
|
|
|
2023-03-10 15:28:32 +01:00
|
|
|
utils.AddRepoHook(ctx, web.GetForm(ctx).(*api.CreateHookOption))
|
2014-11-13 18:57:00 +01:00
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// EditHook modify a hook of a repository
|
2021-01-26 16:36:53 +01:00
|
|
|
func EditHook(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation PATCH /repos/{owner}/{repo}/hooks/{id} repository repoEditHook
|
|
|
|
// ---
|
|
|
|
// summary: Edit a hook in a repository
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2018-06-12 16:59:22 +02:00
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: index of the hook
|
|
|
|
// type: integer
|
2018-10-21 05:40:42 +02:00
|
|
|
// format: int64
|
2018-06-12 16:59:22 +02:00
|
|
|
// required: true
|
2017-11-13 08:02:25 +01:00
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/EditHookOption"
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Hook"
|
2023-09-13 04:37:54 +02:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2021-01-26 16:36:53 +01:00
|
|
|
form := web.GetForm(ctx).(*api.EditHookOption)
|
2016-12-07 22:25:29 +01:00
|
|
|
hookID := ctx.ParamsInt64(":id")
|
2021-01-26 16:36:53 +01:00
|
|
|
utils.EditRepoHook(ctx, form, hookID)
|
2014-11-13 18:57:00 +01:00
|
|
|
}
|
2016-07-17 02:33:59 +02:00
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// DeleteHook delete a hook of a repository
|
2016-07-17 02:33:59 +02:00
|
|
|
func DeleteHook(ctx *context.APIContext) {
|
2018-06-12 16:59:22 +02:00
|
|
|
// swagger:operation DELETE /repos/{owner}/{repo}/hooks/{id} repository repoDeleteHook
|
2017-11-13 08:02:25 +01:00
|
|
|
// ---
|
|
|
|
// summary: Delete a hook in a repository
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the hook to delete
|
|
|
|
// type: integer
|
2018-10-21 05:40:42 +02:00
|
|
|
// format: int64
|
2017-11-13 08:02:25 +01:00
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2023-10-14 10:37:24 +02:00
|
|
|
if err := webhook.DeleteWebhookByRepoID(ctx, ctx.Repo.Repository.ID, ctx.ParamsInt64(":id")); err != nil {
|
2021-11-10 06:13:16 +01:00
|
|
|
if webhook.IsErrWebhookNotExist(err) {
|
2019-03-19 03:29:43 +01:00
|
|
|
ctx.NotFound()
|
2017-01-14 03:14:48 +01:00
|
|
|
} else {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteWebhookByRepoID", err)
|
2017-01-14 03:14:48 +01:00
|
|
|
}
|
2016-07-17 02:33:59 +02:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2016-07-17 02:33:59 +02:00
|
|
|
}
|