mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
77 lines
1.7 KiB
Ruby
77 lines
1.7 KiB
Ruby
class Sessions::Client
|
|
|
|
def initialize(client_id)
|
|
@client_id = client_id
|
|
log '---client start ws connection---'
|
|
fetch
|
|
log '---client exiting ws connection---'
|
|
end
|
|
|
|
def fetch
|
|
|
|
backends = [
|
|
'Sessions::Backend::TicketOverviewList',
|
|
'Sessions::Backend::Collections',
|
|
'Sessions::Backend::Rss',
|
|
'Sessions::Backend::ActivityStream',
|
|
'Sessions::Backend::TicketCreate',
|
|
]
|
|
|
|
asset_lookup = {}
|
|
backend_pool = []
|
|
user_id_last_run = nil
|
|
loop_count = 0
|
|
loop do
|
|
|
|
# get connection user
|
|
session_data = Sessions.get(@client_id)
|
|
return if !session_data
|
|
return if !session_data[:user]
|
|
return if !session_data[:user]['id']
|
|
user = User.lookup(id: session_data[:user]['id'])
|
|
return if !user
|
|
|
|
# init new backends
|
|
if user_id_last_run != user.id
|
|
user_id_last_run = user.id
|
|
asset_lookup = {}
|
|
|
|
# release old objects
|
|
backend_pool.collect! {
|
|
nil
|
|
}
|
|
|
|
# create new pool
|
|
backend_pool = []
|
|
backends.each {|backend|
|
|
item = backend.constantize.new(user, asset_lookup, self, @client_id)
|
|
backend_pool.push item
|
|
}
|
|
end
|
|
|
|
loop_count += 1
|
|
log "---client - looking for data of user #{user.id}"
|
|
|
|
# push messages from backends
|
|
backend_pool.each(&:push)
|
|
|
|
log '---/client-'
|
|
|
|
# start faster in the beginnig
|
|
if loop_count < 20
|
|
sleep 0.6
|
|
else
|
|
sleep 1
|
|
end
|
|
end
|
|
end
|
|
|
|
# send update to browser
|
|
def send(data)
|
|
Sessions.send(@client_id, data)
|
|
end
|
|
|
|
def log(msg)
|
|
Rails.logger.debug "client(#{@client_id}) #{msg}"
|
|
end
|
|
end
|