2020-01-09 11:56:32 +00:00
|
|
|
// Copyright 2020 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 notify
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
2022-08-25 02:31:57 +00:00
|
|
|
activities_model "code.gitea.io/gitea/models/activities"
|
2022-05-08 13:46:34 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-13 09:37:59 +00:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2020-01-09 11:56:32 +00:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2020-12-02 09:24:35 +00:00
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2020-01-09 11:56:32 +00: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 08:12:33 +00:00
|
|
|
if err := n.LoadAttributes(ctx); err != nil && !issues_model.IsErrCommentNotExist(err) {
|
2020-01-09 11:56:32 +00:00
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-02 09:24:35 +00:00
|
|
|
ctx.JSON(http.StatusOK, convert.ToNotificationThread(n))
|
2020-01-09 11:56:32 +00: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 21:46:01 +00:00
|
|
|
// - name: to-status
|
|
|
|
// in: query
|
|
|
|
// description: Status to mark notifications as
|
|
|
|
// type: string
|
|
|
|
// default: read
|
|
|
|
// required: false
|
2020-01-09 11:56:32 +00:00
|
|
|
// responses:
|
|
|
|
// "205":
|
2021-09-17 23:40:50 +00:00
|
|
|
// "$ref": "#/responses/NotificationThread"
|
2020-01-09 11:56:32 +00:00
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
|
|
|
n := getThread(ctx)
|
|
|
|
if n == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-08-11 00:31:13 +00:00
|
|
|
targetStatus := statusStringToNotificationStatus(ctx.FormString("to-status"))
|
2020-07-11 21:46:01 +00:00
|
|
|
if targetStatus == 0 {
|
2022-08-25 02:31:57 +00:00
|
|
|
targetStatus = activities_model.NotificationStatusRead
|
2020-07-11 21:46:01 +00:00
|
|
|
}
|
|
|
|
|
2022-11-19 08:12:33 +00:00
|
|
|
notif, err := activities_model.SetNotificationStatus(ctx, n.ID, ctx.Doer, targetStatus)
|
2020-01-09 11:56:32 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
2022-11-19 08:12:33 +00:00
|
|
|
if err = notif.LoadAttributes(ctx); err != nil && !issues_model.IsErrCommentNotExist(err) {
|
2021-09-17 23:40:50 +00:00
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.JSON(http.StatusResetContent, convert.ToNotificationThread(notif))
|
2020-01-09 11:56:32 +00:00
|
|
|
}
|
|
|
|
|
2022-08-25 02:31:57 +00:00
|
|
|
func getThread(ctx *context.APIContext) *activities_model.Notification {
|
2022-11-19 08:12:33 +00:00
|
|
|
n, err := activities_model.GetNotificationByID(ctx, ctx.ParamsInt64(":id"))
|
2020-01-09 11:56:32 +00:00
|
|
|
if err != nil {
|
2022-05-08 13:46:34 +00:00
|
|
|
if db.IsErrNotExist(err) {
|
2020-01-09 11:56:32 +00:00
|
|
|
ctx.Error(http.StatusNotFound, "GetNotificationByID", err)
|
|
|
|
} else {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2022-03-22 07:03:22 +00:00
|
|
|
if n.UserID != ctx.Doer.ID && !ctx.Doer.IsAdmin {
|
2020-01-09 11:56:32 +00: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
|
|
|
|
}
|