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

63 lines
1.5 KiB
Ruby
Raw Normal View History

class Sessions::Event::ChatSessionClose < 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
2015-11-10 14:01:04 +00:00
return if !check_chat_session_exists
2015-11-10 14:01:04 +00:00
realname = 'Anonymous'
if @session && @session['id']
realname = User.lookup(id: @session['id']).fullname
end
# check count of participents
participents_count = 0
chat_session = current_chat_session
if chat_session.preferences[:participents]
participents_count = chat_session.preferences[:participents].count
end
# notify about "closing"
if participents_count < 2 || (@session && chat_session.user_id == @session['id'])
message = {
event: 'chat_session_closed',
data: {
session_id: chat_session.session_id,
realname: realname,
},
}
# close session if host is closing it
chat_session.state = 'closed'
chat_session.save
# set state update to all agents
Chat.broadcast_agent_state_update
# send position update to other waiting sessions
Chat.broadcast_customer_state_update
# notify about "leaving"
else
message = {
event: 'chat_session_left',
data: {
session_id: chat_session.session_id,
realname: realname,
},
}
end
chat_session.send_to_recipients(message, @client_id)
2015-11-10 14:01:04 +00:00
# notifiy participients
2015-11-10 14:01:04 +00:00
{
event: 'chat_status_close',
data: {
state: 'ok',
session_id: chat_session.session_id,
},
}
end
2015-12-09 13:09:37 +00:00
2015-11-10 14:01:04 +00:00
end