From 41ed91bbcb93e7d7b3fe5996748c54fc2024fb3a Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sun, 20 Sep 2020 18:00:49 +0200 Subject: [PATCH] Misc cosmetics / debug tweaks --- access.lua | 3 ++- helpers.lua | 9 +++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/access.lua b/access.lua index 4b093b9..f25cac2 100644 --- a/access.lua +++ b/access.lua @@ -226,11 +226,12 @@ end -- --- 3. Redirected URLs +-- 3. REDIRECTED URLS -- -- If the URL matches one of the `redirected_urls` in the configuration file, -- just redirect to the target URL/URI -- + function detect_redirection(redirect_url) if hlp.string.starts(redirect_url, "http://") or hlp.string.starts(redirect_url, "https://") then diff --git a/helpers.lua b/helpers.lua index 74e06d6..068d6f4 100644 --- a/helpers.lua +++ b/helpers.lua @@ -232,7 +232,7 @@ function refresh_logged_in() local authHash = ngx.var.cookie_SSOwAuthHash authUser = nil - + if expireTime and expireTime ~= "" and authHash and authHash ~= "" and user and user ~= "" @@ -302,17 +302,18 @@ function has_access(permission, user) user = user or authUser if permission == nil then + logger.debug("No permission matching request for "..ngx.var.uri) return false end -- Public access if user == nil or permission["public"] then user = user or "A visitor" - logger.debug(user.." tries to access "..ngx.var.uri) + logger.debug(user.." tries to access "..ngx.var.uri.." (corresponding perm: "..permission["id"]..")") return permission["public"] end - logger.debug("User "..user.." tries to access "..ngx.var.uri) + logger.debug("User "..user.." tries to access "..ngx.var.uri.." (corresponding perm: "..permission["id"]..")") -- All user in this permission allowed_users = permission["users"] @@ -508,7 +509,7 @@ end -- It is used to render the SSOwat portal *only*. function serve(uri, cache) - logger.debug("Serving portal uri "..uri.." (if the corresponding file exists)") + logger.debug("Serving portal uri "..uri) rel_path = string.gsub(uri, conf["portal_path"], "/")