Software / code / prosody-modules
File
mod_csi_compat/mod_csi_compat.lua @ 6291:7cf1fcac9b94
mod_http_oauth2: Reorder metadata by source
Following the order in which field are described in each specification.
Also fills in `nil` fields that are defined but not used in this module.
Tweaks some values to reflect current behavior.
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sat, 07 Jun 2025 22:02:18 +0200 |
| parent | 1865:db8b256f51ff |
line wrap: on
line source
local st = require "util.stanza"; module:depends("csi"); module:add_feature("google:queue"); module:hook("iq-set/self/google:queue:query", function(event) local origin, stanza = event.origin, event.stanza; (origin.log or module._log)("debug", "Google queue invoked (CSI compat mode)") local payload = stanza:get_child("query", "google:queue"); if payload:get_child("enable") then module:fire_event("csi-client-inactive", event); elseif payload:get_child("disable") then module:fire_event("csi-client-active", event); end -- <flush/> is implemented as a noop, any IQ stanza would flush the queue anyways. origin.send(st.reply(stanza)); return true; end, 10);