trabajo-afectivo/script/websocket-server.rb

382 lines
11 KiB
Ruby
Raw Normal View History

2013-03-10 23:14:31 +00:00
#!/usr/bin/env ruby
2013-06-13 07:01:06 +00:00
# Copyright (C) 2012-2013 Zammad Foundation, http://zammad-foundation.org/
2012-07-23 22:22:23 +00:00
$LOAD_PATH << './lib'
require 'rubygems'
require 'eventmachine'
require 'em-websocket'
require 'json'
require 'fileutils'
require 'sessions'
2012-07-23 22:22:23 +00:00
require 'optparse'
2013-03-10 23:14:31 +00:00
require 'daemons'
2012-07-23 22:22:23 +00:00
# load rails env
dir = File.expand_path(File.join(File.dirname(__FILE__), '..'))
Dir.chdir dir
RAILS_ENV = ENV['RAILS_ENV'] || 'development'
require File.join(dir, 'config', 'environment')
2012-07-23 22:22:23 +00:00
# Look for -o with argument, and -I and -D boolean arguments
@options = {
p: 6042,
b: '0.0.0.0',
s: false,
v: false,
d: false,
k: '/path/to/server.key',
c: '/path/to/server.crt',
i: Dir.pwd.to_s + '/tmp/pids/websocket.pid'
2012-07-23 22:22:23 +00:00
}
2013-03-10 23:14:31 +00:00
2012-08-02 09:30:30 +00:00
tls_options = {}
2012-07-23 22:22:23 +00:00
OptionParser.new do |opts|
opts.banner = 'Usage: websocket-server.rb start|stop [options]'
2012-07-23 22:22:23 +00:00
opts.on('-d', '--daemon', 'start as daemon') do |d|
@options[:d] = d
end
opts.on('-v', '--verbose', 'enable debug messages') do |d|
2013-03-10 23:14:31 +00:00
@options[:v] = d
end
opts.on('-p', '--port [OPT]', 'port of websocket server') do |p|
@options[:p] = p
2012-07-23 22:22:23 +00:00
end
opts.on('-b', '--bind [OPT]', 'bind address') do |b|
@options[:b] = b
2012-07-23 22:22:23 +00:00
end
opts.on('-s', '--secure', 'enable secure connections') do |s|
@options[:s] = s
2012-08-02 09:17:22 +00:00
end
opts.on('-i', '--pid [OPT]', 'pid, default is tmp/pids/websocket.pid') do |i|
2013-01-15 22:46:35 +00:00
@options[:i] = i
end
opts.on('-k', '--private-key [OPT]', '/path/to/server.key for secure connections') do |k|
2012-08-02 09:30:30 +00:00
tls_options[:private_key_file] = k
2012-08-02 09:17:22 +00:00
end
opts.on('-c', '--certificate [OPT]', '/path/to/server.crt for secure connections') do |c|
2012-08-02 09:30:30 +00:00
tls_options[:cert_chain_file] = c
2012-08-02 09:17:22 +00:00
end
2012-07-23 22:22:23 +00:00
end.parse!
if ARGV[0] != 'start' && ARGV[0] != 'stop'
puts "Usage: #{File.basename(__FILE__)} start|stop [options]"
exit
end
2013-03-10 23:14:31 +00:00
if ARGV[0] == 'stop'
2015-07-16 19:56:54 +00:00
puts "Stopping websocket server (pid:#{@options[:i]})"
2013-03-10 23:14:31 +00:00
# read pid
pid = File.open( @options[:i].to_s ).read
pid.gsub!(/\r|\n/, '')
2013-03-10 23:14:31 +00:00
# kill
Process.kill( 9, pid.to_i )
exit
end
if ARGV[0] == 'start' && @options[:d]
2013-03-10 23:14:31 +00:00
2015-07-16 19:56:54 +00:00
puts "Starting websocket server on #{@options[:b]}:#{@options[:p]} (secure:#{@options[:s]},pid:#{@options[:i]})"
2013-03-10 23:14:31 +00:00
Daemons.daemonize
# create pid file
daemon_pid = File.new( @options[:i].to_s, 'w' )
daemon_pid.sync = true
daemon_pid.puts(Process.pid.to_s)
daemon_pid.close
2013-03-10 23:14:31 +00:00
end
2013-01-15 22:33:51 +00:00
2012-07-23 22:22:23 +00:00
@clients = {}
EventMachine.run {
EventMachine::WebSocket.start( host: @options[:b], port: @options[:p], secure: @options[:s], tls_options: tls_options ) do |ws|
2012-07-23 22:22:23 +00:00
# register client connection
ws.onopen {
client_id = ws.object_id.to_s
log 'notice', 'Client connected.', client_id
Sessions.create( client_id, {}, { type: 'websocket' } )
2012-07-23 22:22:23 +00:00
if !@clients.include? client_id
@clients[client_id] = {
2015-05-10 20:53:15 +00:00
websocket: ws,
last_ping: Time.now.utc.to_i,
error_count: 0,
}
2012-07-23 22:22:23 +00:00
end
}
# unregister client connection
ws.onclose {
client_id = ws.object_id.to_s
log 'notice', 'Client disconnected.', client_id
2012-08-04 13:35:55 +00:00
# removed from current client list
2012-07-23 22:22:23 +00:00
if @clients.include? client_id
@clients.delete client_id
end
2012-08-04 13:35:55 +00:00
Sessions.destory( client_id )
2012-07-23 22:22:23 +00:00
}
# manage messages
ws.onmessage { |msg|
client_id = ws.object_id.to_s
log 'debug', "received: #{msg} ", client_id
begin
data = JSON.parse(msg)
rescue => e
log 'error', "can't parse message: #{msg}, #{e.inspect}", client_id
next
end
2012-07-23 22:22:23 +00:00
2015-09-06 11:41:51 +00:00
# check if connection not already exists
2012-08-07 05:33:47 +00:00
next if !@clients[client_id]
2015-11-10 14:01:04 +00:00
Sessions.touch(client_id)
@clients[client_id][:last_ping] = Time.now.utc.to_i
2012-11-02 16:10:22 +00:00
# spool messages for new connects
if data['spool']
Sessions.spool_create(msg)
2012-11-02 16:10:22 +00:00
end
# get spool messages and send them to new client connection
2012-11-02 16:10:22 +00:00
if data['action'] == 'spool'
2012-11-04 10:24:03 +00:00
# error handling
if data['timestamp']
2015-05-10 19:47:17 +00:00
log 'notice', "request spool data > '#{Time.at(data['timestamp']).utc.iso8601}'", client_id
else
log 'notice', 'request spool with init data', client_id
end
if @clients[client_id] && @clients[client_id][:session] && @clients[client_id][:session]['id']
spool = Sessions.spool_list( data['timestamp'], @clients[client_id][:session]['id'] )
spool.each { |item|
# create new msg to push to client
if item[:type] == 'direct'
log 'notice', "send spool to (user_id=#{@clients[client_id][:session]['id']})", client_id
2015-05-12 11:31:32 +00:00
websocket_send(client_id, item[:message])
else
log 'notice', 'send spool', client_id
2015-05-12 11:31:32 +00:00
websocket_send(client_id, item[:message])
end
}
else
log 'error', "can't send spool, session not authenticated", client_id
end
# send spool:sent event to client
log 'notice', 'send spool:sent event', client_id
2015-05-12 08:46:07 +00:00
message = {
event: 'spool:sent',
data: {
2015-05-12 11:31:32 +00:00
timestamp: Time.now.utc.to_i,
2015-05-12 08:46:07 +00:00
},
}
2015-05-12 11:31:32 +00:00
websocket_send(client_id, message)
2012-11-02 16:10:22 +00:00
end
2012-07-23 22:22:23 +00:00
# get session
if data['action'] == 'login'
2012-08-04 13:35:55 +00:00
# get user_id
2015-08-18 23:02:41 +00:00
if data && data['session_id']
ActiveRecord::Base.establish_connection
session = ActiveRecord::SessionStore::Session.find_by( session_id: data['session_id'] )
ActiveRecord::Base.remove_connection
end
if session && session.data && session.data['user_id']
new_session_data = { 'id' => session.data['user_id'] }
else
new_session_data = {}
end
@clients[client_id][:session] = new_session_data
Sessions.create( client_id, new_session_data, { type: 'websocket' } )
# remember ping, send pong back
2012-08-04 13:35:55 +00:00
elsif data['action'] == 'ping'
2015-05-12 08:46:07 +00:00
message = {
action: 'pong',
}
2015-05-12 11:31:32 +00:00
websocket_send(client_id, message)
2012-10-28 23:47:38 +00:00
# broadcast
2012-10-28 23:47:38 +00:00
elsif data['action'] == 'broadcast'
2012-11-04 10:24:03 +00:00
# list all current clients
client_list = Sessions.list
client_list.each {|local_client_id, local_client|
if local_client_id != client_id
2013-06-28 22:26:04 +00:00
2012-11-04 10:24:03 +00:00
# broadcast to recipient list
2013-06-28 22:26:04 +00:00
if data['recipient']
if data['recipient'].class != Hash
log 'error', "recipient attribute isn't a hash '#{data['recipient'].inspect}'"
2013-05-10 09:33:17 +00:00
else
if !data['recipient'].key?('user_id')
log 'error', "need recipient.user_id attribute '#{data['recipient'].inspect}'"
2013-05-10 09:33:17 +00:00
else
2013-06-28 22:26:04 +00:00
if data['recipient']['user_id'].class != Array
log 'error', "recipient.user_id attribute isn't an array '#{data['recipient']['user_id'].inspect}'"
else
2013-06-28 22:26:04 +00:00
data['recipient']['user_id'].each { |user_id|
next if local_client[:user]['id'].to_i != user_id.to_i
log 'notice', "send broadcast from (#{client_id}) to (user_id=#{user_id})", local_client_id
if local_client[:meta][:type] == 'websocket' && @clients[ local_client_id ]
2015-05-12 11:31:32 +00:00
websocket_send(local_client_id, data)
else
2015-05-12 08:46:07 +00:00
Sessions.send(local_client_id, data)
2013-05-10 09:33:17 +00:00
end
}
end
2012-11-04 10:24:03 +00:00
end
2013-05-10 09:33:17 +00:00
end
2013-06-13 07:01:06 +00:00
# broadcast every client
2012-11-04 10:24:03 +00:00
else
log 'notice', "send broadcast from (#{client_id})", local_client_id
if local_client[:meta][:type] == 'websocket' && @clients[ local_client_id ]
2015-05-12 11:31:32 +00:00
websocket_send(local_client_id, data)
else
2015-05-12 08:46:07 +00:00
Sessions.send(local_client_id, data)
end
2012-11-04 10:24:03 +00:00
end
2013-06-11 06:18:18 +00:00
else
log 'notice', 'do not send broadcast to it self', client_id
2012-10-28 23:47:38 +00:00
end
}
2015-11-10 14:01:04 +00:00
elsif data['event']
message = Sessions::Event.run(data['event'], data, @clients[client_id][:session], client_id)
if message
websocket_send(client_id, message)
end
2012-08-04 13:35:55 +00:00
end
2012-07-23 22:22:23 +00:00
}
end
# check unused connections
EventMachine.add_timer(0.5) {
check_unused_connections
}
# check open unused connections, kick all connection without activitie in the last 2 minutes
EventMachine.add_periodic_timer(120) {
2012-12-24 13:53:50 +00:00
check_unused_connections
}
EventMachine.add_periodic_timer(20) {
2012-11-26 05:04:44 +00:00
# websocket
log 'notice', "Status: websocket clients: #{@clients.size}"
@clients.each { |client_id, _client|
log 'notice', 'working...', client_id
}
2012-11-26 05:04:44 +00:00
# ajax
client_list = Sessions.list
2012-11-26 05:04:44 +00:00
clients = 0
client_list.each {|_client_id, client|
2012-11-26 05:04:44 +00:00
next if client[:meta][:type] == 'websocket'
clients = clients + 1
}
log 'notice', "Status: ajax clients: #{clients}"
2012-11-26 05:04:44 +00:00
client_list.each {|client_id, client|
next if client[:meta][:type] == 'websocket'
log 'notice', 'working...', client_id
}
}
2012-11-02 16:10:22 +00:00
EventMachine.add_periodic_timer(0.4) {
next if @clients.size == 0
2015-05-12 08:46:07 +00:00
#log 'debug', 'checking for data to send...'
2012-07-23 22:22:23 +00:00
@clients.each { |client_id, client|
2012-08-07 05:33:47 +00:00
next if client[:disconnect]
log 'debug', 'checking for data...', client_id
2012-07-23 22:22:23 +00:00
begin
queue = Sessions.queue( client_id )
2012-07-23 22:22:23 +00:00
if queue && queue[0]
log 'notice', 'send data to client', client_id
2015-05-12 11:31:32 +00:00
websocket_send(client_id, queue)
2012-07-23 22:22:23 +00:00
end
2012-08-03 22:46:05 +00:00
rescue => e
log 'error', 'problem:' + e.inspect, client_id
# disconnect client
2012-08-07 05:33:47 +00:00
client[:error_count] += 1
if client[:error_count] > 20
2012-08-07 05:33:47 +00:00
if @clients.include? client_id
@clients.delete client_id
end
end
2012-07-23 22:22:23 +00:00
end
}
}
2012-11-02 16:10:22 +00:00
2015-05-12 11:31:32 +00:00
def websocket_send(client_id, data)
if data.class != Array
msg = "[#{data.to_json}]"
else
msg = data.to_json
end
2015-05-12 08:46:07 +00:00
log 'debug', "send #{msg}", client_id
if !@clients[client_id]
log 'error', "no such @clients for #{client_id}", client_id
return
end
2015-05-12 11:31:32 +00:00
@clients[client_id][:websocket].send(msg)
2015-05-12 08:46:07 +00:00
end
2012-12-24 13:53:50 +00:00
def check_unused_connections
log 'notice', 'check unused idle connections...'
2012-12-24 13:53:50 +00:00
idle_time_in_sec = 4 * 60
2012-12-24 13:53:50 +00:00
2015-01-13 16:03:58 +00:00
# close unused web socket sessions
2012-12-24 13:53:50 +00:00
@clients.each { |client_id, client|
2015-05-10 20:53:15 +00:00
next if ( client[:last_ping].to_i + idle_time_in_sec ) >= Time.now.utc.to_i
2012-12-24 13:53:50 +00:00
log 'notice', 'closing idle websocket connection', client_id
2012-12-24 13:53:50 +00:00
# remember to not use this connection anymore
client[:disconnect] = true
# try to close regular
client[:websocket].close_websocket
# delete session from client list
sleep 0.3
@clients.delete(client_id)
2012-12-24 13:53:50 +00:00
}
2015-01-13 16:03:58 +00:00
# close unused ajax long polling sessions
clients = Sessions.destory_idle_sessions(idle_time_in_sec)
2014-06-27 06:43:37 +00:00
clients.each { |client_id|
log 'notice', 'closing idle long polling connection', client_id
2012-12-24 13:53:50 +00:00
}
end
def log( level, data, client_id = '-' )
2013-03-10 23:14:31 +00:00
if !@options[:v]
return if level == 'debug'
end
puts "#{Time.now.utc.iso8601}:client(#{client_id}) #{data}"
2015-05-12 08:46:07 +00:00
#puts "#{Time.now.utc.iso8601}:#{ level }:client(#{ client_id }) #{ data }"
2012-08-03 22:46:05 +00:00
end
2012-07-23 22:22:23 +00:00
}