2020-04-05 16:41:27 +00:00
|
|
|
class ContactBuilder
|
2021-06-15 14:39:17 +00:00
|
|
|
pattr_initialize [:source_id!, :inbox!, :contact_attributes!, :hmac_verified]
|
2020-04-05 16:41:27 +00:00
|
|
|
|
|
|
|
def perform
|
|
|
|
contact_inbox = inbox.contact_inboxes.find_by(source_id: source_id)
|
|
|
|
return contact_inbox if contact_inbox
|
|
|
|
|
2021-01-18 06:13:31 +00:00
|
|
|
build_contact_inbox
|
2020-04-05 16:41:27 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def account
|
|
|
|
@account ||= inbox.account
|
|
|
|
end
|
|
|
|
|
2020-05-14 17:21:07 +00:00
|
|
|
def create_contact_inbox(contact)
|
2022-05-06 09:20:55 +00:00
|
|
|
::ContactInbox.create_with(hmac_verified: hmac_verified || false).find_or_create_by!(
|
2020-05-14 17:21:07 +00:00
|
|
|
contact_id: contact.id,
|
|
|
|
inbox_id: inbox.id,
|
2022-05-06 09:20:55 +00:00
|
|
|
source_id: source_id
|
2020-05-14 17:21:07 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_contact_avatar(contact)
|
2022-07-21 17:27:12 +00:00
|
|
|
::Avatar::AvatarFromUrlJob.perform_later(contact, contact_attributes[:avatar_url]) if contact_attributes[:avatar_url]
|
2020-05-14 17:21:07 +00:00
|
|
|
end
|
|
|
|
|
2021-01-18 06:13:31 +00:00
|
|
|
def create_contact
|
|
|
|
account.contacts.create!(
|
2021-06-15 14:39:17 +00:00
|
|
|
name: contact_attributes[:name] || ::Haikunator.haikunate(1000),
|
2021-01-18 06:13:31 +00:00
|
|
|
phone_number: contact_attributes[:phone_number],
|
|
|
|
email: contact_attributes[:email],
|
|
|
|
identifier: contact_attributes[:identifier],
|
2021-12-19 05:29:03 +00:00
|
|
|
additional_attributes: contact_attributes[:additional_attributes],
|
|
|
|
custom_attributes: contact_attributes[:custom_attributes]
|
2021-01-18 06:13:31 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_contact
|
2021-08-11 19:58:07 +00:00
|
|
|
contact = find_contact_by_identifier(contact_attributes[:identifier])
|
|
|
|
contact ||= find_contact_by_email(contact_attributes[:email])
|
|
|
|
contact ||= find_contact_by_phone_number(contact_attributes[:phone_number])
|
|
|
|
contact
|
|
|
|
end
|
2021-01-18 06:13:31 +00:00
|
|
|
|
2021-08-11 19:58:07 +00:00
|
|
|
def find_contact_by_identifier(identifier)
|
|
|
|
return if identifier.blank?
|
2020-04-29 20:11:13 +00:00
|
|
|
|
2021-08-11 19:58:07 +00:00
|
|
|
account.contacts.find_by(identifier: identifier)
|
|
|
|
end
|
2021-01-18 06:13:31 +00:00
|
|
|
|
2021-08-11 19:58:07 +00:00
|
|
|
def find_contact_by_email(email)
|
|
|
|
return if email.blank?
|
2021-04-20 17:12:14 +00:00
|
|
|
|
2021-08-11 19:58:07 +00:00
|
|
|
account.contacts.find_by(email: email.downcase)
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_contact_by_phone_number(phone_number)
|
|
|
|
return if phone_number.blank?
|
|
|
|
|
|
|
|
account.contacts.find_by(phone_number: phone_number)
|
2021-01-18 06:13:31 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def build_contact_inbox
|
|
|
|
ActiveRecord::Base.transaction do
|
|
|
|
contact = find_contact || create_contact
|
2020-05-14 17:21:07 +00:00
|
|
|
contact_inbox = create_contact_inbox(contact)
|
|
|
|
update_contact_avatar(contact)
|
2020-04-05 16:41:27 +00:00
|
|
|
contact_inbox
|
|
|
|
rescue StandardError => e
|
2022-03-28 12:44:30 +00:00
|
|
|
Rails.logger.error e
|
2021-08-11 19:58:07 +00:00
|
|
|
raise e
|
2020-04-05 16:41:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|