trabajo-afectivo/app/models/observer/ticket/article/communicate_email/background_job.rb

85 lines
2.2 KiB
Ruby
Raw Normal View History

2014-02-05 16:14:57 +00:00
class Observer::Ticket::Article::CommunicateEmail::BackgroundJob
def initialize(id)
@article_id = id
end
2014-02-05 16:14:57 +00:00
def perform
record = Ticket::Article.find(@article_id)
2014-02-05 16:14:57 +00:00
# build subject
ticket = Ticket.lookup(id: record.ticket_id)
subject = ticket.subject_build(record.subject)
2014-02-05 16:14:57 +00:00
# send email
2015-08-28 00:53:14 +00:00
if !ticket.group.email_address_id
2016-03-01 14:26:46 +00:00
raise "Can't send email, no email address definde for group id '#{ticket.group.id}'"
2015-08-28 00:53:14 +00:00
elsif !ticket.group.email_address.channel_id
2016-03-01 14:26:46 +00:00
raise "Can't send email, no channel definde for email_address id '#{ticket.group.email_address_id}'"
2015-08-28 00:53:14 +00:00
end
2015-08-28 00:53:14 +00:00
channel = ticket.group.email_address.channel
2016-05-03 00:36:44 +00:00
notification = false
sender = Ticket::Article::Sender.lookup(id: record.sender_id)
if sender['name'] == 'System'
notification = true
# ignore notifications in developer mode
return if Setting.get('developer_mode') == true
2016-05-03 00:36:44 +00:00
end
2015-08-28 00:53:14 +00:00
# get linked channel and send
message = channel.deliver(
2014-02-05 16:14:57 +00:00
{
message_id: record.message_id,
in_reply_to: record.in_reply_to,
references: ticket.get_references([record.message_id]),
from: record.from,
to: record.to,
cc: record.cc,
subject: subject,
content_type: record.content_type,
body: record.body,
attachments: record.attachments
2016-05-03 00:36:44 +00:00
},
notification
2014-02-05 16:14:57 +00:00
)
# store mail plain
Store.add(
object: 'Ticket::Article::Mail',
o_id: record.id,
data: message.to_s,
filename: "ticket-#{ticket.number}-#{record.id}.eml",
preferences: {},
created_by_id: record.created_by_id,
2014-02-05 16:14:57 +00:00
)
# add history record
recipient_list = ''
[:to, :cc].each { |key|
next if !record[key]
next if record[key] == ''
if recipient_list != ''
recipient_list += ','
2014-02-05 16:14:57 +00:00
end
recipient_list += record[key]
2014-02-05 16:14:57 +00:00
}
return if recipient_list == ''
History.add(
o_id: record.id,
history_type: 'email',
history_object: 'Ticket::Article',
related_o_id: ticket.id,
related_history_object: 'Ticket',
value_from: record.subject,
value_to: recipient_list,
created_by_id: record.created_by_id,
)
2014-02-05 16:14:57 +00:00
end
end