Commit graph

124 commits

Author SHA1 Message Date
Kim Alvefur
4830568435 mod_mam,mod_muc_mam: Minimize differences (reorder, copy some comments)
Should have no functional difference, but makes it easier keeping
mod_mam and mod_muc_mam in sync.
2023-01-21 16:54:43 +01:00
Kim Alvefur
58b97fd7af mod_mam: Fix a comment
This is the noop that gets replaced later
2021-12-11 18:01:04 +01:00
Kim Alvefur
84ef8a73eb mod_mam: Allow plugging into archive decision
Similar procedure as mod_csi_simple
2021-12-10 22:37:32 +01:00
Kim Alvefur
168197a05f plugins: Update for namespace bump in XEP-0353 v0.4.0 2022-01-11 17:51:26 +01:00
Kim Alvefur
ab4991e829 mod_mam: Avoid storing bounces for messages from the bare account (thanks Ge0rG)
This should rule out error replies to PEP notifications, which come from
the account bare JID, and would be reflected back to it if they can't be
delivered for some reason, e.g. s2s problems.
2021-12-10 22:25:34 +01:00
Kim Alvefur
bba9ed5aff mod_mam: Switch to new cron API 2021-11-21 18:16:03 +01:00
Kim Alvefur
59258d47bd mod_mam,mod_muc_mam: Simplify deletion when multi-user-deletion is supported
More code, but less of it needs to run and no extra tracking is needed.
2021-11-30 01:22:14 +01:00
Kim Alvefur
6b5ab097ae mod_mam: Use util.dataforms timestamp validation 2021-10-26 13:31:40 +02:00
Kim Alvefur
86c40a3873 mod_mam: Merge main and RSM-specific log message here too 2021-09-23 17:55:49 +02:00
Kim Alvefur
738ff2a5f9 mod_mam: Reduce line count using new util.stanza attr method
Since this stanza-id was generated elsewhere in mod_mam, there should be
no need for normalization.
2021-09-12 20:17:26 +02:00
Kim Alvefur
9eb707763c mod_mam: Suppress offline message broadcast for MAM clients
MattJ on 09:34:24
> Zash: I think as a first step, offline messages should not be sent to
> clients that request MAM

https://chat.modernxmpp.org/log/modernxmpp/2021-08-31#2021-08-31-8518a542bd283686
2021-08-31 11:38:09 +02:00
Kim Alvefur
b430cda5c7 mod_mam: Only check for locally generated stanza-ids
Otherwise a message archived by a remote server would be incorrectly
silently discarded. This should be safe from spoofing thanks to
strip_stanza_id earlier in the event chain.
2021-08-31 11:26:42 +02:00
Kim Alvefur
2937b1672b mod_mam: Explain behavior with absent mod_offline in a comment 2021-08-31 11:25:23 +02:00
Kim Alvefur
20de5f297e mod_mam: "Handle" messages that have been archived in the absense of mod_offline 2020-06-25 18:01:38 +02:00
Kim Alvefur
c506269ff5 Fix various spelling errors (thanks codespell)
Also special thanks to timeless, for wordlessly reminding me to check
for typos.
2021-07-27 00:13:18 +02:00
Kim Alvefur
5761d5a680 mod_mam: Remove obsolete 'queryid' attribute from iq-result (thanks paul)
Mentioned in xmpp:xsf@muc.xmpp.org?join
2021-01-29 17:01:05 +01:00
Kim Alvefur
be492e057b mod_mam: Advertise extended MAM when archive storage is capable 2021-01-12 19:25:29 +01:00
Kim Alvefur
2d03793897 mod_mam: Allow querying by set of IDs 2021-01-12 19:00:44 +01:00
Kim Alvefur
c6bd5ac677 mod_mam: Add support for before-id and after-id fields 2021-01-09 21:31:45 +01:00
Kim Alvefur
9e5dbb4217 mod_mam: Implement extended MAM metadata query 2020-11-30 23:42:13 +01:00
Kim Alvefur
af189d8103 mod_mam: Add support for page flipping
This was easy. Needs tests tho, 100% chance of the logic being
backwards.
2020-11-30 21:12:01 +01:00
Kim Alvefur
b96341a58f mod_mam: Advertise extended MAM 0.7.x behind a feature flag
In order to ease testing until the extended feautres are all
implemented.

