mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tokenauth: Add some sanity checking of the new optional parameters
This commit is contained in:
parent
a58a6d2317
commit
f3d152eb1b
1 changed files with 4 additions and 0 deletions
|
@ -25,6 +25,10 @@ function create_jid_token(actor_jid, token_jid, token_role, token_ttl, token_dat
|
|||
return nil, "invalid-host";
|
||||
end
|
||||
|
||||
if (token_data and type(token_data) ~= "table") or (token_purpose and type(token_purpose ~= "string")) then
|
||||
return nil, "bad-request";
|
||||
end
|
||||
|
||||
local token_info = {
|
||||
owner = actor_jid;
|
||||
created = os.time();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue