2019-12-24 07:57:25 +00:00
|
|
|
class ContactMergeAction
|
2021-08-31 10:00:18 +00:00
|
|
|
include Events::Types
|
2019-12-24 07:57:25 +00:00
|
|
|
pattr_initialize [:account!, :base_contact!, :mergee_contact!]
|
|
|
|
|
|
|
|
def perform
|
2021-06-22 10:27:48 +00:00
|
|
|
# This case happens when an agent updates a contact email in dashboard,
|
|
|
|
# while the contact also update his email via email collect box
|
|
|
|
return @base_contact if base_contact.id == mergee_contact.id
|
|
|
|
|
2019-12-24 07:57:25 +00:00
|
|
|
ActiveRecord::Base.transaction do
|
|
|
|
validate_contacts
|
|
|
|
merge_conversations
|
2020-03-18 20:22:38 +00:00
|
|
|
merge_messages
|
2019-12-24 07:57:25 +00:00
|
|
|
merge_contact_inboxes
|
2021-08-31 10:00:18 +00:00
|
|
|
merge_and_remove_mergee_contact
|
2019-12-24 07:57:25 +00:00
|
|
|
end
|
2020-04-03 07:34:58 +00:00
|
|
|
@base_contact
|
2019-12-24 07:57:25 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def validate_contacts
|
|
|
|
return if belongs_to_account?(@base_contact) && belongs_to_account?(@mergee_contact)
|
|
|
|
|
2020-04-07 04:49:19 +00:00
|
|
|
raise StandardError, 'contact does not belong to the account'
|
2019-12-24 07:57:25 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def belongs_to_account?(contact)
|
|
|
|
@account.id == contact.account_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def merge_conversations
|
|
|
|
Conversation.where(contact_id: @mergee_contact.id).update(contact_id: @base_contact.id)
|
|
|
|
end
|
|
|
|
|
2020-03-18 20:22:38 +00:00
|
|
|
def merge_messages
|
2020-06-27 16:04:53 +00:00
|
|
|
Message.where(sender: @mergee_contact).update(sender: @base_contact)
|
2020-03-18 20:22:38 +00:00
|
|
|
end
|
|
|
|
|
2019-12-24 07:57:25 +00:00
|
|
|
def merge_contact_inboxes
|
|
|
|
ContactInbox.where(contact_id: @mergee_contact.id).update(contact_id: @base_contact.id)
|
|
|
|
end
|
|
|
|
|
2021-08-31 10:00:18 +00:00
|
|
|
def merge_and_remove_mergee_contact
|
2021-10-13 13:05:13 +00:00
|
|
|
mergable_attribute_keys = %w[identifier name email phone_number additional_attributes custom_attributes]
|
2021-08-31 10:00:18 +00:00
|
|
|
base_contact_attributes = base_contact.attributes.slice(*mergable_attribute_keys).compact_blank
|
|
|
|
mergee_contact_attributes = mergee_contact.attributes.slice(*mergable_attribute_keys).compact_blank
|
|
|
|
|
|
|
|
# attributes in base contact are given preference
|
|
|
|
merged_attributes = mergee_contact_attributes.deep_merge(base_contact_attributes)
|
|
|
|
|
2019-12-24 07:57:25 +00:00
|
|
|
@mergee_contact.destroy!
|
2021-11-22 18:02:17 +00:00
|
|
|
Rails.configuration.dispatcher.dispatch(CONTACT_MERGED, Time.zone.now, contact: @base_contact,
|
|
|
|
tokens: [@base_contact.contact_inboxes.filter_map(&:pubsub_token)])
|
2021-08-31 10:00:18 +00:00
|
|
|
@base_contact.update!(merged_attributes)
|
2019-12-24 07:57:25 +00:00
|
|
|
end
|
|
|
|
end
|