2646bc2db8
Showing how we can remove services, preventing cyclic imports and lessing the number of imports. Now db is in models. Db and models are highly tightened, according to go standards, you should put them in the same package. In models, there are folders separating the different methods used to modify the models. For example, if you want to create a user, you have to use /models (for the user struct) and /models/user (for creating a user. However, if you want to delete a torrent, you just have to import /models and do torrent.Delete(definitely bool). By the way packages in models are the plural name of a model. For example, you have torrent.go for a torrent model and its package torrents for db stuff related functions (Find, Create, Some helpers)
28 lignes
897 o
Go
28 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{})
|
|
}
|