2020-09-21 17:14:22 +00:00
|
|
|
class SupportMailbox < ApplicationMailbox
|
|
|
|
include MailboxHelper
|
|
|
|
|
|
|
|
attr_accessor :channel, :account, :inbox, :conversation, :processed_mail
|
|
|
|
|
|
|
|
before_processing :find_channel,
|
|
|
|
:load_account,
|
|
|
|
:load_inbox,
|
|
|
|
:decorate_mail
|
|
|
|
|
|
|
|
def process
|
2021-07-15 17:20:32 +00:00
|
|
|
ActiveRecord::Base.transaction do
|
|
|
|
find_or_create_contact
|
|
|
|
create_conversation
|
|
|
|
create_message
|
|
|
|
add_attachments_to_message
|
|
|
|
end
|
2020-09-21 17:14:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def find_channel
|
|
|
|
mail.to.each do |email|
|
2021-03-04 08:29:59 +00:00
|
|
|
@channel = Channel::Email.find_by('email = ? OR forward_to_email = ?', email, email)
|
2020-09-21 17:14:22 +00:00
|
|
|
break if @channel.present?
|
|
|
|
end
|
|
|
|
raise 'Email channel/inbox not found' if @channel.nil?
|
|
|
|
|
|
|
|
@channel
|
|
|
|
end
|
|
|
|
|
|
|
|
def load_account
|
|
|
|
@account = @channel.account
|
|
|
|
end
|
|
|
|
|
|
|
|
def load_inbox
|
|
|
|
@inbox = @channel.inbox
|
|
|
|
end
|
|
|
|
|
|
|
|
def decorate_mail
|
|
|
|
@processed_mail = MailPresenter.new(mail, @account)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_conversation
|
|
|
|
@conversation = ::Conversation.create!({
|
|
|
|
account_id: @account.id,
|
|
|
|
inbox_id: @inbox.id,
|
|
|
|
contact_id: @contact.id,
|
|
|
|
contact_inbox_id: @contact_inbox.id,
|
|
|
|
additional_attributes: {
|
|
|
|
source: 'email',
|
2021-01-17 17:13:32 +00:00
|
|
|
mail_subject: @processed_mail.subject,
|
2020-09-21 17:14:22 +00:00
|
|
|
initiated_at: {
|
|
|
|
timestamp: Time.now.utc
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_or_create_contact
|
2021-08-24 08:48:08 +00:00
|
|
|
@contact = @inbox.contacts.find_by(email: @processed_mail.original_sender)
|
2020-09-21 17:14:22 +00:00
|
|
|
if @contact.present?
|
|
|
|
@contact_inbox = ContactInbox.find_by(inbox: @inbox, contact: @contact)
|
|
|
|
else
|
|
|
|
create_contact
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_contact
|
|
|
|
@contact_inbox = ::ContactBuilder.new(
|
|
|
|
source_id: "email:#{processed_mail.message_id}",
|
|
|
|
inbox: @inbox,
|
|
|
|
contact_attributes: {
|
|
|
|
name: identify_contact_name,
|
2021-08-24 08:48:08 +00:00
|
|
|
email: @processed_mail.original_sender,
|
2020-09-21 17:14:22 +00:00
|
|
|
additional_attributes: {
|
|
|
|
source_id: "email:#{processed_mail.message_id}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
).perform
|
|
|
|
@contact = @contact_inbox.contact
|
|
|
|
end
|
|
|
|
|
|
|
|
def identify_contact_name
|
|
|
|
processed_mail.from.first.split('@').first
|
|
|
|
end
|
|
|
|
end
|