20f39caa42
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
46 lines
1.2 KiB
Ruby
46 lines
1.2 KiB
Ruby
class ContactBuilder
|
|
pattr_initialize [:source_id!, :inbox!, :contact_attributes!]
|
|
|
|
def perform
|
|
contact_inbox = inbox.contact_inboxes.find_by(source_id: source_id)
|
|
return contact_inbox if contact_inbox
|
|
|
|
build_contact
|
|
end
|
|
|
|
private
|
|
|
|
def account
|
|
@account ||= inbox.account
|
|
end
|
|
|
|
def create_contact_inbox(contact)
|
|
::ContactInbox.create!(
|
|
contact_id: contact.id,
|
|
inbox_id: inbox.id,
|
|
source_id: source_id
|
|
)
|
|
end
|
|
|
|
def update_contact_avatar(contact)
|
|
::ContactAvatarJob.perform_later(contact, contact_attributes[:avatar_url]) if contact_attributes[:avatar_url]
|
|
end
|
|
|
|
def build_contact
|
|
ActiveRecord::Base.transaction do
|
|
contact = account.contacts.create!(
|
|
name: contact_attributes[:name],
|
|
phone_number: contact_attributes[:phone_number],
|
|
email: contact_attributes[:email],
|
|
identifier: contact_attributes[:identifier],
|
|
additional_attributes: contact_attributes[:additional_attributes]
|
|
)
|
|
|
|
contact_inbox = create_contact_inbox(contact)
|
|
update_contact_avatar(contact)
|
|
contact_inbox
|
|
rescue StandardError => e
|
|
Rails.logger.info e
|
|
end
|
|
end
|
|
end
|