2015-11-11 13:10:26 +00:00
|
|
|
class Sessions::Event::ChatStatusCustomer < Sessions::Event::ChatBase
|
|
|
|
|
|
|
|
def run
|
|
|
|
|
|
|
|
chat_id = 1
|
|
|
|
chat = Chat.find_by(id: chat_id)
|
|
|
|
if !chat
|
|
|
|
return {
|
|
|
|
event: 'chat_status_customer',
|
|
|
|
data: {
|
|
|
|
state: 'no_such_chat',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2015-11-12 09:39:14 +00:00
|
|
|
# check if it's a chat sessin reconnect
|
|
|
|
session_id = nil
|
|
|
|
if @data['data']['session_id']
|
|
|
|
session_id = @data['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)
|
|
|
|
chat_session.add_recipient(@client_id, true)
|
2015-11-12 09:39:14 +00:00
|
|
|
end
|
2015-11-11 13:10:26 +00:00
|
|
|
{
|
|
|
|
event: 'chat_status_customer',
|
2015-11-12 09:39:14 +00:00
|
|
|
data: chat.customer_state(session_id),
|
2015-11-11 13:10:26 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|