Also TODOs for all the sub-features.
2020-11-30 21:00:45 +01:00
Kim Alvefur
cb1282bfd0 mod_csi_simple,mod_carbons,mod_mam: Update comment about XEP-0353
It went back to Deferred
2021-01-08 17:32:06 +01:00
Kim Alvefur
1f8daf736d mod_mam: Archive XEP-0353: Jingle Message Initiation 2020-05-09 00:57:42 +02:00
Kim Alvefur
d146cc6f58 MAM: Remove 1% of contents when reaching limits, fix #1545
With mod\_storage\_internal this counts out to 100 messages out of 10 000,
meaning should not hit the quota limit immediately until that many
messages have been added again.
2020-05-05 22:21:39 +02:00
Kim Alvefur
e5327bcc31 mod_mam: Store only incoming errors
Unclear if clients normally ever send error messages, but there may be
locally generated bounces sent on behalf of local sessions.
2020-04-26 14:28:00 +02:00
Kim Alvefur
80aaa484c3 mod_mam: Remove unused variables [luacheck]
Logic using full vs bare JID addressing may return in the future.
2020-04-23 01:05:34 +02:00
Kim Alvefur
ba452d6923 mod_mam: Don't store any groupchat messages
The intent was to not store MUC groupchat messages, which are sent from
the MUC to local full JIDs, while allowing for potential future
account based group chat. However, since this function handles messages
in both directions and outgoing MUC messages are sent to the bare room
JID, those were stored.
2020-04-23 00:55:34 +02:00
Kim Alvefur
966c3c5604 mod_mam: Make note of Experimental (or Deferred) XEPs
Since these XEPs are subject to change we may need come back and double
check these in the future.
2020-04-22 18:53:50 +02:00
Kim Alvefur
92150bd359 mod_mam: Save delivery failures (thanks Ge0rG)
Makes it possible to learn of delivery failure even if it came bouncing
back while you were offline.
2020-04-22 18:50:30 +02:00
Kim Alvefur
9bb75c85c4 mod_mam: Keep chat markers (thanks Ge0rG) 2020-04-22 18:48:27 +02:00
Kim Alvefur
8c1161cf77 mod_mam: Respect no-store hint (thanks Ge0rG)
no-store is used in an example in XEP-0313, so obviously this is the
preferred hint
2020-04-22 18:47:06 +02:00
Kim Alvefur
b0dbacb69c mod_mam: Fix typo in comment
If it is with a body then it execution does not get this far
2020-04-21 23:06:55 +02:00
Kim Alvefur
617ac06638 mod_mam: Prefer not archiving if no interesting payloads are found 2020-04-21 19:41:43 +02:00
Kim Alvefur
78668f1be3 mod_mam: Check sender of error instead of receiver
The intent is to capture errors to stanzas sent by the local user, so
that they can see why a message failed to be delivered even if the error
came after they went offline.
2020-04-21 01:29:58 +02:00
Kim Alvefur
c8db26be66 mod_mam: Store XEP-0184 receipts and requests
Happy now Ge0rG?
2020-04-21 01:18:54 +02:00
Kim Alvefur
e84179de98 mod_mam: Add more positive hints for storage
Mostly just lifted from mod_csi_simple
2020-04-21 01:17:55 +02:00
Kim Alvefur
0613c5b47f mod_mam: Rework hints handling
Improved readability and early returns definite yes/no answer.
2020-04-21 01:01:25 +02:00
Kim Alvefur
e5d6376c58 mod_mam: Invert check for type
This is based on code in mod_csi_simple and aiming towards being more
flexible and maintainable than a couple of tests for when not to store.
2020-04-21 00:56:56 +02:00
Kim Alvefur
962d36d401 mod_mam: Log 'why' a stanza is archived
Logging of 'why not' is already done. Why not both? Will make more sense
when the rules evolve a bit.
2020-04-21 00:53:23 +02:00
Kim Alvefur
5817e5f02d mod_mam: Factor out "should we store this" into a function
Meant to improve readability and ease further improvements to this
algorithm.
2020-04-21 00:53:21 +02:00
Kim Alvefur
d04da8fdd9 Merge 0.11->trunk 2020-03-11 22:44:41 +01:00
Kim Alvefur
e3911ce5da mod_mam,mod_muc_mam: Allow other work to be performed during archive cleanup (fixes #1504)
This lets Prosody handle socket related work between each step in the
cleanup in order to prevent the server from being completely blocked
during this.

An async storage backend would not need this but those are currently
rare.
2020-03-11 21:15:01 +01:00
Kim Alvefur
1eabf5bdb4 Merge 0.11->trunk 2019-12-24 00:39:45 +01:00
Kim Alvefur
c37b1cc072 mod_mam: Schedule cleanup again if unable to delete messages 2019-12-24 00:27:44 +01:00
Kim Alvefur
669ca29966 mod_mam: Log error when unable to delete old messages (fix #1479) [luacheck] 2019-12-24 00:27:41 +01:00
Kim Alvefur
1c3988b171 mod_mam: More careful validation of MAM query form
Adapted from mod_muc_mam
2019-12-23 23:30:45 +01:00
Kim Alvefur
a74a87fb30 mod_mam: Log error when unable to store stanza (fix #1478)
Unclear what else to do here.

Caught by luacheck
2019-12-23 23:18:39 +01:00
Matthew Wild
0007aa04f1 mod_mam: Add flag to session when it performs a MAM query 2019-10-03 16:38:15 +01:00
Kim Alvefur
f11e984c30 mod_mam: Cache last date that archive owner has messages to reduce writes (fixes #1368) 2019-05-27 19:00:32 +02:00