summaryrefslogtreecommitdiffstats
path: root/openvpn-controller.lua
blob: 7f0d571a7797ce093de6211e780a5485ad0d79b4 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
-- the hostname controller

module (..., package.seeall)

-- Cause an http redirect to our "read" action
-- We use the self.conf table because it already has prefix,controller,etc
-- The redir code is defined in the application error handler (acf-controller)
local list_redir = function (self)
	self.conf.action = "status"
	self.conf.type = "redir"
	error (self.conf)
end

mvc={}
mvc.on_load = function(self, parent)
	if (self.worker[self.conf.action] == nil ) or ( self.conf.action == "init" ) then
		self.worker[self.conf.action] = list_redir(self)
	end
	
--	logit ("hostname.mvc.on_load activated")

end

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
			list_redir(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
			list_redir(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