2020-01-09 14:56:32 +03:00
// Copyright 2020 The Gitea Authors. All rights reserved.
2022-11-27 21:20:29 +03:00
// SPDX-License-Identifier: MIT
2020-01-09 14:56:32 +03:00
package notify
import (
"net/http"
"time"
2022-08-25 05:31:57 +03:00
activities_model "code.gitea.io/gitea/models/activities"
2020-01-09 14:56:32 +03:00
"code.gitea.io/gitea/modules/context"
2021-09-18 02:40:50 +03:00
"code.gitea.io/gitea/modules/structs"
2022-12-29 05:57:15 +03:00
"code.gitea.io/gitea/services/convert"
2020-01-09 14:56:32 +03: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
2021-06-17 17:02:34 +03:00
// type: boolean
2020-07-12 00:46:01 +03:00
// - 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
2021-06-16 20:04:37 +03:00
// - 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 14:56:32 +03: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 22:00:29 +03:00
// - name: page
// in: query
// description: page number of results to return (1-based)
// type: integer
// - name: limit
// in: query
2020-06-09 07:57:38 +03:00
// description: page size of results
2020-01-24 22:00:29 +03:00
// type: integer
2020-01-09 14:56:32 +03:00
// responses:
// "200":
// "$ref": "#/responses/NotificationThreadList"
2021-06-16 20:04:37 +03:00
opts := getFindNotificationOptions ( ctx )
if ctx . Written ( ) {
2020-01-09 14:56:32 +03:00
return
}
2021-06-16 20:04:37 +03:00
2022-11-19 11:12:33 +03:00
totalCount , err := activities_model . CountNotifications ( ctx , opts )
2021-08-12 15:43:08 +03:00
if err != nil {
ctx . InternalServerError ( err )
return
}
2022-08-25 05:31:57 +03:00
nl , err := activities_model . GetNotifications ( ctx , opts )
2020-01-09 14:56:32 +03:00
if err != nil {
ctx . InternalServerError ( err )
return
}
2022-11-19 11:12:33 +03:00
err = nl . LoadAttributes ( ctx )
2020-01-09 14:56:32 +03:00
if err != nil {
ctx . InternalServerError ( err )
return
}
2021-08-12 15:43:08 +03:00
ctx . SetTotalCountHeader ( totalCount )
2020-12-02 12:24:35 +03:00
ctx . JSON ( http . StatusOK , convert . ToNotifications ( nl ) )
2020-01-09 14:56:32 +03:00
}
2020-07-12 00:46:01 +03:00
// ReadNotifications mark notification threads as read, unread, or pinned
2020-01-09 14:56:32 +03:00
func ReadNotifications ( ctx * context . APIContext ) {
// swagger:operation PUT /notifications notification notifyReadList
// ---
2020-07-12 00:46:01 +03:00
// summary: Mark notification threads as read, pinned or unread
2020-01-09 14:56:32 +03: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
2020-07-12 00:46:01 +03:00
// - 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 14:56:32 +03:00
// responses:
// "205":
2021-09-18 02:40:50 +03:00
// "$ref": "#/responses/NotificationThreadList"
2020-01-09 14:56:32 +03:00
lastRead := int64 ( 0 )
2021-08-11 18:08:52 +03:00
qLastRead := ctx . FormTrim ( "last_read_at" )
2020-01-09 14:56:32 +03:00
if len ( qLastRead ) > 0 {
tmpLastRead , err := time . Parse ( time . RFC3339 , qLastRead )
if err != nil {
2023-06-28 17:26:56 +03:00
ctx . Error ( http . StatusBadRequest , "Parse" , err )
2020-01-09 14:56:32 +03:00
return
}
if ! tmpLastRead . IsZero ( ) {
lastRead = tmpLastRead . Unix ( )
}
}
2022-08-25 05:31:57 +03:00
opts := & activities_model . FindNotificationOptions {
2022-03-22 10:03:22 +03:00
UserID : ctx . Doer . ID ,
2020-01-09 14:56:32 +03:00
UpdatedBeforeUnix : lastRead ,
2020-07-12 00:46:01 +03:00
}
2021-07-29 04:42:15 +03:00
if ! ctx . FormBool ( "all" ) {
statuses := ctx . FormStrings ( "status-types" )
2020-07-12 00:46:01 +03:00
opts . Status = statusStringsToNotificationStatuses ( statuses , [ ] string { "unread" } )
2020-01-09 14:56:32 +03:00
}
2022-08-25 05:31:57 +03:00
nl , err := activities_model . GetNotifications ( ctx , opts )
2020-01-09 14:56:32 +03:00
if err != nil {
ctx . InternalServerError ( err )
return
}
2021-08-11 03:31:13 +03:00
targetStatus := statusStringToNotificationStatus ( ctx . FormString ( "to-status" ) )
2020-07-12 00:46:01 +03:00
if targetStatus == 0 {
2022-08-25 05:31:57 +03:00
targetStatus = activities_model . NotificationStatusRead
2020-07-12 00:46:01 +03:00
}
2021-09-18 02:40:50 +03:00
changed := make ( [ ] * structs . NotificationThread , 0 , len ( nl ) )
2020-01-09 14:56:32 +03:00
for _ , n := range nl {
2022-11-19 11:12:33 +03:00
notif , err := activities_model . SetNotificationStatus ( ctx , n . ID , ctx . Doer , targetStatus )
2020-01-09 14:56:32 +03:00
if err != nil {
ctx . InternalServerError ( err )
return
}
2022-11-19 11:12:33 +03:00
_ = notif . LoadAttributes ( ctx )
2021-09-18 02:40:50 +03:00
changed = append ( changed , convert . ToNotificationThread ( notif ) )
2020-01-09 14:56:32 +03:00
}
2021-09-18 02:40:50 +03:00
ctx . JSON ( http . StatusResetContent , changed )
2020-01-09 14:56:32 +03:00
}