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