Software / code / prosody-modules
File
mod_audit_auth/mod_audit_auth.lua @ 5344:0a6d2b79a8bf
mod_auth_oauth_external: Authenticate against an OAuth 2 provider
But suddenly unsure whether this constitutes an OAuth "client" or
something else? Resource server maybe?
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Thu, 16 Mar 2023 12:45:22 +0100 |
| parent | 4933:08dea42a302a |
| child | 5735:b357ff3d0c8a |
line wrap: on
line source
module:depends("audit"); -- luacheck: read globals module.audit module:hook("authentication-failure", function(event) local session = event.session; module:audit(session.sasl_handler.username, "authentication-failure", { session = session, }); end) module:hook("authentication-success", function(event) local session = event.session; module:audit(session.sasl_handler.username, "authentication-success", { session = session, }); end)