2012-07-23 22:22:23 +00:00
|
|
|
require 'json'
|
2013-05-05 22:54:06 +00:00
|
|
|
require 'session_helper'
|
2012-07-23 22:22:23 +00:00
|
|
|
|
2013-08-21 18:35:22 +00:00
|
|
|
module Sessions
|
2013-01-24 01:01:47 +00:00
|
|
|
|
|
|
|
# get application root directory
|
|
|
|
@root = Dir.pwd.to_s
|
2013-02-01 00:01:20 +00:00
|
|
|
if !@root || @root.empty? || @root == '/'
|
2013-01-24 01:01:47 +00:00
|
|
|
@root = Rails.root
|
|
|
|
end
|
|
|
|
|
|
|
|
# get working directories
|
2015-05-03 09:22:48 +00:00
|
|
|
@path = "#{@root}/tmp/websocket"
|
2013-01-24 01:01:47 +00:00
|
|
|
|
|
|
|
# create global vars for threads
|
2012-08-03 22:46:05 +00:00
|
|
|
@@client_threads = {}
|
2012-07-23 22:22:23 +00:00
|
|
|
|
2014-06-27 06:43:37 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
start new session
|
|
|
|
|
|
|
|
Sessions.create( client_id, session_data, { :type => 'websocket' } )
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
true|false
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
2012-11-26 05:04:44 +00:00
|
|
|
def self.create( client_id, session, meta )
|
2015-05-03 09:22:48 +00:00
|
|
|
path = "#{@path}/#{client_id}"
|
|
|
|
path_tmp = "#{@path}/tmp/#{client_id}"
|
|
|
|
session_file = "#{path_tmp}/session"
|
|
|
|
|
|
|
|
# collect session data
|
2012-11-26 05:04:44 +00:00
|
|
|
meta[:last_ping] = Time.new.to_i.to_s
|
2015-05-03 08:40:10 +00:00
|
|
|
data = {
|
|
|
|
user: session,
|
|
|
|
meta: meta,
|
|
|
|
}
|
2015-05-03 09:22:48 +00:00
|
|
|
content = data.to_json
|
|
|
|
|
|
|
|
# store session data in session file
|
|
|
|
FileUtils.mkpath path_tmp
|
|
|
|
File.open( session_file, 'wb' ) { |file|
|
2015-05-03 08:40:10 +00:00
|
|
|
file.write content
|
2012-07-23 22:22:23 +00:00
|
|
|
}
|
2012-11-02 16:10:22 +00:00
|
|
|
|
2015-05-03 12:11:47 +00:00
|
|
|
# destory old session if needed
|
2015-05-05 14:25:28 +00:00
|
|
|
if File.exist?( path )
|
2015-05-03 12:11:47 +00:00
|
|
|
Sessions.destory(client_id)
|
|
|
|
end
|
|
|
|
|
2015-05-03 09:22:48 +00:00
|
|
|
# move to destination directory
|
|
|
|
FileUtils.mv( path_tmp, path )
|
|
|
|
|
2012-11-02 16:10:22 +00:00
|
|
|
# send update to browser
|
2014-09-21 12:50:39 +00:00
|
|
|
if session && session['id']
|
2015-04-27 15:21:17 +00:00
|
|
|
self.send(
|
|
|
|
client_id,
|
|
|
|
{
|
|
|
|
event: 'ws:login',
|
|
|
|
data: { success: true },
|
|
|
|
}
|
|
|
|
)
|
2012-11-02 16:10:22 +00:00
|
|
|
end
|
2012-07-23 22:22:23 +00:00
|
|
|
end
|
|
|
|
|
2014-06-27 06:43:37 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
list of all session
|
|
|
|
|
|
|
|
client_ids = Sessions.sessions
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
['4711', '4712']
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.sessions
|
2015-05-03 09:22:48 +00:00
|
|
|
path = "#{@path}/"
|
2014-06-27 06:43:37 +00:00
|
|
|
|
|
|
|
# just make sure that spool path exists
|
2015-05-05 14:25:28 +00:00
|
|
|
if !File.exist?( path )
|
2014-06-27 06:43:37 +00:00
|
|
|
FileUtils.mkpath path
|
|
|
|
end
|
|
|
|
|
|
|
|
data = []
|
|
|
|
Dir.foreach( path ) do |entry|
|
2015-05-03 09:22:48 +00:00
|
|
|
next if entry == '.'
|
|
|
|
next if entry == '..'
|
|
|
|
next if entry == 'tmp'
|
|
|
|
next if entry == 'spool'
|
2014-06-27 06:43:37 +00:00
|
|
|
data.push entry.to_s
|
|
|
|
end
|
|
|
|
data
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
list of all session
|
|
|
|
|
|
|
|
Sessions.session_exists?(client_id)
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
true|false
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.session_exists?(client_id)
|
|
|
|
client_ids = self.sessions
|
|
|
|
client_ids.include? client_id.to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
list of all session with data
|
|
|
|
|
|
|
|
client_ids_with_data = Sessions.list
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
{
|
|
|
|
'4711' => {
|
|
|
|
:user => {
|
2014-10-05 12:38:30 +00:00
|
|
|
'id' => 123,
|
2014-06-27 06:43:37 +00:00
|
|
|
},
|
|
|
|
:meta => {
|
|
|
|
:type => 'websocket',
|
|
|
|
:last_ping => time_of_last_ping,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'4712' => {
|
|
|
|
:user => {
|
2014-10-05 12:38:30 +00:00
|
|
|
'id' => 124,
|
2014-06-27 06:43:37 +00:00
|
|
|
},
|
|
|
|
:meta => {
|
|
|
|
:type => 'ajax',
|
|
|
|
:last_ping => time_of_last_ping,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.list
|
|
|
|
client_ids = self.sessions
|
|
|
|
session_list = {}
|
|
|
|
client_ids.each { |client_id|
|
|
|
|
data = self.get(client_id)
|
|
|
|
next if !data
|
|
|
|
session_list[client_id] = data
|
|
|
|
}
|
|
|
|
session_list
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
destroy session
|
|
|
|
|
2014-10-23 19:41:32 +00:00
|
|
|
Sessions.destory(client_id)
|
2014-06-27 06:43:37 +00:00
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
true|false
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.destory( client_id )
|
2015-05-03 09:22:48 +00:00
|
|
|
path = "#{@path}/#{client_id}"
|
2014-06-27 06:43:37 +00:00
|
|
|
FileUtils.rm_rf path
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
destroy idle session
|
|
|
|
|
|
|
|
list_of_client_ids = Sessions.destory_idle_sessions
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
['4711', '4712']
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
2015-02-25 22:17:34 +00:00
|
|
|
def self.destory_idle_sessions(idle_time_in_sec = 240)
|
2014-06-27 06:43:37 +00:00
|
|
|
list_of_closed_sessions = []
|
2015-05-03 09:22:48 +00:00
|
|
|
clients = Sessions.list
|
2014-06-27 06:43:37 +00:00
|
|
|
clients.each { |client_id, client|
|
2015-02-25 22:17:34 +00:00
|
|
|
if !client[:meta] || !client[:meta][:last_ping] || ( client[:meta][:last_ping].to_i + idle_time_in_sec ) < Time.now.to_i
|
2014-06-27 06:43:37 +00:00
|
|
|
list_of_closed_sessions.push client_id
|
|
|
|
Sessions.destory( client_id )
|
|
|
|
end
|
|
|
|
}
|
|
|
|
list_of_closed_sessions
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
touch session
|
|
|
|
|
|
|
|
Sessions.touch(client_id)
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
true|false
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.touch( client_id )
|
|
|
|
data = self.get(client_id)
|
|
|
|
return false if !data
|
2015-05-03 09:22:48 +00:00
|
|
|
path = "#{@path}/#{client_id}"
|
2014-06-27 06:43:37 +00:00
|
|
|
data[:meta][:last_ping] = Time.new.to_i.to_s
|
2015-05-03 09:22:48 +00:00
|
|
|
content = data.to_json
|
2014-06-27 06:43:37 +00:00
|
|
|
File.open( path + '/session', 'wb' ) { |file|
|
2015-05-03 09:22:48 +00:00
|
|
|
file.write content
|
2014-06-27 06:43:37 +00:00
|
|
|
}
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
get session data
|
|
|
|
|
|
|
|
data = Sessions.get(client_id)
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
{
|
|
|
|
:user => {
|
2014-10-05 12:38:30 +00:00
|
|
|
'id' => 123,
|
2014-06-27 06:43:37 +00:00
|
|
|
},
|
|
|
|
:meta => {
|
|
|
|
:type => 'websocket',
|
|
|
|
:last_ping => time_of_last_ping,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.get( client_id )
|
2015-05-03 09:22:48 +00:00
|
|
|
session_dir = "#{@path}/#{client_id}"
|
|
|
|
session_file = "#{session_dir}/session"
|
|
|
|
data = nil
|
2015-05-03 12:11:47 +00:00
|
|
|
if !File.exist? session_dir
|
|
|
|
self.destory(client_id)
|
2015-05-04 18:58:28 +00:00
|
|
|
Rails.logger.error "missing session directory for '#{client_id}', remove session."
|
2015-05-03 12:11:47 +00:00
|
|
|
return
|
|
|
|
end
|
2014-10-23 18:08:00 +00:00
|
|
|
if !File.exist? session_file
|
2014-10-23 19:41:32 +00:00
|
|
|
self.destory(client_id)
|
2015-05-04 18:58:28 +00:00
|
|
|
Rails.logger.errror "missing session file for '#{client_id}', remove session."
|
2014-10-23 18:08:00 +00:00
|
|
|
return
|
|
|
|
end
|
2014-06-27 06:43:37 +00:00
|
|
|
begin
|
|
|
|
File.open( session_file, 'rb' ) { |file|
|
|
|
|
file.flock( File::LOCK_EX )
|
|
|
|
all = file.read
|
|
|
|
file.flock( File::LOCK_UN )
|
2015-05-05 14:14:18 +00:00
|
|
|
data_json = JSON.parse( all )
|
|
|
|
if data_json
|
|
|
|
data = self.symbolize_keys(data_json)
|
|
|
|
data[:user] = data_json['user'] # for compat. reasons
|
2015-01-13 14:53:15 +00:00
|
|
|
end
|
2014-06-27 06:43:37 +00:00
|
|
|
}
|
|
|
|
rescue Exception => e
|
2015-05-04 18:58:28 +00:00
|
|
|
Rails.logger.error e.inspect
|
2014-10-23 19:41:32 +00:00
|
|
|
self.destory(client_id)
|
2015-05-04 18:58:28 +00:00
|
|
|
Rails.logger.error "ERROR: reading session file '#{session_file}', remove session."
|
2014-06-27 06:43:37 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
data
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
send message to client
|
|
|
|
|
|
|
|
Sessions.send(client_id_of_recipient, data)
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
true|false
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.send( client_id, data )
|
2015-05-03 09:22:48 +00:00
|
|
|
path = "#{@path}/#{client_id}/"
|
|
|
|
filename = "send-#{ Time.new().to_f }"
|
|
|
|
check = true
|
|
|
|
count = 0
|
2014-06-27 06:43:37 +00:00
|
|
|
while check
|
2015-05-05 14:25:28 +00:00
|
|
|
if File.exist?( path + filename )
|
2014-06-27 06:43:37 +00:00
|
|
|
count += 1
|
2015-05-03 09:22:48 +00:00
|
|
|
filename = "#{filename}-#{count}"
|
2014-06-27 06:43:37 +00:00
|
|
|
else
|
|
|
|
check = false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false if !File.directory? path
|
|
|
|
File.open( path + 'a-' + filename, 'wb' ) { |file|
|
|
|
|
file.flock( File::LOCK_EX )
|
|
|
|
file.write data.to_json
|
|
|
|
file.flock( File::LOCK_UN )
|
|
|
|
file.close
|
|
|
|
}
|
2015-04-30 17:26:00 +00:00
|
|
|
return false if !File.exist?( path + 'a-' + filename )
|
2014-06-27 06:43:37 +00:00
|
|
|
FileUtils.mv( path + 'a-' + filename, path + filename )
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
2014-08-25 15:44:57 +00:00
|
|
|
send message to recipient client
|
|
|
|
|
|
|
|
Sessions.send_to(user_id, data)
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
true|false
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.send_to( user_id, data )
|
|
|
|
|
|
|
|
# list all current clients
|
|
|
|
client_list = self.sessions
|
|
|
|
client_list.each {|client_id|
|
|
|
|
session = Sessions.get(client_id)
|
|
|
|
next if !session
|
|
|
|
next if !session[:user]
|
2014-10-05 12:38:30 +00:00
|
|
|
next if !session[:user]['id']
|
|
|
|
next if session[:user]['id'].to_i != user_id.to_i
|
2014-08-25 15:44:57 +00:00
|
|
|
Sessions.send( client_id, data )
|
|
|
|
}
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
2014-06-27 06:43:37 +00:00
|
|
|
send message to all client
|
|
|
|
|
|
|
|
Sessions.broadcast(data)
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
true|false
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.broadcast( data )
|
|
|
|
|
|
|
|
# list all current clients
|
|
|
|
client_list = self.sessions
|
|
|
|
client_list.each {|client_id|
|
|
|
|
Sessions.send( client_id, data )
|
|
|
|
}
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
get messages for client
|
|
|
|
|
|
|
|
messages = Sessions.queue(client_id_of_recipient)
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
[
|
|
|
|
{
|
|
|
|
key1 => 'some data of message 1',
|
|
|
|
key2 => 'some data of message 1',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key1 => 'some data of message 2',
|
|
|
|
key2 => 'some data of message 2',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.queue( client_id )
|
2015-05-03 09:22:48 +00:00
|
|
|
path = "#{@path}/#{client_id}/"
|
|
|
|
data = []
|
2014-06-27 06:43:37 +00:00
|
|
|
files = []
|
|
|
|
Dir.foreach( path ) {|entry|
|
2015-05-03 09:22:48 +00:00
|
|
|
next if entry == '.'
|
|
|
|
next if entry == '..'
|
2014-06-27 06:43:37 +00:00
|
|
|
files.push entry
|
|
|
|
}
|
|
|
|
files.sort.each {|entry|
|
2015-05-03 09:22:48 +00:00
|
|
|
filename = "#{path}/#{entry}"
|
2014-06-27 06:43:37 +00:00
|
|
|
if /^send/.match( entry )
|
|
|
|
data.push Sessions.queue_file_read( path, entry )
|
|
|
|
end
|
|
|
|
}
|
|
|
|
data
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.queue_file_read( path, filename )
|
2015-05-03 09:22:48 +00:00
|
|
|
file_old = "#{path}#{filename}"
|
|
|
|
file_new = "#{path}a-#{filename}"
|
2014-06-27 06:43:37 +00:00
|
|
|
FileUtils.mv( file_old, file_new )
|
|
|
|
all = ''
|
|
|
|
File.open( file_new, 'rb' ) { |file|
|
|
|
|
all = file.read
|
|
|
|
}
|
|
|
|
File.delete( file_new )
|
|
|
|
JSON.parse( all )
|
|
|
|
end
|
|
|
|
|
2015-05-03 09:22:48 +00:00
|
|
|
def self.cleanup
|
|
|
|
path = "#{@path}/spool/"
|
|
|
|
FileUtils.rm_rf path
|
|
|
|
path = "#{@path}/tmp/"
|
2014-06-29 19:30:55 +00:00
|
|
|
FileUtils.rm_rf path
|
|
|
|
end
|
|
|
|
|
2013-06-10 07:01:37 +00:00
|
|
|
def self.spool_create( msg )
|
2015-05-03 09:22:48 +00:00
|
|
|
path = "#{@path}/spool/"
|
2013-06-10 07:01:37 +00:00
|
|
|
FileUtils.mkpath path
|
2015-05-03 09:22:48 +00:00
|
|
|
file = "#{Time.new.to_f}-#{rand(99_999)}"
|
2015-04-27 14:42:53 +00:00
|
|
|
File.open( path + '/' + file, 'wb' ) { |file|
|
2013-06-10 07:01:37 +00:00
|
|
|
data = {
|
2015-04-27 13:42:53 +00:00
|
|
|
msg: msg,
|
|
|
|
timestamp: Time.now.to_i,
|
2013-06-10 07:01:37 +00:00
|
|
|
}
|
|
|
|
file.write data.to_json
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.spool_list( timestamp, current_user_id )
|
2015-05-03 09:22:48 +00:00
|
|
|
path = "#{@path}/spool/"
|
2013-06-10 07:01:37 +00:00
|
|
|
FileUtils.mkpath path
|
2015-05-03 09:22:48 +00:00
|
|
|
data = []
|
2013-06-10 07:01:37 +00:00
|
|
|
to_delete = []
|
2015-05-03 09:22:48 +00:00
|
|
|
files = []
|
2013-06-17 08:43:18 +00:00
|
|
|
Dir.foreach( path ) {|entry|
|
2015-05-03 09:22:48 +00:00
|
|
|
next if entry == '.'
|
|
|
|
next if entry == '..'
|
2013-06-17 08:43:18 +00:00
|
|
|
files.push entry
|
|
|
|
}
|
|
|
|
files.sort.each {|entry|
|
2015-05-03 09:22:48 +00:00
|
|
|
filename = "#{path}/#{entry}"
|
2015-05-05 14:25:28 +00:00
|
|
|
next if !File.exist?( filename )
|
2013-06-17 08:43:18 +00:00
|
|
|
File.open( filename, 'rb' ) { |file|
|
2015-05-03 09:22:48 +00:00
|
|
|
all = file.read
|
2013-06-10 07:01:37 +00:00
|
|
|
spool = JSON.parse( all )
|
|
|
|
begin
|
|
|
|
message_parsed = JSON.parse( spool['msg'] )
|
|
|
|
rescue => e
|
2015-05-04 18:58:28 +00:00
|
|
|
Rails.logger.error "can't parse spool message: #{ message }, #{ e.inspect }"
|
2013-06-10 07:01:37 +00:00
|
|
|
next
|
|
|
|
end
|
|
|
|
|
|
|
|
# ignore message older then 48h
|
2015-04-27 13:43:34 +00:00
|
|
|
if spool['timestamp'] + (2 * 86_400) < Time.now.to_i
|
2015-05-03 09:22:48 +00:00
|
|
|
to_delete.push "#{path}/#{entry}"
|
2013-06-10 07:01:37 +00:00
|
|
|
next
|
|
|
|
end
|
|
|
|
|
|
|
|
# add spool attribute to push spool info to clients
|
2013-06-28 22:26:04 +00:00
|
|
|
message_parsed['spool'] = true
|
2013-06-10 07:01:37 +00:00
|
|
|
|
|
|
|
# only send not already now messages
|
|
|
|
if !timestamp || timestamp < spool['timestamp']
|
|
|
|
|
|
|
|
# spool to recipient list
|
2013-06-28 22:26:04 +00:00
|
|
|
if message_parsed['recipient'] && message_parsed['recipient']['user_id']
|
|
|
|
message_parsed['recipient']['user_id'].each { |user_id|
|
2013-06-10 07:01:37 +00:00
|
|
|
if current_user_id == user_id
|
|
|
|
item = {
|
2015-04-27 13:42:53 +00:00
|
|
|
type: 'direct',
|
|
|
|
message: message_parsed,
|
2013-06-10 07:01:37 +00:00
|
|
|
}
|
|
|
|
data.push item
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
# spool to every client
|
|
|
|
else
|
|
|
|
item = {
|
2015-04-27 13:42:53 +00:00
|
|
|
type: 'broadcast',
|
|
|
|
message: message_parsed,
|
2013-06-10 07:01:37 +00:00
|
|
|
}
|
|
|
|
data.push item
|
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
2013-06-17 08:43:18 +00:00
|
|
|
}
|
2013-06-10 07:01:37 +00:00
|
|
|
to_delete.each {|file|
|
|
|
|
File.delete(file)
|
|
|
|
}
|
2015-04-30 17:20:27 +00:00
|
|
|
data
|
2013-06-10 07:01:37 +00:00
|
|
|
end
|
|
|
|
|
2012-07-23 22:22:23 +00:00
|
|
|
def self.jobs
|
2013-01-15 06:41:37 +00:00
|
|
|
|
|
|
|
# just make sure that spool path exists
|
2015-05-05 14:25:28 +00:00
|
|
|
if !File.exist?( @path )
|
2013-01-15 23:10:27 +00:00
|
|
|
FileUtils.mkpath @path
|
|
|
|
end
|
2013-01-15 06:41:37 +00:00
|
|
|
|
2012-08-03 22:46:05 +00:00
|
|
|
Thread.abort_on_exception = true
|
2015-05-05 14:10:06 +00:00
|
|
|
loop do
|
2012-07-23 22:22:23 +00:00
|
|
|
client_ids = self.sessions
|
|
|
|
client_ids.each { |client_id|
|
|
|
|
|
2014-06-29 19:30:55 +00:00
|
|
|
# connection already open, ignore
|
2012-08-07 21:53:43 +00:00
|
|
|
next if @@client_threads[client_id]
|
|
|
|
|
2013-06-10 07:01:37 +00:00
|
|
|
# get current user
|
2013-08-21 18:35:22 +00:00
|
|
|
session_data = Sessions.get( client_id )
|
2012-11-26 05:04:44 +00:00
|
|
|
next if !session_data
|
|
|
|
next if !session_data[:user]
|
2014-10-05 12:38:30 +00:00
|
|
|
next if !session_data[:user]['id']
|
2015-04-27 13:42:53 +00:00
|
|
|
user = User.lookup( id: session_data[:user]['id'] )
|
2012-08-03 22:46:05 +00:00
|
|
|
next if !user
|
|
|
|
|
|
|
|
# start client thread
|
|
|
|
if !@@client_threads[client_id]
|
2013-12-01 11:55:21 +00:00
|
|
|
@@client_threads[client_id] = true
|
2012-08-03 22:46:05 +00:00
|
|
|
@@client_threads[client_id] = Thread.new {
|
2014-04-24 16:43:24 +00:00
|
|
|
thread_client(client_id)
|
2012-08-03 22:46:05 +00:00
|
|
|
@@client_threads[client_id] = nil
|
2015-05-04 20:02:00 +00:00
|
|
|
Rails.logger.debug "close client (#{client_id}) thread"
|
2015-02-16 12:41:46 +00:00
|
|
|
ActiveRecord::Base.connection.close
|
2012-08-03 22:46:05 +00:00
|
|
|
}
|
2014-07-13 23:29:29 +00:00
|
|
|
sleep 0.5
|
2012-07-30 12:05:46 +00:00
|
|
|
end
|
2012-07-23 22:22:23 +00:00
|
|
|
}
|
2012-08-07 06:43:15 +00:00
|
|
|
|
|
|
|
# system settings
|
2012-11-26 23:22:52 +00:00
|
|
|
sleep 0.5
|
2012-07-23 22:22:23 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-06-29 19:30:55 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
check if thread for client_id is running
|
|
|
|
|
|
|
|
Sessions.thread_client_exists?(client_id)
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
thread
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.thread_client_exists?(client_id)
|
|
|
|
@@client_threads[client_id]
|
2013-12-01 11:55:21 +00:00
|
|
|
end
|
|
|
|
|
2014-06-29 19:30:55 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
start client for browser
|
|
|
|
|
|
|
|
Sessions.thread_client(client_id)
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
thread
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
2014-04-24 16:43:24 +00:00
|
|
|
def self.thread_client(client_id, try_count = 0, try_run_time = Time.now)
|
2015-05-04 20:02:00 +00:00
|
|
|
Rails.logger.debug "LOOP #{client_id} - #{try_count}"
|
2014-06-29 19:30:55 +00:00
|
|
|
begin
|
|
|
|
Sessions::Client.new(client_id)
|
|
|
|
rescue => e
|
2015-05-04 18:58:28 +00:00
|
|
|
Rails.logger.error "thread_client #{client_id} exited with error #{ e.inspect }"
|
|
|
|
Rails.logger.error e.backtrace.join("\n ")
|
2014-06-29 19:30:55 +00:00
|
|
|
sleep 10
|
2013-12-01 11:55:21 +00:00
|
|
|
begin
|
2014-06-29 19:30:55 +00:00
|
|
|
# ActiveRecord::Base.remove_connection
|
|
|
|
# ActiveRecord::Base.connection_pool.reap
|
|
|
|
ActiveRecord::Base.connection_pool.release_connection
|
2013-12-01 11:55:21 +00:00
|
|
|
rescue => e
|
2015-05-04 18:58:28 +00:00
|
|
|
Rails.logger.error "Can't reconnect to database #{ e.inspect }"
|
2014-06-29 19:30:55 +00:00
|
|
|
end
|
2014-04-24 05:49:30 +00:00
|
|
|
|
2014-06-29 19:30:55 +00:00
|
|
|
try_run_max = 10
|
|
|
|
try_count += 1
|
2014-04-24 05:49:30 +00:00
|
|
|
|
2014-06-29 19:30:55 +00:00
|
|
|
# reset error counter if to old
|
|
|
|
if try_run_time + ( 60 * 5 ) < Time.now
|
|
|
|
try_count = 0
|
|
|
|
end
|
|
|
|
try_run_time = Time.now
|
2014-04-24 05:49:30 +00:00
|
|
|
|
2014-06-29 19:30:55 +00:00
|
|
|
# restart job again
|
|
|
|
if try_run_max > try_count
|
|
|
|
thread_client(client_id, try_count, try_run_time)
|
|
|
|
else
|
|
|
|
raise "STOP thread_client for client #{client_id} after #{try_run_max} tries"
|
2013-12-01 11:55:21 +00:00
|
|
|
end
|
2014-06-29 19:30:55 +00:00
|
|
|
end
|
2015-05-04 20:02:00 +00:00
|
|
|
Rails.logger.debug "/LOOP #{client_id} - #{try_count}"
|
2013-12-01 11:55:21 +00:00
|
|
|
end
|
|
|
|
|
2015-01-13 14:53:15 +00:00
|
|
|
def self.symbolize_keys(hash)
|
2015-05-05 14:56:12 +00:00
|
|
|
hash.each_with_object({}) {|(key, value), result|
|
2015-01-13 14:53:15 +00:00
|
|
|
new_key = case key
|
|
|
|
when String then key.to_sym
|
|
|
|
else key
|
|
|
|
end
|
|
|
|
new_value = case value
|
|
|
|
when Hash then symbolize_keys(value)
|
|
|
|
else value
|
|
|
|
end
|
|
|
|
result[new_key] = new_value
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|