mirror of
https://github.com/cmur2/openvpn-status-web.git
synced 2024-12-22 12:54:24 +01:00
First step towards multiple status files
This commit is contained in:
parent
438931f8a6
commit
635e562a3d
@ -5,6 +5,7 @@ require 'logger'
|
||||
require 'ipaddr'
|
||||
require 'yaml'
|
||||
require 'rack'
|
||||
require 'erb'
|
||||
require 'metriks'
|
||||
|
||||
require 'openvpn-status-web/status'
|
||||
@ -28,18 +29,23 @@ module OpenVPNStatusWeb
|
||||
end
|
||||
|
||||
class Daemon
|
||||
def initialize(name, file)
|
||||
@name = name
|
||||
@file = file
|
||||
def initialize(vpns)
|
||||
@vpns = vpns
|
||||
|
||||
@main_tmpl = read_template(File.join(File.dirname(__FILE__), 'openvpn-status-web/main.html.erb'))
|
||||
end
|
||||
|
||||
def call(env)
|
||||
main_tmpl = read_template(File.join(File.dirname(__FILE__), 'openvpn-status-web/main.html.erb'))
|
||||
# variables for template
|
||||
name = @name
|
||||
status = read_status_log(@file)
|
||||
return [405, {"Content-Type" => "text/plain"}, ["Method Not Allowed"]] if env["REQUEST_METHOD"] != "GET"
|
||||
return [404, {"Content-Type" => "text/plain"}, ["Not Found"]] if env["PATH_INFO"] != "/"
|
||||
|
||||
# variables for template
|
||||
#name = @vpns.keys.first
|
||||
#status = read_status_log(@vpns[name]['status_file'])
|
||||
# eval
|
||||
#html = @main_tmpl.result(binding)
|
||||
html = ""
|
||||
|
||||
html = main_tmpl.result(binding)
|
||||
[200, {"Content-Type" => "text/html"}, [html]]
|
||||
end
|
||||
|
||||
@ -84,7 +90,7 @@ module OpenVPNStatusWeb
|
||||
|
||||
OpenVPNStatusWeb.logger.info "Starting..."
|
||||
|
||||
app = Daemon.new(config['name'], config['status_file'])
|
||||
app = Daemon.new(config['vpns'])
|
||||
|
||||
Signal.trap('INT') do
|
||||
OpenVPNStatusWeb.logger.info "Quitting..."
|
||||
|
Loading…
Reference in New Issue
Block a user