Mercurial > prosody-modules
view mod_audit_register/mod_audit_register.lua @ 5636:b3484a112300
mod_rest/rest.sh: Update to use httpie-oauth2 plugin
This bash implementation of OAuth2/OIDC was growing to the point where
it needed a massive refactor, which made me look into alternatives where
I finally settled on implementing oauth2 in a plugin for HTTPie.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 26 Aug 2023 14:37:04 +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);