29 lignes
897 o
Go
29 lignes
897 o
Go
|
package notifications
|
||
|
|
||
|
import (
|
||
|
"github.com/NyaaPantsu/nyaa/models"
|
||
|
)
|
||
|
|
||
|
// NotifyUser : Notify a user with a notification according to his settings
|
||
|
func NotifyUser(user *models.User, name string, msg string, url string, email bool) {
|
||
|
if user.ID > 0 {
|
||
|
notification := models.NewNotification(name, msg, url)
|
||
|
notification.UserID = user.ID
|
||
|
models.ORM.Create(¬ification)
|
||
|
// TODO: Email notification
|
||
|
/* if email {
|
||
|
|
||
|
}*/
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// ToggleReadNotification : Make a notification as read according to its identifier
|
||
|
func ToggleReadNotification(identifier string, id uint) { //
|
||
|
models.ORM.Model(&models.Notification{}).Where("identifier = ? AND user_id = ?", identifier, id).Updates(models.Notification{Read: true})
|
||
|
}
|
||
|
|
||
|
// DeleteAllNotifications : Erase notifications from a user
|
||
|
func DeleteAllNotifications(id uint) { //
|
||
|
models.ORM.Where("user_id = ?", id).Delete(&models.Notification{})
|
||
|
}
|