trabajo-afectivo/lib/sessions/event/chat_session_init.rb

40 lines
820 B
Ruby
Raw Normal View History

class Sessions::Event::ChatSessionInit < Sessions::Event::ChatBase
2015-11-10 14:01:04 +00:00
def run
2015-12-09 13:09:37 +00:00
return super if super
return if !check_chat_exists
2015-11-10 14:01:04 +00:00
2016-01-05 08:49:11 +00:00
# geo ip lookup
geo_ip = nil
2016-01-05 12:46:43 +00:00
if @remote_ip
geo_ip = Service::GeoIp.location(@remote_ip)
2016-01-05 08:49:11 +00:00
end
2015-11-10 14:01:04 +00:00
# create chat session
chat_session = Chat::Session.create(
2015-12-09 13:09:37 +00:00
chat_id: @payload['data']['chat_id'],
2015-11-10 14:01:04 +00:00
name: '',
state: 'waiting',
preferences: {
participants: [@client_id],
2016-01-05 12:46:43 +00:00
remote_ip: @remote_ip,
2016-01-05 08:49:11 +00:00
geo_ip: geo_ip,
2015-11-10 14:01:04 +00:00
},
)
# send broadcast to agents
Chat.broadcast_agent_state_update
2015-11-10 14:01:04 +00:00
# return new session
{
event: 'chat_session_queue',
2015-11-10 14:01:04 +00:00
data: {
state: 'queue',
position: Chat.waiting_chat_count,
session_id: chat_session.session_id,
},
}
end
2015-12-09 13:09:37 +00:00
2015-11-10 14:01:04 +00:00
end