mirror of
https://github.com/YunoHost/SSOwat.git
synced 2024-09-03 20:06:27 +02:00
Bugfixes
This commit is contained in:
parent
151dcd5d5d
commit
ae5efa12ab
2 changed files with 95 additions and 49 deletions
136
access.lua
136
access.lua
|
@ -1,6 +1,8 @@
|
||||||
|
--
|
||||||
-- Load configuration
|
-- Load configuration
|
||||||
|
--
|
||||||
local conf_file = assert(io.open("cache.json", "r"), "Configuration file is missing")
|
local conf_file = assert(io.open("cache.json", "r"), "Configuration file is missing")
|
||||||
local conf = cjson.decode(conf_file:read("*all"))
|
local conf = json.decode(conf_file:read("*all"))
|
||||||
local portal_url = conf["portal_scheme"].."://"..
|
local portal_url = conf["portal_scheme"].."://"..
|
||||||
conf["main_domain"]..
|
conf["main_domain"]..
|
||||||
":"..conf["portal_port"]..
|
":"..conf["portal_port"]..
|
||||||
|
@ -10,20 +12,26 @@ table.insert(conf["skipped_urls"], conf["main_domain"]..conf["portal_path"])
|
||||||
-- Dummy intructions
|
-- Dummy intructions
|
||||||
ngx.header["X-YNH-SSO"] = "You've just been SSOed"
|
ngx.header["X-YNH-SSO"] = "You've just been SSOed"
|
||||||
|
|
||||||
|
--
|
||||||
-- Useful functions
|
-- Useful functions
|
||||||
|
--
|
||||||
function string.starts (String, Start)
|
function string.starts (String, Start)
|
||||||
return string.sub(String, 1, string.len(Start)) == Start
|
return string.sub(String, 1, string.len(Start)) == Start
|
||||||
end
|
end
|
||||||
|
|
||||||
function set_cookie (user)
|
function string.ends (String, End)
|
||||||
|
return End=='' or string.sub(String, -string.len(End)) == End
|
||||||
|
end
|
||||||
|
|
||||||
|
function set_auth_cookie (user)
|
||||||
local maxAge = 60 * 60 * 24 * 7 -- 1 week
|
local maxAge = 60 * 60 * 24 * 7 -- 1 week
|
||||||
local expire = ngx.req.start_time() + maxAge
|
local expire = ngx.req.start_time() + maxAge
|
||||||
local hash = ngx.md5(auth_key..
|
local hash = ngx.md5(auth_key..
|
||||||
"|" ..ngx.var.remote_addr..
|
"|" ..ngx.var.remote_addr..
|
||||||
"|"..user..
|
"|"..user..
|
||||||
"|"..expire)
|
"|"..expire)
|
||||||
local cookie_str = "; Domain=."..conf["main_domain"]..
|
local cookie_str = "; Domain=."..ngx.var.host..
|
||||||
"; Path="..conf["portal_path"]..
|
"; Path=/"..
|
||||||
"; Max-Age="..maxAge
|
"; Max-Age="..maxAge
|
||||||
ngx.header["Set-Cookie"] = {
|
ngx.header["Set-Cookie"] = {
|
||||||
"YnhAuthUser="..user..cookie_str,
|
"YnhAuthUser="..user..cookie_str,
|
||||||
|
@ -32,20 +40,47 @@ function set_cookie (user)
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
function delete_cookie ()
|
function set_token_cookie ()
|
||||||
expired_time = gx.req.start_time() - 3600 -- expired yesterday
|
local token = tostring(math.random(111111, 999999))
|
||||||
|
tokens[token] = token
|
||||||
ngx.header["Set-Cookie"] = {
|
ngx.header["Set-Cookie"] = {
|
||||||
"YnhAuthUser=;"..expired_time,
|
"YnhAuthToken="..token..
|
||||||
"YnhAuthHash=;"..expired_time,
|
"; Path="..conf["portal_path"]..
|
||||||
"YnhAuthExpire=;"..expired_time
|
"; Max-Age=3600"
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function set_redirect_cookie (redirect_url)
|
||||||
|
ngx.header["Set-Cookie"] = {
|
||||||
|
"YnhAuthRedirect="..redirect_url..
|
||||||
|
"; Path="..conf["portal_path"]..
|
||||||
|
"; Max-Age=3600"
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
function delete_cookie ()
|
||||||
|
expired_time = ngx.req.start_time() - 3600 -- expired yesterday
|
||||||
|
ngx.header["Set-Cookie"] = {
|
||||||
|
"YnhAuthUser=;" ..expired_time,
|
||||||
|
"YnhAuthHash=;" ..expired_time,
|
||||||
|
"YnhAuthExpire=;" ..expired_time
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
function delete_onetime_cookie ()
|
||||||
|
expired_time = ngx.req.start_time() - 3600 -- expired yesterday
|
||||||
|
ngx.header["Set-Cookie"] = {
|
||||||
|
"YnhAuthToken=;" ..expired_time,
|
||||||
|
"YnhAuthRedirect=;"..expired_time
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
function check_cookie ()
|
function check_cookie ()
|
||||||
-- Check if cookie is set
|
-- Check if cookie is set
|
||||||
if not ( ngx.var.cookie_YnhAuthExpire and
|
if not ngx.var.cookie_YnhAuthExpire
|
||||||
ngx.var.cookie_YnhAuthUser and
|
or not ngx.var.cookie_YnhAuthUser
|
||||||
ngx.var.cookie_YnhAuthHash)
|
or not ngx.var.cookie_YnhAuthHash
|
||||||
then
|
then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
@ -59,8 +94,8 @@ function check_cookie ()
|
||||||
local hash = ngx.md5(auth_key..
|
local hash = ngx.md5(auth_key..
|
||||||
"|"..ngx.var.remote_addr..
|
"|"..ngx.var.remote_addr..
|
||||||
"|"..ngx.var.cookie_YnhAuthUser..
|
"|"..ngx.var.cookie_YnhAuthUser..
|
||||||
"|"..YnhAuthExpire)
|
"|"..ngx.var.cookie_YnhAuthExpire)
|
||||||
if (hash ~= ngx.var.cookie_YnhAuthHash) then
|
if hash ~= ngx.var.cookie_YnhAuthHash then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -70,8 +105,8 @@ end
|
||||||
function authenticate (user, password)
|
function authenticate (user, password)
|
||||||
return lualdap.open_simple (
|
return lualdap.open_simple (
|
||||||
"localhost",
|
"localhost",
|
||||||
"uid=".. args.user ..",ou=users,dc=yunohost,dc=org",
|
"uid=".. user ..",ou=users,dc=yunohost,dc=org",
|
||||||
args.password
|
password
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -91,13 +126,6 @@ end
|
||||||
|
|
||||||
function display_login_form ()
|
function display_login_form ()
|
||||||
local args = ngx.req.get_uri_args()
|
local args = ngx.req.get_uri_args()
|
||||||
token = tostring(math.random(111111, 999999))
|
|
||||||
tokens[token] = token
|
|
||||||
|
|
||||||
-- Store the redirect URL
|
|
||||||
if args.r then
|
|
||||||
redirects[token] = ngx.unescape_uri(ngx.decode_base64(args.r))
|
|
||||||
end
|
|
||||||
|
|
||||||
if args.action and args.action == 'logout' then
|
if args.action and args.action == 'logout' then
|
||||||
-- Logout
|
-- Logout
|
||||||
|
@ -105,7 +133,7 @@ function display_login_form ()
|
||||||
return ngx.redirect(portal_url)
|
return ngx.redirect(portal_url)
|
||||||
else
|
else
|
||||||
-- Display normal form
|
-- Display normal form
|
||||||
ngx.req.set_uri_args(token)
|
set_token_cookie()
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -115,56 +143,70 @@ function do_login ()
|
||||||
local args = ngx.req.get_post_args()
|
local args = ngx.req.get_post_args()
|
||||||
|
|
||||||
-- CSRF check
|
-- CSRF check
|
||||||
if args.token and tokens[args.token] then
|
local token = ngx.var.cookie_YnhAuthToken
|
||||||
local token = tokens[args.token]
|
|
||||||
tokens[args.token] = nil
|
if token and tokens[token] then
|
||||||
|
tokens[token] = nil
|
||||||
|
|
||||||
if authenticate(args.user, args.password) then
|
if authenticate(args.user, args.password) then
|
||||||
set_cookie(args.user)
|
set_auth_cookie(args.user)
|
||||||
|
--ngx.status = ngx.HTTP_CREATED
|
||||||
|
--ngx.exit(ngx.HTTP_OK)
|
||||||
|
|
||||||
-- Redirect to precedent page
|
-- Redirect to precedent page
|
||||||
if redirects[token] then
|
local redirect_url = ngx.var.cookie_YnhAuthRedirect
|
||||||
local redirect_url = redirects[token]
|
if redirect_url then
|
||||||
redirects[token] = nil
|
return ngx.redirect(ngx.unescape_uri(redirect_url))
|
||||||
return ngx.redirect(redirect_url)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return ngx.redirect(portal_url)
|
return ngx.redirect(portal_url)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Portal route
|
function pass ()
|
||||||
|
if not ngx.header["Content-Type"] then
|
||||||
|
ngx.header["Content-Type"] = "text/html"
|
||||||
|
end
|
||||||
|
delete_onetime_cookie()
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Routing
|
||||||
|
--
|
||||||
|
|
||||||
|
-- Portal
|
||||||
if ngx.var.host == conf["main_domain"]
|
if ngx.var.host == conf["main_domain"]
|
||||||
and string.starts(ngx.var.uri, conf["portal_path"])
|
and string.starts(ngx.var.uri, conf["portal_path"])
|
||||||
then
|
then
|
||||||
if ngx.req.get_method() == "GET" then
|
if ngx.var.request_method == "GET" then
|
||||||
return display_login_form()
|
return display_login_form()
|
||||||
elseif ngx.req.get_method() == "POST" then
|
elseif ngx.var.request_method == "POST" then
|
||||||
return do_login()
|
return do_login()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Skipped urls
|
-- Skipped urls
|
||||||
for _, url in ipairs(conf["skipped_urls"]) do
|
for _, url in ipairs(conf["skipped_urls"]) do
|
||||||
if ngx.var.host..ngx.var.uri == url then
|
if string.starts(ngx.var.host..ngx.var.uri, url) then
|
||||||
return
|
return pass
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Unprotected urls
|
-- Unprotected urls
|
||||||
for _, url in ipairs(conf["unprotected_urls"]) do
|
for _, url in ipairs(conf["unprotected_urls"]) do
|
||||||
if ngx.var.host..ngx.var.uri == url then
|
if string.starts(ngx.var.host..ngx.var.uri, url) then
|
||||||
if check_cookie() then
|
if check_cookie() then
|
||||||
set_headers(ngx.var.cookie_YnhAuthUser)
|
set_headers(ngx.var.cookie_YnhAuthUser)
|
||||||
end
|
end
|
||||||
return
|
return pass
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Cookie validation
|
-- Cookie validation
|
||||||
if check_cookie() then
|
if check_cookie() then
|
||||||
set_headers(ngx.var.cookie_YnhAuthUser)
|
set_headers(ngx.var.cookie_YnhAuthUser)
|
||||||
return
|
return pass
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Connect with HTTP Auth if credentials are brought
|
-- Connect with HTTP Auth if credentials are brought
|
||||||
|
@ -174,10 +216,16 @@ if auth_header then
|
||||||
_, _, user, password = string.find(ngx.decode_base64(b64_cred), "^(.+):(.+)$")
|
_, _, user, password = string.find(ngx.decode_base64(b64_cred), "^(.+):(.+)$")
|
||||||
if authenticate(user, password) then
|
if authenticate(user, password) then
|
||||||
set_headers(user)
|
set_headers(user)
|
||||||
return
|
return pass
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Else redirect to portal
|
if not ngx.var.cookie_YnhAuthRedirect and not string.ends(ngx.var.uri, "favicon.ico") then
|
||||||
local back_url = ngx.encode_base64(ngx.escape_uri(ngx.var.scheme .. "://" .. ngx.var.http_host .. ngx.var.uri))
|
-- Else redirect to portal
|
||||||
return ngx.redirect(portal_url.."?r="..back_url)
|
local back_url = ngx.escape_uri(ngx.var.scheme .. "://" .. ngx.var.http_host .. ngx.var.uri)
|
||||||
|
set_redirect_cookie(back_url)
|
||||||
|
return ngx.redirect(portal_url)
|
||||||
|
else
|
||||||
|
ngx.status = ngx.HTTP_UNAUTHORIZED
|
||||||
|
return ngx.exit(ngx.HTTP_OK)
|
||||||
|
end
|
||||||
|
|
6
init.lua
6
init.lua
|
@ -1,5 +1,5 @@
|
||||||
-- Load libraries
|
-- Load libraries
|
||||||
cjson = require "cjson"
|
json = require "json"
|
||||||
lualdap = require "lualdap"
|
lualdap = require "lualdap"
|
||||||
math = require "math"
|
math = require "math"
|
||||||
|
|
||||||
|
@ -7,7 +7,5 @@ math = require "math"
|
||||||
math.randomseed(os.time())
|
math.randomseed(os.time())
|
||||||
auth_key = math.random(1111111, 9999999)
|
auth_key = math.random(1111111, 9999999)
|
||||||
|
|
||||||
-- Shared tables
|
-- Shared table
|
||||||
tokens = {}
|
tokens = {}
|
||||||
redirects = {}
|
|
||||||
flashs = {}
|
|
||||||
|
|
Loading…
Reference in a new issue