2020-01-09 06:56:32 -05:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-01-09 06:56:32 -05:00
|
|
|
|
|
|
|
package notify
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
2022-08-24 22:31:57 -04:00
|
|
|
activities_model "code.gitea.io/gitea/models/activities"
|
2022-05-08 09:46:34 -04:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-13 05:37:59 -04:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2020-01-09 06:56:32 -05:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2022-12-28 21:57:15 -05:00
|
|
|
"code.gitea.io/gitea/services/convert"
|
2020-01-09 06:56:32 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetThread get notification by ID
|
|
|
|
func GetThread(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /notifications/threads/{id} notification notifyGetThread
|
|
|
|
// ---
|
|
|
|
// summary: Get notification thread by ID
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of notification thread
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/NotificationThread"
|
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
|
|
|
n := getThread(ctx)
|
|
|
|
if n == nil {
|
|
|
|
return
|
|
|
|
}
|
2022-11-19 03:12:33 -05:00
|
|
|
if err := n.LoadAttributes(ctx); err != nil && !issues_model.IsErrCommentNotExist(err) {
|
2020-01-09 06:56:32 -05:00
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-09-29 08:12:54 -04:00
|
|
|
ctx.JSON(http.StatusOK, convert.ToNotificationThread(ctx, n))
|
2020-01-09 06:56:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ReadThread mark notification as read by ID
|
|
|
|
func ReadThread(ctx *context.APIContext) {
|
|
|
|
// swagger:operation PATCH /notifications/threads/{id} notification notifyReadThread
|
|
|
|
// ---
|
|
|
|
// summary: Mark notification thread as read by ID
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of notification thread
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2020-07-11 17:46:01 -04:00
|
|
|
// - name: to-status
|
|
|
|
// in: query
|
|
|
|
// description: Status to mark notifications as
|
|
|
|
// type: string
|
|
|
|
// default: read
|
|
|
|
// required: false
|
2020-01-09 06:56:32 -05:00
|
|
|
// responses:
|
|
|
|
// "205":
|
2021-09-17 19:40:50 -04:00
|
|
|
// "$ref": "#/responses/NotificationThread"
|
2020-01-09 06:56:32 -05:00
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
|
|
|
n := getThread(ctx)
|
|
|
|
if n == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-08-10 20:31:13 -04:00
|
|
|
targetStatus := statusStringToNotificationStatus(ctx.FormString("to-status"))
|
2020-07-11 17:46:01 -04:00
|
|
|
if targetStatus == 0 {
|
2022-08-24 22:31:57 -04:00
|
|
|
targetStatus = activities_model.NotificationStatusRead
|
2020-07-11 17:46:01 -04:00
|
|
|
}
|
|
|
|
|
2022-11-19 03:12:33 -05:00
|
|
|
notif, err := activities_model.SetNotificationStatus(ctx, n.ID, ctx.Doer, targetStatus)
|
2020-01-09 06:56:32 -05:00
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
2022-11-19 03:12:33 -05:00
|
|
|
if err = notif.LoadAttributes(ctx); err != nil && !issues_model.IsErrCommentNotExist(err) {
|
2021-09-17 19:40:50 -04:00
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
2023-09-29 08:12:54 -04:00
|
|
|
ctx.JSON(http.StatusResetContent, convert.ToNotificationThread(ctx, notif))
|
2020-01-09 06:56:32 -05:00
|
|
|
}
|
|
|
|
|
2022-08-24 22:31:57 -04:00
|
|
|
func getThread(ctx *context.APIContext) *activities_model.Notification {
|
2022-11-19 03:12:33 -05:00
|
|
|
n, err := activities_model.GetNotificationByID(ctx, ctx.ParamsInt64(":id"))
|
2020-01-09 06:56:32 -05:00
|
|
|
if err != nil {
|
2022-05-08 09:46:34 -04:00
|
|
|
if db.IsErrNotExist(err) {
|
2020-01-09 06:56:32 -05:00
|
|
|
ctx.Error(http.StatusNotFound, "GetNotificationByID", err)
|
|
|
|
} else {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2022-03-22 03:03:22 -04:00
|
|
|
if n.UserID != ctx.Doer.ID && !ctx.Doer.IsAdmin {
|
2020-01-09 06:56:32 -05:00
|
|
|
ctx.Error(http.StatusForbidden, "GetNotificationByID", fmt.Errorf("only user itself and admin are allowed to read/change this thread %d", n.ID))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return n
|
|
|
|
}
|