2018-02-28 23:06:03 +00:00
|
|
|
package notifications
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/aerogo/aero"
|
|
|
|
"github.com/animenotifier/arn"
|
|
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CountUnseen sends the number of unseen notifications.
|
|
|
|
func CountUnseen(ctx *aero.Context) string {
|
|
|
|
user := utils.GetUser(ctx)
|
|
|
|
|
|
|
|
if user == nil {
|
|
|
|
return ctx.Error(http.StatusBadRequest, "Not logged in", nil)
|
|
|
|
}
|
|
|
|
|
2018-03-03 22:37:30 +00:00
|
|
|
unseen := user.Notifications().CountUnseen()
|
2018-02-28 23:06:03 +00:00
|
|
|
|
|
|
|
return ctx.Text(strconv.Itoa(unseen))
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarkNotificationsAsSeen marks all notifications as seen.
|
|
|
|
func MarkNotificationsAsSeen(ctx *aero.Context) string {
|
|
|
|
user := utils.GetUser(ctx)
|
|
|
|
|
|
|
|
if user == nil {
|
|
|
|
return ctx.Error(http.StatusBadRequest, "Not logged in", nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
notifications := user.Notifications().Notifications()
|
|
|
|
|
|
|
|
for _, notification := range notifications {
|
|
|
|
notification.Seen = arn.DateTimeUTC()
|
|
|
|
notification.Save()
|
|
|
|
}
|
|
|
|
|
|
|
|
return "ok"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test sends a test notification to the logged in user.
|
|
|
|
func Test(ctx *aero.Context) string {
|
|
|
|
user := utils.GetUser(ctx)
|
|
|
|
|
|
|
|
if user == nil {
|
|
|
|
return ctx.Error(http.StatusBadRequest, "Not logged in", nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
user.SendNotification(&arn.PushNotification{
|
|
|
|
Title: "Anime Notifier",
|
|
|
|
Message: "Yay, it works!",
|
|
|
|
Icon: "https://" + ctx.App.Config.Domain + "/images/brand/220.png",
|
|
|
|
Type: arn.NotificationTypeTest,
|
|
|
|
})
|
|
|
|
|
|
|
|
return "ok"
|
|
|
|
}
|