mod_tokenauth: Allow attaching an arbitrary data table to a token

This commit is contained in:
Matthew Wild 2022-10-13 22:46:19 +01:00
parent f081c1a756
commit 32c38bc249

View file

@ -13,7 +13,7 @@ local function select_role(username, host, role)
return usermanager.get_user_role(username, host);
end
function create_jid_token(actor_jid, token_jid, token_role, token_ttl)
function create_jid_token(actor_jid, token_jid, token_role, token_ttl, token_data)
token_jid = jid.prep(token_jid);
if not actor_jid or token_jid ~= actor_jid and not jid.compare(token_jid, actor_jid) then
return nil, "not-authorized";
@ -33,6 +33,7 @@ function create_jid_token(actor_jid, token_jid, token_role, token_ttl)
resource = token_resource;
role = token_role;
data = token_data;
};
local token_id = id.long();