2020-01-09 07:36:40 +00:00
|
|
|
class MessageTemplates::HookExecutionService
|
|
|
|
pattr_initialize [:message!]
|
|
|
|
|
|
|
|
def perform
|
2020-03-05 20:13:12 +00:00
|
|
|
return if inbox.agent_bot_inbox&.active?
|
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
::MessageTemplates::Template::EmailCollect.new(conversation: conversation).perform if should_send_email_collect?
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
delegate :inbox, :conversation, to: :message
|
|
|
|
delegate :contact, to: :conversation
|
|
|
|
|
|
|
|
def first_message_from_contact?
|
|
|
|
conversation.messages.outgoing.count.zero? && conversation.messages.template.count.zero?
|
|
|
|
end
|
|
|
|
|
|
|
|
def should_send_email_collect?
|
|
|
|
conversation.inbox.web_widget? && first_message_from_contact?
|
|
|
|
end
|
|
|
|
end
|