diff options
Diffstat (limited to 'health-controller.lua')
-rw-r--r-- | health-controller.lua | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/health-controller.lua b/health-controller.lua new file mode 100644 index 0000000..2ce32d4 --- /dev/null +++ b/health-controller.lua @@ -0,0 +1,36 @@ +module (..., package.seeall) + +local list_redir = function (self) + self.conf.action = "system" + 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 + +-- Public methods + +system = function (self ) + return ({system = self.model:get_system(), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller} ) +end + +storage = function (self ) + return ({storage = self.model:get_storage(), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller} ) +end + +network = function (self ) + return ({network = self.model:get_network(), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller} ) +end + +modules = function (self ) + return ({modules = self.model:get_modules(), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller} ) +end + +proc = function (self ) + return ({proc = self.model:get_proc(), url = ENV["SCRIPT_NAME"] .. self.conf.prefix .. self.conf.controller} ) +end |