openvpn-status-web/lib/openvpn-status-web/parser/modern_stateless.rb

41 lines
1.1 KiB
Ruby
Raw Normal View History

2020-03-07 01:30:57 +01:00
# frozen_string_literal: true
2013-05-03 20:16:17 +02:00
module OpenVPNStatusWeb
module Parser
class ModernStateless
def self.parse_status_log(text, sep)
status = Status.new
status.client_list = []
status.routing_table = []
status.global_stats = []
text.lines.each do |line|
parts = line.strip.split(sep)
2020-03-02 01:57:58 +01:00
status.client_list << parse_client(parts[1..5]) if parts[0] == 'CLIENT_LIST'
status.routing_table << parse_route(parts[1..4]) if parts[0] == 'ROUTING_TABLE'
status.global_stats << parse_global(parts[1..2]) if parts[0] == 'GLOBAL_STATS'
2013-05-03 20:16:17 +02:00
end
status
end
2013-05-03 22:23:45 +02:00
2020-03-02 01:57:58 +01:00
private_class_method def self.parse_client(client)
2013-05-03 22:23:45 +02:00
client[2] = client[2].to_i
client[3] = client[3].to_i
client[4] = DateTime.strptime(client[4], '%a %b %d %k:%M:%S %Y')
client
end
2020-03-02 01:57:58 +01:00
private_class_method def self.parse_route(route)
2013-05-03 22:23:45 +02:00
route[3] = DateTime.strptime(route[3], '%a %b %d %k:%M:%S %Y')
route
end
2020-03-02 01:57:58 +01:00
private_class_method def self.parse_global(global)
2013-05-03 22:23:45 +02:00
global[1] = global[1].to_i
global
end
2013-05-03 20:16:17 +02:00
end
end
end