# HG changeset patch # User Matthew Wild # Date 1665697579 -3600 # Node ID daa654dbd8deda68d850eee495dcb95651fe8fe3 # Parent e9fcc69ea508a70893f463c065ca902c36b8cda7 mod_tokenauth: Allow attaching an arbitrary data table to a token diff -r e9fcc69ea508 -r daa654dbd8de plugins/mod_tokenauth.lua --- a/plugins/mod_tokenauth.lua Thu Oct 13 09:55:36 2022 +0100 +++ b/plugins/mod_tokenauth.lua Thu Oct 13 22:46:19 2022 +0100 @@ -13,7 +13,7 @@ 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 @@ resource = token_resource; role = token_role; + data = token_data; }; local token_id = id.long();