mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.sasl.oauthbearer: Adjust parsing of GS2 to allow lack of authzid
Partly copied from util.sasl.scram and then reduced a bit.
This commit is contained in:
parent
8aecd19812
commit
2331fc8b65
2 changed files with 5 additions and 4 deletions
|
@ -33,8 +33,8 @@ local function anonymous(self, message) -- luacheck: ignore 212/message
|
||||||
local username;
|
local username;
|
||||||
repeat
|
repeat
|
||||||
username = generate_random_id():lower();
|
username = generate_random_id():lower();
|
||||||
until self.profile.anonymous(self, username, self.realm);
|
self.username = username;
|
||||||
self.username = username;
|
until self.profile.anonymous(self, username, self.realm, message);
|
||||||
return "success"
|
return "success"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -11,10 +11,11 @@ local function oauthbearer(self, message)
|
||||||
return "failure", "not-authorized";
|
return "failure", "not-authorized";
|
||||||
end
|
end
|
||||||
|
|
||||||
local gs2_authzid, kvpairs = message:match("n,a=([^,]+),(.+)$");
|
local gs2_header, kvpairs = message:match("^(n,[^,]*,),(.+)$");
|
||||||
if not gs2_authzid then
|
if not gs2_header then
|
||||||
return "failure", "malformed-request";
|
return "failure", "malformed-request";
|
||||||
end
|
end
|
||||||
|
local gs2_authzid = gs2_header:match("^[^,]*,a=([^,]*),$");
|
||||||
|
|
||||||
local auth_header;
|
local auth_header;
|
||||||
for k, v in kvpairs:gmatch("([a-zA-Z]+)=([\033-\126 \009\r\n]*)\001") do
|
for k, v in kvpairs:gmatch("([a-zA-Z]+)=([\033-\126 \009\r\n]*)\001") do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue