Files

177 lines
4.9 KiB
Go
Raw Permalink Normal View History

2020-01-09 12:56:32 +01:00
// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2020-01-09 12:56:32 +01:00
package notify
import (
"net/http"
"time"
activities_model "code.gitea.io/gitea/models/activities"
"code.gitea.io/gitea/models/db"
"code.gitea.io/gitea/modules/structs"
"code.gitea.io/gitea/services/context"
2022-12-29 03:57:15 +01:00
"code.gitea.io/gitea/services/convert"
2020-01-09 12:56:32 +01:00
)
// ListNotifications list users's notification threads
func ListNotifications(ctx *context.APIContext) {
// swagger:operation GET /notifications notification notifyGetList
// ---
// summary: List users's notification threads
// consumes:
// - application/json
// produces:
// - application/json
// parameters:
// - name: all
// in: query
// description: If true, show notifications marked as read. Default value is false
// type: boolean
// - name: status-types
// in: query
// description: "Show notifications with the provided status types. Options are: unread, read and/or pinned. Defaults to unread & pinned."
// type: array
// collectionFormat: multi
// items:
// type: string
// - name: subject-type
// in: query
// description: "filter notifications by subject type"
// type: array
// collectionFormat: multi
// items:
// type: string
// enum: [issue,pull,commit,repository]
2020-01-09 12:56:32 +01:00
// - name: since
// in: query
// description: Only show notifications updated after the given time. This is a timestamp in RFC 3339 format
// type: string
// format: date-time
// - name: before
// in: query
// description: Only show notifications updated before the given time. This is a timestamp in RFC 3339 format
// type: string
// format: date-time
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
// description: page size of results
2020-01-24 19:00:29 +00:00
// type: integer
2020-01-09 12:56:32 +01:00
// responses:
// "200":
// "$ref": "#/responses/NotificationThreadList"
opts := getFindNotificationOptions(ctx)
if ctx.Written() {
2020-01-09 12:56:32 +01:00
return
}
totalCount, err := db.Count[activities_model.Notification](ctx, opts)
2021-08-12 14:43:08 +02:00
if err != nil {
2025-02-17 14:13:17 +08:00
ctx.APIErrorInternal(err)
2021-08-12 14:43:08 +02:00
return
}
nl, err := db.Find[activities_model.Notification](ctx, opts)
2020-01-09 12:56:32 +01:00
if err != nil {
2025-02-17 14:13:17 +08:00
ctx.APIErrorInternal(err)
2020-01-09 12:56:32 +01:00
return
}
err = activities_model.NotificationList(nl).LoadAttributes(ctx)
2020-01-09 12:56:32 +01:00
if err != nil {
2025-02-17 14:13:17 +08:00
ctx.APIErrorInternal(err)
2020-01-09 12:56:32 +01:00
return
}
2026-03-08 15:35:50 +01:00
ctx.SetLinkHeader(totalCount, opts.PageSize)
2021-08-12 14:43:08 +02:00
ctx.SetTotalCountHeader(totalCount)
2023-09-29 14:12:54 +02:00
ctx.JSON(http.StatusOK, convert.ToNotifications(ctx, nl))
2020-01-09 12:56:32 +01:00
}
// ReadNotifications mark notification threads as read, unread, or pinned
2020-01-09 12:56:32 +01:00
func ReadNotifications(ctx *context.APIContext) {
// swagger:operation PUT /notifications notification notifyReadList
// ---
// summary: Mark notification threads as read, pinned or unread
2020-01-09 12:56:32 +01:00
// consumes:
// - application/json
// produces:
// - application/json
// parameters:
// - name: last_read_at
// in: query
// description: Describes the last point that notifications were checked. Anything updated since this time will not be updated.
// type: string
// format: date-time
// required: false
// - name: all
// in: query
// description: If true, mark all notifications on this repo. Default value is false
// type: string
// required: false
// - name: status-types
// in: query
// description: "Mark notifications with the provided status types. Options are: unread, read and/or pinned. Defaults to unread."
// type: array
// collectionFormat: multi
// items:
// type: string
// required: false
// - name: to-status
// in: query
// description: Status to mark notifications as, Defaults to read.
// type: string
// required: false
2020-01-09 12:56:32 +01:00
// responses:
// "205":
// "$ref": "#/responses/NotificationThreadList"
2020-01-09 12:56:32 +01:00
lastRead := int64(0)
qLastRead := ctx.FormTrim("last_read_at")
2020-01-09 12:56:32 +01:00
if len(qLastRead) > 0 {
tmpLastRead, err := time.Parse(time.RFC3339, qLastRead)
if err != nil {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusBadRequest, err)
2020-01-09 12:56:32 +01:00
return
}
if !tmpLastRead.IsZero() {
lastRead = tmpLastRead.Unix()
}
}
opts := &activities_model.FindNotificationOptions{
2022-03-22 08:03:22 +01:00
UserID: ctx.Doer.ID,
2020-01-09 12:56:32 +01:00
UpdatedBeforeUnix: lastRead,
}
if !ctx.FormBool("all") {
statuses := ctx.FormStrings("status-types")
opts.Status = statusStringsToNotificationStatuses(statuses, []string{"unread"})
2020-01-09 12:56:32 +01:00
}
nl, err := db.Find[activities_model.Notification](ctx, opts)
2020-01-09 12:56:32 +01:00
if err != nil {
2025-02-17 14:13:17 +08:00
ctx.APIErrorInternal(err)
2020-01-09 12:56:32 +01:00
return
}
targetStatus := statusStringToNotificationStatus(ctx.FormString("to-status"))
if targetStatus == 0 {
targetStatus = activities_model.NotificationStatusRead
}
changed := make([]*structs.NotificationThread, 0, len(nl))
2020-01-09 12:56:32 +01:00
for _, n := range nl {
notif, err := activities_model.SetNotificationStatus(ctx, n.ID, ctx.Doer, targetStatus)
2020-01-09 12:56:32 +01:00
if err != nil {
2025-02-17 14:13:17 +08:00
ctx.APIErrorInternal(err)
2020-01-09 12:56:32 +01:00
return
}
_ = notif.LoadAttributes(ctx)
2023-09-29 14:12:54 +02:00
changed = append(changed, convert.ToNotificationThread(ctx, notif))
2020-01-09 12:56:32 +01:00
}
ctx.JSON(http.StatusResetContent, changed)
2020-01-09 12:56:32 +01:00
}