summaryrefslogtreecommitdiffstats
path: root/openvpn-controller.lua
blob: 58761898ad18907b83cf4345f9ac2ee904c43417 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
-- the hostname controller

module (..., package.seeall)

default_action = "status"

status = function (self)
	-- FIXME: If return 1 rows go direct to that config-page
	return ( {conflistfiles = self.model:get_conflist(), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller, version = self.model:openvpn_version()} )
end


serverconfig = function (self)
	local configname = self.clientdata.name or ""
	return ( {config = self.model:get_config(configname), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller} )
end

clientconfig = function (self)
	local configname = self.clientdata.name or ""
	return ( {config = self.model:get_config(configname), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller} )
end

peminfo = function (self)
end

statusinfo = function (self)
	local configname = self.clientdata.name or ""
	return ( {clientlist = self.model:clientlist(configname), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller} )
end

unknownconfig = function (self)
	local filename = self.clientdata.name or ""
	local filecontent = self.clientdata.modifications or ""

---[[
	if ( filecontent ~= "") then
		local me = ( {configfilecontent = self.model:update_filecontent(filename,filecontent), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller } )
		if ( me.configfilecontent == nil ) then
			redirect(self)
		else
			return me
		end
	else
---[=[
		local me = ( {configfilecontent = self.model:get_filecontent(filename), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller } )
		if ( me.configfilecontent == nil ) then
			redirect(self)
		else
			return me
		end
--]=]
--	return ( {configfilecontent = self.model:get_filecontent(filename), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller} )

	end
--]]

end

logfile = function (self)
	local configname = self.clientdata.name or ""
	-- FIXME: If return 0 rows, goto read
	return ( {logfilecontent = self.model:get_logfile(configname), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller } )
end