mirror of
https://github.com/lxsang/antd-web-apps
synced 2024-11-19 18:08:21 +01:00
80 lines
2.2 KiB
Lua
80 lines
2.2 KiB
Lua
|
|
-- the rewrite rule for the framework
|
|
-- should be something like this
|
|
-- ^\/apps\/+(.*)$ = /apps/router.lua?r=<1>&<query>
|
|
-- some global variables
|
|
DIR_SEP = "/"
|
|
WWW_ROOT = __ROOT__.."/info"
|
|
if HEADER.Host then
|
|
HTTP_ROOT= "https://"..HEADER.Host
|
|
else
|
|
HTTP_ROOT = "https://info.lxsang.me"
|
|
end
|
|
-- class path: path.to.class
|
|
BASE_FRW = ""
|
|
-- class path: path.to.class
|
|
CONTROLLER_ROOT = BASE_FRW.."info.controllers"
|
|
MODEL_ROOT = BASE_FRW.."info.models"
|
|
-- file path: path/to/file
|
|
VIEW_ROOT = WWW_ROOT..DIR_SEP.."views"
|
|
LOG_ROOT = WWW_ROOT..DIR_SEP.."logs"
|
|
|
|
-- require needed library
|
|
require(BASE_FRW.."silk.api")
|
|
|
|
-- registry object store global variables
|
|
local REGISTRY = {}
|
|
-- set logging level
|
|
REGISTRY.logger = Logger:new{ levels = {INFO = false, ERROR = true, DEBUG = false}}
|
|
REGISTRY.users_allowed = { phuong = true, mrsang = true, dany = true }
|
|
REGISTRY.user = "mrsang"
|
|
REGISTRY.db = DBHelper:new{db=REGISTRY.user}
|
|
REGISTRY.layout = 'default'
|
|
REGISTRY.fileaccess = true
|
|
|
|
REGISTRY.db:open()
|
|
local router = Router:new{registry = REGISTRY}
|
|
REGISTRY.router = router
|
|
router:setPath(CONTROLLER_ROOT)
|
|
--router:route('edit', 'post/edit', "ALL" )
|
|
|
|
-- example of depedencies to the current main route
|
|
-- each layout may have different dependencies
|
|
local default_routes_dependencies = {
|
|
user = {
|
|
url = "user/index",
|
|
visibility = "ALL"
|
|
},
|
|
toc = {
|
|
url = "toc/index",
|
|
visibility = {
|
|
shown = true,
|
|
routes = {
|
|
["index/index"] = true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
router:route('default', default_routes_dependencies )
|
|
|
|
BaseController:subclass("NotfoundController",{ registry = {}, models = {} })
|
|
|
|
function NotfoundController:index(...)
|
|
local args = {...}
|
|
local user = args[1]:gsub("Controller", ""):lower();
|
|
|
|
if not REGISTRY.users_allowed[user] then
|
|
self:error("404: Controller "..args[1].." not found : "..args[2])
|
|
return
|
|
end
|
|
REQUEST.r = std.trim(REQUEST.r:gsub(user, ""), "/")
|
|
if REGISTRY.db then REGISTRY.db:close() end
|
|
REGISTRY.user = user
|
|
REGISTRY.db = DBHelper:new{db=REGISTRY.user}
|
|
REGISTRY.db:open()
|
|
router:delegate()
|
|
end
|
|
router:delegate()
|
|
if REGISTRY.db then REGISTRY.db:close() end
|
|
|