2015-11-13 14:15:44 +00:00
|
|
|
class Chat::Session < ApplicationModel
|
|
|
|
before_create :generate_session_id
|
|
|
|
store :preferences
|
|
|
|
|
|
|
|
def generate_session_id
|
|
|
|
self.session_id = Digest::MD5.hexdigest(Time.zone.now.to_s + rand(99_999_999_999_999).to_s)
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_recipient(client_id, store = false)
|
|
|
|
if !preferences[:participants]
|
|
|
|
preferences[:participants] = []
|
|
|
|
end
|
|
|
|
return preferences[:participants] if preferences[:participants].include?(client_id)
|
|
|
|
preferences[:participants].push client_id
|
|
|
|
if store
|
|
|
|
save
|
|
|
|
end
|
|
|
|
preferences[:participants]
|
|
|
|
end
|
|
|
|
|
2015-12-05 19:41:14 +00:00
|
|
|
def recipients_active?
|
|
|
|
return true if !preferences
|
|
|
|
return true if !preferences[:participants]
|
|
|
|
count = 0
|
2017-10-01 12:25:52 +00:00
|
|
|
preferences[:participants].each do |client_id|
|
2015-12-05 19:41:14 +00:00
|
|
|
next if !Sessions.session_exists?(client_id)
|
|
|
|
count += 1
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2015-12-05 19:41:14 +00:00
|
|
|
return true if count >= 2
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2015-11-13 14:15:44 +00:00
|
|
|
def send_to_recipients(message, ignore_client_id = nil)
|
2017-10-01 12:25:52 +00:00
|
|
|
preferences[:participants].each do |local_client_id|
|
2015-11-13 14:15:44 +00:00
|
|
|
next if local_client_id == ignore_client_id
|
|
|
|
Sessions.send(local_client_id, message)
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2015-11-13 14:15:44 +00:00
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def position
|
|
|
|
return if state != 'waiting'
|
|
|
|
position = 0
|
2017-10-01 12:25:52 +00:00
|
|
|
Chat::Session.where(state: 'waiting').order(created_at: :asc).each do |chat_session|
|
2015-11-13 14:15:44 +00:00
|
|
|
position += 1
|
|
|
|
break if chat_session.id == id
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2015-11-13 14:15:44 +00:00
|
|
|
position
|
|
|
|
end
|
2015-11-13 16:03:58 +00:00
|
|
|
|
|
|
|
def self.messages_by_session_id(session_id)
|
|
|
|
chat_session = Chat::Session.find_by(session_id: session_id)
|
|
|
|
return if !chat_session
|
|
|
|
session_attributes = []
|
2017-10-01 12:25:52 +00:00
|
|
|
Chat::Message.where(chat_session_id: chat_session.id).order(created_at: :asc).each do |message|
|
2015-11-13 16:03:58 +00:00
|
|
|
session_attributes.push message.attributes
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2015-11-13 16:03:58 +00:00
|
|
|
session_attributes
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.active_chats_by_user_id(user_id)
|
|
|
|
actice_sessions = []
|
2017-10-01 12:25:52 +00:00
|
|
|
Chat::Session.where(state: 'running', user_id: user_id).order(created_at: :asc).each do |session|
|
2015-11-13 16:03:58 +00:00
|
|
|
session_attributes = session.attributes
|
|
|
|
session_attributes['messages'] = []
|
2017-10-01 12:25:52 +00:00
|
|
|
Chat::Message.where(chat_session_id: session.id).order(created_at: :asc).each do |message|
|
2015-11-13 16:03:58 +00:00
|
|
|
session_attributes['messages'].push message.attributes
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2015-11-13 16:03:58 +00:00
|
|
|
actice_sessions.push session_attributes
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2015-11-13 16:03:58 +00:00
|
|
|
actice_sessions
|
|
|
|
end
|
2015-11-13 14:15:44 +00:00
|
|
|
end
|