123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- class NotificationFactory::Mailer
- =begin
- get notification settings for user and notification type
- result = NotificationFactory::Mailer.notification_settings(user, ticket, type)
- type: create | update | reminder_reached | escalation (escalation_warning)
- returns
- {
- user: user,
- channels: {
- online: true,
- email: true,
- },
- }
- =end
- def self.notification_settings(user, ticket, type)
- # map types if needed
- map = {
- 'escalation_warning' => 'escalation'
- }
- if map[type]
- type = map[type]
- end
- return if !user.preferences
- return if !user.preferences['notification_config']
- matrix = user.preferences['notification_config']['matrix']
- return if !matrix
- # check if group is in selecd groups
- if ticket.owner_id != user.id
- selected_group_ids = user.preferences['notification_config']['group_ids']
- if selected_group_ids
- if selected_group_ids.class == Array
- hit = nil
- if selected_group_ids.empty?
- hit = true
- elsif selected_group_ids[0] == '-' && selected_group_ids.count == 1
- hit = true
- else
- hit = false
- selected_group_ids.each { |selected_group_id|
- if selected_group_id.to_s == ticket.group_id.to_s
- hit = true
- break
- end
- }
- end
- return if !hit
- end
- end
- end
- return if !matrix[type]
- data = matrix[type]
- return if !data
- return if !data['criteria']
- channels = data['channel']
- return if !channels
- if data['criteria']['owned_by_me'] && ticket.owner_id == user.id
- return {
- user: user,
- channels: channels
- }
- end
- if data['criteria']['owned_by_nobody'] && ticket.owner_id == 1
- return {
- user: user,
- channels: channels
- }
- end
- return if !data['criteria']['no']
- {
- user: user,
- channels: channels
- }
- end
- =begin
- success = NotificationFactory::Mailer.send(
- recipient: User.find(123),
- subject: 'sime subject',
- body: 'some body',
- content_type: '', # optional, e. g. 'text/html'
- message_id: '<some_message_id@fqdn>', # optional
- references: ['message-id123', 'message-id456'], # optional
- attachments: [attachments...], # optional
- )
- =end
- def self.send(data)
- sender = Setting.get('notification_sender')
- Rails.logger.info "Send notification to: #{data[:recipient][:email]} (from #{sender})"
- content_type = 'text/plain'
- if data[:content_type]
- content_type = data[:content_type]
- end
- # get active Email::Outbound Channel and send
- channel = Channel.find_by(area: 'Email::Notification', active: true)
- channel.deliver(
- {
- # in_reply_to: in_reply_to,
- from: sender,
- to: data[:recipient][:email],
- subject: data[:subject],
- message_id: data[:message_id],
- references: data[:references],
- body: data[:body],
- content_type: content_type,
- attachments: data[:attachments],
- },
- true
- )
- end
- =begin
- NotificationFactory::Mailer.notification(
- template: 'password_reset',
- user: User.find(2),
- objects: {
- recipient: User.find(2),
- },
- main_object: ticket.find(123), # optional
- message_id: '<some_message_id@fqdn>', # optional
- references: ['message-id123', 'message-id456'], # optional
- standalone: true, # default: false - will send header & footer
- attachments: [attachments...], # optional
- )
- =end
- def self.notification(data)
- # get subject
- result = NotificationFactory::Mailer.template(
- template: data[:template],
- locale: data[:user][:preferences][:locale],
- objects: data[:objects],
- standalone: data[:standalone],
- )
- # rebuild subject
- if data[:main_object] && data[:main_object].respond_to?(:subject_build)
- result[:subject] = data[:main_object].subject_build(result[:subject])
- end
- # prepare scaling of images
- if result[:body]
- result[:body] = HtmlSanitizer.dynamic_image_size(result[:body])
- end
- NotificationFactory::Mailer.send(
- recipient: data[:user],
- subject: result[:subject],
- body: result[:body],
- content_type: 'text/html',
- message_id: data[:message_id],
- references: data[:references],
- attachments: data[:attachments],
- )
- end
- =begin
- get count of already sent notifications
- count = NotificationFactory::Mailer.already_sent?(ticket, recipient_user, type)
- retunes
- 8
- =end
- def self.already_sent?(ticket, recipient, type)
- result = ticket.history_get()
- count = 0
- result.each { |item|
- next if item['type'] != 'notification'
- next if item['object'] != 'Ticket'
- next if item['value_to'] !~ /#{recipient.email}/i
- next if item['value_to'] !~ /#{type}/i
- count += 1
- }
- count
- end
- =begin
- result = NotificationFactory::Mailer.template(
- template: 'password_reset',
- locale: 'en-us',
- objects: {
- recipient: User.find(2),
- },
- )
- result = NotificationFactory::Mailer.template(
- templateInline: "Invitation to \#{config.product_name} at \#{config.fqdn}",
- locale: 'en-us',
- objects: {
- recipient: User.find(2),
- },
- quote: true, # html quoting
- )
- only raw subject/body
- result = NotificationFactory::Mailer.template(
- template: 'password_reset',
- locale: 'en-us',
- objects: {
- recipient: User.find(2),
- },
- raw: true, # will not add application template
- standalone: true, # default: false - will send header & footer
- )
- returns
- {
- subject: 'some subject',
- body: 'some body',
- }
- =end
- def self.template(data)
- if data[:templateInline]
- return NotificationFactory::Renderer.new(data[:objects], data[:locale], data[:templateInline], data[:quote]).render
- end
- template = NotificationFactory.template_read(
- locale: data[:locale] || 'en',
- template: data[:template],
- format: 'html',
- type: 'mailer',
- )
- message_subject = NotificationFactory::Renderer.new(data[:objects], data[:locale], template[:subject], false).render
- message_body = NotificationFactory::Renderer.new(data[:objects], data[:locale], template[:body]).render
- if !data[:raw]
- application_template = NotificationFactory.application_template_read(
- format: 'html',
- type: 'mailer',
- )
- data[:objects][:message] = message_body
- data[:objects][:standalone] = data[:standalone]
- message_body = NotificationFactory::Renderer.new(data[:objects], data[:locale], application_template).render
- end
- {
- subject: message_subject,
- body: message_body,
- }
- end
- end
|