Quite often you may want to publish your Jabber status to your blog or website. mod_webpresence allows you to do exactly this.
This module uses Prosody’s built-in HTTP server (it does not depend on mod_httpserver). It supplies a status icon representative of a user’s online state.
Simply copy mod_webpresence.lua to your modules directory, the image files are embedded within it. Then add “webpresence” to your modules_enabled list.
Once loaded you can embed the icon into a page using a simple
<img>
tag, as follows:
<img src="http://prosody.example.com:5280/status/john.smith" />
Alternatively, it can be used to get status name as plaint text, status message as plain text or html-code for embedding on web-pages.
To get status name in plain text you can use something like that
link:
http://prosody.example.com:5280/status/john.smith/text
To get status message as plain text you can use something like
following link:
http://prosody.example.com:5280/status/john.smith/message
To get html code, containig status name, status image and status
message (if set):
http://prosody.example.com:5280/status/john.smith/html
All other
trunk | Works |
0.10 | Works |
0.9 | Works |
0.8 | Works |
0.7 | Works |
0.6 | Works |
With the plugin installer in Prosody 0.12 you can use:
sudo prosodyctl install --server=https://modules.prosody.im/rocks/ mod_webpresence
For earlier versions see the documentation for installing 3rd party modules