-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
147 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
local core = require("apisix.core") | ||
local http = require("resty.http") | ||
local helper = require("apisix.plugins.opa.helper") | ||
|
||
local schema = { | ||
type = "object", | ||
properties = { | ||
host = {type = "string"}, | ||
ssl_verify = { | ||
type = "boolean", | ||
default = true, | ||
}, | ||
package = {type = "string"}, | ||
decision = {type = "string", maxLength = 256}, | ||
timeout = { | ||
type = "integer", | ||
minimum = 1, | ||
maximum = 60000, | ||
default = 3000, | ||
description = "timeout in milliseconds", | ||
}, | ||
keepalive = {type = "boolean", default = true}, | ||
keepalive_timeout = {type = "integer", minimum = 1000, default = 60000}, | ||
keepalive_pool = {type = "integer", minimum = 1, default = 5} | ||
}, | ||
required = {"host", "package", "decision"} | ||
} | ||
|
||
|
||
local _M = { | ||
version = 0.1, | ||
priority = 2001, | ||
name = "opa", | ||
schema = schema, | ||
} | ||
|
||
|
||
function _M.check_schema(conf) | ||
local ok, err = core.schema.check(schema, conf) | ||
if not ok then | ||
return false, err | ||
end | ||
|
||
return true | ||
end | ||
|
||
|
||
function _M.access(conf, ctx) | ||
local body = helper.build_opa_input(conf, ctx, "http") | ||
local params = { | ||
method = "POST", | ||
body = body, | ||
headers = { | ||
["Content-Type"] = "application/json", | ||
}, | ||
keepalive = conf.keepalive, | ||
ssl_verify = conf.ssl_verify | ||
} | ||
|
||
if conf.keepalive then | ||
params.keepalive_timeout = conf.keepalive_timeout | ||
params.keepalive_pool = conf.keepalive_pool | ||
end | ||
|
||
local endpoint = conf.host .. "/v1/data/" .. conf.package .. "/" .. conf.decision | ||
|
||
local httpc = http.new() | ||
httpc:set_timeout(conf.timeout) | ||
|
||
local res, err = httpc:request_uri(endpoint, params) | ||
|
||
-- block by default when decision is unavailable | ||
if not res or err then | ||
core.log.error("failed to process OPA decision, err: ", err) | ||
return 403 | ||
end | ||
|
||
-- parse the results of the decision | ||
local ret = core.json.decode(res.body).result | ||
|
||
if not ret then | ||
return 403 | ||
end | ||
end | ||
|
||
|
||
return _M |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
local core = require("apisix.core") | ||
local ngx_var = ngx.var | ||
local ngx_time = ngx.time | ||
|
||
local _M = {} | ||
|
||
|
||
local function build_var(conf, ctx) | ||
return { | ||
server_addr = ngx_var.server_addr, | ||
server_port = ngx_var.server_port, | ||
remote_addr = ngx_var.remote_addr, | ||
remote_port = ngx_var.remote_port, | ||
timestamp = ngx_time(), | ||
} | ||
end | ||
|
||
|
||
local function build_http_request(conf, ctx) | ||
return { | ||
scheme = core.request.get_scheme(ctx), | ||
method = core.request.get_method(ctx), | ||
host = core.request.get_host(ctx), | ||
port = core.request.get_port(ctx), | ||
path = core.request.get_path(ctx, true), | ||
header = core.request.headers(ctx), | ||
query = core.request.get_uri_args(ctx), | ||
} | ||
end | ||
|
||
|
||
function _M.build_opa_input(conf, ctx, subsystem) | ||
local request = build_http_request(conf, ctx) | ||
|
||
local data = { | ||
type = subsystem, | ||
request = request, | ||
var = build_var(conf, ctx) | ||
} | ||
|
||
return core.json.encode({input = data}) | ||
end | ||
|
||
|
||
return _M |