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

80 lines
2.2 KiB
Lua
Raw Normal View History

2018-08-23 11:43:42 +02:00
-- the rewrite rule for the framework
-- should be something like this
-- ^\/apps\/+(.*)$ = /apps/router.lua?r=<1>&<query>
-- some global variables
DIR_SEP = "/"
2018-10-17 19:48:31 +02:00
WWW_ROOT = __ROOT__.."/info"
2018-10-19 11:20:56 +02:00
if HEADER.Host then
HTTP_ROOT= "https://"..HEADER.Host
2018-10-17 19:48:31 +02:00
else
HTTP_ROOT = "https://info.lxsang.me"
end
2018-08-23 11:43:42 +02:00
-- 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
2018-10-09 12:14:33 +02:00
REGISTRY.logger = Logger:new{ levels = {INFO = false, ERROR = true, DEBUG = false}}
2022-07-20 12:46:02 +02:00
REGISTRY.users_allowed = { phuong = true, mrsang = true, dany = true }
2020-06-07 19:46:59 +02:00
REGISTRY.user = "mrsang"
REGISTRY.db = DBHelper:new{db=REGISTRY.user}
2018-08-23 11:43:42 +02:00
REGISTRY.layout = 'default'
2018-09-12 18:30:53 +02:00
REGISTRY.fileaccess = true
2018-08-23 11:43:42 +02:00
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",
2018-08-23 11:43:42 +02:00
visibility = {
shown = true,
routes = {
["index/index"] = true
2018-08-23 11:43:42 +02:00
}
}
}
2018-08-23 11:43:42 +02:00
}
router:route('default', default_routes_dependencies )
2020-06-07 15:20:21 +02:00
BaseController:subclass("NotfoundController",{ registry = {}, models = {} })
function NotfoundController:index(...)
local args = {...}
local user = args[1]:gsub("Controller", ""):lower();
2020-06-17 20:07:50 +02:00
if not REGISTRY.users_allowed[user] then
self:error("404: Controller "..args[1].." not found : "..args[2])
return
end
2021-01-05 20:12:35 +01:00
REQUEST.r = std.trim(REQUEST.r:gsub(user, ""), "/")
2020-06-07 15:20:21 +02:00
if REGISTRY.db then REGISTRY.db:close() end
2020-06-07 19:46:59 +02:00
REGISTRY.user = user
REGISTRY.db = DBHelper:new{db=REGISTRY.user}
2020-06-07 15:20:21 +02:00
REGISTRY.db:open()
router:delegate()
end
2018-08-23 11:43:42 +02:00
router:delegate()
if REGISTRY.db then REGISTRY.db:close() end