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

70 lines
1.7 KiB
Lua
Raw Normal View History

2018-09-05 16:56:04 +02:00
-- the rewrite rule for the framework
-- should be something like this
-- ^\/apps\/+(.*)$ = /apps/router.lua?r=<1>&<query>
-- some global variables
package.path = _SERVER["LIB_DIR"].."/lua/?.lua"
require("silk.api")
-- crypto lib
enc = require("enc")
2018-10-17 19:48:31 +02:00
WWW_ROOT = __ROOT__.."/blog"
-- TODO: change me
DB_FILE = "/home/dany/databases/mrsang.db"
-- add aditional paths
package.path = package.path..";"..WWW_ROOT .. '/?.lua'
DIR_SEP = "/"
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://blog.iohub.dev"
2018-10-17 19:48:31 +02:00
end
-- TODO remove me
HTTP_ROOT = HTTP_ROOT.."/next/blog"
CONTROLLER_ROOT = "blog.controllers"
MODEL_ROOT = "blog.models"
2018-09-05 16:56:04 +02:00
-- file path: path/to/file
VIEW_ROOT = WWW_ROOT..DIR_SEP.."views"
POST_LIMIT = 3
2018-09-05 16:56:04 +02:00
2018-10-05 19:03:29 +02:00
if REQUEST.r then
REQUEST.r = REQUEST.r:gsub("%:", "/")
2018-02-25 01:57:42 +01:00
end
2018-09-05 16:56:04 +02:00
-- registry object store global variables
local REGISTRY = {}
-- set logging level
REGISTRY.logger = Logger:new{ level = Logger.INFO}
REGISTRY.db = DBModel:new{db=DB_FILE}
2018-09-05 16:56:04 +02:00
REGISTRY.layout = 'default'
2018-09-12 18:30:53 +02:00
REGISTRY.fileaccess = true
2018-09-05 16:56:04 +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",
visibility = {
shown = true,
routes = {
["index/index"] = true
}
}
}
2018-10-09 12:14:33 +02:00
}
router:route('default', default_routes_dependencies )]]
2018-09-05 16:56:04 +02:00
router:remap("index", "post")
router:remap("r", "post")
router:delegate()
if REGISTRY.db then REGISTRY.db:close() end