2016-12-31 17:51:22 +01:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-12-31 17:51:22 +01:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2019-12-20 18:07:12 +01:00
|
|
|
"net/http"
|
|
|
|
|
2016-12-31 17:51:22 +01:00
|
|
|
"code.gitea.io/gitea/models"
|
2021-11-28 12:58:28 +01:00
|
|
|
"code.gitea.io/gitea/models/perm"
|
2022-08-25 04:31:57 +02:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-09 20:57:58 +01:00
|
|
|
"code.gitea.io/gitea/models/unit"
|
2016-12-31 17:51:22 +01:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
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"
|
2020-01-24 20:00:29 +01:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2022-12-29 03:57:15 +01:00
|
|
|
"code.gitea.io/gitea/services/convert"
|
2022-06-03 08:13:58 +02:00
|
|
|
release_service "code.gitea.io/gitea/services/release"
|
2016-12-31 17:51:22 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetRelease get a single release of a repository
|
|
|
|
func GetRelease(ctx *context.APIContext) {
|
2018-03-06 02:22:16 +01:00
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/releases/{id} repository repoGetRelease
|
2017-11-13 08:02:25 +01:00
|
|
|
// ---
|
|
|
|
// summary: Get a release
|
|
|
|
// 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-03-06 02:22:16 +01:00
|
|
|
// - name: id
|
2017-11-13 08:02:25 +01:00
|
|
|
// in: path
|
|
|
|
// description: id of the release 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/Release"
|
2020-09-25 00:36:56 +02:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 18:07:12 +01:00
|
|
|
|
2016-12-31 17:51:22 +01:00
|
|
|
id := ctx.ParamsInt64(":id")
|
2022-08-25 04:31:57 +02:00
|
|
|
release, err := repo_model.GetReleaseByID(ctx, id)
|
|
|
|
if err != nil && !repo_model.IsErrReleaseNotExist(err) {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetReleaseByID", err)
|
2016-12-31 17:51:22 +01:00
|
|
|
return
|
|
|
|
}
|
2022-08-25 04:31:57 +02:00
|
|
|
if err != nil && repo_model.IsErrReleaseNotExist(err) ||
|
2020-09-25 00:36:56 +02:00
|
|
|
release.IsTag || release.RepoID != ctx.Repo.Repository.ID {
|
2019-03-19 03:29:43 +01:00
|
|
|
ctx.NotFound()
|
2016-12-31 17:51:22 +01:00
|
|
|
return
|
|
|
|
}
|
2020-09-25 00:36:56 +02:00
|
|
|
|
2022-11-19 09:12:33 +01:00
|
|
|
if err := release.LoadAttributes(ctx); err != nil {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "LoadAttributes", err)
|
2016-12-31 17:51:22 +01:00
|
|
|
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
|
|
|
ctx.JSON(http.StatusOK, convert.ToRelease(ctx, release))
|
2016-12-31 17:51:22 +01:00
|
|
|
}
|
|
|
|
|
2023-01-26 17:33:47 +01:00
|
|
|
// GetLatestRelease gets the most recent non-prerelease, non-draft release of a repository, sorted by created_at
|
|
|
|
func GetLatestRelease(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/releases/latest repository repoGetLatestRelease
|
|
|
|
// ---
|
|
|
|
// summary: Gets the most recent non-prerelease, non-draft release of a repository, sorted by created_at
|
|
|
|
// 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
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Release"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
release, err := repo_model.GetLatestReleaseByRepoID(ctx.Repo.Repository.ID)
|
|
|
|
if err != nil && !repo_model.IsErrReleaseNotExist(err) {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetLatestRelease", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err != nil && repo_model.IsErrReleaseNotExist(err) ||
|
|
|
|
release.IsTag || release.RepoID != ctx.Repo.Repository.ID {
|
|
|
|
ctx.NotFound()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := release.LoadAttributes(ctx); err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "LoadAttributes", err)
|
|
|
|
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
|
|
|
ctx.JSON(http.StatusOK, convert.ToRelease(ctx, release))
|
2023-01-26 17:33:47 +01:00
|
|
|
}
|
|
|
|
|
2016-12-31 17:51:22 +01:00
|
|
|
// ListReleases list a repository's releases
|
|
|
|
func ListReleases(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/releases repository repoListReleases
|
|
|
|
// ---
|
|
|
|
// summary: List a repo's releases
|
|
|
|
// 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
|
2021-06-17 10:58:10 +02:00
|
|
|
// - name: draft
|
|
|
|
// in: query
|
|
|
|
// description: filter (exclude / include) drafts, if you dont have repo write access none will show
|
|
|
|
// type: boolean
|
|
|
|
// - name: pre-release
|
|
|
|
// in: query
|
|
|
|
// description: filter (exclude / include) pre-releases
|
|
|
|
// type: boolean
|
2020-01-24 20:00:29 +01:00
|
|
|
// - name: per_page
|
|
|
|
// in: query
|
2020-06-09 06:57:38 +02:00
|
|
|
// description: page size of results, deprecated - use limit
|
2020-01-24 20:00:29 +01:00
|
|
|
// type: integer
|
|
|
|
// deprecated: true
|
2019-01-25 08:10:50 +01:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
2020-01-24 20:00:29 +01:00
|
|
|
// description: page number of results to return (1-based)
|
2019-01-25 08:10:50 +01:00
|
|
|
// type: integer
|
2020-01-24 20:00:29 +01:00
|
|
|
// - name: limit
|
2019-01-25 08:10:50 +01:00
|
|
|
// in: query
|
2020-06-09 06:57:38 +02:00
|
|
|
// description: page size of results
|
2019-01-25 08:10:50 +01:00
|
|
|
// type: integer
|
2017-11-13 08:02:25 +01:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/ReleaseList"
|
2020-01-24 20:00:29 +01:00
|
|
|
listOptions := utils.GetListOptions(ctx)
|
2021-07-29 03:42:15 +02:00
|
|
|
if listOptions.PageSize == 0 && ctx.FormInt("per_page") != 0 {
|
|
|
|
listOptions.PageSize = ctx.FormInt("per_page")
|
2020-01-24 20:00:29 +01:00
|
|
|
}
|
2019-12-20 18:07:12 +01:00
|
|
|
|
2022-08-25 04:31:57 +02:00
|
|
|
opts := repo_model.FindReleasesOptions{
|
2020-01-24 20:00:29 +01:00
|
|
|
ListOptions: listOptions,
|
2021-11-28 12:58:28 +01:00
|
|
|
IncludeDrafts: ctx.Repo.AccessMode >= perm.AccessModeWrite || ctx.Repo.UnitAccessMode(unit.TypeReleases) >= perm.AccessModeWrite,
|
2017-09-20 07:26:49 +02:00
|
|
|
IncludeTags: false,
|
2021-07-29 03:42:15 +02:00
|
|
|
IsDraft: ctx.FormOptionalBool("draft"),
|
|
|
|
IsPreRelease: ctx.FormOptionalBool("pre-release"),
|
2021-06-17 10:58:10 +02:00
|
|
|
}
|
|
|
|
|
2022-11-19 09:12:33 +01:00
|
|
|
releases, err := repo_model.GetReleasesByRepoID(ctx, ctx.Repo.Repository.ID, opts)
|
2016-12-31 17:51:22 +01:00
|
|
|
if err != nil {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetReleasesByRepoID", err)
|
2016-12-31 17:51:22 +01:00
|
|
|
return
|
|
|
|
}
|
2017-06-29 17:11:38 +02:00
|
|
|
rels := make([]*api.Release, len(releases))
|
2016-12-31 17:51:22 +01:00
|
|
|
for i, release := range releases {
|
2022-11-19 09:12:33 +01:00
|
|
|
if err := release.LoadAttributes(ctx); err != nil {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "LoadAttributes", err)
|
2016-12-31 17:51:22 +01:00
|
|
|
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
|
|
|
rels[i] = convert.ToRelease(ctx, release)
|
2016-12-31 17:51:22 +01:00
|
|
|
}
|
2021-06-17 10:58:10 +02:00
|
|
|
|
2022-08-25 04:31:57 +02:00
|
|
|
filteredCount, err := repo_model.CountReleasesByRepoID(ctx.Repo.Repository.ID, opts)
|
2021-06-17 10:58:10 +02:00
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.SetLinkHeader(int(filteredCount), listOptions.PageSize)
|
2021-08-12 14:43:08 +02:00
|
|
|
ctx.SetTotalCountHeader(filteredCount)
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.JSON(http.StatusOK, rels)
|
2016-12-31 17:51:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateRelease create a release
|
2021-01-26 16:36:53 +01:00
|
|
|
func CreateRelease(ctx *context.APIContext) {
|
2018-01-16 09:54:13 +01:00
|
|
|
// swagger:operation POST /repos/{owner}/{repo}/releases repository repoCreateRelease
|
2017-11-13 08:02:25 +01:00
|
|
|
// ---
|
|
|
|
// summary: Create a release
|
|
|
|
// 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/CreateReleaseOption"
|
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Release"
|
2020-09-25 00:36:56 +02:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 18:07:12 +01:00
|
|
|
// "409":
|
|
|
|
// "$ref": "#/responses/error"
|
2021-01-26 16:36:53 +01:00
|
|
|
form := web.GetForm(ctx).(*api.CreateReleaseOption)
|
2022-08-25 04:31:57 +02:00
|
|
|
rel, err := repo_model.GetRelease(ctx.Repo.Repository.ID, form.TagName)
|
2016-12-31 17:51:22 +01:00
|
|
|
if err != nil {
|
2022-08-25 04:31:57 +02:00
|
|
|
if !repo_model.IsErrReleaseNotExist(err) {
|
2020-09-20 22:20:14 +02:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetRelease", err)
|
2017-09-20 07:26:49 +02:00
|
|
|
return
|
|
|
|
}
|
2019-01-30 17:33:00 +01:00
|
|
|
// If target is not provided use default branch
|
|
|
|
if len(form.Target) == 0 {
|
|
|
|
form.Target = ctx.Repo.Repository.DefaultBranch
|
|
|
|
}
|
2022-08-25 04:31:57 +02:00
|
|
|
rel = &repo_model.Release{
|
2017-09-20 07:26:49 +02:00
|
|
|
RepoID: ctx.Repo.Repository.ID,
|
2022-03-22 08:03:22 +01:00
|
|
|
PublisherID: ctx.Doer.ID,
|
|
|
|
Publisher: ctx.Doer,
|
2017-09-20 07:26:49 +02:00
|
|
|
TagName: form.TagName,
|
|
|
|
Target: form.Target,
|
|
|
|
Title: form.Title,
|
|
|
|
Note: form.Note,
|
|
|
|
IsDraft: form.IsDraft,
|
|
|
|
IsPrerelease: form.IsPrerelease,
|
|
|
|
IsTag: false,
|
2018-01-16 09:54:13 +01:00
|
|
|
Repo: ctx.Repo.Repository,
|
2017-09-20 07:26:49 +02:00
|
|
|
}
|
2022-06-03 08:13:58 +02:00
|
|
|
if err := release_service.CreateRelease(ctx.Repo.GitRepo, rel, nil, ""); err != nil {
|
2022-08-25 04:31:57 +02:00
|
|
|
if repo_model.IsErrReleaseAlreadyExist(err) {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusConflict, "ReleaseAlreadyExist", err)
|
2017-09-20 07:26:49 +02:00
|
|
|
} else {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "CreateRelease", err)
|
2017-09-20 07:26:49 +02:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if !rel.IsTag {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusConflict, "GetRelease", "Release is has no Tag")
|
2017-09-20 07:26:49 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
rel.Title = form.Title
|
|
|
|
rel.Note = form.Note
|
|
|
|
rel.IsDraft = form.IsDraft
|
|
|
|
rel.IsPrerelease = form.IsPrerelease
|
2022-03-22 08:03:22 +01:00
|
|
|
rel.PublisherID = ctx.Doer.ID
|
2017-09-20 07:26:49 +02:00
|
|
|
rel.IsTag = false
|
2018-01-16 09:54:13 +01:00
|
|
|
rel.Repo = ctx.Repo.Repository
|
2022-03-22 08:03:22 +01:00
|
|
|
rel.Publisher = ctx.Doer
|
2022-07-15 20:39:03 +02:00
|
|
|
rel.Target = form.Target
|
2017-09-20 07:26:49 +02:00
|
|
|
|
2022-06-03 08:13:58 +02:00
|
|
|
if err = release_service.UpdateRelease(ctx.Doer, ctx.Repo.GitRepo, rel, nil, nil, nil); err != nil {
|
2021-03-22 17:09:51 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "UpdateRelease", err)
|
2017-09-20 07:26:49 +02:00
|
|
|
return
|
2016-12-31 17:51:22 +01:00
|
|
|
}
|
|
|
|
}
|
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
|
|
|
ctx.JSON(http.StatusCreated, convert.ToRelease(ctx, rel))
|
2016-12-31 17:51:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// EditRelease edit a release
|
2021-01-26 16:36:53 +01:00
|
|
|
func EditRelease(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation PATCH /repos/{owner}/{repo}/releases/{id} repository repoEditRelease
|
|
|
|
// ---
|
|
|
|
// summary: Update a release
|
|
|
|
// 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: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the release to edit
|
|
|
|
// type: integer
|
2018-10-21 05:40:42 +02:00
|
|
|
// format: int64
|
2017-11-13 08:02:25 +01:00
|
|
|
// required: true
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/EditReleaseOption"
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Release"
|
2020-09-25 00:36:56 +02:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 18:07:12 +01:00
|
|
|
|
2021-01-26 16:36:53 +01:00
|
|
|
form := web.GetForm(ctx).(*api.EditReleaseOption)
|
2016-12-31 17:51:22 +01:00
|
|
|
id := ctx.ParamsInt64(":id")
|
2022-08-25 04:31:57 +02:00
|
|
|
rel, err := repo_model.GetReleaseByID(ctx, id)
|
|
|
|
if err != nil && !repo_model.IsErrReleaseNotExist(err) {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetReleaseByID", err)
|
2016-12-31 17:51:22 +01:00
|
|
|
return
|
|
|
|
}
|
2022-08-25 04:31:57 +02:00
|
|
|
if err != nil && repo_model.IsErrReleaseNotExist(err) ||
|
2017-09-20 07:26:49 +02:00
|
|
|
rel.IsTag || rel.RepoID != ctx.Repo.Repository.ID {
|
2019-03-19 03:29:43 +01:00
|
|
|
ctx.NotFound()
|
2016-12-31 17:51:22 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(form.TagName) > 0 {
|
|
|
|
rel.TagName = form.TagName
|
|
|
|
}
|
|
|
|
if len(form.Target) > 0 {
|
|
|
|
rel.Target = form.Target
|
|
|
|
}
|
|
|
|
if len(form.Title) > 0 {
|
|
|
|
rel.Title = form.Title
|
|
|
|
}
|
|
|
|
if len(form.Note) > 0 {
|
|
|
|
rel.Note = form.Note
|
|
|
|
}
|
|
|
|
if form.IsDraft != nil {
|
|
|
|
rel.IsDraft = *form.IsDraft
|
|
|
|
}
|
|
|
|
if form.IsPrerelease != nil {
|
|
|
|
rel.IsPrerelease = *form.IsPrerelease
|
|
|
|
}
|
2022-06-03 08:13:58 +02:00
|
|
|
if err := release_service.UpdateRelease(ctx.Doer, ctx.Repo.GitRepo, rel, nil, nil, nil); err != nil {
|
2021-03-22 17:09:51 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "UpdateRelease", err)
|
2016-12-31 17:51:22 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-03 08:13:58 +02:00
|
|
|
// reload data from database
|
2022-08-25 04:31:57 +02:00
|
|
|
rel, err = repo_model.GetReleaseByID(ctx, id)
|
2016-12-31 17:51:22 +01:00
|
|
|
if err != nil {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetReleaseByID", err)
|
2016-12-31 17:51:22 +01:00
|
|
|
return
|
|
|
|
}
|
2022-11-19 09:12:33 +01:00
|
|
|
if err := rel.LoadAttributes(ctx); err != nil {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "LoadAttributes", err)
|
2016-12-31 17:51:22 +01:00
|
|
|
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
|
|
|
ctx.JSON(http.StatusOK, convert.ToRelease(ctx, rel))
|
2016-12-31 17:51:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteRelease delete a release from a repository
|
|
|
|
func DeleteRelease(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation DELETE /repos/{owner}/{repo}/releases/{id} repository repoDeleteRelease
|
|
|
|
// ---
|
|
|
|
// summary: Delete a release
|
|
|
|
// 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 release 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"
|
2020-09-25 00:36:56 +02:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2022-06-16 22:03:03 +02:00
|
|
|
// "405":
|
|
|
|
// "$ref": "#/responses/empty"
|
2019-12-20 18:07:12 +01:00
|
|
|
|
2016-12-31 17:51:22 +01:00
|
|
|
id := ctx.ParamsInt64(":id")
|
2022-08-25 04:31:57 +02:00
|
|
|
rel, err := repo_model.GetReleaseByID(ctx, id)
|
|
|
|
if err != nil && !repo_model.IsErrReleaseNotExist(err) {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetReleaseByID", err)
|
2016-12-31 17:51:22 +01:00
|
|
|
return
|
|
|
|
}
|
2022-08-25 04:31:57 +02:00
|
|
|
if err != nil && repo_model.IsErrReleaseNotExist(err) ||
|
2017-09-20 07:26:49 +02:00
|
|
|
rel.IsTag || rel.RepoID != ctx.Repo.Repository.ID {
|
2019-03-19 03:29:43 +01:00
|
|
|
ctx.NotFound()
|
2016-12-31 17:51:22 +01:00
|
|
|
return
|
|
|
|
}
|
2022-06-03 08:13:58 +02:00
|
|
|
if err := release_service.DeleteReleaseByID(ctx, id, ctx.Doer, false); err != nil {
|
2022-06-16 22:03:03 +02:00
|
|
|
if models.IsErrProtectedTagName(err) {
|
|
|
|
ctx.Error(http.StatusMethodNotAllowed, "delTag", "user not allowed to delete protected tag")
|
|
|
|
return
|
|
|
|
}
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteReleaseByID", err)
|
2016-12-31 17:51:22 +01:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2016-12-31 17:51:22 +01:00
|
|
|
}
|