mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_pubsub: Allow configuring summary templates
Enables generation of summaries for more than Atom without additional modules.
This commit is contained in:
parent
c8ea4743f2
commit
b0e565598a
1 changed files with 11 additions and 6 deletions
|
@ -135,12 +135,17 @@ function is_item_stanza(item)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Compose a textual representation of Atom payloads
|
-- Compose a textual representation of Atom payloads
|
||||||
module:hook("pubsub-summary/http://www.w3.org/2005/Atom", function (event)
|
local summary_templates = module:get_option("pubsub_summary_templates", {
|
||||||
local payload = event.payload;
|
["http://www.w3.org/2005/Atom"] = "{summary|or{{author/name|and{{author/name} posted }}{title}}}";
|
||||||
local template = "{summary|or{{author/name|and{{author/name} posted }}{title}}}";
|
})
|
||||||
local summary = xtemplate.render(template, payload, tostring);
|
|
||||||
return summary;
|
for pubsub_type, template in pairs(summary_templates) do
|
||||||
end, -1);
|
module:hook("pubsub-summary/"..pubsub_type, function (event)
|
||||||
|
local payload = event.payload;
|
||||||
|
return xtemplate.render(template, payload, tostring);
|
||||||
|
end, -1);
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
module:hook("iq/host/"..xmlns_pubsub..":pubsub", handle_pubsub_iq);
|
module:hook("iq/host/"..xmlns_pubsub..":pubsub", handle_pubsub_iq);
|
||||||
module:hook("iq/host/"..xmlns_pubsub_owner..":pubsub", handle_pubsub_iq);
|
module:hook("iq/host/"..xmlns_pubsub_owner..":pubsub", handle_pubsub_iq);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue