mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +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;
|
||||
repeat
|
||||
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"
|
||||
end
|
||||
|
||||
|
|
|
@ -11,10 +11,11 @@ local function oauthbearer(self, message)
|
|||
return "failure", "not-authorized";
|
||||
end
|
||||
|
||||
local gs2_authzid, kvpairs = message:match("n,a=([^,]+),(.+)$");
|
||||
if not gs2_authzid then
|
||||
local gs2_header, kvpairs = message:match("^(n,[^,]*,),(.+)$");
|
||||
if not gs2_header then
|
||||
return "failure", "malformed-request";
|
||||
end
|
||||
local gs2_authzid = gs2_header:match("^[^,]*,a=([^,]*),$");
|
||||
|
||||
local auth_header;
|
||||
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