mirror of
https://github.com/YunoHost/SSOwat.git
synced 2024-09-03 20:06:27 +02:00
do not reauth if we are already logged in
This commit is contained in:
parent
24b3f7dc3a
commit
720e35df4e
1 changed files with 18 additions and 16 deletions
|
@ -249,9 +249,10 @@ end
|
||||||
-- via cURL for example.
|
-- via cURL for example.
|
||||||
--
|
--
|
||||||
|
|
||||||
local auth_header = ngx.req.get_headers()["Authorization"]
|
if not is_logged_in then
|
||||||
|
local auth_header = ngx.req.get_headers()["Authorization"]
|
||||||
|
|
||||||
if auth_header then
|
if auth_header then
|
||||||
_, _, b64_cred = string.find(auth_header, "^Basic%s+(.+)$")
|
_, _, b64_cred = string.find(auth_header, "^Basic%s+(.+)$")
|
||||||
_, _, user, password = string.find(ngx.decode_base64(b64_cred), "^(.+):(.+)$")
|
_, _, user, password = string.find(ngx.decode_base64(b64_cred), "^(.+):(.+)$")
|
||||||
user = hlp.authenticate(user, password)
|
user = hlp.authenticate(user, password)
|
||||||
|
@ -269,6 +270,7 @@ if auth_header then
|
||||||
end
|
end
|
||||||
return hlp.pass()
|
return hlp.pass()
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
--
|
--
|
||||||
|
|
Loading…
Add table
Reference in a new issue