1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2024-11-20 02:18:20 +01:00
antd-web-apps/apps/silk/BaseController.lua

87 lines
2.4 KiB
Lua
Raw Normal View History

2018-08-21 15:16:36 +02:00
-- create class
2018-08-22 19:38:36 +02:00
BaseController = BaseObject:extends{class="BaseController", registry = {}, models = {}}
2018-08-21 15:16:36 +02:00
-- set the name here in each subclasses
function BaseController:initialize()
2018-08-22 19:38:36 +02:00
for k, v in pairs(self.models) do
--- infer the class here
local modelname = firstToUpper(v).."Model"
local path = MODEL_ROOT.."."..modelname
-- require it
pcall(require, path)
--require(controller_path)
if not _G[modelname] then
self:modelnotfound(v)
else
-- create new model object
self[v] = _G[modelname]:new{registry = self.registry}
end
end
-- create template
self.template = Template:new{registry = self.registry}
2018-08-21 15:16:36 +02:00
end
2018-08-22 19:38:36 +02:00
function BaseController:redirect(url)
std.status(301, "Moved Permanently")
std.custom_header("Content-Type","text/html")
std.custom_header("Location", url)
std.header_flush()
2018-08-21 15:16:36 +02:00
end
2018-08-22 19:50:52 +02:00
function BaseController:setLayout(name)
self.registry.layout = name
end
2018-08-22 19:38:36 +02:00
function BaseController:setSession(key, value)
SESSION[key] = value
2018-08-21 15:16:36 +02:00
end
function BaseController:getSession(key)
2018-08-22 19:38:36 +02:00
return SESSION[key]
2018-08-21 15:16:36 +02:00
end
function BaseController:removeSession(key)
2018-08-22 19:38:36 +02:00
self:setSession(key, nil)
end
function BaseController:index(...)
self:error("#index: subclasses responsibility")
end
-- not found action
function BaseController:actionnotfound(...)
local args = {...}
self:error("#action "..args[1].." is not found in controller "..self.class)
end
-- not found model
function BaseController:modelnotfound(...)
local args = {...}
self:error("Model "..firstToUpper(args[1]).."Model is not found in controller "..self.class)
end
-- The not found controller
NotfoundController = BaseController:extends{ registry = {}, models = {} }
function NotfoundController:index(...)
local args = {...}
self:error("404: Controller "..args[1].." not found")
return false
end
-- The asset controller for the static file
AssetController = BaseController:extends{name= "AssetController",registry={}, models={}}
function AssetController:index(...)
local args = {...}
return self:get(table.unpack(args))
2018-08-21 15:16:36 +02:00
end
2018-08-22 19:38:36 +02:00
function AssetController:get(...)
local path = WWW_ROOT..DIR_SEP..implode({...}, DIR_SEP)
local mime = std.mimeOf(path)
if self.registry.mimes[mime] then
std.header(mime)
if std.isBinary(path) then
std.f(path)
else
std.fb(path)
end
end
return false
2018-08-21 15:16:36 +02:00
end