2019-04-10 11:08:25 +08:00
|
|
|
-- Copyright (C) Yuansheng Wang
|
|
|
|
|
2019-04-11 15:00:59 +08:00
|
|
|
local require = require
|
2019-05-06 14:40:10 +08:00
|
|
|
local log = require("apimeta.core.log")
|
|
|
|
local resp = require("apimeta.core.resp")
|
2019-04-11 12:02:16 +08:00
|
|
|
local route_handler = require("apimeta.route.handler")
|
2019-05-08 10:38:45 +08:00
|
|
|
local base_plugin = require("apimeta.base_plugin")
|
2019-04-11 15:00:59 +08:00
|
|
|
local new_tab = require("table.new")
|
2019-04-11 14:36:53 +08:00
|
|
|
local ngx = ngx
|
2019-04-11 12:02:16 +08:00
|
|
|
local ngx_req = ngx.req
|
2019-04-11 14:34:18 +08:00
|
|
|
local ngx_var = ngx.var
|
2019-04-11 12:02:16 +08:00
|
|
|
|
2019-04-10 11:08:25 +08:00
|
|
|
local _M = {}
|
|
|
|
|
|
|
|
function _M.init()
|
2019-04-11 15:00:59 +08:00
|
|
|
require("resty.core")
|
|
|
|
require("ngx.re").opt("jit_stack_size", 200 * 1024)
|
|
|
|
require("jit.opt").start("minstitch=2", "maxtrace=4000",
|
|
|
|
"maxrecord=8000", "sizemcode=64",
|
|
|
|
"maxmcode=4000", "maxirconst=1000")
|
2019-04-10 11:08:25 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
function _M.init_worker()
|
2019-04-11 12:02:16 +08:00
|
|
|
require("apimeta.route.load").init_worker()
|
2019-04-10 11:08:25 +08:00
|
|
|
end
|
|
|
|
|
2019-05-08 10:38:45 +08:00
|
|
|
function _M.rewrite()
|
2019-04-11 12:02:16 +08:00
|
|
|
local ngx_ctx = ngx.ctx
|
|
|
|
local api_ctx = ngx_ctx.api_ctx
|
|
|
|
|
|
|
|
if api_ctx == nil then
|
2019-04-11 15:00:59 +08:00
|
|
|
-- todo: reuse this table
|
|
|
|
api_ctx = new_tab(0, 32)
|
2019-04-11 12:02:16 +08:00
|
|
|
ngx_ctx.api_ctx = api_ctx
|
|
|
|
end
|
|
|
|
|
|
|
|
api_ctx.method = api_ctx.method or ngx_req.get_method()
|
2019-04-11 14:34:18 +08:00
|
|
|
api_ctx.uri = api_ctx.uri or ngx_var.uri
|
|
|
|
api_ctx.host = api_ctx.host or ngx_var.host
|
2019-04-11 12:02:16 +08:00
|
|
|
|
2019-04-11 15:00:59 +08:00
|
|
|
local router, dispatch_uri = route_handler.get_router()
|
|
|
|
local ok
|
|
|
|
if dispatch_uri then
|
|
|
|
ok = router:dispatch(api_ctx.method, api_ctx.uri, api_ctx)
|
|
|
|
else
|
|
|
|
ok = router:dispatch(api_ctx.method, api_ctx.host .. api_ctx.uri,
|
|
|
|
api_ctx)
|
|
|
|
end
|
2019-05-08 10:38:45 +08:00
|
|
|
|
2019-04-11 12:02:16 +08:00
|
|
|
if not ok then
|
2019-05-08 10:38:45 +08:00
|
|
|
log.info("not find any matched route")
|
|
|
|
return resp(404)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- todo: move those code to another single file
|
|
|
|
-- todo optimize: cache `all_plugins`
|
|
|
|
local all_plugins, err = base_plugin.load()
|
|
|
|
if not all_plugins then
|
|
|
|
ngx.say("failed to load plugins: ", err)
|
|
|
|
end
|
|
|
|
|
|
|
|
local filter_plugins = base_plugin.filter_plugin(
|
|
|
|
api_ctx.matched_route.plugin_config, all_plugins)
|
|
|
|
api_ctx.filter_plugins = filter_plugins
|
|
|
|
for i = 1, #filter_plugins, 2 do
|
|
|
|
local plugin = filter_plugins[i]
|
|
|
|
if plugin.access then
|
|
|
|
plugin.access(filter_plugins[i + 1])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.access()
|
|
|
|
local api_ctx = ngx.ctx.api_ctx
|
|
|
|
if not api_ctx.filter_plugins then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local filter_plugins = api_ctx.filter_plugins
|
|
|
|
for i = 1, #filter_plugins, 2 do
|
|
|
|
local plugin = filter_plugins[i]
|
|
|
|
if plugin.access then
|
|
|
|
plugin.access(filter_plugins[i + 1])
|
|
|
|
end
|
2019-04-11 12:02:16 +08:00
|
|
|
end
|
2019-04-10 11:08:25 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
function _M.header_filter()
|
2019-05-08 10:38:45 +08:00
|
|
|
local api_ctx = ngx.ctx.api_ctx
|
|
|
|
if not api_ctx.filter_plugins then
|
|
|
|
return
|
|
|
|
end
|
2019-04-11 12:02:16 +08:00
|
|
|
|
2019-05-08 10:38:45 +08:00
|
|
|
local filter_plugins = api_ctx.filter_plugins
|
|
|
|
for i = 1, #filter_plugins, 2 do
|
|
|
|
local plugin = filter_plugins[i]
|
|
|
|
if plugin.header_filter then
|
|
|
|
plugin.header_filter(filter_plugins[i + 1])
|
|
|
|
end
|
|
|
|
end
|
2019-04-10 11:08:25 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
function _M.log()
|
2019-05-08 10:38:45 +08:00
|
|
|
local api_ctx = ngx.ctx.api_ctx
|
|
|
|
if not api_ctx.filter_plugins then
|
|
|
|
return
|
|
|
|
end
|
2019-04-11 12:02:16 +08:00
|
|
|
|
2019-05-08 10:38:45 +08:00
|
|
|
local filter_plugins = api_ctx.filter_plugins
|
|
|
|
for i = 1, #filter_plugins, 2 do
|
|
|
|
local plugin = filter_plugins[i]
|
|
|
|
if plugin.log then
|
|
|
|
plugin.log(filter_plugins[i + 1])
|
|
|
|
end
|
|
|
|
end
|
2019-04-10 11:08:25 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
return _M
|