Mercurial > prosody-modules
view mod_audit_register/mod_audit_register.lua @ 5550:4fda06be6b08
mod_http_oauth2: Make note about handling repeated
RFC 6749 states
> If an authorization code is used more than once, the authorization
> server MUST deny the request and SHOULD revoke (when possible) all
> tokens previously issued based on that authorization code.
We should follow the SHOULD.
The MUST is already covered by removing the code state from the cache.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 16 Jun 2023 00:10:46 +0200 |
parents | 08dea42a302a |
children | dde83f6043e6 |
line wrap: on
line source
module:depends("audit"); -- luacheck: read globals module.audit local st = require "util.stanza"; module:hook("user-registered", function(event) local session = event.session; local custom = {}; local invite = event.validated_invite or (event.session and event.session.validated_invite); if invite then table.insert(custom, st.stanza( "invite-used", { xmlns = "xmpp:prosody.im/audit", token = invite.token, } )) end module:audit(event.username, "user-registered", { session = session, custom = custom, }); end);