summaryrefslogtreecommitdiffstats
path: root/tinydns-controller.lua
blob: 4e6efca420d22977ba727faaa2a29d9b11b33fe1 (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
module(..., package.seeall)

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
end

local function getstatus(self)
	local status = self.model.getstatus()
	if (#status.status.value > 0) then
		status.status.value = "Enabled"
	else
		status.status.value = "Disabled"
	end
	return status
end

function status(self)
	return { status=getstatus(self) }
end

function config(self)
	local config = self.model.getconfig(self)
	local debug = self.model.getdebug(self)
	return ({
		status=getstatus(self),
		config=config,
		debug=debug,
	 	})
end