2015-11-11 13:10:26 +00:00
|
|
|
class Sessions::Event::ChatStatusCustomer < Sessions::Event::ChatBase
|
|
|
|
|
2019-11-21 07:47:05 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
a customer requests the current state of a chat
|
|
|
|
|
|
|
|
payload
|
|
|
|
|
|
|
|
{
|
|
|
|
event: 'chat_status_agent',
|
|
|
|
data: {
|
|
|
|
session_id: 'the id of the current chat session',
|
|
|
|
url: 'optional url', # will trigger a chat_session_notice to agent
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return is sent as message back to peer
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
2015-11-11 13:10:26 +00:00
|
|
|
def run
|
2015-12-09 13:09:37 +00:00
|
|
|
return super if super
|
2015-11-25 09:33:39 +00:00
|
|
|
return if !check_chat_exists
|
2018-01-28 23:52:02 +00:00
|
|
|
return if !check_chat_block_by_ip
|
|
|
|
return if !check_chat_block_by_country
|
2015-11-11 13:10:26 +00:00
|
|
|
|
2015-11-12 09:39:14 +00:00
|
|
|
# check if it's a chat sessin reconnect
|
|
|
|
session_id = nil
|
2015-12-09 13:09:37 +00:00
|
|
|
if @payload['data']['session_id']
|
|
|
|
session_id = @payload['data']['session_id']
|
2015-11-12 15:58:47 +00:00
|
|
|
|
|
|
|
# update recipients of existing sessions
|
|
|
|
chat_session = Chat::Session.find_by(session_id: session_id)
|
2018-01-31 09:25:31 +00:00
|
|
|
if chat_session
|
|
|
|
chat_session.add_recipient(@client_id, true)
|
|
|
|
|
|
|
|
# sent url update to agent
|
|
|
|
if @payload['data']['url']
|
|
|
|
message = {
|
|
|
|
event: 'chat_session_notice',
|
2018-12-19 17:31:51 +00:00
|
|
|
data: {
|
2018-01-31 09:25:31 +00:00
|
|
|
session_id: chat_session.session_id,
|
2018-12-19 17:31:51 +00:00
|
|
|
message: @payload['data']['url'],
|
2018-01-31 09:25:31 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
chat_session.send_to_recipients(message, @client_id)
|
|
|
|
end
|
2016-03-25 07:45:21 +00:00
|
|
|
end
|
2015-11-12 09:39:14 +00:00
|
|
|
end
|
2016-03-25 07:45:21 +00:00
|
|
|
|
2015-11-11 13:10:26 +00:00
|
|
|
{
|
|
|
|
event: 'chat_status_customer',
|
2018-12-19 17:31:51 +00:00
|
|
|
data: current_chat.customer_state(session_id),
|
2015-11-11 13:10:26 +00:00
|
|
|
}
|
|
|
|
end
|
2015-12-09 13:09:37 +00:00
|
|
|
|
2018-01-28 23:52:02 +00:00
|
|
|
def check_chat_block_by_ip
|
|
|
|
chat = current_chat
|
|
|
|
return true if !chat.blocked_ip?(@remote_ip)
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2018-01-28 23:52:02 +00:00
|
|
|
error = {
|
|
|
|
event: 'chat_error',
|
2018-12-19 17:31:51 +00:00
|
|
|
data: {
|
2018-01-28 23:52:02 +00:00
|
|
|
state: 'chat_unavailable',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
Sessions.send(@client_id, error)
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def check_chat_block_by_country
|
|
|
|
chat = current_chat
|
|
|
|
return true if !chat.blocked_country?(@remote_ip)
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2018-01-28 23:52:02 +00:00
|
|
|
error = {
|
|
|
|
event: 'chat_error',
|
2018-12-19 17:31:51 +00:00
|
|
|
data: {
|
2018-01-28 23:52:02 +00:00
|
|
|
state: 'chat_unavailable',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
Sessions.send(@client_id, error)
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2015-11-11 13:10:26 +00:00
|
|
|
end
|