2022-10-28 21:00:29 +01:00
|
|
|
{ lib }:
|
|
|
|
|
2022-10-28 13:43:55 +01:00
|
|
|
{
|
2022-10-28 21:00:29 +01:00
|
|
|
openresty_oidc_block =
|
2022-11-29 13:53:17 +00:00
|
|
|
{ access_role ? "", whitelisted_ips ? [] }: ''
|
2022-10-28 21:00:29 +01:00
|
|
|
access_by_lua_block {
|
|
|
|
local opts = {
|
2022-11-11 18:08:00 +00:00
|
|
|
discovery = "https://auth.giugl.io/realms/master/.well-known/openid-configuration",
|
|
|
|
client_id = "nginx",
|
|
|
|
client_secret = "9C6BYxPhTbrRS4DIwd3Smk7e11ABmnt8",
|
2022-10-28 21:00:29 +01:00
|
|
|
logout_path = "/logout",
|
|
|
|
redirect_after_logout_uri = "/",
|
|
|
|
redirect_uri = "/redirect_uri",
|
|
|
|
keepalive = "yes",
|
2022-11-29 11:56:40 +00:00
|
|
|
accept_none_alg = true,
|
2022-11-29 12:03:26 +00:00
|
|
|
revoke_tokens_on_logout = true,
|
|
|
|
-- access token valid for a day
|
|
|
|
access_token_expires_in = 86400
|
2022-11-29 13:53:17 +00:00
|
|
|
}
|
2022-10-28 13:43:55 +01:00
|
|
|
|
2022-11-29 13:53:17 +00:00
|
|
|
${lib.optionalString (whitelisted_ips != []) ''
|
|
|
|
local whitelist = {${lib.strings.concatMapStringsSep "," (x: "\"${x}\"") whitelisted_ips}}
|
|
|
|
|
|
|
|
if is_ip_whitelisted(ngx.var.remote_addr, whitelist) then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
''}
|
|
|
|
|
|
|
|
-- call introspect for OAuth 2.0 Bearer Access Token validation
|
|
|
|
local res, err = require("resty.openidc").authenticate(opts)
|
2022-10-28 21:00:29 +01:00
|
|
|
|
2022-11-29 13:53:17 +00:00
|
|
|
if err then
|
|
|
|
ngx.status = 403
|
|
|
|
ngx.say(err)
|
|
|
|
ngx.exit(ngx.HTTP_FORBIDDEN)
|
2022-10-28 21:00:29 +01:00
|
|
|
end
|
2022-11-29 13:53:17 +00:00
|
|
|
|
|
|
|
${lib.optionalString (access_role != "") ''
|
|
|
|
if not check_role(res, "${access_role}") then
|
|
|
|
ngx.status = 401
|
|
|
|
ngx.header.content_type = 'text/html';
|
|
|
|
ngx.say("You are not authorized to access this page. Please contact Er Pepotto.")
|
|
|
|
ngx.exit(ngx.HTTP_UNAUTHORIZED)
|
|
|
|
end
|
|
|
|
''}
|
2022-10-28 21:00:29 +01:00
|
|
|
}
|
|
|
|
'';
|
2022-10-28 13:43:55 +01:00
|
|
|
}
|