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.8 KiB
Ruby
64 lines
1.8 KiB
Ruby
class Integrations::BotProcessorService
|
|
pattr_initialize [:event_name!, :hook!, :event_data!]
|
|
|
|
def perform
|
|
message = event_data[:message]
|
|
return unless should_run_processor?(message)
|
|
|
|
process_content(message)
|
|
rescue StandardError => e
|
|
ChatwootExceptionTracker.new(e, account: (hook&.account || agent_bot&.account)).capture_exception
|
|
end
|
|
|
|
private
|
|
|
|
def should_run_processor?(message)
|
|
return if message.private?
|
|
return unless processable_message?(message)
|
|
return unless conversation.pending?
|
|
|
|
true
|
|
end
|
|
|
|
def conversation
|
|
message = event_data[:message]
|
|
@conversation ||= message.conversation
|
|
end
|
|
|
|
def process_content(message)
|
|
content = message_content(message)
|
|
response = get_response(conversation.contact_inbox.source_id, content) if content.present?
|
|
process_response(message, response) if response.present?
|
|
end
|
|
|
|
def message_content(message)
|
|
# TODO: might needs to change this to a way that we fetch the updated value from event data instead
|
|
# cause the message.updated event could be that that the message was deleted
|
|
|
|
return message.content_attributes['submitted_values']&.first&.dig('value') if event_name == 'message.updated'
|
|
|
|
message.content
|
|
end
|
|
|
|
def processable_message?(message)
|
|
# TODO: change from reportable and create a dedicated method for this?
|
|
return unless message.reportable?
|
|
return if message.outgoing? && !processable_outgoing_message?(message)
|
|
|
|
true
|
|
end
|
|
|
|
def processable_outgoing_message?(message)
|
|
event_name == 'message.updated' && ['input_select'].include?(message.content_type)
|
|
end
|
|
|
|
def process_action(message, action)
|
|
case action
|
|
when 'handoff'
|
|
message.conversation.bot_handoff!
|
|
when 'resolve'
|
|
message.conversation.resolved!
|
|
end
|
|
end
|
|
end
|