- Moved websocket-server.rb 'Style/FileName' rubocop cop exclusion from .rubocop.yml to websocket-server.rb.

- Excluded websocket-server.rb from rubocop cop 'Rails/TimeZone'.
This commit is contained in:
Thorsten Eckel 2015-05-08 12:43:54 +02:00
parent 18eaebd9b9
commit cad3bf8842
2 changed files with 8 additions and 15 deletions

View file

@ -154,13 +154,6 @@ Style/ClassAndModuleChildren:
Description: 'Checks style of children classes and modules.'
Enabled: false
Style/FileName:
Description: 'Use snake_case for source file names.'
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#snake-case-files'
Enabled: true
Exclude:
- 'script/websocket-server.rb'
# 2.0
Metrics/PerceivedComplexity:

View file

@ -1,6 +1,6 @@
#!/usr/bin/env ruby
# Copyright (C) 2012-2013 Zammad Foundation, http://zammad-foundation.org/
# rubocop:disable Style/FileName, Rails/TimeZone
$LOAD_PATH << './lib'
require 'rubygems'
require 'eventmachine'
@ -95,7 +95,7 @@ EventMachine.run {
if !@clients.include? client_id
@clients[client_id] = {
websocket: ws,
last_ping: Time.zone.now,
last_ping: Time.now,
error_count: 0,
}
end
@ -139,7 +139,7 @@ EventMachine.run {
# error handling
if data['timestamp']
log 'notice', "request spool data > '#{Time.zone.at(data['timestamp'])}'", client_id
log 'notice', "request spool data > '#{Time.at(data['timestamp'])}'", client_id
else
log 'notice', 'request spool with init data', client_id
end
@ -164,7 +164,7 @@ EventMachine.run {
# send spool:sent event to client
log 'notice', 'send spool:sent event', client_id
@clients[client_id][:websocket].send( '[{"event":"spool:sent","data":{"timestamp":' + Time.zone.now.to_i.to_s + '}}]' )
@clients[client_id][:websocket].send( '[{"event":"spool:sent","data":{"timestamp":' + Time.now.to_i.to_s + '}}]' )
end
# get session
@ -175,7 +175,7 @@ EventMachine.run {
# remember ping, send pong back
elsif data['action'] == 'ping'
Sessions.touch(client_id)
@clients[client_id][:last_ping] = Time.zone.now
@clients[client_id][:last_ping] = Time.now
@clients[client_id][:websocket].send( '[{"action":"pong"}]' )
# broadcast
@ -298,7 +298,7 @@ EventMachine.run {
# close unused web socket sessions
@clients.each { |client_id, client|
next if ( client[:last_ping] + idle_time_in_sec ) >= Time.zone.now
next if ( client[:last_ping] + idle_time_in_sec ) >= Time.now
log 'notice', 'closing idle websocket connection', client_id
@ -324,8 +324,8 @@ EventMachine.run {
if !@options[:v]
return if level == 'debug'
end
puts "#{Time.zone.now}:client(#{ client_id }) #{ data }"
# puts "#{Time.zone.now}:#{ level }:client(#{ client_id }) #{ data }"
puts "#{Time.now}:client(#{ client_id }) #{ data }"
# puts "#{Time.now}:#{ level }:client(#{ client_id }) #{ data }"
end
}