scinote-web/app/models/user_notification.rb

62 lines
1.6 KiB
Ruby
Raw Normal View History

class UserNotification < ActiveRecord::Base
2016-10-05 16:52:27 +08:00
include NotificationsHelper
belongs_to :user
belongs_to :notification
2016-09-28 22:03:52 +08:00
2016-10-05 16:52:27 +08:00
after_save :send_email
def self.last_notifications(
user,
last_notification_id = nil,
per_page = Constants::ACTIVITY_AND_NOTIF_SEARCH_LIMIT
)
last_notification_id = Constants::INFINITY if last_notification_id < 1
2016-10-03 20:40:15 +08:00
Notification.joins(:user_notifications)
.where('user_notifications.user_id = ?', user.id)
.where('notifications.id < ?', last_notification_id)
2016-10-03 20:40:15 +08:00
.order(created_at: :DESC)
.limit(per_page)
2016-10-03 20:40:15 +08:00
end
2016-09-29 20:49:58 +08:00
def self.recent_notifications(user)
Notification.joins(:user_notifications)
.where('user_notifications.user_id = ?', user.id)
.order(created_at: :DESC)
.limit(Constants::ACTIVITY_AND_NOTIF_SEARCH_LIMIT)
2016-09-28 22:03:52 +08:00
end
2016-10-03 14:20:23 +08:00
def self.unseen_notification_count(user)
2016-09-29 20:49:58 +08:00
where('user_id = ? AND checked = false', user.id).count
2016-09-28 22:03:52 +08:00
end
def self.seen_by_user(user)
where(user: user).where(checked: false).update_all(checked: true)
end
2016-10-05 16:52:27 +08:00
def send_email
case notification.type_of
when 'system_message'
send_email_notification(
user,
notification
) if user.system_message_notification_email
when 'assignment'
send_email_notification(
user,
notification
) if user.assignments_notification_email
when 'recent_changes'
send_email_notification(
user,
notification
) if user.recent_notification_email
2017-03-23 22:45:02 +08:00
when 'deliver'
send_email_notification(
user,
notification
)
2016-10-05 16:52:27 +08:00
end
end
end