Retrospring/app/models/notification.rb

49 lines
1.4 KiB
Ruby
Raw Normal View History

2020-04-18 15:59:18 -07:00
class Notification < ApplicationRecord
2014-12-14 05:34:51 -08:00
belongs_to :recipient, class_name: 'User'
2014-12-14 05:49:14 -08:00
belongs_to :target, polymorphic: true
2014-12-14 05:34:51 -08:00
class << self
include CursorPaginatable
define_cursor_paginator :cursored_for, :for
define_cursor_paginator :cursored_for_type, :for_type
2014-12-14 05:34:51 -08:00
def for(recipient, options={})
2015-02-09 22:04:49 -08:00
self.where(options.merge!(recipient: recipient)).order(:created_at).reverse_order
2014-12-14 05:34:51 -08:00
end
def for_type(recipient, type, options={})
self.where(options.merge!(recipient: recipient)).where('LOWER(target_type) = ?', type).order(:created_at).reverse_order
end
2014-12-14 05:34:51 -08:00
def notify(recipient, target)
return nil unless target.respond_to? :notification_type
notif_type = target.notification_type
return nil unless notif_type
make_notification(recipient, target, notif_type)
end
2014-12-14 06:42:37 -08:00
def denotify(recipient, target)
return nil unless target.respond_to? :notification_type
notif_type = target.notification_type
return nil unless notif_type
2022-07-08 13:36:47 -07:00
notif = Notification.find_by(recipient: recipient, target: target)
2014-12-14 06:48:10 -08:00
notif.destroy unless notif.nil?
2014-12-14 06:42:37 -08:00
end
2014-12-14 05:34:51 -08:00
private
def make_notification(recipient, target, notification_type)
n = notification_type.new(target: target,
recipient: recipient,
new: true)
n.save!
n
end
end
2014-12-13 10:30:10 -08:00
end