aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/pixart/messenger/services/XmppConnectionService.java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fix duplicate accounts in EnterJidDialogChristian Schneppe2019-11-151-1/+1
|
* rework no write access hint in moderated public mucsChristian Schneppe2019-11-151-0/+4
|
* rework message deletionChristian Schneppe2019-11-041-2/+2
|
* optionally search local muc rooms instead of jabber.networkChristian Schneppe2019-11-031-6/+7
|
* attempt to fix some rare crashesChristian Schneppe2019-10-261-2/+6
|
* don’t mark pgp encrypted files received from dino as deletedChristian Schneppe2019-10-261-0/+7
|
* fix some issuesChristian Schneppe2019-10-261-0/+6
|
* properly guard bookmarks2 deletionChristian Schneppe2019-10-261-1/+1
|
* set autojoin=true after following inviteChristian Schneppe2019-10-261-117/+127
|
* update ui after bookmark changeChristian Schneppe2019-10-261-0/+10
|
* bookmarks2. introduce #compat namespaceChristian Schneppe2019-10-261-2/+2
|
* leave/join on bookmark modifactionsChristian Schneppe2019-10-261-19/+33
|
* Bookmarks2: support retractionChristian Schneppe2019-10-261-8/+8
|
* support for delete bookmarks2Christian Schneppe2019-10-261-7/+27
|
* WIP Bookmarks 2 supportChristian Schneppe2019-10-261-60/+76
|
* Use a more meaningful name for old statusChristian Schneppe2019-10-021-3/+3
|
* account deletion: only attempt to delete omemo id when connectedChristian Schneppe2019-09-291-6/+9
|
* delete omemo keys when deleting accountChristian Schneppe2019-09-291-1/+2
|
* improved logging for messages waiting for joinChristian Schneppe2019-09-201-8/+23
|
* migrate to AndroidXChristian Schneppe2019-09-201-4/+4
|
* fixed direct invites after adhocChristian Schneppe2019-09-191-3/+4
|
* fixed some minor NPEChristian Schneppe2019-09-191-1/+6
|
* clear notifications when deleting accountChristian Schneppe2019-09-191-1/+2
|
* keep track of previously edited idsChristian Schneppe2019-09-131-2/+6
|
* add 1080p as video resolution and set default to 720pChristian Schneppe2019-09-091-4/+8
|
* improve webpreviews during offline timesChristian Schneppe2019-09-071-0/+1
|
* send multiple downloads and uploads into queueChristian Schneppe2019-09-071-0/+2
|
* fix some crashesChristian Schneppe2019-09-031-33/+41
|
* include pgp sig and status in presence to non anon mucChristian Schneppe2019-08-311-14/+2
|
* do not put default nick into bookmark if none has been set beforeChristian Schneppe2019-08-311-5/+12
|
* make config flag for leave before joinChristian Schneppe2019-08-311-2/+4
|
* make short vibrate in open chat configurable and respect phone silent modeChristian Schneppe2019-08-311-3/+6
|
* handle blocking and unblocking of full jidsChristian Schneppe2019-07-171-9/+7
|
* disable muc push on archive instead of leaveChristian Schneppe2019-07-031-4/+4
| | | | leave can be triggered in conference details and doesn’t mean we don’t want pushes
* correct webpreview cache pathsChristian Schneppe2019-07-031-4/+3
|
* migrate copy ond write list to synchronized hashset for pending mucsChristian Schneppe2019-07-011-13/+38
|
* rate limit muc pings / joins. never run two pings at same timeChristian Schneppe2019-07-011-4/+26
|
* attempt to unregister when receiving push for channel no longer joinedChristian Schneppe2019-07-011-3/+24
| | | | when receiving a FCM push message for a channel the user is no longer in (this can happen when the disable command failed) an attempt will be made to explicitly unregister from the app server (which in turn will then send item-not-found on next push)
* implement FCM push for group chatsChristian Schneppe2019-07-011-7/+13
|
* code cleanup & small fixesChristian Schneppe2019-07-011-11/+10
|
* catch NPEChristian Schneppe2019-06-271-15/+22
|
* implement client support for muc pushChristian Schneppe2019-06-251-0/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Staying connected to a MUC room hosted on a remote server can be challenging. If a server reboots it will usually send a shut down notification to all participants. However even if a client knows that a server was shut down it doesn’t know when it comes up again. In some corner cases that shut down notification might not even be delivered successfully leaving the client in a state where it thinks it is connected but it really isn’t. The possible work around implemented in this commit is to register the clients full JID (user@domain.tld/Conversations.r4nd) as an App Server according to XEP-0357 with the room. (Conversations checks for the push:0 namespace on the room.) After cycling through a reboot the first message send to a room will trigger pubsub notifications to each registered full JID. This event will be used to trigger a XEP-0410 ping and if necessary a subsequent rejoin of the MUC. If the resource has become unavailable during down time of the MUC server the user’s server will respond with an IQ error which in turn leads to the MUC server disabling that push target. Leaving a MUC will send a `disable` command. If sending that disable command failed for some reason (network outage) and the client receives a pubsub notification for a room it is no longer joined in it will respond with an item-not-found IQ error which also disables subsequent pushes from the server. Note: We 0410-ping before a join to avoid unnecessary full joins which can be quite costly. Further client side optimizations will also suppress pings when a ping is already in flight to further save traffic.
* show taken time for deleted webpreview cacheChristian Schneppe2019-06-251-1/+2
|
* catch NPEChristian Schneppe2019-06-231-0/+3
|
* change behavior of unencrypted chats warningChristian Schneppe2019-06-221-2/+1
|
* performance improvement of message expiryChristian Schneppe2019-06-221-3/+9
|
* shedule webpreview cache deletionChristian Schneppe2019-06-211-0/+20
|
* show own account in chatlist/contacts/conferences if you are in multi ↵Christian Schneppe2019-06-201-0/+5
| | | | account mode
* attempt to keep messages waiting until muc is connectedChristian Schneppe2019-06-201-3/+22
|
* self ping (xep-0410) after receiving invite to mucChristian Schneppe2019-06-181-2/+22
|