Skip to content

Commit

Permalink
Add a new setting to redirect unknown URLs to either the SSO portal o…
Browse files Browse the repository at this point in the history
…r a 404 page
  • Loading branch information
Salamandar committed Mar 10, 2023
1 parent fa8be37 commit 32bc4c6
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 4 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,18 @@ Whether authentication should use secure connection or not (**default**: `https`

---------------

### err404_to_portal

Wether to redirect unknown URLs to the portal or to a 404 page (**default**: `true`).

---------------

### err404_path

URI of the 404 page (**default**: `/404.html`). It uses the same scheme and domain as the portal.

---------------

### domains

List of handled domains (**default**: similar to `portal_domain`).
Expand Down
10 changes: 8 additions & 2 deletions access.lua
Original file line number Diff line number Diff line change
Expand Up @@ -315,9 +315,15 @@ for permission_name, permission_infos in pairs(conf["permissions"]) do
end
end

---
--- 5. REDIRECT TO 404 PAGE IF UNKNOWN URL -> PORTAL IS DISABLED
---
if not conf["err404_to_portal"] and longest_url_match == "" then
hlp.redirect(conf.err404_url)
end

---
--- 5. CHECK CLIENT-PROVIDED AUTH HEADER (should almost never happen?)
--- 6. CHECK CLIENT-PROVIDED AUTH HEADER (should almost never happen?)
---

if permission ~= nil then
Expand All @@ -336,7 +342,7 @@ end

--
--
-- 6. APPLY PERMISSION
-- 7. APPLY PERMISSION
--
--

Expand Down
4 changes: 3 additions & 1 deletion conf.json.example
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,10 @@
},
"portal_domain": "example.tld",
"portal_path": "/yunohost/sso/",
"err404_to_portal": true,
"err404_path": "/404.html",
"redirected_regex": {
"example.tld/yunohost[\\/]?$": "https://example.tld/yunohost/sso/"
},
"redirected_urls": {}
}
}
9 changes: 8 additions & 1 deletion config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function get_config()
-- If the timestamp of the modification or the size is different, reload the configuration.
config_attributes = new_config_attributes
config_persistent_attributes = new_config_persistent_attributes

local conf_file = assert(io.open(conf_path, "r"), "Configuration file is missing")
conf = json.decode(conf_file:read("*all"))
conf_file:close()
Expand Down Expand Up @@ -83,6 +83,8 @@ function get_config()
default_conf = {
portal_scheme = "https",
portal_path = "/ssowat/",
err404_to_portal = true,
err404_path = "/404.html"
local_portal_domain = "yunohost.local",
domains = { conf["portal_domain"], "yunohost.local" },
session_timeout = 60 * 60 * 24, -- one day
Expand Down Expand Up @@ -122,6 +124,11 @@ function get_config()
conf["portal_domain"]..
conf["portal_path"]

-- Build portal full 404 page URL out of the configuration values
conf.err404_url = conf["portal_scheme"].."://"..
conf["portal_domain"]..
conf["err404_path"]


-- Always skip the portal to avoid redirection looping.
table.insert(conf["permissions"]["core_skipped"]["uris"], conf["portal_domain"]..conf["portal_path"])
Expand Down

0 comments on commit 32bc4c6

Please sign in to comment.