trabajo-afectivo/app/models/transaction/notification.rb

351 lines
11 KiB
Ruby
Raw Normal View History

2016-10-19 03:11:36 +00:00
# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
2015-01-03 22:53:07 +00:00
2016-04-15 21:56:10 +00:00
class Transaction::Notification
=begin
2016-04-15 21:56:10 +00:00
{
object: 'Ticket',
type: 'update',
object_id: 123,
interface_handle: 'application_server', # application_server|websocket|scheduler
changes: {
2016-04-15 21:56:10 +00:00
'attribute1' => [before, now],
'attribute2' => [before, now],
2016-07-16 21:43:08 +00:00
},
created_at: Time.zone.now,
user_id: 123,
2016-04-15 21:56:10 +00:00
},
=end
2016-04-15 21:56:10 +00:00
def initialize(item, params = {})
@item = item
@params = params
end
def perform
# return if we run import mode
return if Setting.get('import_mode')
return if @item[:object] != 'Ticket'
return if @params[:disable_notification]
ticket = Ticket.find_by(id: @item[:object_id])
return if !ticket
2016-04-15 21:56:10 +00:00
if @item[:article_id]
article = Ticket::Article.find(@item[:article_id])
# ignore notifications
sender = Ticket::Article::Sender.lookup(id: article.sender_id)
2017-11-23 08:09:44 +00:00
if sender&.name == 'System'
return if @item[:changes].blank? && article.preferences[:notification] != true
if article.preferences[:notification] != true
article = nil
end
end
2015-01-03 22:53:07 +00:00
end
# find recipients
recipients_and_channels = []
recipients_reason = {}
# loop through all users
possible_recipients = User.group_access(ticket.group_id, 'full').sort_by(&:login)
# apply owner
if ticket.owner_id != 1
possible_recipients.push ticket.owner
recipients_reason[ticket.owner_id] = 'are assigned'
end
# apply out of office agents
possible_recipients_additions = Set.new
possible_recipients.each do |user|
recursive_ooo_replacements(
user: user,
replacements: possible_recipients_additions,
reasons: recipients_reason,
)
end
if possible_recipients_additions.present?
# join unique entries
possible_recipients = possible_recipients | possible_recipients_additions.to_a
2015-01-03 22:53:07 +00:00
end
already_checked_recipient_ids = {}
possible_recipients.each do |user|
2016-04-15 21:56:10 +00:00
result = NotificationFactory::Mailer.notification_settings(user, ticket, @item[:type])
next if !result
next if already_checked_recipient_ids[user.id]
already_checked_recipient_ids[user.id] = true
recipients_and_channels.push result
next if recipients_reason[user.id]
recipients_reason[user.id] = 'are in group'
end
# send notifications
recipients_and_channels.each do |item|
user = item[:user]
channels = item[:channels]
# ignore user who changed it by him self via web
if @params[:interface_handle] == 'application_server'
2017-11-23 08:09:44 +00:00
next if article&.updated_by_id == user.id
next if !article && @item[:user_id] == user.id
end
2015-01-09 19:44:04 +00:00
# ignore inactive users
next if !user.active?
# ignore if no changes has been done
changes = human_changes(user, ticket)
next if @item[:type] == 'update' && !article && changes.blank?
# check if today already notified
2016-04-15 21:56:10 +00:00
if @item[:type] == 'reminder_reached' || @item[:type] == 'escalation' || @item[:type] == 'escalation_warning'
identifier = user.email
if !identifier || identifier == ''
identifier = user.login
end
already_notified = false
History.list('Ticket', ticket.id).each do |history|
next if history['type'] != 'notification'
2016-04-15 21:56:10 +00:00
next if history['value_to'] !~ /\(#{Regexp.escape(@item[:type])}:/
next if history['value_to'] !~ /#{Regexp.escape(identifier)}\(/
2016-02-22 12:54:28 +00:00
next if !history['created_at'].today?
already_notified = true
end
next if already_notified
end
# create online notification
used_channels = []
if channels['online']
used_channels.push 'online'
created_by_id = @item[:user_id] || 1
2016-02-22 19:58:23 +00:00
# delete old notifications
2016-04-15 21:56:10 +00:00
if @item[:type] == 'reminder_reached'
seen = false
2016-02-22 19:58:23 +00:00
created_by_id = 1
2016-04-15 21:56:10 +00:00
OnlineNotification.remove_by_type('Ticket', ticket.id, @item[:type], user)
2016-04-15 21:56:10 +00:00
elsif @item[:type] == 'escalation' || @item[:type] == 'escalation_warning'
2016-02-22 23:28:13 +00:00
seen = false
created_by_id = 1
OnlineNotification.remove_by_type('Ticket', ticket.id, 'escalation', user)
OnlineNotification.remove_by_type('Ticket', ticket.id, 'escalation_warning', user)
# on updates without state changes create unseen messages
elsif @item[:type] != 'create' && (@item[:changes].blank? || @item[:changes]['state_id'].blank?)
seen = false
else
seen = ticket.online_notification_seen_state(user.id)
end
OnlineNotification.add(
type: @item[:type],
object: 'Ticket',
o_id: ticket.id,
seen: seen,
2016-02-22 19:58:23 +00:00
created_by_id: created_by_id,
user_id: user.id,
)
Rails.logger.debug { "sent ticket online notifiaction to agent (#{@item[:type]}/#{ticket.id}/#{user.email})" }
end
# ignore email channel notificaiton and empty emails
if !channels['email'] || !user.email || user.email == ''
2016-04-15 21:56:10 +00:00
add_recipient_list(ticket, user, used_channels, @item[:type])
2015-01-09 19:44:04 +00:00
next
end
used_channels.push 'email'
2016-04-15 21:56:10 +00:00
add_recipient_list(ticket, user, used_channels, @item[:type])
2015-01-03 22:53:07 +00:00
# get user based notification template
# if create, send create message / block update messages
template = nil
2016-04-15 21:56:10 +00:00
if @item[:type] == 'create'
template = 'ticket_create'
2016-04-15 21:56:10 +00:00
elsif @item[:type] == 'update'
template = 'ticket_update'
2016-04-15 21:56:10 +00:00
elsif @item[:type] == 'reminder_reached'
template = 'ticket_reminder_reached'
2016-04-15 21:56:10 +00:00
elsif @item[:type] == 'escalation'
template = 'ticket_escalation'
2016-04-15 21:56:10 +00:00
elsif @item[:type] == 'escalation_warning'
2016-02-22 23:28:13 +00:00
template = 'ticket_escalation_warning'
2015-01-03 22:53:07 +00:00
else
2016-04-15 21:56:10 +00:00
raise "unknown type for notification #{@item[:type]}"
2015-01-03 22:53:07 +00:00
end
current_user = User.lookup(id: @item[:user_id])
if !current_user
current_user = User.lookup(id: 1)
end
2016-07-11 23:35:30 +00:00
attachments = []
if article
attachments = article.attachments_inline
end
2016-04-13 23:40:37 +00:00
NotificationFactory::Mailer.notification(
template: template,
user: user,
objects: {
ticket: ticket,
article: article,
recipient: user,
current_user: current_user,
changes: changes,
reason: recipients_reason[user.id],
},
message_id: "<notification.#{DateTime.current.to_s(:number)}.#{ticket.id}.#{user.id}.#{rand(999_999)}@#{Setting.get('fqdn')}>",
references: ticket.get_references,
main_object: ticket,
2016-07-11 23:35:30 +00:00
attachments: attachments,
)
Rails.logger.debug { "sent ticket email notifiaction to agent (#{@item[:type]}/#{ticket.id}/#{user.email})" }
end
end
def add_recipient_list(ticket, user, channels, type)
2017-11-23 08:09:44 +00:00
return if channels.blank?
2016-02-07 16:17:27 +00:00
identifier = user.email
2016-02-08 05:58:28 +00:00
if !identifier || identifier == ''
2016-02-07 16:17:27 +00:00
identifier = user.login
end
recipient_list = "#{identifier}(#{type}:#{channels.join(',')})"
History.add(
o_id: ticket.id,
history_type: 'notification',
history_object: 'Ticket',
value_to: recipient_list,
created_by_id: @item[:user_id] || 1
)
end
2015-01-03 22:53:07 +00:00
def human_changes(user, record)
2016-04-15 21:56:10 +00:00
return {} if !@item[:changes]
locale = user.preferences[:locale] || Setting.get('locale_default') || 'en-us'
# only show allowed attributes
attribute_list = ObjectManager::Attribute.by_object_as_hash('Ticket', user)
user_related_changes = {}
@item[:changes].each do |key, value|
2015-01-04 15:39:57 +00:00
# if no config exists, use all attributes
2017-11-23 08:09:44 +00:00
if attribute_list.blank?
2015-01-04 15:39:57 +00:00
user_related_changes[key] = value
# if config exists, just use existing attributes for user
elsif attribute_list[key.to_s]
user_related_changes[key] = value
end
end
changes = {}
user_related_changes.each do |key, value|
# get attribute name
attribute_name = key.to_s
object_manager_attribute = attribute_list[attribute_name]
2015-04-27 14:53:29 +00:00
if attribute_name[-3, 3] == '_id'
attribute_name = attribute_name[ 0, attribute_name.length - 3 ].to_s
end
# add item to changes hash
if key.to_s == attribute_name
changes[attribute_name] = value
end
# if changed item is an _id field/reference, do an lookup for the realy values
value_id = []
value_str = [ value[0], value[1] ]
2015-04-27 14:53:29 +00:00
if key.to_s[-3, 3] == '_id'
value_id[0] = value[0]
value_id[1] = value[1]
2016-03-08 06:32:58 +00:00
if record.respond_to?(attribute_name) && record.send(attribute_name)
relation_class = record.send(attribute_name).class
if relation_class && value_id[0]
2016-03-08 06:32:58 +00:00
relation_model = relation_class.lookup(id: value_id[0])
if relation_model
if relation_model['name']
value_str[0] = relation_model['name']
elsif relation_model.respond_to?('fullname')
value_str[0] = relation_model.send('fullname')
end
end
end
if relation_class && value_id[1]
2016-03-08 06:32:58 +00:00
relation_model = relation_class.lookup(id: value_id[1])
if relation_model
if relation_model['name']
value_str[1] = relation_model['name']
elsif relation_model.respond_to?('fullname')
value_str[1] = relation_model.send('fullname')
end
end
end
end
end
# check if we have an dedcated display name for it
display = attribute_name
if object_manager_attribute && object_manager_attribute[:display]
# delete old key
2016-03-08 06:32:58 +00:00
changes.delete(display)
# set new key
display = object_manager_attribute[:display].to_s
end
changes[display] = if object_manager_attribute && object_manager_attribute[:translate]
from = Translation.translate(locale, value_str[0])
to = Translation.translate(locale, value_str[1])
[from, to]
else
[value_str[0].to_s, value_str[1].to_s]
end
end
changes
end
private
def recursive_ooo_replacements(user:, replacements:, reasons:, level: 0)
if level == 10
Rails.logger.warn("Found more than 10 replacement levels for agent #{user}.")
return
end
replacement = user.out_of_office_agent
return if !replacement
# return for already found, added and checked users
# to prevent re-doing complete lookup paths
return if !replacements.add?(replacement)
reasons[replacement.id] = 'are the out-of-office replacement of the owner'
recursive_ooo_replacements(
user: replacement,
replacements: replacements,
reasons: reasons,
level: level + 1
)
end
end