Software /
code /
prosody-modules
Diff
mod_muc_badge/README.md @ 6211:750d64c47ec6 draft
Merge
author | Trần H. Trung <xmpp:trần.h.trung@trung.fun> |
---|---|
date | Tue, 18 Mar 2025 00:31:36 +0700 |
parent | 6003:fe081789f7b5 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_muc_badge/README.md Tue Mar 18 00:31:36 2025 +0700 @@ -0,0 +1,40 @@ +--- +depends: +- 'mod\_http' +- 'mod\_muc' +provides: +- http +title: 'mod\_muc\_badge' +--- + +# Introduction + +This module generates a badge for MUC rooms at a HTTP URL like +`https://conference.example.com:5281/muc_badge/room@conference.example.org` +containing the number of occupants. + +Inspiration +: <https://opkode.com/blog/xmpp-chat-badge/> + +# Configuration + + Option Type Default + ------------------ -------- -------------------------- + `badge_count` string `"%d online"` + `badge_template` string A SVG image (see source) + +The template must be valid XML. If it contains `{label}` then this is +replaced by `badge_label`, similarly, `{count}` is substituted by +`badge_count` with `%d` changed to the number of occupants. + +Details of the HTTP URL is determined by [standard Prosody HTTP server +configuration][doc:http]. + +# Example + +```lua +Component "conference.example.com" "muc" +modules_enabled = { + "muc_badge" +} +```