2020-05-04 17:37:56 +00:00
|
|
|
class Api::V1::Widget::ConversationsController < Api::V1::Widget::BaseController
|
|
|
|
include Events::Types
|
|
|
|
|
2020-05-09 16:32:43 +00:00
|
|
|
def index
|
|
|
|
@conversation = conversation
|
|
|
|
end
|
|
|
|
|
2020-07-07 18:34:44 +00:00
|
|
|
def update_last_seen
|
|
|
|
head :ok && return if conversation.nil?
|
|
|
|
|
2020-09-10 13:49:15 +00:00
|
|
|
conversation.contact_last_seen_at = DateTime.now.utc
|
2020-07-07 18:34:44 +00:00
|
|
|
conversation.save!
|
|
|
|
head :ok
|
|
|
|
end
|
|
|
|
|
2020-08-17 05:55:13 +00:00
|
|
|
def transcript
|
|
|
|
if permitted_params[:email].present? && conversation.present?
|
|
|
|
ConversationReplyMailer.conversation_transcript(
|
|
|
|
conversation,
|
|
|
|
permitted_params[:email]
|
|
|
|
)&.deliver_later
|
|
|
|
end
|
|
|
|
head :ok
|
|
|
|
end
|
|
|
|
|
2020-05-04 17:37:56 +00:00
|
|
|
def toggle_typing
|
2020-05-05 18:40:56 +00:00
|
|
|
head :ok && return if conversation.nil?
|
2020-05-04 17:37:56 +00:00
|
|
|
|
2020-09-08 05:54:08 +00:00
|
|
|
case permitted_params[:typing_status]
|
|
|
|
when 'on'
|
2020-05-04 17:37:56 +00:00
|
|
|
trigger_typing_event(CONVERSATION_TYPING_ON)
|
2020-09-08 05:54:08 +00:00
|
|
|
when 'off'
|
2020-05-04 17:37:56 +00:00
|
|
|
trigger_typing_event(CONVERSATION_TYPING_OFF)
|
|
|
|
end
|
|
|
|
|
|
|
|
head :ok
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def trigger_typing_event(event)
|
|
|
|
Rails.configuration.dispatcher.dispatch(event, Time.zone.now, conversation: conversation, user: @contact)
|
|
|
|
end
|
|
|
|
|
|
|
|
def permitted_params
|
2020-08-17 05:55:13 +00:00
|
|
|
params.permit(:id, :typing_status, :website_token, :email)
|
2020-05-04 17:37:56 +00:00
|
|
|
end
|
|
|
|
end
|