2020-01-09 14:56:32 +03: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 (
"net/http"
"strings"
"time"
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/context"
2020-12-02 12:24:35 +03:00
"code.gitea.io/gitea/modules/convert"
2020-01-09 14:56:32 +03:00
"code.gitea.io/gitea/routers/api/v1/utils"
)
// 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: string
// required: false
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
// required: false
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
// required: false
// - 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
// required: false
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"
before , since , err := utils . GetQueryBeforeSince ( ctx )
if err != nil {
2020-11-14 17:05:40 +03:00
ctx . Error ( http . StatusUnprocessableEntity , "GetQueryBeforeSince" , err )
2020-01-09 14:56:32 +03:00
return
}
opts := models . FindNotificationOptions {
2020-01-24 22:00:29 +03:00
ListOptions : utils . GetListOptions ( ctx ) ,
2020-01-09 14:56:32 +03:00
UserID : ctx . User . ID ,
UpdatedBeforeUnix : before ,
UpdatedAfterUnix : since ,
}
2020-07-12 00:46:01 +03:00
if ! ctx . QueryBool ( "all" ) {
statuses := ctx . QueryStrings ( "status-types" )
opts . Status = statusStringsToNotificationStatuses ( statuses , [ ] string { "unread" , "pinned" } )
2020-01-09 14:56:32 +03:00
}
nl , err := models . GetNotifications ( opts )
if err != nil {
ctx . InternalServerError ( err )
return
}
err = nl . LoadAttributes ( )
if err != nil {
ctx . InternalServerError ( err )
return
}
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":
// "$ref": "#/responses/empty"
lastRead := int64 ( 0 )
qLastRead := strings . Trim ( ctx . Query ( "last_read_at" ) , " " )
if len ( qLastRead ) > 0 {
tmpLastRead , err := time . Parse ( time . RFC3339 , qLastRead )
if err != nil {
ctx . InternalServerError ( err )
return
}
if ! tmpLastRead . IsZero ( ) {
lastRead = tmpLastRead . Unix ( )
}
}
opts := models . FindNotificationOptions {
UserID : ctx . User . ID ,
UpdatedBeforeUnix : lastRead ,
2020-07-12 00:46:01 +03:00
}
if ! ctx . QueryBool ( "all" ) {
statuses := ctx . QueryStrings ( "status-types" )
opts . Status = statusStringsToNotificationStatuses ( statuses , [ ] string { "unread" } )
2020-01-09 14:56:32 +03:00
}
nl , err := models . GetNotifications ( opts )
if err != nil {
ctx . InternalServerError ( err )
return
}
2020-07-12 00:46:01 +03:00
targetStatus := statusStringToNotificationStatus ( ctx . Query ( "to-status" ) )
if targetStatus == 0 {
targetStatus = models . NotificationStatusRead
}
2020-01-09 14:56:32 +03:00
for _ , n := range nl {
2020-07-12 00:46:01 +03:00
err := models . SetNotificationStatus ( n . ID , ctx . User , targetStatus )
2020-01-09 14:56:32 +03:00
if err != nil {
ctx . InternalServerError ( err )
return
}
ctx . Status ( http . StatusResetContent )
}
ctx . Status ( http . StatusResetContent )
}