1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-09 04:45:48 +00:00
gitea/routers/user/notification.go

82 lines
1.7 KiB
Go
Raw Normal View History

2016-12-30 18:49:54 +00:00
package user
import (
"fmt"
2017-01-02 18:31:50 +00:00
"strings"
2016-12-30 18:49:54 +00:00
2017-01-03 19:09:36 +00:00
"github.com/Unknwon/paginater"
2016-12-30 18:49:54 +00:00
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/base"
"code.gitea.io/gitea/modules/context"
)
const (
tplNotification base.TplName = "user/notification/notification"
)
// GetNotificationCount is the middleware that sets the notification count in the context
func GetNotificationCount(c *context.Context) {
2017-01-02 18:31:50 +00:00
if strings.HasPrefix(c.Req.URL.Path, "/api") {
return
}
2016-12-30 18:49:54 +00:00
if !c.IsSigned {
return
}
count, err := models.GetNotificationUnreadCount(c.User)
if err != nil {
c.Handle(500, "GetNotificationCount", err)
return
}
c.Data["NotificationUnreadCount"] = count
}
// Notifications is the notifications page
func Notifications(c *context.Context) {
2017-01-03 19:09:36 +00:00
var (
keyword = c.Query("q")
status models.NotificationStatus
page = c.QueryInt("page")
perPage = c.QueryInt("perPage")
)
if page < 1 {
page = 1
}
if perPage < 1 {
perPage = 20
}
switch keyword {
2016-12-30 18:49:54 +00:00
case "read":
status = models.NotificationStatusRead
default:
status = models.NotificationStatusUnread
}
2017-01-03 19:09:36 +00:00
notifications, err := models.NotificationsForUser(c.User, status, page, perPage)
2016-12-30 18:49:54 +00:00
if err != nil {
c.Handle(500, "ErrNotificationsForUser", err)
return
}
2017-01-03 19:09:36 +00:00
total, err := models.GetNotificationCount(c.User, status)
if err != nil {
c.Handle(500, "ErrGetNotificationCount", err)
return
}
2016-12-30 18:49:54 +00:00
title := "Notifications"
if count := len(notifications); count > 0 {
title = fmt.Sprintf("(%d) %s", count, title)
}
c.Data["Title"] = title
2017-01-03 19:09:36 +00:00
c.Data["Keyword"] = keyword
2016-12-30 18:49:54 +00:00
c.Data["Status"] = status
c.Data["Notifications"] = notifications
2017-01-03 19:09:36 +00:00
c.Data["Page"] = paginater.New(int(total), perPage, page, 5)
2016-12-30 18:49:54 +00:00
c.HTML(200, tplNotification)
}