Commit graph

127 commits

Author SHA1 Message Date
Kim Alvefur
762e7dc70b util.pubsub: Return error code known by pubsub.lib if persistent creation fails 2018-07-01 04:44:24 +02:00
Kim Alvefur
c4fdeeed13 util.pubsub: Store subscription changes 2018-07-01 04:42:41 +02:00
Kim Alvefur
75560d4ebe util.pubsub: Persistence on affiliation change 2018-07-01 04:33:15 +02:00
Kim Alvefur
3d14011cf2 util.pubsub: Remove node from persistent storage on deletion 2018-07-01 04:46:37 +02:00
Kim Alvefur
dcd5ebba7d util.pubsub: Persist nodes on configuration change 2018-07-01 04:27:09 +02:00
Kim Alvefur
6d3f13818b util.pubsub: Fix applying per service node defaults when loading from nodestore 2018-07-01 04:17:36 +02:00
Kim Alvefur
2629409a3b util.pubsub: Fix typo 2018-06-26 20:33:10 +02:00
Kim Alvefur
3b0aeea254 util.pubsub: Normalize JID used as affiliation
XEP-0060 4.1 Affiliations
> All affiliations MUST be based on a bare JID
2018-06-26 19:49:29 +02:00
Kim Alvefur
ee883aff47 util.pubsub: Also check for affiliation set on bare JID
This fixes eg publishing from a full JID when the affiliation has been
set on the bare JID, as would be common in XMPP.
2018-05-22 01:32:44 +02:00
Kim Alvefur
308036df99 util.pubsub: Pass node and service objects to broadcaster to allow eg config access 2018-05-21 00:35:00 +02:00
Kim Alvefur
972335a4b2 util.pubsub: Add a default/fallback JID normalization function 2018-05-20 15:21:57 +02:00
Kim Alvefur
9ba89e20b4 util.pubsub: Don't record the superuser as owner on creation
No need to be set as owner, it has all privileges anyways. Since it’s a
boolean instead of a string, its presence may cause weirdness in other
code expecting all affiliations to be string JIDs.
2018-05-20 03:27:02 +02:00
Kim Alvefur
45d221ffec util.pubsub: Allow setting a callback for validating items to be published 2018-03-21 23:40:45 +01:00
Matthew Wild
af3d8999f0 util.pubsub: Support a 'nodestore' for persisting nodes (same API as kv stores) 2018-02-02 19:31:03 +00:00
Matthew Wild
e98d142830 util.pubsub: Move service methods object creation (just code reorganisation) 2018-02-02 19:29:17 +00:00
Matthew Wild
1f51b7920e util.pubsub: For clarity, split config tables from their metatables 2018-02-01 15:09:04 +00:00
Kim Alvefur
f7d98fa513 util.pubsub: Recreate itemstore if persist_items changes or resize it if max_items changes 2017-11-09 17:19:11 +01:00
Kim Alvefur
1438a38845 util: Various minor changes to please [luacheck] 2017-11-10 05:42:32 +01:00
Kim Alvefur
fb51acd842 util.pubsub: Add method for retreiving the last item (useful for sending on subscribe) 2017-11-07 00:40:52 +01:00
Kim Alvefur
ec998641fd util.pubsub: Return an empty list if specific item asked for does not exist (thanks jonasw) 2017-10-18 21:21:43 +02:00
Kim Alvefur
54944ff807 pubsub: Distinguish internal representation of node config from XEP-0060 form (util.pubsub should be protocol-agnostic) 2017-10-17 05:47:06 +02:00
Kim Alvefur
f2bdafd709 util.pubsub: Remove inclusion of publisher
util.pubsub should stay agnostic of what data types are published and
this depended on util.stanza
2017-10-16 22:12:14 +02:00
Kim Alvefur
14a3b7858b util.pubsub: Return item-not-found if a single item is requested, and not there 2017-10-10 01:41:47 +02:00
Kim Alvefur
d960ca7d6b util.pubsub: Clear data on node deletion 2017-10-09 01:57:55 +02:00
Kim Alvefur
2d6ea5d99d util.pubsub: Clear data store if it supports being cleared, otherwise fall back to creating a new one 2017-10-08 01:27:04 +02:00
Kim Alvefur
280a866186 util.pubsub: Don't record publisher when superuser privileges are used (eg by modules) 2017-07-29 13:09:57 +02:00
Kim Alvefur
3512924a62 util.pubsub: Catch overriden id from storage 2017-04-26 12:06:41 +02:00
Emmanuel Gil Peyrot
7245fe3db3 util.pubsub: Add the publisher as an attribute in the item element.
This makes the backend able to obtain the publisher without changing
the API.
2017-04-02 19:08:54 +01:00
Emmanuel Gil Peyrot
076c1356e8 util.pubsub: Add a node parameter to itemstore().
This allows the backend to know the node name, when it needs to
differentiate it at storage for example.
2017-04-02 19:08:54 +01:00
Kim Alvefur
c3a4324ff1 util.pubsub: Fix item retrieval by including the item order as it was before using util.cache (thanks walduhu) 2016-11-19 17:34:54 +01:00
Kim Alvefur
5bbd2aa2ff util.pubsub: Rename loop variable to avoid name clash [luacheck] 2016-10-18 15:29:23 +02:00
Kim Alvefur
ffbc38cfa3 util.pubsub: Factor item storage cache into a per service configurable option 2016-10-16 00:36:05 +02:00
Kim Alvefur
8ebfeb497e util.pubsub: Switch to use util.cache for item data 2016-10-16 00:30:02 +02:00
Kim Alvefur
eaa823a597 util.*: Remove use of module() function, make all module functions local and return them in a table at the end 2015-02-21 10:36:37 +01:00
Philipp Hancke
958a4e177b mod_pubsub: Add support for including the publisher in item broadcasts 2014-11-20 09:01:45 +00:00
Kim Alvefur
1d050ce4e5 util.pubsub: Add support for limiting the number of item in a node (default to 20) 2014-09-28 01:50:00 +02:00
Kim Alvefur
4f74defed4 util.pubsub: Add support for node configuration 2014-09-28 01:45:59 +02:00
Kim Alvefur
2d58001a25 util.pubsub: One less table allocated per pubsub object created 2014-09-28 00:05:21 +02:00
Kim Alvefur
d76cfb4b2d util.pubsub: Use local 2014-09-27 19:57:33 +02:00
Kim Alvefur
c9a6cd1b33 util.pubsub: Separate data from node configuration 2013-12-30 23:49:23 +01:00
Kim Alvefur
dbe25f8d33 util.pubsub: Fire events on more actions 2013-12-26 18:14:34 +01:00
Florian Zeitz
1d833bb807 Remove all trailing whitespace 2013-08-09 17:48:21 +02:00
Florian Zeitz
16b4b0ea2a util.pubsub: Check whether node exists, when deleting 2013-06-12 16:53:51 +02:00
Kim Alvefur
4a8d033ca1 util.pubsub: Fix get_subscriptions to not pass a boolean as node name (thanks jonas) 2013-05-26 16:01:09 +02:00
Kim Alvefur
5cfdac70c6 mod_pubsub, util.pubsub: Add delete action 2013-01-31 18:41:01 +01:00
Waqas Hussain
f3f1a3c44e util.pubsub: Fix nil access error in get_subscriptions. 2013-01-26 03:54:18 +05:00
Florian Zeitz
4196cca0e0 mod_pubsub, util.pubsub: Don't send purge notifications in an <items/> element 2013-01-25 01:32:14 +01:00
Kim Alvefur
4070965899 mod_pubsub, util.pubsub: Implement the purge action 2013-01-24 00:58:03 +01:00
Matthew Wild
baa85ada77 util.pubsub: Add item-published event 2012-11-15 13:24:44 -05:00
Matthew Wild
355b05e341 util.pubsub: Remove access checking from remove_all_subscriptions (temporarily?) 2011-08-30 17:51:36 -04:00