2014-08-26 07:54:12 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
|
|
|
class OnlineNotification < ApplicationModel
|
2015-04-27 13:42:53 +00:00
|
|
|
belongs_to :type_lookup, class_name: 'TypeLookup'
|
|
|
|
belongs_to :object_lookup, class_name: 'ObjectLookup'
|
2015-06-30 22:25:05 +00:00
|
|
|
belongs_to :user
|
2014-08-26 07:54:12 +00:00
|
|
|
|
|
|
|
after_create :notify_clients_after_change
|
|
|
|
after_update :notify_clients_after_change
|
|
|
|
after_destroy :notify_clients_after_change
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
add a new online notification for this user
|
|
|
|
|
|
|
|
OnlineNotification.add(
|
2015-09-03 09:14:09 +00:00
|
|
|
type: 'Assigned to you',
|
|
|
|
object: 'Ticket',
|
|
|
|
o_id: ticket.id,
|
|
|
|
seen: false,
|
|
|
|
user_id: 2,
|
2016-02-21 11:43:16 +00:00
|
|
|
created_by_id: 1,
|
|
|
|
updated_by_id: 1,
|
|
|
|
created_at: Time.zone.now,
|
|
|
|
updated_at: Time.zone.now,
|
2014-08-26 07:54:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.add(data)
|
|
|
|
|
|
|
|
# lookups
|
|
|
|
if data[:type]
|
2016-02-20 10:12:15 +00:00
|
|
|
type_id = TypeLookup.by_name(data[:type])
|
2014-08-26 07:54:12 +00:00
|
|
|
end
|
|
|
|
if data[:object]
|
2016-02-20 10:12:15 +00:00
|
|
|
object_id = ObjectLookup.by_name(data[:object])
|
2014-08-26 07:54:12 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
record = {
|
2015-04-27 13:42:53 +00:00
|
|
|
o_id: data[:o_id],
|
|
|
|
object_lookup_id: object_id,
|
|
|
|
type_lookup_id: type_id,
|
|
|
|
seen: data[:seen],
|
|
|
|
user_id: data[:user_id],
|
2016-02-21 11:43:16 +00:00
|
|
|
created_by_id: data[:created_by_id],
|
|
|
|
updated_by_id: data[:updated_by_id],
|
|
|
|
created_at: data[:created_at],
|
|
|
|
updated_at: data[:updated_at],
|
2014-08-26 07:54:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
OnlineNotification.create(record)
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
2015-01-12 22:13:50 +00:00
|
|
|
mark online notification as seen
|
2014-08-26 07:54:12 +00:00
|
|
|
|
2015-01-12 22:13:50 +00:00
|
|
|
OnlineNotification.seen(
|
2015-09-03 09:14:09 +00:00
|
|
|
id: 2,
|
2014-08-26 07:54:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.seen(data)
|
2015-04-30 17:14:51 +00:00
|
|
|
notification = OnlineNotification.find(data[:id])
|
2015-05-01 11:53:35 +00:00
|
|
|
notification.seen = true
|
|
|
|
notification.save
|
2014-08-26 07:54:12 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
remove whole online notifications of an object
|
|
|
|
|
2016-02-20 10:12:15 +00:00
|
|
|
OnlineNotification.remove('Ticket', 123)
|
2014-08-26 07:54:12 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
2016-02-20 10:12:15 +00:00
|
|
|
def self.remove(object_name, o_id)
|
|
|
|
object_id = ObjectLookup.by_name(object_name)
|
2014-08-26 07:54:12 +00:00
|
|
|
OnlineNotification.where(
|
2015-04-27 13:42:53 +00:00
|
|
|
object_lookup_id: object_id,
|
|
|
|
o_id: o_id,
|
2014-08-26 07:54:12 +00:00
|
|
|
).destroy_all
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
2016-02-20 10:12:15 +00:00
|
|
|
remove whole online notifications of an object by type
|
|
|
|
|
|
|
|
OnlineNotification.remove_by_type('Ticket', 123, type)
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.remove_by_type(object_name, o_id, type)
|
|
|
|
object_id = ObjectLookup.by_name(object_name)
|
|
|
|
type_id = TypeLookup.by_name(type)
|
|
|
|
OnlineNotification.where(
|
|
|
|
object_lookup_id: object_id,
|
|
|
|
type_lookup_id: type_id,
|
|
|
|
o_id: o_id,
|
|
|
|
).destroy_all
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
2014-08-26 07:54:12 +00:00
|
|
|
return all online notifications of an user
|
|
|
|
|
2016-02-20 10:12:15 +00:00
|
|
|
notifications = OnlineNotification.list(user, limit)
|
2014-08-26 07:54:12 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
2015-04-27 14:53:29 +00:00
|
|
|
def self.list(user, limit)
|
2014-08-26 07:54:12 +00:00
|
|
|
|
2015-04-30 17:51:31 +00:00
|
|
|
notifications = OnlineNotification.where(user_id: user.id)
|
2016-02-20 10:12:15 +00:00
|
|
|
.order('created_at DESC, id DESC')
|
|
|
|
.limit(limit)
|
2014-08-26 07:54:12 +00:00
|
|
|
list = []
|
|
|
|
notifications.each do |item|
|
2015-09-03 09:14:09 +00:00
|
|
|
data = item.attributes
|
2016-02-20 10:12:15 +00:00
|
|
|
data['object'] = ObjectLookup.by_id(data['object_lookup_id'])
|
|
|
|
data['type'] = TypeLookup.by_id(data['type_lookup_id'])
|
2014-08-26 07:54:12 +00:00
|
|
|
data.delete('object_lookup_id')
|
|
|
|
data.delete('type_lookup_id')
|
|
|
|
list.push data
|
|
|
|
end
|
|
|
|
list
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
2015-04-01 11:14:46 +00:00
|
|
|
return all online notifications of an object
|
|
|
|
|
2016-02-20 10:12:15 +00:00
|
|
|
notifications = OnlineNotification.list_by_object('Ticket', 123)
|
2015-04-01 11:47:10 +00:00
|
|
|
|
2015-04-01 11:14:46 +00:00
|
|
|
=end
|
|
|
|
|
2016-02-20 10:12:15 +00:00
|
|
|
def self.list_by_object(object_name, o_id)
|
|
|
|
object_id = ObjectLookup.by_name(object_name)
|
2015-04-01 14:33:24 +00:00
|
|
|
notifications = OnlineNotification.where(
|
2015-04-27 13:42:53 +00:00
|
|
|
object_lookup_id: object_id,
|
|
|
|
o_id: o_id,
|
2015-04-30 17:51:31 +00:00
|
|
|
)
|
2016-02-20 10:12:15 +00:00
|
|
|
.order('created_at DESC, id DESC')
|
|
|
|
.limit(10_000)
|
2015-09-03 09:14:09 +00:00
|
|
|
notifications
|
2015-04-01 11:14:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
2015-04-01 11:47:10 +00:00
|
|
|
mark online notification as seen by object
|
|
|
|
|
2016-02-20 10:12:15 +00:00
|
|
|
OnlineNotification.seen_by_object('Ticket', 123, user_id)
|
2015-04-01 11:47:10 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.seen_by_object(object_name, o_id)
|
2016-02-20 10:12:15 +00:00
|
|
|
object_id = ObjectLookup.by_name(object_name)
|
2015-04-30 17:14:51 +00:00
|
|
|
notifications = OnlineNotification.where(
|
|
|
|
object_lookup_id: object_id,
|
|
|
|
o_id: o_id,
|
|
|
|
seen: false,
|
|
|
|
)
|
|
|
|
notifications.each do |notification|
|
|
|
|
notification.seen = true
|
|
|
|
notification.save
|
|
|
|
end
|
|
|
|
true
|
2015-04-01 11:47:10 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
2014-08-26 07:54:12 +00:00
|
|
|
return all online notifications of an user with assets
|
|
|
|
|
2016-02-20 10:12:15 +00:00
|
|
|
OnlineNotification.list_full(user)
|
2014-08-26 07:54:12 +00:00
|
|
|
|
|
|
|
returns:
|
|
|
|
|
|
|
|
list = {
|
2015-09-03 09:14:09 +00:00
|
|
|
stream: notifications,
|
|
|
|
assets: assets,
|
2014-08-26 07:54:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
2015-04-27 14:53:29 +00:00
|
|
|
def self.list_full(user, limit)
|
2014-08-26 07:54:12 +00:00
|
|
|
|
|
|
|
notifications = OnlineNotification.list(user, limit)
|
|
|
|
assets = ApplicationModel.assets_of_object_list(notifications)
|
2015-04-30 17:20:27 +00:00
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
stream: notifications,
|
|
|
|
assets: assets
|
2014-08-26 07:54:12 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def notify_clients_after_change
|
2014-08-27 13:06:09 +00:00
|
|
|
Sessions.send_to(
|
2015-05-07 12:10:38 +00:00
|
|
|
user_id,
|
2014-08-27 13:06:09 +00:00
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
event: 'OnlineNotification::changed',
|
|
|
|
data: {}
|
2014-08-27 13:06:09 +00:00
|
|
|
}
|
2014-08-26 07:54:12 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2015-06-30 22:25:05 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
cleanup old online notifications
|
|
|
|
|
|
|
|
OnlineNotification.cleanup
|
|
|
|
|
2016-02-21 11:43:16 +00:00
|
|
|
with dedicated times
|
|
|
|
|
|
|
|
max_age = Time.zone.now - 9.months
|
|
|
|
max_own_seen = Time.zone.now - 35.minutes
|
|
|
|
max_auto_seen = Time.zone.now - 8.hours
|
|
|
|
|
|
|
|
OnlineNotification.cleanup(max_age, max_own_seen, max_auto_seen)
|
|
|
|
|
2015-06-30 22:25:05 +00:00
|
|
|
=end
|
|
|
|
|
2016-02-21 11:43:16 +00:00
|
|
|
def self.cleanup(max_age = Time.zone.now - 9.months, max_own_seen = Time.zone.now - 35.minutes, max_auto_seen = Time.zone.now - 8.hours)
|
|
|
|
OnlineNotification.where('created_at < ?', max_age).delete_all
|
|
|
|
OnlineNotification.where('seen = ? AND updated_at < ?', true, max_own_seen).each {|notification|
|
|
|
|
|
|
|
|
# delete own "seen" notificatons after 1 hour
|
|
|
|
next if notification.user_id == notification.updated_by_id && notification.updated_at > max_own_seen
|
|
|
|
|
|
|
|
# delete notificatons which are set to "seen" by somebody else after 8 hour
|
|
|
|
next if notification.user_id != notification.updated_by_id && notification.updated_at > max_auto_seen
|
|
|
|
|
|
|
|
notification.delete
|
|
|
|
}
|
2015-06-30 22:25:05 +00:00
|
|
|
|
|
|
|
# notify all agents
|
2015-07-25 14:36:16 +00:00
|
|
|
User.of_role('Agent').each {|user|
|
2015-06-30 22:25:05 +00:00
|
|
|
Sessions.send_to(
|
|
|
|
user.id,
|
|
|
|
{
|
|
|
|
event: 'OnlineNotification::changed',
|
|
|
|
data: {}
|
|
|
|
}
|
|
|
|
)
|
2015-06-30 22:33:45 +00:00
|
|
|
sleep 2 # slow down client requests
|
2015-06-30 22:25:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|