2014-02-03 19:24:49 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-11-26 23:32:55 +00:00
|
|
|
class LongPollingController < ApplicationController
|
2015-09-09 18:16:20 +00:00
|
|
|
skip_action_callback :session_update # prevent race conditions
|
2012-11-26 23:32:55 +00:00
|
|
|
|
2013-08-06 22:10:28 +00:00
|
|
|
# GET /api/v1/message_send
|
2012-11-26 23:32:55 +00:00
|
|
|
def message_send
|
|
|
|
new_connection = false
|
|
|
|
|
|
|
|
# check client id
|
2013-09-19 14:56:09 +00:00
|
|
|
client_id = client_id_verify
|
2012-11-26 23:32:55 +00:00
|
|
|
if !client_id
|
|
|
|
new_connection = true
|
|
|
|
client_id = client_id_gen
|
2015-05-04 18:58:28 +00:00
|
|
|
log 'new client connection', client_id
|
2012-11-26 23:32:55 +00:00
|
|
|
end
|
|
|
|
if !params['data']
|
|
|
|
params['data'] = {}
|
|
|
|
end
|
2015-12-09 13:09:37 +00:00
|
|
|
session_data = {}
|
2015-12-13 08:40:39 +00:00
|
|
|
if current_user && current_user.id
|
2015-12-09 13:09:37 +00:00
|
|
|
session_data = { 'id' => current_user.id }
|
|
|
|
end
|
2012-11-26 23:32:55 +00:00
|
|
|
|
2013-06-10 07:01:37 +00:00
|
|
|
# spool messages for new connects
|
|
|
|
if params['data']['spool']
|
2015-12-09 13:09:37 +00:00
|
|
|
Sessions.spool_create(params['data'])
|
2013-06-10 07:01:37 +00:00
|
|
|
end
|
2015-12-09 13:09:37 +00:00
|
|
|
if params['data']['event'] == 'login'
|
|
|
|
Sessions.create(client_id, session_data, { type: 'ajax' })
|
|
|
|
elsif params['data']['event']
|
|
|
|
message = Sessions::Event.run(
|
|
|
|
event: params['data']['event'],
|
|
|
|
payload: params['data'],
|
|
|
|
session: session_data,
|
|
|
|
client_id: client_id,
|
|
|
|
clients: {},
|
|
|
|
options: {},
|
|
|
|
)
|
|
|
|
if message
|
|
|
|
Sessions.send(client_id, message)
|
2013-06-30 15:54:54 +00:00
|
|
|
end
|
2015-12-09 13:09:37 +00:00
|
|
|
else
|
|
|
|
log "unknown message '#{params['data'].inspect}'", client_id
|
2012-11-26 23:32:55 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if new_connection
|
2015-04-27 13:42:53 +00:00
|
|
|
result = { client_id: client_id }
|
|
|
|
render json: result
|
2012-11-26 23:32:55 +00:00
|
|
|
else
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {}
|
2012-11-26 23:32:55 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-08-06 22:10:28 +00:00
|
|
|
# GET /api/v1/message_receive
|
2012-11-26 23:32:55 +00:00
|
|
|
def message_receive
|
|
|
|
|
|
|
|
# check client id
|
2013-09-19 14:56:09 +00:00
|
|
|
client_id = client_id_verify
|
|
|
|
if !client_id
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { error: 'Invalid client_id receive!' }, status: :unprocessable_entity
|
2012-11-26 23:32:55 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2013-06-11 06:17:50 +00:00
|
|
|
# check queue to send
|
2012-11-26 23:32:55 +00:00
|
|
|
begin
|
2013-03-10 16:44:40 +00:00
|
|
|
|
2013-06-11 06:17:50 +00:00
|
|
|
# update last ping
|
2015-05-07 09:49:46 +00:00
|
|
|
4.times {
|
2013-08-28 06:40:02 +00:00
|
|
|
sleep 0.25
|
|
|
|
}
|
|
|
|
#sleep 1
|
2015-12-09 13:09:37 +00:00
|
|
|
Sessions.touch(client_id)
|
2013-06-11 06:17:50 +00:00
|
|
|
|
2013-07-26 22:57:06 +00:00
|
|
|
# set max loop time to 24 sec. because of 30 sec. timeout of mod_proxy
|
2015-12-09 13:09:37 +00:00
|
|
|
count = 3
|
|
|
|
if Rails.env.production?
|
|
|
|
count = 12
|
|
|
|
end
|
2015-05-05 14:10:06 +00:00
|
|
|
loop do
|
2012-11-26 23:32:55 +00:00
|
|
|
count = count - 1
|
2015-12-09 13:09:37 +00:00
|
|
|
queue = Sessions.queue(client_id)
|
2012-11-26 23:32:55 +00:00
|
|
|
if queue && queue[0]
|
2015-05-04 19:11:20 +00:00
|
|
|
logger.debug "send #{queue.inspect} to #{client_id}"
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: queue
|
2012-11-26 23:32:55 +00:00
|
|
|
return
|
|
|
|
end
|
2015-05-07 09:49:46 +00:00
|
|
|
8.times {
|
2013-08-28 06:40:02 +00:00
|
|
|
sleep 0.25
|
|
|
|
}
|
|
|
|
#sleep 2
|
2012-11-26 23:32:55 +00:00
|
|
|
if count == 0
|
2015-12-09 13:09:37 +00:00
|
|
|
render json: { event: 'pong' }
|
2012-11-26 23:32:55 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
2015-05-08 14:09:24 +00:00
|
|
|
rescue => e
|
2015-05-04 18:58:28 +00:00
|
|
|
logger.error e.inspect
|
|
|
|
logger.error e.backtrace
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { error: 'Invalid client_id in receive loop!' }, status: :unprocessable_entity
|
2012-11-26 23:32:55 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2013-09-19 14:56:09 +00:00
|
|
|
|
2013-06-12 15:59:58 +00:00
|
|
|
def client_id_gen
|
2015-04-27 13:43:34 +00:00
|
|
|
rand(9_999_999_999).to_s
|
2013-06-12 15:59:58 +00:00
|
|
|
end
|
2013-09-19 14:56:09 +00:00
|
|
|
|
2013-06-12 15:59:58 +00:00
|
|
|
def client_id_verify
|
|
|
|
return if !params[:client_id]
|
2013-08-21 18:35:22 +00:00
|
|
|
sessions = Sessions.sessions
|
2015-12-09 13:09:37 +00:00
|
|
|
return if !sessions.include?(params[:client_id].to_s)
|
2015-04-27 20:49:17 +00:00
|
|
|
params[:client_id].to_s
|
2013-06-12 15:59:58 +00:00
|
|
|
end
|
2013-06-10 07:01:37 +00:00
|
|
|
|
2015-05-04 18:58:28 +00:00
|
|
|
def log( data, client_id = '-' )
|
2015-07-03 15:18:01 +00:00
|
|
|
logger.info "client(#{client_id}) #{data}"
|
2013-06-12 15:59:58 +00:00
|
|
|
end
|
2013-06-10 07:01:37 +00:00
|
|
|
end
|