2019-12-07 23:04:19 +01:00
// Copyright 2019 The Gitea Authors. All rights reserved.
2022-11-27 13:20:29 -05:00
// SPDX-License-Identifier: MIT
2019-12-07 23:04:19 +01:00
package repo
import (
"errors"
2019-12-20 18:07:12 +01:00
"net/http"
2019-12-07 23:04:19 +01:00
2022-03-31 17:20:39 +08:00
issues_model "code.gitea.io/gitea/models/issues"
2019-12-07 23:04:19 +01:00
"code.gitea.io/gitea/modules/context"
api "code.gitea.io/gitea/modules/structs"
2021-01-26 23:36:53 +08:00
"code.gitea.io/gitea/modules/web"
2020-01-24 19:00:29 +00:00
"code.gitea.io/gitea/routers/api/v1/utils"
2022-12-29 03:57:15 +01:00
"code.gitea.io/gitea/services/convert"
2019-12-07 23:04:19 +01:00
)
2020-01-06 05:58:13 +01:00
// GetIssueCommentReactions list reactions of a comment from an issue
2019-12-07 23:04:19 +01:00
func GetIssueCommentReactions ( ctx * context . APIContext ) {
// swagger:operation GET /repos/{owner}/{repo}/issues/comments/{id}/reactions issue issueGetCommentReactions
// ---
2020-01-06 05:58:13 +01:00
// summary: Get a list of reactions from a comment of an issue
2019-12-07 23:04:19 +01:00
// 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 comment to edit
// type: integer
// format: int64
// required: true
// responses:
// "200":
2019-12-31 09:21:21 +01:00
// "$ref": "#/responses/ReactionList"
2019-12-20 18:07:12 +01:00
// "403":
// "$ref": "#/responses/forbidden"
2023-09-13 04:37:54 +02:00
// "404":
// "$ref": "#/responses/notFound"
2019-12-20 18:07:12 +01:00
2022-06-13 17:37:59 +08:00
comment , err := issues_model . GetCommentByID ( ctx , ctx . ParamsInt64 ( ":id" ) )
2019-12-07 23:04:19 +01:00
if err != nil {
2022-06-13 17:37:59 +08:00
if issues_model . IsErrCommentNotExist ( err ) {
2019-12-07 23:04:19 +01:00
ctx . NotFound ( err )
} else {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusInternalServerError , "GetCommentByID" , err )
2019-12-07 23:04:19 +01:00
}
return
}
2022-11-19 09:12:33 +01:00
if err := comment . LoadIssue ( ctx ) ; err != nil {
2020-10-29 12:48:07 +00:00
ctx . Error ( http . StatusInternalServerError , "comment.LoadIssue" , err )
2023-11-26 01:21:21 +08:00
return
}
if comment . Issue . RepoID != ctx . Repo . Repository . ID {
ctx . NotFound ( )
return
2020-10-29 12:48:07 +00:00
}
if ! ctx . Repo . CanReadIssuesOrPulls ( comment . Issue . IsPull ) {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusForbidden , "GetIssueCommentReactions" , errors . New ( "no permission to get reactions" ) )
2019-12-07 23:04:19 +01:00
return
}
2023-09-25 15:17:37 +02:00
reactions , _ , err := issues_model . FindCommentReactions ( ctx , comment . IssueID , comment . ID )
2019-12-07 23:04:19 +01:00
if err != nil {
2021-12-15 06:39:34 +01:00
ctx . Error ( http . StatusInternalServerError , "FindCommentReactions" , err )
2019-12-07 23:04:19 +01:00
return
}
2022-03-31 17:20:39 +08:00
_ , err = reactions . LoadUsers ( ctx , ctx . Repo . Repository )
2019-12-07 23:04:19 +01:00
if err != nil {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusInternalServerError , "ReactionList.LoadUsers()" , err )
2019-12-07 23:04:19 +01:00
return
}
2019-12-31 09:21:21 +01:00
var result [ ] api . Reaction
2019-12-07 23:04:19 +01:00
for _ , r := range reactions {
2019-12-31 09:21:21 +01:00
result = append ( result , api . Reaction {
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 21:37:34 +08:00
User : convert . ToUser ( ctx , r . User , ctx . Doer ) ,
2019-12-07 23:04:19 +01:00
Reaction : r . Type ,
Created : r . CreatedUnix . AsTime ( ) ,
} )
}
2019-12-20 18:07:12 +01:00
ctx . JSON ( http . StatusOK , result )
2019-12-07 23:04:19 +01:00
}
2020-01-06 05:58:13 +01:00
// PostIssueCommentReaction add a reaction to a comment of an issue
2021-01-26 23:36:53 +08:00
func PostIssueCommentReaction ( ctx * context . APIContext ) {
2019-12-07 23:04:19 +01:00
// swagger:operation POST /repos/{owner}/{repo}/issues/comments/{id}/reactions issue issuePostCommentReaction
// ---
2020-01-06 05:58:13 +01:00
// summary: Add a reaction to a comment of an issue
2019-12-07 23:04:19 +01:00
// 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 comment to edit
// type: integer
// format: int64
// required: true
// - name: content
// in: body
// schema:
// "$ref": "#/definitions/EditReactionOption"
// responses:
2019-12-31 09:21:21 +01:00
// "200":
// "$ref": "#/responses/Reaction"
2019-12-07 23:04:19 +01:00
// "201":
2019-12-31 09:21:21 +01:00
// "$ref": "#/responses/Reaction"
2019-12-20 18:07:12 +01:00
// "403":
// "$ref": "#/responses/forbidden"
2023-09-13 04:37:54 +02:00
// "404":
// "$ref": "#/responses/notFound"
2019-12-20 18:07:12 +01:00
2021-01-26 23:36:53 +08:00
form := web . GetForm ( ctx ) . ( * api . EditReactionOption )
changeIssueCommentReaction ( ctx , * form , true )
2019-12-07 23:04:19 +01:00
}
2020-01-06 05:58:13 +01:00
// DeleteIssueCommentReaction remove a reaction from a comment of an issue
2021-01-26 23:36:53 +08:00
func DeleteIssueCommentReaction ( ctx * context . APIContext ) {
2019-12-07 23:04:19 +01:00
// swagger:operation DELETE /repos/{owner}/{repo}/issues/comments/{id}/reactions issue issueDeleteCommentReaction
// ---
2020-01-06 05:58:13 +01:00
// summary: Remove a reaction from a comment of an issue
2019-12-07 23:04:19 +01:00
// 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 comment to edit
// type: integer
// format: int64
// required: true
// - name: content
// in: body
// schema:
// "$ref": "#/definitions/EditReactionOption"
// responses:
// "200":
// "$ref": "#/responses/empty"
2019-12-20 18:07:12 +01:00
// "403":
// "$ref": "#/responses/forbidden"
2023-09-13 04:37:54 +02:00
// "404":
// "$ref": "#/responses/notFound"
2019-12-20 18:07:12 +01:00
2021-01-26 23:36:53 +08:00
form := web . GetForm ( ctx ) . ( * api . EditReactionOption )
changeIssueCommentReaction ( ctx , * form , false )
2019-12-07 23:04:19 +01:00
}
func changeIssueCommentReaction ( ctx * context . APIContext , form api . EditReactionOption , isCreateType bool ) {
2022-06-13 17:37:59 +08:00
comment , err := issues_model . GetCommentByID ( ctx , ctx . ParamsInt64 ( ":id" ) )
2019-12-07 23:04:19 +01:00
if err != nil {
2022-06-13 17:37:59 +08:00
if issues_model . IsErrCommentNotExist ( err ) {
2019-12-07 23:04:19 +01:00
ctx . NotFound ( err )
} else {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusInternalServerError , "GetCommentByID" , err )
2019-12-07 23:04:19 +01:00
}
return
}
2023-11-26 01:21:21 +08:00
if err = comment . LoadIssue ( ctx ) ; err != nil {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusInternalServerError , "comment.LoadIssue() failed" , err )
2023-11-26 01:21:21 +08:00
return
}
if comment . Issue . RepoID != ctx . Repo . Repository . ID {
ctx . NotFound ( )
return
}
if ! ctx . Repo . CanReadIssuesOrPulls ( comment . Issue . IsPull ) {
ctx . NotFound ( )
return
2019-12-07 23:04:19 +01:00
}
2020-01-20 20:00:32 +08:00
if comment . Issue . IsLocked && ! ctx . Repo . CanWriteIssuesOrPulls ( comment . Issue . IsPull ) {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusForbidden , "ChangeIssueCommentReaction" , errors . New ( "no permission to change reaction" ) )
2019-12-07 23:04:19 +01:00
return
}
if isCreateType {
// PostIssueCommentReaction part
2023-09-25 15:17:37 +02:00
reaction , err := issues_model . CreateCommentReaction ( ctx , ctx . Doer . ID , comment . Issue . ID , comment . ID , form . Reaction )
2019-12-07 23:04:19 +01:00
if err != nil {
2022-03-31 17:20:39 +08:00
if issues_model . IsErrForbiddenIssueReaction ( err ) {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusForbidden , err . Error ( ) , err )
2022-03-31 17:20:39 +08:00
} else if issues_model . IsErrReactionAlreadyExist ( err ) {
2019-12-31 09:21:21 +01:00
ctx . JSON ( http . StatusOK , api . Reaction {
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 21:37:34 +08:00
User : convert . ToUser ( ctx , ctx . Doer , ctx . Doer ) ,
2019-12-31 09:21:21 +01:00
Reaction : reaction . Type ,
Created : reaction . CreatedUnix . AsTime ( ) ,
} )
2019-12-07 23:04:19 +01:00
} else {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusInternalServerError , "CreateCommentReaction" , err )
2019-12-07 23:04:19 +01:00
}
return
}
2019-12-31 09:21:21 +01:00
ctx . JSON ( http . StatusCreated , api . Reaction {
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 21:37:34 +08:00
User : convert . ToUser ( ctx , ctx . Doer , ctx . Doer ) ,
2019-12-07 23:04:19 +01:00
Reaction : reaction . Type ,
Created : reaction . CreatedUnix . AsTime ( ) ,
} )
} else {
// DeleteIssueCommentReaction part
2023-09-25 15:17:37 +02:00
err = issues_model . DeleteCommentReaction ( ctx , ctx . Doer . ID , comment . Issue . ID , comment . ID , form . Reaction )
2019-12-07 23:04:19 +01:00
if err != nil {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusInternalServerError , "DeleteCommentReaction" , err )
2019-12-07 23:04:19 +01:00
return
}
2022-01-20 18:46:10 +01:00
// ToDo respond 204
2019-12-20 18:07:12 +01:00
ctx . Status ( http . StatusOK )
2019-12-07 23:04:19 +01:00
}
}
2020-01-06 05:58:13 +01:00
// GetIssueReactions list reactions of an issue
2019-12-07 23:04:19 +01:00
func GetIssueReactions ( ctx * context . APIContext ) {
// swagger:operation GET /repos/{owner}/{repo}/issues/{index}/reactions issue issueGetIssueReactions
// ---
2020-01-06 05:58:13 +01:00
// summary: Get a list reactions of an issue
2019-12-07 23:04:19 +01:00
// 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: index
// in: path
// description: index of the issue
// type: integer
// format: int64
// required: true
2020-01-24 19:00:29 +00: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 19:00:29 +00:00
// type: integer
2019-12-07 23:04:19 +01:00
// responses:
// "200":
2019-12-31 09:21:21 +01:00
// "$ref": "#/responses/ReactionList"
2019-12-20 18:07:12 +01:00
// "403":
// "$ref": "#/responses/forbidden"
2023-09-13 04:37:54 +02:00
// "404":
// "$ref": "#/responses/notFound"
2019-12-20 18:07:12 +01:00
2023-07-22 22:14:27 +08:00
issue , err := issues_model . GetIssueWithAttrsByIndex ( ctx , ctx . Repo . Repository . ID , ctx . ParamsInt64 ( ":index" ) )
2019-12-07 23:04:19 +01:00
if err != nil {
2022-06-13 17:37:59 +08:00
if issues_model . IsErrIssueNotExist ( err ) {
2019-12-07 23:04:19 +01:00
ctx . NotFound ( )
} else {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusInternalServerError , "GetIssueByIndex" , err )
2019-12-07 23:04:19 +01:00
}
return
}
2020-10-29 02:23:31 +00:00
if ! ctx . Repo . CanReadIssuesOrPulls ( issue . IsPull ) {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusForbidden , "GetIssueReactions" , errors . New ( "no permission to get reactions" ) )
2019-12-07 23:04:19 +01:00
return
}
2023-09-25 15:17:37 +02:00
reactions , count , err := issues_model . FindIssueReactions ( ctx , issue . ID , utils . GetListOptions ( ctx ) )
2019-12-07 23:04:19 +01:00
if err != nil {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusInternalServerError , "FindIssueReactions" , err )
2019-12-07 23:04:19 +01:00
return
}
2022-03-31 17:20:39 +08:00
_ , err = reactions . LoadUsers ( ctx , ctx . Repo . Repository )
2019-12-07 23:04:19 +01:00
if err != nil {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusInternalServerError , "ReactionList.LoadUsers()" , err )
2019-12-07 23:04:19 +01:00
return
}
2019-12-31 09:21:21 +01:00
var result [ ] api . Reaction
2019-12-07 23:04:19 +01:00
for _ , r := range reactions {
2019-12-31 09:21:21 +01:00
result = append ( result , api . Reaction {
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 21:37:34 +08:00
User : convert . ToUser ( ctx , r . User , ctx . Doer ) ,
2019-12-07 23:04:19 +01:00
Reaction : r . Type ,
Created : r . CreatedUnix . AsTime ( ) ,
} )
}
2021-12-15 06:39:34 +01:00
ctx . SetTotalCountHeader ( count )
2019-12-20 18:07:12 +01:00
ctx . JSON ( http . StatusOK , result )
2019-12-07 23:04:19 +01:00
}
2020-01-06 05:58:13 +01:00
// PostIssueReaction add a reaction to an issue
2021-01-26 23:36:53 +08:00
func PostIssueReaction ( ctx * context . APIContext ) {
2019-12-07 23:04:19 +01:00
// swagger:operation POST /repos/{owner}/{repo}/issues/{index}/reactions issue issuePostIssueReaction
// ---
2020-01-06 05:58:13 +01:00
// summary: Add a reaction to an issue
2019-12-07 23:04:19 +01:00
// 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: index
// in: path
// description: index of the issue
// type: integer
// format: int64
// required: true
// - name: content
// in: body
// schema:
// "$ref": "#/definitions/EditReactionOption"
// responses:
2019-12-31 09:21:21 +01:00
// "200":
// "$ref": "#/responses/Reaction"
2019-12-07 23:04:19 +01:00
// "201":
2019-12-31 09:21:21 +01:00
// "$ref": "#/responses/Reaction"
2019-12-20 18:07:12 +01:00
// "403":
// "$ref": "#/responses/forbidden"
2023-09-13 04:37:54 +02:00
// "404":
// "$ref": "#/responses/notFound"
2021-01-26 23:36:53 +08:00
form := web . GetForm ( ctx ) . ( * api . EditReactionOption )
changeIssueReaction ( ctx , * form , true )
2019-12-07 23:04:19 +01:00
}
2020-01-06 05:58:13 +01:00
// DeleteIssueReaction remove a reaction from an issue
2021-01-26 23:36:53 +08:00
func DeleteIssueReaction ( ctx * context . APIContext ) {
2019-12-07 23:04:19 +01:00
// swagger:operation DELETE /repos/{owner}/{repo}/issues/{index}/reactions issue issueDeleteIssueReaction
// ---
2020-01-06 05:58:13 +01:00
// summary: Remove a reaction from an issue
2019-12-07 23:04:19 +01:00
// 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: index
// in: path
// description: index of the issue
// type: integer
// format: int64
// required: true
// - name: content
// in: body
// schema:
// "$ref": "#/definitions/EditReactionOption"
// responses:
// "200":
// "$ref": "#/responses/empty"
2019-12-20 18:07:12 +01:00
// "403":
// "$ref": "#/responses/forbidden"
2023-09-13 04:37:54 +02:00
// "404":
// "$ref": "#/responses/notFound"
2021-01-26 23:36:53 +08:00
form := web . GetForm ( ctx ) . ( * api . EditReactionOption )
changeIssueReaction ( ctx , * form , false )
2019-12-07 23:04:19 +01:00
}
func changeIssueReaction ( ctx * context . APIContext , form api . EditReactionOption , isCreateType bool ) {
2023-07-22 22:14:27 +08:00
issue , err := issues_model . GetIssueWithAttrsByIndex ( ctx , ctx . Repo . Repository . ID , ctx . ParamsInt64 ( ":index" ) )
2019-12-07 23:04:19 +01:00
if err != nil {
2022-06-13 17:37:59 +08:00
if issues_model . IsErrIssueNotExist ( err ) {
2019-12-07 23:04:19 +01:00
ctx . NotFound ( )
} else {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusInternalServerError , "GetIssueByIndex" , err )
2019-12-07 23:04:19 +01:00
}
return
}
2020-01-20 20:00:32 +08:00
if issue . IsLocked && ! ctx . Repo . CanWriteIssuesOrPulls ( issue . IsPull ) {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusForbidden , "ChangeIssueCommentReaction" , errors . New ( "no permission to change reaction" ) )
2019-12-07 23:04:19 +01:00
return
}
if isCreateType {
// PostIssueReaction part
2023-09-25 15:17:37 +02:00
reaction , err := issues_model . CreateIssueReaction ( ctx , ctx . Doer . ID , issue . ID , form . Reaction )
2019-12-07 23:04:19 +01:00
if err != nil {
2022-03-31 17:20:39 +08:00
if issues_model . IsErrForbiddenIssueReaction ( err ) {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusForbidden , err . Error ( ) , err )
2022-03-31 17:20:39 +08:00
} else if issues_model . IsErrReactionAlreadyExist ( err ) {
2019-12-31 09:21:21 +01:00
ctx . JSON ( http . StatusOK , api . Reaction {
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 21:37:34 +08:00
User : convert . ToUser ( ctx , ctx . Doer , ctx . Doer ) ,
2019-12-31 09:21:21 +01:00
Reaction : reaction . Type ,
Created : reaction . CreatedUnix . AsTime ( ) ,
} )
2019-12-07 23:04:19 +01:00
} else {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusInternalServerError , "CreateCommentReaction" , err )
2019-12-07 23:04:19 +01:00
}
return
}
2019-12-31 09:21:21 +01:00
ctx . JSON ( http . StatusCreated , api . Reaction {
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 21:37:34 +08:00
User : convert . ToUser ( ctx , ctx . Doer , ctx . Doer ) ,
2019-12-07 23:04:19 +01:00
Reaction : reaction . Type ,
Created : reaction . CreatedUnix . AsTime ( ) ,
} )
} else {
// DeleteIssueReaction part
2023-09-25 15:17:37 +02:00
err = issues_model . DeleteIssueReaction ( ctx , ctx . Doer . ID , issue . ID , form . Reaction )
2019-12-07 23:04:19 +01:00
if err != nil {
2019-12-20 18:07:12 +01:00
ctx . Error ( http . StatusInternalServerError , "DeleteIssueReaction" , err )
2019-12-07 23:04:19 +01:00
return
}
2022-01-20 18:46:10 +01:00
// ToDo respond 204
2019-12-20 18:07:12 +01:00
ctx . Status ( http . StatusOK )
2019-12-07 23:04:19 +01:00
}
}