Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
64 lines
1.5 KiB
Ruby
64 lines
1.5 KiB
Ruby
class Crm::Leadsquared::LeadFinderService
|
|
def initialize(lead_client)
|
|
@lead_client = lead_client
|
|
end
|
|
|
|
def find_or_create(contact)
|
|
lead_id = get_stored_id(contact)
|
|
return lead_id if lead_id.present?
|
|
|
|
lead_id = find_by_contact(contact)
|
|
return lead_id if lead_id.present?
|
|
|
|
create_lead(contact)
|
|
end
|
|
|
|
private
|
|
|
|
def find_by_contact(contact)
|
|
lead_id = find_by_email(contact)
|
|
lead_id = find_by_phone_number(contact) if lead_id.blank?
|
|
|
|
lead_id
|
|
end
|
|
|
|
def find_by_email(contact)
|
|
return if contact.email.blank?
|
|
|
|
search_by_field(contact.email)
|
|
end
|
|
|
|
def find_by_phone_number(contact)
|
|
return if contact.phone_number.blank?
|
|
|
|
lead_data = Crm::Leadsquared::Mappers::ContactMapper.map(contact)
|
|
|
|
return if lead_data.blank? || lead_data['Mobile'].nil?
|
|
|
|
search_by_field(lead_data['Mobile'])
|
|
end
|
|
|
|
def search_by_field(value)
|
|
leads = @lead_client.search_lead(value)
|
|
return nil unless leads.is_a?(Array)
|
|
|
|
leads.first['ProspectID'] if leads.any?
|
|
end
|
|
|
|
def create_lead(contact)
|
|
lead_data = Crm::Leadsquared::Mappers::ContactMapper.map(contact)
|
|
lead_id = @lead_client.create_or_update_lead(lead_data)
|
|
|
|
raise StandardError, 'Failed to create lead - no ID returned' if lead_id.blank?
|
|
|
|
lead_id
|
|
end
|
|
|
|
def get_stored_id(contact)
|
|
return nil if contact.additional_attributes.blank?
|
|
return nil if contact.additional_attributes['external'].blank?
|
|
|
|
contact.additional_attributes.dig('external', 'leadsquared_id')
|
|
end
|
|
end
|