XmppConnectionService.java

   1package eu.siacs.conversations.services;
   2
   3import static eu.siacs.conversations.utils.Compatibility.s;
   4import static eu.siacs.conversations.utils.Random.SECURE_RANDOM;
   5
   6import android.Manifest;
   7import android.annotation.SuppressLint;
   8import android.annotation.TargetApi;
   9import android.app.AlarmManager;
  10import android.app.KeyguardManager;
  11import android.app.Notification;
  12import android.app.NotificationManager;
  13import android.app.PendingIntent;
  14import android.app.Service;
  15import android.content.BroadcastReceiver;
  16import android.content.ComponentName;
  17import android.content.Context;
  18import android.content.Intent;
  19import android.content.IntentFilter;
  20import android.content.SharedPreferences;
  21import android.content.pm.PackageManager;
  22import android.database.ContentObserver;
  23import android.graphics.Bitmap;
  24import android.graphics.drawable.BitmapDrawable;
  25import android.graphics.drawable.Drawable;
  26import android.media.AudioManager;
  27import android.net.ConnectivityManager;
  28import android.net.Network;
  29import android.net.NetworkCapabilities;
  30import android.net.NetworkInfo;
  31import android.net.Uri;
  32import android.os.Binder;
  33import android.os.Build;
  34import android.os.Bundle;
  35import android.os.Environment;
  36import android.os.IBinder;
  37import android.os.PowerManager;
  38import android.os.PowerManager.WakeLock;
  39import android.os.SystemClock;
  40import android.preference.PreferenceManager;
  41import android.provider.ContactsContract;
  42import android.security.KeyChain;
  43import android.telephony.PhoneStateListener;
  44import android.telephony.TelephonyManager;
  45import android.text.TextUtils;
  46import android.util.DisplayMetrics;
  47import android.util.Log;
  48import android.util.LruCache;
  49import android.util.Pair;
  50
  51import androidx.annotation.BoolRes;
  52import androidx.annotation.IntegerRes;
  53import androidx.annotation.NonNull;
  54import androidx.core.app.RemoteInput;
  55import androidx.core.content.ContextCompat;
  56
  57import com.cheogram.android.WebxdcUpdate;
  58
  59import com.google.common.base.Objects;
  60import com.google.common.base.Optional;
  61import com.google.common.base.Strings;
  62
  63import org.conscrypt.Conscrypt;
  64import org.openintents.openpgp.IOpenPgpService2;
  65import org.openintents.openpgp.util.OpenPgpApi;
  66import org.openintents.openpgp.util.OpenPgpServiceConnection;
  67
  68import java.io.File;
  69import java.io.FileInputStream;
  70import java.io.IOException;
  71import java.security.Security;
  72import java.security.cert.CertificateException;
  73import java.security.cert.X509Certificate;
  74import java.text.ParseException;
  75import java.util.ArrayList;
  76import java.util.Arrays;
  77import java.util.Collection;
  78import java.util.Collections;
  79import java.util.HashSet;
  80import java.util.Hashtable;
  81import java.util.Iterator;
  82import java.util.List;
  83import java.util.ListIterator;
  84import java.util.Map;
  85import java.util.Set;
  86import java.util.WeakHashMap;
  87import java.util.concurrent.CopyOnWriteArrayList;
  88import java.util.concurrent.CountDownLatch;
  89import java.util.concurrent.Executor;
  90import java.util.concurrent.Executors;
  91import java.util.concurrent.atomic.AtomicBoolean;
  92import java.util.concurrent.atomic.AtomicLong;
  93import java.util.concurrent.atomic.AtomicReference;
  94
  95import io.ipfs.cid.Cid;
  96
  97import eu.siacs.conversations.Config;
  98import eu.siacs.conversations.R;
  99import eu.siacs.conversations.android.JabberIdContact;
 100import eu.siacs.conversations.crypto.OmemoSetting;
 101import eu.siacs.conversations.crypto.PgpDecryptionService;
 102import eu.siacs.conversations.crypto.PgpEngine;
 103import eu.siacs.conversations.crypto.axolotl.AxolotlService;
 104import eu.siacs.conversations.crypto.axolotl.FingerprintStatus;
 105import eu.siacs.conversations.crypto.axolotl.XmppAxolotlMessage;
 106import eu.siacs.conversations.entities.Account;
 107import eu.siacs.conversations.entities.Blockable;
 108import eu.siacs.conversations.entities.Bookmark;
 109import eu.siacs.conversations.entities.Contact;
 110import eu.siacs.conversations.entities.Conversation;
 111import eu.siacs.conversations.entities.Conversational;
 112import eu.siacs.conversations.entities.DownloadableFile;
 113import eu.siacs.conversations.entities.Message;
 114import eu.siacs.conversations.entities.MucOptions;
 115import eu.siacs.conversations.entities.MucOptions.OnRenameListener;
 116import eu.siacs.conversations.entities.Presence;
 117import eu.siacs.conversations.entities.PresenceTemplate;
 118import eu.siacs.conversations.entities.Roster;
 119import eu.siacs.conversations.entities.ServiceDiscoveryResult;
 120import eu.siacs.conversations.generator.AbstractGenerator;
 121import eu.siacs.conversations.generator.IqGenerator;
 122import eu.siacs.conversations.generator.MessageGenerator;
 123import eu.siacs.conversations.generator.PresenceGenerator;
 124import eu.siacs.conversations.http.HttpConnectionManager;
 125import eu.siacs.conversations.parser.AbstractParser;
 126import eu.siacs.conversations.parser.IqParser;
 127import eu.siacs.conversations.parser.MessageParser;
 128import eu.siacs.conversations.parser.PresenceParser;
 129import eu.siacs.conversations.persistance.DatabaseBackend;
 130import eu.siacs.conversations.persistance.FileBackend;
 131import eu.siacs.conversations.persistance.UnifiedPushDatabase;
 132import eu.siacs.conversations.ui.ChooseAccountForProfilePictureActivity;
 133import eu.siacs.conversations.ui.RtpSessionActivity;
 134import eu.siacs.conversations.ui.SettingsActivity;
 135import eu.siacs.conversations.ui.UiCallback;
 136import eu.siacs.conversations.ui.interfaces.OnAvatarPublication;
 137import eu.siacs.conversations.ui.interfaces.OnMediaLoaded;
 138import eu.siacs.conversations.ui.interfaces.OnSearchResultsAvailable;
 139import eu.siacs.conversations.utils.AccountUtils;
 140import eu.siacs.conversations.utils.Compatibility;
 141import eu.siacs.conversations.utils.Consumer;
 142import eu.siacs.conversations.utils.ConversationsFileObserver;
 143import eu.siacs.conversations.utils.CryptoHelper;
 144import eu.siacs.conversations.utils.Emoticons;
 145import eu.siacs.conversations.utils.EasyOnboardingInvite;
 146import eu.siacs.conversations.utils.ExceptionHelper;
 147import eu.siacs.conversations.utils.MimeUtils;
 148import eu.siacs.conversations.utils.PhoneHelper;
 149import eu.siacs.conversations.utils.QuickLoader;
 150import eu.siacs.conversations.utils.ReplacingSerialSingleThreadExecutor;
 151import eu.siacs.conversations.utils.ReplacingTaskManager;
 152import eu.siacs.conversations.utils.Resolver;
 153import eu.siacs.conversations.utils.SerialSingleThreadExecutor;
 154import eu.siacs.conversations.utils.StringUtils;
 155import eu.siacs.conversations.utils.TorServiceUtils;
 156import eu.siacs.conversations.utils.ThemeHelper;
 157import eu.siacs.conversations.utils.WakeLockHelper;
 158import eu.siacs.conversations.utils.XmppUri;
 159import eu.siacs.conversations.xml.Element;
 160import eu.siacs.conversations.xml.LocalizedContent;
 161import eu.siacs.conversations.xml.Namespace;
 162import eu.siacs.conversations.xmpp.Jid;
 163import eu.siacs.conversations.xmpp.OnBindListener;
 164import eu.siacs.conversations.xmpp.OnContactStatusChanged;
 165import eu.siacs.conversations.xmpp.OnGatewayResult;
 166import eu.siacs.conversations.xmpp.OnIqPacketReceived;
 167import eu.siacs.conversations.xmpp.OnKeyStatusUpdated;
 168import eu.siacs.conversations.xmpp.OnMessageAcknowledged;
 169import eu.siacs.conversations.xmpp.OnMessagePacketReceived;
 170import eu.siacs.conversations.xmpp.OnPresencePacketReceived;
 171import eu.siacs.conversations.xmpp.OnStatusChanged;
 172import eu.siacs.conversations.xmpp.OnUpdateBlocklist;
 173import eu.siacs.conversations.xmpp.XmppConnection;
 174import eu.siacs.conversations.xmpp.chatstate.ChatState;
 175import eu.siacs.conversations.xmpp.forms.Data;
 176import eu.siacs.conversations.xmpp.jingle.AbstractJingleConnection;
 177import eu.siacs.conversations.xmpp.jingle.JingleConnectionManager;
 178import eu.siacs.conversations.xmpp.jingle.JingleRtpConnection;
 179import eu.siacs.conversations.xmpp.jingle.Media;
 180import eu.siacs.conversations.xmpp.jingle.RtpEndUserState;
 181import eu.siacs.conversations.xmpp.mam.MamReference;
 182import eu.siacs.conversations.xmpp.pep.Avatar;
 183import eu.siacs.conversations.xmpp.pep.PublishOptions;
 184import eu.siacs.conversations.xmpp.stanzas.IqPacket;
 185import eu.siacs.conversations.xmpp.stanzas.MessagePacket;
 186import eu.siacs.conversations.xmpp.stanzas.PresencePacket;
 187import me.leolin.shortcutbadger.ShortcutBadger;
 188
 189public class XmppConnectionService extends Service {
 190
 191    public static final String ACTION_REPLY_TO_CONVERSATION = "reply_to_conversations";
 192    public static final String ACTION_MARK_AS_READ = "mark_as_read";
 193    public static final String ACTION_SNOOZE = "snooze";
 194    public static final String ACTION_CLEAR_MESSAGE_NOTIFICATION = "clear_message_notification";
 195    public static final String ACTION_CLEAR_MISSED_CALL_NOTIFICATION = "clear_missed_call_notification";
 196    public static final String ACTION_DISMISS_ERROR_NOTIFICATIONS = "dismiss_error";
 197    public static final String ACTION_TRY_AGAIN = "try_again";
 198    public static final String ACTION_IDLE_PING = "idle_ping";
 199    public static final String ACTION_FCM_TOKEN_REFRESH = "fcm_token_refresh";
 200    public static final String ACTION_FCM_MESSAGE_RECEIVED = "fcm_message_received";
 201    public static final String ACTION_DISMISS_CALL = "dismiss_call";
 202    public static final String ACTION_END_CALL = "end_call";
 203    public static final String ACTION_PROVISION_ACCOUNT = "provision_account";
 204    private static final String ACTION_POST_CONNECTIVITY_CHANGE = "eu.siacs.conversations.POST_CONNECTIVITY_CHANGE";
 205    public static final String ACTION_RENEW_UNIFIED_PUSH_ENDPOINTS = "eu.siacs.conversations.UNIFIED_PUSH_RENEW";
 206
 207    private static final String SETTING_LAST_ACTIVITY_TS = "last_activity_timestamp";
 208
 209    public final CountDownLatch restoredFromDatabaseLatch = new CountDownLatch(1);
 210    private final static Executor FILE_OBSERVER_EXECUTOR = Executors.newSingleThreadExecutor();
 211    private final static Executor FILE_ATTACHMENT_EXECUTOR = Executors.newSingleThreadExecutor();
 212    private final static SerialSingleThreadExecutor VIDEO_COMPRESSION_EXECUTOR = new SerialSingleThreadExecutor("VideoCompression");
 213    private final SerialSingleThreadExecutor mDatabaseWriterExecutor = new SerialSingleThreadExecutor("DatabaseWriter");
 214    private final SerialSingleThreadExecutor mDatabaseReaderExecutor = new SerialSingleThreadExecutor("DatabaseReader");
 215    private final SerialSingleThreadExecutor mNotificationExecutor = new SerialSingleThreadExecutor("NotificationExecutor");
 216    private final ReplacingTaskManager mRosterSyncTaskManager = new ReplacingTaskManager();
 217    private final IBinder mBinder = new XmppConnectionBinder();
 218    private final List<Conversation> conversations = new CopyOnWriteArrayList<>();
 219    private final IqGenerator mIqGenerator = new IqGenerator(this);
 220    private final Set<String> mInProgressAvatarFetches = new HashSet<>();
 221    private final Set<String> mOmittedPepAvatarFetches = new HashSet<>();
 222    private final HashSet<Jid> mLowPingTimeoutMode = new HashSet<>();
 223    private final OnIqPacketReceived mDefaultIqHandler = (account, packet) -> {
 224        if (packet.getType() != IqPacket.TYPE.RESULT) {
 225            Element error = packet.findChild("error");
 226            String text = error != null ? error.findChildContent("text") : null;
 227            if (text != null) {
 228                Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": received iq error - " + text);
 229            }
 230        }
 231    };
 232    public DatabaseBackend databaseBackend;
 233    private final ReplacingSerialSingleThreadExecutor mContactMergerExecutor = new ReplacingSerialSingleThreadExecutor("ContactMerger");
 234    private long mLastActivity = 0;
 235    private long mLastMucPing = 0;
 236    private final FileBackend fileBackend = new FileBackend(this);
 237    private MemorizingTrustManager mMemorizingTrustManager;
 238    private final NotificationService mNotificationService = new NotificationService(this);
 239    private final UnifiedPushBroker unifiedPushBroker = new UnifiedPushBroker(this);
 240    private final ChannelDiscoveryService mChannelDiscoveryService = new ChannelDiscoveryService(this);
 241    private final ShortcutService mShortcutService = new ShortcutService(this);
 242    private final AtomicBoolean mInitialAddressbookSyncCompleted = new AtomicBoolean(false);
 243    private final AtomicBoolean mForceForegroundService = new AtomicBoolean(false);
 244    private final AtomicBoolean mForceDuringOnCreate = new AtomicBoolean(false);
 245    private final AtomicReference<OngoingCall> ongoingCall = new AtomicReference<>();
 246    private final OnMessagePacketReceived mMessageParser = new MessageParser(this);
 247    private final OnPresencePacketReceived mPresenceParser = new PresenceParser(this);
 248    private final IqParser mIqParser = new IqParser(this);
 249    private final MessageGenerator mMessageGenerator = new MessageGenerator(this);
 250    public OnContactStatusChanged onContactStatusChanged = (contact, online) -> {
 251        Conversation conversation = find(getConversations(), contact);
 252        if (conversation != null) {
 253            if (online) {
 254                if (contact.getPresences().size() == 1) {
 255                    sendUnsentMessages(conversation);
 256                }
 257            }
 258        }
 259    };
 260    private final PresenceGenerator mPresenceGenerator = new PresenceGenerator(this);
 261    private List<Account> accounts;
 262    private final JingleConnectionManager mJingleConnectionManager = new JingleConnectionManager(this);
 263    private final HttpConnectionManager mHttpConnectionManager = new HttpConnectionManager(this);
 264    private final AvatarService mAvatarService = new AvatarService(this);
 265    private final MessageArchiveService mMessageArchiveService = new MessageArchiveService(this);
 266    private final PushManagementService mPushManagementService = new PushManagementService(this);
 267    private final QuickConversationsService mQuickConversationsService = new QuickConversationsService(this);
 268    private final ConversationsFileObserver fileObserver = new ConversationsFileObserver(
 269            Environment.getExternalStorageDirectory().getAbsolutePath()
 270    ) {
 271        @Override
 272        public void onEvent(final int event, final File file) {
 273            markFileDeleted(file);
 274        }
 275    };
 276    private final OnMessageAcknowledged mOnMessageAcknowledgedListener = new OnMessageAcknowledged() {
 277
 278        @Override
 279        public boolean onMessageAcknowledged(final Account account, final Jid to, final String id) {
 280            if (id.startsWith(JingleRtpConnection.JINGLE_MESSAGE_PROPOSE_ID_PREFIX)) {
 281                final String sessionId = id.substring(JingleRtpConnection.JINGLE_MESSAGE_PROPOSE_ID_PREFIX.length());
 282                mJingleConnectionManager.updateProposedSessionDiscovered(
 283                        account,
 284                        to,
 285                        sessionId,
 286                        JingleConnectionManager.DeviceDiscoveryState.SEARCHING_ACKNOWLEDGED
 287                );
 288            }
 289
 290
 291            final Jid bare = to.asBareJid();
 292
 293            for (final Conversation conversation : getConversations()) {
 294                if (conversation.getAccount() == account && conversation.getJid().asBareJid().equals(bare)) {
 295                    final Message message = conversation.findUnsentMessageWithUuid(id);
 296                    if (message != null) {
 297                        message.setStatus(Message.STATUS_SEND);
 298                        message.setErrorMessage(null);
 299                        databaseBackend.updateMessage(message, false);
 300                        return true;
 301                    }
 302                }
 303            }
 304            return false;
 305        }
 306    };
 307    private final AtomicBoolean isPhoneInCall = new AtomicBoolean(false);
 308    private final AtomicBoolean diallerIntegrationActive = new AtomicBoolean(false);
 309    private final PhoneStateListener phoneStateListener = new PhoneStateListener() {
 310        @Override
 311        public void onCallStateChanged(final int state, final String phoneNumber) {
 312            if (diallerIntegrationActive.get()) return;
 313            isPhoneInCall.set(state != TelephonyManager.CALL_STATE_IDLE);
 314            if (state == TelephonyManager.CALL_STATE_OFFHOOK) {
 315                mJingleConnectionManager.notifyPhoneCallStarted();
 316            }
 317        }
 318    };
 319
 320    public void setDiallerIntegrationActive(boolean active) {
 321      diallerIntegrationActive.set(active);
 322    }
 323
 324    private boolean destroyed = false;
 325
 326    private int unreadCount = -1;
 327
 328    //Ui callback listeners
 329    private final Set<OnConversationUpdate> mOnConversationUpdates = Collections.newSetFromMap(new WeakHashMap<OnConversationUpdate, Boolean>());
 330    private final Set<OnShowErrorToast> mOnShowErrorToasts = Collections.newSetFromMap(new WeakHashMap<OnShowErrorToast, Boolean>());
 331    private final Set<OnAccountUpdate> mOnAccountUpdates = Collections.newSetFromMap(new WeakHashMap<OnAccountUpdate, Boolean>());
 332    private final Set<OnCaptchaRequested> mOnCaptchaRequested = Collections.newSetFromMap(new WeakHashMap<OnCaptchaRequested, Boolean>());
 333    private final Set<OnRosterUpdate> mOnRosterUpdates = Collections.newSetFromMap(new WeakHashMap<OnRosterUpdate, Boolean>());
 334    private final Set<OnUpdateBlocklist> mOnUpdateBlocklist = Collections.newSetFromMap(new WeakHashMap<OnUpdateBlocklist, Boolean>());
 335    private final Set<OnMucRosterUpdate> mOnMucRosterUpdate = Collections.newSetFromMap(new WeakHashMap<OnMucRosterUpdate, Boolean>());
 336    private final Set<OnKeyStatusUpdated> mOnKeyStatusUpdated = Collections.newSetFromMap(new WeakHashMap<OnKeyStatusUpdated, Boolean>());
 337    private final Set<OnJingleRtpConnectionUpdate> onJingleRtpConnectionUpdate = Collections.newSetFromMap(new WeakHashMap<OnJingleRtpConnectionUpdate, Boolean>());
 338
 339    private final Object LISTENER_LOCK = new Object();
 340
 341
 342    public final Set<String> FILENAMES_TO_IGNORE_DELETION = new HashSet<>();
 343
 344
 345    private final OnBindListener mOnBindListener = new OnBindListener() {
 346
 347        @Override
 348        public void onBind(final Account account) {
 349            synchronized (mInProgressAvatarFetches) {
 350                for (Iterator<String> iterator = mInProgressAvatarFetches.iterator(); iterator.hasNext(); ) {
 351                    final String KEY = iterator.next();
 352                    if (KEY.startsWith(account.getJid().asBareJid() + "_")) {
 353                        iterator.remove();
 354                    }
 355                }
 356            }
 357            boolean loggedInSuccessfully = account.setOption(Account.OPTION_LOGGED_IN_SUCCESSFULLY, true);
 358            boolean gainedFeature = account.setOption(Account.OPTION_HTTP_UPLOAD_AVAILABLE, account.getXmppConnection().getFeatures().httpUpload(0));
 359            if (loggedInSuccessfully || gainedFeature) {
 360                databaseBackend.updateAccount(account);
 361            }
 362
 363            if (loggedInSuccessfully) {
 364                if (!TextUtils.isEmpty(account.getDisplayName())) {
 365                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": display name wasn't empty on first log in. publishing");
 366                    publishDisplayName(account);
 367                }
 368            }
 369
 370            account.getRoster().clearPresences();
 371            synchronized (account.inProgressConferenceJoins) {
 372                account.inProgressConferenceJoins.clear();
 373            }
 374            synchronized (account.inProgressConferencePings) {
 375                account.inProgressConferencePings.clear();
 376            }
 377            mJingleConnectionManager.notifyRebound(account);
 378            mQuickConversationsService.considerSyncBackground(false);
 379            fetchRosterFromServer(account);
 380
 381            final XmppConnection connection = account.getXmppConnection();
 382
 383            if (connection.getFeatures().bookmarks2()) {
 384                fetchBookmarks2(account);
 385            } else if (!account.getXmppConnection().getFeatures().bookmarksConversion()) {
 386                fetchBookmarks(account);
 387            }
 388            final boolean flexible = account.getXmppConnection().getFeatures().flexibleOfflineMessageRetrieval();
 389            final boolean catchup = getMessageArchiveService().inCatchup(account);
 390            if (flexible && catchup && account.getXmppConnection().isMamPreferenceAlways()) {
 391                sendIqPacket(account, mIqGenerator.purgeOfflineMessages(), (acc, packet) -> {
 392                    if (packet.getType() == IqPacket.TYPE.RESULT) {
 393                        Log.d(Config.LOGTAG, acc.getJid().asBareJid() + ": successfully purged offline messages");
 394                    }
 395                });
 396            }
 397            sendPresence(account);
 398            if (mPushManagementService.available(account)) {
 399                mPushManagementService.registerPushTokenOnServer(account);
 400            }
 401            connectMultiModeConversations(account);
 402            syncDirtyContacts(account);
 403
 404            unifiedPushBroker.renewUnifiedPushEndpointsOnBind(account);
 405        }
 406    };
 407    private final AtomicLong mLastExpiryRun = new AtomicLong(0);
 408    private final LruCache<Pair<String, String>, ServiceDiscoveryResult> discoCache = new LruCache<>(20);
 409    private final OnStatusChanged statusListener = new OnStatusChanged() {
 410
 411        @Override
 412        public void onStatusChanged(final Account account) {
 413            XmppConnection connection = account.getXmppConnection();
 414            updateAccountUi();
 415
 416            if (account.getStatus() == Account.State.ONLINE || account.getStatus().isError()) {
 417                mQuickConversationsService.signalAccountStateChange();
 418            }
 419
 420            if (account.getStatus() == Account.State.ONLINE) {
 421                synchronized (mLowPingTimeoutMode) {
 422                    if (mLowPingTimeoutMode.remove(account.getJid().asBareJid())) {
 423                        Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": leaving low ping timeout mode");
 424                    }
 425                }
 426                if (account.setShowErrorNotification(true)) {
 427                    databaseBackend.updateAccount(account);
 428                }
 429                mMessageArchiveService.executePendingQueries(account);
 430                if (connection != null && connection.getFeatures().csi()) {
 431                    if (checkListeners()) {
 432                        Log.d(Config.LOGTAG, account.getJid().asBareJid() + " sending csi//inactive");
 433                        connection.sendInactive();
 434                    } else {
 435                        Log.d(Config.LOGTAG, account.getJid().asBareJid() + " sending csi//active");
 436                        connection.sendActive();
 437                    }
 438                }
 439                List<Conversation> conversations = getConversations();
 440                for (Conversation conversation : conversations) {
 441                    final boolean inProgressJoin;
 442                    synchronized (account.inProgressConferenceJoins) {
 443                        inProgressJoin = account.inProgressConferenceJoins.contains(conversation);
 444                    }
 445                    final boolean pendingJoin;
 446                    synchronized (account.pendingConferenceJoins) {
 447                        pendingJoin = account.pendingConferenceJoins.contains(conversation);
 448                    }
 449                    if (conversation.getAccount() == account
 450                            && !pendingJoin
 451                            && !inProgressJoin) {
 452                        sendUnsentMessages(conversation);
 453                    }
 454                }
 455                final List<Conversation> pendingLeaves;
 456                synchronized (account.pendingConferenceLeaves) {
 457                    pendingLeaves = new ArrayList<>(account.pendingConferenceLeaves);
 458                    account.pendingConferenceLeaves.clear();
 459
 460                }
 461                for (Conversation conversation : pendingLeaves) {
 462                    leaveMuc(conversation);
 463                }
 464                final List<Conversation> pendingJoins;
 465                synchronized (account.pendingConferenceJoins) {
 466                    pendingJoins = new ArrayList<>(account.pendingConferenceJoins);
 467                    account.pendingConferenceJoins.clear();
 468                }
 469                for (Conversation conversation : pendingJoins) {
 470                    joinMuc(conversation);
 471                }
 472                scheduleWakeUpCall(Config.PING_MAX_INTERVAL, account.getUuid().hashCode());
 473            } else if (account.getStatus() == Account.State.OFFLINE || account.getStatus() == Account.State.DISABLED) {
 474                resetSendingToWaiting(account);
 475                if (account.isEnabled() && isInLowPingTimeoutMode(account)) {
 476                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": went into offline state during low ping mode. reconnecting now");
 477                    reconnectAccount(account, true, false);
 478                } else {
 479                    final int timeToReconnect = SECURE_RANDOM.nextInt(10) + 2;
 480                    scheduleWakeUpCall(timeToReconnect, account.getUuid().hashCode());
 481                }
 482            } else if (account.getStatus() == Account.State.REGISTRATION_SUCCESSFUL) {
 483                databaseBackend.updateAccount(account);
 484                reconnectAccount(account, true, false);
 485            } else if (account.getStatus() != Account.State.CONNECTING && account.getStatus() != Account.State.NO_INTERNET) {
 486                resetSendingToWaiting(account);
 487                if (connection != null && account.getStatus().isAttemptReconnect()) {
 488                    final int next = connection.getTimeToNextAttempt();
 489                    final boolean lowPingTimeoutMode = isInLowPingTimeoutMode(account);
 490                    if (next <= 0) {
 491                        Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": error connecting account. reconnecting now. lowPingTimeout=" + lowPingTimeoutMode);
 492                        reconnectAccount(account, true, false);
 493                    } else {
 494                        final int attempt = connection.getAttempt() + 1;
 495                        Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": error connecting account. try again in " + next + "s for the " + attempt + " time. lowPingTimeout=" + lowPingTimeoutMode);
 496                        scheduleWakeUpCall(next, account.getUuid().hashCode());
 497                    }
 498                }
 499            }
 500            getNotificationService().updateErrorNotification();
 501        }
 502    };
 503    private OpenPgpServiceConnection pgpServiceConnection;
 504    private PgpEngine mPgpEngine = null;
 505    private WakeLock wakeLock;
 506    private LruCache<String, Bitmap> mBitmapCache;
 507    private LruCache<String, Drawable> mDrawableCache;
 508    private final BroadcastReceiver mInternalEventReceiver = new InternalEventReceiver();
 509    private final BroadcastReceiver mInternalScreenEventReceiver = new InternalEventReceiver();
 510
 511    private static String generateFetchKey(Account account, final Avatar avatar) {
 512        return account.getJid().asBareJid() + "_" + avatar.owner + "_" + avatar.sha1sum;
 513    }
 514
 515    private boolean isInLowPingTimeoutMode(Account account) {
 516        synchronized (mLowPingTimeoutMode) {
 517            return mLowPingTimeoutMode.contains(account.getJid().asBareJid());
 518        }
 519    }
 520
 521    public void startForcingForegroundNotification() {
 522        mForceForegroundService.set(true);
 523        toggleForegroundService();
 524    }
 525
 526    public void stopForcingForegroundNotification() {
 527        mForceForegroundService.set(false);
 528        toggleForegroundService();
 529    }
 530
 531    public boolean areMessagesInitialized() {
 532        return this.restoredFromDatabaseLatch.getCount() == 0;
 533    }
 534
 535    public PgpEngine getPgpEngine() {
 536        if (!Config.supportOpenPgp()) {
 537            return null;
 538        } else if (pgpServiceConnection != null && pgpServiceConnection.isBound()) {
 539            if (this.mPgpEngine == null) {
 540                this.mPgpEngine = new PgpEngine(new OpenPgpApi(
 541                        getApplicationContext(),
 542                        pgpServiceConnection.getService()), this);
 543            }
 544            return mPgpEngine;
 545        } else {
 546            return null;
 547        }
 548
 549    }
 550
 551    public OpenPgpApi getOpenPgpApi() {
 552        if (!Config.supportOpenPgp()) {
 553            return null;
 554        } else if (pgpServiceConnection != null && pgpServiceConnection.isBound()) {
 555            return new OpenPgpApi(this, pgpServiceConnection.getService());
 556        } else {
 557            return null;
 558        }
 559    }
 560
 561    public FileBackend getFileBackend() {
 562        return this.fileBackend;
 563    }
 564
 565    public DownloadableFile getFileForCid(Cid cid) {
 566        return this.databaseBackend.getFileForCid(cid);
 567    }
 568
 569    public String getUrlForCid(Cid cid) {
 570        return this.databaseBackend.getUrlForCid(cid);
 571    }
 572
 573    public void saveCid(Cid cid, File file) throws BlockedMediaException {
 574        saveCid(cid, file, null);
 575    }
 576
 577    public void saveCid(Cid cid, File file, String url) throws BlockedMediaException {
 578        if (this.databaseBackend.isBlockedMedia(cid)) {
 579            throw new BlockedMediaException();
 580        }
 581        this.databaseBackend.saveCid(cid, file, url);
 582    }
 583
 584    public void blockMedia(File f) {
 585        try {
 586            Cid[] cids = getFileBackend().calculateCids(new FileInputStream(f));
 587            for (Cid cid : cids) {
 588                blockMedia(cid);
 589            }
 590        } catch (final IOException e) { }
 591    }
 592
 593    public void blockMedia(Cid cid) {
 594        this.databaseBackend.blockMedia(cid);
 595    }
 596
 597    public void clearBlockedMedia() {
 598        this.databaseBackend.clearBlockedMedia();
 599    }
 600
 601    public void insertWebxdcUpdate(final WebxdcUpdate update) {
 602        this.databaseBackend.insertWebxdcUpdate(update);
 603    }
 604
 605    public WebxdcUpdate findLastWebxdcUpdate(Message message) {
 606        return this.databaseBackend.findLastWebxdcUpdate(message);
 607    }
 608
 609    public List<WebxdcUpdate> findWebxdcUpdates(Message message, long serial) {
 610        return this.databaseBackend.findWebxdcUpdates(message, serial);
 611    }
 612
 613    public AvatarService getAvatarService() {
 614        return this.mAvatarService;
 615    }
 616
 617    public void attachLocationToConversation(final Conversation conversation, final Uri uri, final UiCallback<Message> callback) {
 618        int encryption = conversation.getNextEncryption();
 619        if (encryption == Message.ENCRYPTION_PGP) {
 620            encryption = Message.ENCRYPTION_DECRYPTED;
 621        }
 622        Message message = new Message(conversation, uri.toString(), encryption);
 623        message.setThread(conversation.getThread());
 624        Message.configurePrivateMessage(message);
 625        if (encryption == Message.ENCRYPTION_DECRYPTED) {
 626            getPgpEngine().encrypt(message, callback);
 627        } else {
 628            sendMessage(message);
 629            callback.success(message);
 630        }
 631    }
 632
 633    public void attachFileToConversation(final Conversation conversation, final Uri uri, final String type, final UiCallback<Message> callback) {
 634        final Message message;
 635        if (conversation.getReplyTo() == null) {
 636            message = new Message(conversation, "", conversation.getNextEncryption());
 637        } else {
 638            message = conversation.getReplyTo().reply();
 639            message.setEncryption(conversation.getNextEncryption());
 640        }
 641        if (conversation.getNextEncryption() == Message.ENCRYPTION_PGP) {
 642            message.setEncryption(Message.ENCRYPTION_DECRYPTED);
 643        }
 644        message.setThread(conversation.getThread());
 645        if (!Message.configurePrivateFileMessage(message)) {
 646            message.setCounterpart(conversation.getNextCounterpart());
 647            message.setType(Message.TYPE_FILE);
 648        }
 649        Log.d(Config.LOGTAG, "attachFile: type=" + message.getType());
 650        Log.d(Config.LOGTAG, "counterpart=" + message.getCounterpart());
 651        final AttachFileToConversationRunnable runnable = new AttachFileToConversationRunnable(this, uri, type, message, callback);
 652        if (runnable.isVideoMessage()) {
 653            VIDEO_COMPRESSION_EXECUTOR.execute(runnable);
 654        } else {
 655            FILE_ATTACHMENT_EXECUTOR.execute(runnable);
 656        }
 657    }
 658
 659    public void attachImageToConversation(final Conversation conversation, final Uri uri,  final String type, final UiCallback<Message> callback) {
 660        final String mimeType = MimeUtils.guessMimeTypeFromUriAndMime(this, uri, type);
 661        final String compressPictures = getCompressPicturesPreference();
 662
 663        if ("never".equals(compressPictures)
 664                || ("auto".equals(compressPictures) && getFileBackend().useImageAsIs(uri))
 665                || (mimeType != null && mimeType.endsWith("/gif"))
 666                || getFileBackend().unusualBounds(uri)) {
 667            Log.d(Config.LOGTAG, conversation.getAccount().getJid().asBareJid() + ": not compressing picture. sending as file");
 668            attachFileToConversation(conversation, uri, mimeType, callback);
 669            return;
 670        }
 671        final Message message;
 672
 673        if (conversation.getReplyTo() == null) {
 674            message = new Message(conversation, "", conversation.getNextEncryption());
 675        } else {
 676            message = conversation.getReplyTo().reply();
 677            message.setEncryption(conversation.getNextEncryption());
 678        }
 679        if (conversation.getNextEncryption() == Message.ENCRYPTION_PGP) {
 680            message.setEncryption(Message.ENCRYPTION_DECRYPTED);
 681        }
 682        message.setThread(conversation.getThread());
 683        if (!Message.configurePrivateFileMessage(message)) {
 684            message.setCounterpart(conversation.getNextCounterpart());
 685            message.setType(Message.TYPE_IMAGE);
 686        }
 687        Log.d(Config.LOGTAG, "attachImage: type=" + message.getType());
 688        FILE_ATTACHMENT_EXECUTOR.execute(() -> {
 689            try {
 690                getFileBackend().copyImageToPrivateStorage(message, uri);
 691            } catch (FileBackend.ImageCompressionException e) {
 692                Log.d(Config.LOGTAG, "unable to compress image. fall back to file transfer", e);
 693                attachFileToConversation(conversation, uri, mimeType, callback);
 694                return;
 695            } catch (final FileBackend.FileCopyException e) {
 696                callback.error(e.getResId(), message);
 697                return;
 698            }
 699            if (conversation.getNextEncryption() == Message.ENCRYPTION_PGP) {
 700                final PgpEngine pgpEngine = getPgpEngine();
 701                if (pgpEngine != null) {
 702                    pgpEngine.encrypt(message, callback);
 703                } else if (callback != null) {
 704                    callback.error(R.string.unable_to_connect_to_keychain, null);
 705                }
 706            } else {
 707                sendMessage(message);
 708                callback.success(message);
 709            }
 710        });
 711    }
 712
 713    public Conversation find(Bookmark bookmark) {
 714        return find(bookmark.getAccount(), bookmark.getJid());
 715    }
 716
 717    public Conversation find(final Account account, final Jid jid) {
 718        return find(getConversations(), account, jid);
 719    }
 720
 721    public boolean isMuc(final Account account, final Jid jid) {
 722        final Conversation c = find(account, jid);
 723        return c != null && c.getMode() == Conversational.MODE_MULTI;
 724    }
 725
 726    public void search(final List<String> term, final String uuid, final OnSearchResultsAvailable onSearchResultsAvailable) {
 727        MessageSearchTask.search(this, term, uuid, onSearchResultsAvailable);
 728    }
 729
 730    @Override
 731    public int onStartCommand(Intent intent, int flags, int startId) {
 732        final String action = intent == null ? null : intent.getAction();
 733        final boolean needsForegroundService = intent != null && intent.getBooleanExtra(EventReceiver.EXTRA_NEEDS_FOREGROUND_SERVICE, false);
 734        if (needsForegroundService) {
 735            Log.d(Config.LOGTAG, "toggle forced foreground service after receiving event (action=" + action + ")");
 736            toggleForegroundService(true);
 737        }
 738        String pushedAccountHash = null;
 739        boolean interactive = false;
 740        if (action != null) {
 741            final String uuid = intent.getStringExtra("uuid");
 742            switch (action) {
 743                case QuickConversationsService.SMS_RETRIEVED_ACTION:
 744                    mQuickConversationsService.handleSmsReceived(intent);
 745                    break;
 746                case ConnectivityManager.CONNECTIVITY_ACTION:
 747                    if (hasInternetConnection()) {
 748                        if (Config.POST_CONNECTIVITY_CHANGE_PING_INTERVAL > 0) {
 749                            schedulePostConnectivityChange();
 750                        }
 751                        if (Config.RESET_ATTEMPT_COUNT_ON_NETWORK_CHANGE) {
 752                            resetAllAttemptCounts(true, false);
 753                        }
 754                        Resolver.clearCache();
 755                    }
 756                    break;
 757                case Intent.ACTION_SHUTDOWN:
 758                    logoutAndSave(true);
 759                    return START_NOT_STICKY;
 760                case ACTION_CLEAR_MESSAGE_NOTIFICATION:
 761                    mNotificationExecutor.execute(() -> {
 762                        try {
 763                            final Conversation c = findConversationByUuid(uuid);
 764                            if (c != null) {
 765                                mNotificationService.clearMessages(c);
 766                            } else {
 767                                mNotificationService.clearMessages();
 768                            }
 769                            restoredFromDatabaseLatch.await();
 770
 771                        } catch (InterruptedException e) {
 772                            Log.d(Config.LOGTAG, "unable to process clear message notification");
 773                        }
 774                    });
 775                    break;
 776                case ACTION_CLEAR_MISSED_CALL_NOTIFICATION:
 777                    mNotificationExecutor.execute(() -> {
 778                        try {
 779                            final Conversation c = findConversationByUuid(uuid);
 780                            if (c != null) {
 781                                mNotificationService.clearMissedCalls(c);
 782                            } else {
 783                                mNotificationService.clearMissedCalls();
 784                            }
 785                            restoredFromDatabaseLatch.await();
 786
 787                        } catch (InterruptedException e) {
 788                            Log.d(Config.LOGTAG, "unable to process clear missed call notification");
 789                        }
 790                    });
 791                    break;
 792                case ACTION_DISMISS_CALL: {
 793                    final String sessionId = intent.getStringExtra(RtpSessionActivity.EXTRA_SESSION_ID);
 794                    Log.d(Config.LOGTAG, "received intent to dismiss call with session id " + sessionId);
 795                    mJingleConnectionManager.rejectRtpSession(sessionId);
 796                    break;
 797                }
 798                case TorServiceUtils.ACTION_STATUS:
 799                    final String status = intent.getStringExtra(TorServiceUtils.EXTRA_STATUS);
 800                    //TODO port and host are in 'extras' - but this may not be a reliable source?
 801                    if ("ON".equals(status)) {
 802                        handleOrbotStartedEvent();
 803                        return START_STICKY;
 804                    }
 805                    break;
 806                case ACTION_END_CALL: {
 807                    final String sessionId = intent.getStringExtra(RtpSessionActivity.EXTRA_SESSION_ID);
 808                    Log.d(Config.LOGTAG, "received intent to end call with session id " + sessionId);
 809                    mJingleConnectionManager.endRtpSession(sessionId);
 810                }
 811                break;
 812                case ACTION_PROVISION_ACCOUNT: {
 813                    final String address = intent.getStringExtra("address");
 814                    final String password = intent.getStringExtra("password");
 815                    if (QuickConversationsService.isQuicksy() || Strings.isNullOrEmpty(address) || Strings.isNullOrEmpty(password)) {
 816                        break;
 817                    }
 818                    provisionAccount(address, password);
 819                    break;
 820                }
 821                case ACTION_DISMISS_ERROR_NOTIFICATIONS:
 822                    dismissErrorNotifications();
 823                    break;
 824                case ACTION_TRY_AGAIN:
 825                    resetAllAttemptCounts(false, true);
 826                    interactive = true;
 827                    break;
 828                case ACTION_REPLY_TO_CONVERSATION:
 829                    Bundle remoteInput = RemoteInput.getResultsFromIntent(intent);
 830                    if (remoteInput == null) {
 831                        break;
 832                    }
 833                    final CharSequence body = remoteInput.getCharSequence("text_reply");
 834                    final boolean dismissNotification = intent.getBooleanExtra("dismiss_notification", false);
 835                    final String lastMessageUuid = intent.getStringExtra("last_message_uuid");
 836                    if (body == null || body.length() <= 0) {
 837                        break;
 838                    }
 839                    mNotificationExecutor.execute(() -> {
 840                        try {
 841                            restoredFromDatabaseLatch.await();
 842                            final Conversation c = findConversationByUuid(uuid);
 843                            if (c != null) {
 844                                directReply(c, body.toString(), lastMessageUuid, dismissNotification);
 845                            }
 846                        } catch (InterruptedException e) {
 847                            Log.d(Config.LOGTAG, "unable to process direct reply");
 848                        }
 849                    });
 850                    break;
 851                case ACTION_MARK_AS_READ:
 852                    mNotificationExecutor.execute(() -> {
 853                        final Conversation c = findConversationByUuid(uuid);
 854                        if (c == null) {
 855                            Log.d(Config.LOGTAG, "received mark read intent for unknown conversation (" + uuid + ")");
 856                            return;
 857                        }
 858                        try {
 859                            restoredFromDatabaseLatch.await();
 860                            sendReadMarker(c, null);
 861                        } catch (InterruptedException e) {
 862                            Log.d(Config.LOGTAG, "unable to process notification read marker for conversation " + c.getName());
 863                        }
 864
 865                    });
 866                    break;
 867                case ACTION_SNOOZE:
 868                    mNotificationExecutor.execute(() -> {
 869                        final Conversation c = findConversationByUuid(uuid);
 870                        if (c == null) {
 871                            Log.d(Config.LOGTAG, "received snooze intent for unknown conversation (" + uuid + ")");
 872                            return;
 873                        }
 874                        c.setMutedTill(System.currentTimeMillis() + 30 * 60 * 1000);
 875                        mNotificationService.clearMessages(c);
 876                        updateConversation(c);
 877                    });
 878                case AudioManager.RINGER_MODE_CHANGED_ACTION:
 879                case NotificationManager.ACTION_INTERRUPTION_FILTER_CHANGED:
 880                    if (dndOnSilentMode()) {
 881                        refreshAllPresences();
 882                    }
 883                    break;
 884                case Intent.ACTION_SCREEN_ON:
 885                    deactivateGracePeriod();
 886                case Intent.ACTION_USER_PRESENT:
 887                case Intent.ACTION_SCREEN_OFF:
 888                    if (awayWhenScreenLocked()) {
 889                        refreshAllPresences();
 890                    }
 891                    break;
 892                case ACTION_FCM_TOKEN_REFRESH:
 893                    refreshAllFcmTokens();
 894                    break;
 895                case ACTION_RENEW_UNIFIED_PUSH_ENDPOINTS:
 896                    final String instance = intent.getStringExtra("instance");
 897                    final Optional<UnifiedPushBroker.Transport> transport = renewUnifiedPushEndpoints();
 898                    if (instance != null && transport.isPresent()) {
 899                        unifiedPushBroker.rebroadcastEndpoint(instance, transport.get());
 900                    }
 901                    break;
 902                case ACTION_IDLE_PING:
 903                    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
 904                        scheduleNextIdlePing();
 905                    }
 906                    break;
 907                case ACTION_FCM_MESSAGE_RECEIVED:
 908                    pushedAccountHash = intent.getStringExtra("account");
 909                    Log.d(Config.LOGTAG, "push message arrived in service. account=" + pushedAccountHash);
 910                    break;
 911                case Intent.ACTION_SEND:
 912                    Uri uri = intent.getData();
 913                    if (uri != null) {
 914                        Log.d(Config.LOGTAG, "received uri permission for " + uri);
 915                    }
 916                    return START_STICKY;
 917            }
 918        }
 919        synchronized (this) {
 920            WakeLockHelper.acquire(wakeLock);
 921            boolean pingNow = ConnectivityManager.CONNECTIVITY_ACTION.equals(action) || (Config.POST_CONNECTIVITY_CHANGE_PING_INTERVAL > 0 && ACTION_POST_CONNECTIVITY_CHANGE.equals(action));
 922            final HashSet<Account> pingCandidates = new HashSet<>();
 923            final String androidId = PhoneHelper.getAndroidId(this);
 924            for (Account account : accounts) {
 925                final boolean pushWasMeantForThisAccount = CryptoHelper.getAccountFingerprint(account, androidId).equals(pushedAccountHash);
 926                pingNow |= processAccountState(account,
 927                        interactive,
 928                        "ui".equals(action),
 929                        pushWasMeantForThisAccount,
 930                        pingCandidates);
 931            }
 932            if (pingNow) {
 933                for (Account account : pingCandidates) {
 934                    final boolean lowTimeout = isInLowPingTimeoutMode(account);
 935                    account.getXmppConnection().sendPing();
 936                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + " send ping (action=" + action + ",lowTimeout=" + lowTimeout + ")");
 937                    scheduleWakeUpCall(lowTimeout ? Config.LOW_PING_TIMEOUT : Config.PING_TIMEOUT, account.getUuid().hashCode());
 938                }
 939                long msToMucPing = (mLastMucPing + (Config.PING_MAX_INTERVAL * 2000L)) - SystemClock.elapsedRealtime();
 940                if (msToMucPing <= 0) {
 941                    mLastMucPing = SystemClock.elapsedRealtime();
 942                    for (Conversation c : getConversations()) {
 943                        if (c.getMode() == Conversation.MODE_MULTI && c.getMucOptions().online()) {
 944                            mucSelfPingAndRejoin(c);
 945                        }
 946                    }
 947                }
 948            }
 949            WakeLockHelper.release(wakeLock);
 950        }
 951        if (SystemClock.elapsedRealtime() - mLastExpiryRun.get() >= Config.EXPIRY_INTERVAL) {
 952            expireOldMessages();
 953        }
 954        return START_STICKY;
 955    }
 956
 957    private void handleOrbotStartedEvent() {
 958        for (final Account account : accounts) {
 959            if (account.getStatus() == Account.State.TOR_NOT_AVAILABLE) {
 960                reconnectAccount(account, true, false);
 961            }
 962        }
 963    }
 964
 965    private boolean processAccountState(Account account, boolean interactive, boolean isUiAction, boolean isAccountPushed, HashSet<Account> pingCandidates) {
 966        boolean pingNow = false;
 967        if (account.getStatus().isAttemptReconnect()) {
 968            if (!hasInternetConnection()) {
 969                account.setStatus(Account.State.NO_INTERNET);
 970                if (statusListener != null) {
 971                    statusListener.onStatusChanged(account);
 972                }
 973            } else {
 974                if (account.getStatus() == Account.State.NO_INTERNET) {
 975                    account.setStatus(Account.State.OFFLINE);
 976                    if (statusListener != null) {
 977                        statusListener.onStatusChanged(account);
 978                    }
 979                }
 980                if (account.getStatus() == Account.State.ONLINE) {
 981                    synchronized (mLowPingTimeoutMode) {
 982                        long lastReceived = account.getXmppConnection().getLastPacketReceived();
 983                        long lastSent = account.getXmppConnection().getLastPingSent();
 984                        long pingInterval = isUiAction ? Config.PING_MIN_INTERVAL * 1000 : Config.PING_MAX_INTERVAL * 1000;
 985                        long msToNextPing = (Math.max(lastReceived, lastSent) + pingInterval) - SystemClock.elapsedRealtime();
 986                        int pingTimeout = mLowPingTimeoutMode.contains(account.getJid().asBareJid()) ? Config.LOW_PING_TIMEOUT * 1000 : Config.PING_TIMEOUT * 1000;
 987                        long pingTimeoutIn = (lastSent + pingTimeout) - SystemClock.elapsedRealtime();
 988                        if (lastSent > lastReceived) {
 989                            if (pingTimeoutIn < 0) {
 990                                Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": ping timeout");
 991                                this.reconnectAccount(account, true, interactive);
 992                            } else {
 993                                int secs = (int) (pingTimeoutIn / 1000);
 994                                this.scheduleWakeUpCall(secs, account.getUuid().hashCode());
 995                            }
 996                        } else {
 997                            pingCandidates.add(account);
 998                            if (isAccountPushed) {
 999                                pingNow = true;
1000                                if (mLowPingTimeoutMode.add(account.getJid().asBareJid())) {
1001                                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": entering low ping timeout mode");
1002                                }
1003                            } else if (msToNextPing <= 0) {
1004                                pingNow = true;
1005                            } else {
1006                                this.scheduleWakeUpCall((int) (msToNextPing / 1000), account.getUuid().hashCode());
1007                                if (mLowPingTimeoutMode.remove(account.getJid().asBareJid())) {
1008                                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": leaving low ping timeout mode");
1009                                }
1010                            }
1011                        }
1012                    }
1013                } else if (account.getStatus() == Account.State.OFFLINE) {
1014                    reconnectAccount(account, true, interactive);
1015                } else if (account.getStatus() == Account.State.CONNECTING) {
1016                    long secondsSinceLastConnect = (SystemClock.elapsedRealtime() - account.getXmppConnection().getLastConnect()) / 1000;
1017                    long secondsSinceLastDisco = (SystemClock.elapsedRealtime() - account.getXmppConnection().getLastDiscoStarted()) / 1000;
1018                    long discoTimeout = Config.CONNECT_DISCO_TIMEOUT - secondsSinceLastDisco;
1019                    long timeout = Config.CONNECT_TIMEOUT - secondsSinceLastConnect;
1020                    if (timeout < 0) {
1021                        Log.d(Config.LOGTAG, account.getJid() + ": time out during connect reconnecting (secondsSinceLast=" + secondsSinceLastConnect + ")");
1022                        account.getXmppConnection().resetAttemptCount(false);
1023                        reconnectAccount(account, true, interactive);
1024                    } else if (discoTimeout < 0) {
1025                        account.getXmppConnection().sendDiscoTimeout();
1026                        scheduleWakeUpCall((int) Math.min(timeout, discoTimeout), account.getUuid().hashCode());
1027                    } else {
1028                        scheduleWakeUpCall((int) Math.min(timeout, discoTimeout), account.getUuid().hashCode());
1029                    }
1030                } else {
1031                    if (account.getXmppConnection().getTimeToNextAttempt() <= 0) {
1032                        reconnectAccount(account, true, interactive);
1033                    }
1034                }
1035            }
1036        }
1037        return pingNow;
1038    }
1039
1040    public boolean processUnifiedPushMessage(final Account account, final Jid transport, final Element push) {
1041        return unifiedPushBroker.processPushMessage(account, transport, push);
1042    }
1043
1044    public void reinitializeMuclumbusService() {
1045        mChannelDiscoveryService.initializeMuclumbusService();
1046    }
1047
1048    public void discoverChannels(String query, ChannelDiscoveryService.Method method, ChannelDiscoveryService.OnChannelSearchResultsFound onChannelSearchResultsFound) {
1049        mChannelDiscoveryService.discover(Strings.nullToEmpty(query).trim(), method, onChannelSearchResultsFound);
1050    }
1051
1052    public boolean isDataSaverDisabled() {
1053        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
1054            final ConnectivityManager connectivityManager =
1055                    (ConnectivityManager) getSystemService(CONNECTIVITY_SERVICE);
1056            return !connectivityManager.isActiveNetworkMetered()
1057                    || Compatibility.getRestrictBackgroundStatus(connectivityManager)
1058                            == ConnectivityManager.RESTRICT_BACKGROUND_STATUS_DISABLED;
1059        } else {
1060            return true;
1061        }
1062    }
1063
1064    private void directReply(final Conversation conversation, final String body, final String lastMessageUuid, final boolean dismissAfterReply) {
1065        final Message inReplyTo = lastMessageUuid == null ? null : conversation.findMessageWithUuid(lastMessageUuid);
1066        Message message = new Message(conversation, body, conversation.getNextEncryption());
1067        if (inReplyTo != null) {
1068            if (Emoticons.isEmoji(body)) {
1069                message = inReplyTo.react(body);
1070            } else {
1071                message = inReplyTo.reply();
1072            }
1073            message.clearFallbacks("urn:xmpp:reply:0");
1074            message.setBody(body);
1075            message.setEncryption(conversation.getNextEncryption());
1076        }
1077        if (inReplyTo != null && inReplyTo.isPrivateMessage()) {
1078            Message.configurePrivateMessage(message, inReplyTo.getCounterpart());
1079        }
1080        message.markUnread();
1081        if (message.getEncryption() == Message.ENCRYPTION_PGP) {
1082            getPgpEngine().encrypt(message, new UiCallback<Message>() {
1083                @Override
1084                public void success(Message message) {
1085                    if (dismissAfterReply) {
1086                        markRead((Conversation) message.getConversation(), true);
1087                    } else {
1088                        mNotificationService.pushFromDirectReply(message);
1089                    }
1090                }
1091
1092                @Override
1093                public void error(int errorCode, Message object) {
1094
1095                }
1096
1097                @Override
1098                public void userInputRequired(PendingIntent pi, Message object) {
1099
1100                }
1101            });
1102        } else {
1103            sendMessage(message);
1104            if (dismissAfterReply) {
1105                markRead(conversation, true);
1106            } else {
1107                mNotificationService.pushFromDirectReply(message);
1108            }
1109        }
1110    }
1111
1112    private boolean dndOnSilentMode() {
1113        return getBooleanPreference(SettingsActivity.DND_ON_SILENT_MODE, R.bool.dnd_on_silent_mode);
1114    }
1115
1116    private boolean manuallyChangePresence() {
1117        return getBooleanPreference(SettingsActivity.MANUALLY_CHANGE_PRESENCE, R.bool.manually_change_presence);
1118    }
1119
1120    private boolean treatVibrateAsSilent() {
1121        return getBooleanPreference(SettingsActivity.TREAT_VIBRATE_AS_SILENT, R.bool.treat_vibrate_as_silent);
1122    }
1123
1124    private boolean awayWhenScreenLocked() {
1125        return getBooleanPreference(SettingsActivity.AWAY_WHEN_SCREEN_IS_OFF, R.bool.away_when_screen_off);
1126    }
1127
1128    private String getCompressPicturesPreference() {
1129        return getPreferences().getString("picture_compression", getResources().getString(R.string.picture_compression));
1130    }
1131
1132    private Presence.Status getTargetPresence() {
1133        if (dndOnSilentMode() && isPhoneSilenced()) {
1134            return Presence.Status.DND;
1135        } else if (awayWhenScreenLocked() && isScreenLocked()) {
1136            return Presence.Status.AWAY;
1137        } else {
1138            return Presence.Status.ONLINE;
1139        }
1140    }
1141
1142    public boolean isScreenLocked() {
1143        final KeyguardManager keyguardManager = (KeyguardManager) getSystemService(Context.KEYGUARD_SERVICE);
1144        final PowerManager powerManager = (PowerManager) getSystemService(Context.POWER_SERVICE);
1145        final boolean locked = keyguardManager != null && keyguardManager.isKeyguardLocked();
1146        final boolean interactive = powerManager != null && powerManager.isInteractive();
1147        return locked || !interactive;
1148    }
1149
1150    private boolean isPhoneSilenced() {
1151        final boolean notificationDnd;
1152        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
1153            final NotificationManager notificationManager = getSystemService(NotificationManager.class);
1154            final int filter = notificationManager == null ? NotificationManager.INTERRUPTION_FILTER_UNKNOWN : notificationManager.getCurrentInterruptionFilter();
1155            notificationDnd = filter >= NotificationManager.INTERRUPTION_FILTER_PRIORITY;
1156        } else {
1157            notificationDnd = false;
1158        }
1159        final AudioManager audioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
1160        final int ringerMode = audioManager == null ? AudioManager.RINGER_MODE_NORMAL : audioManager.getRingerMode();
1161        try {
1162            if (treatVibrateAsSilent()) {
1163                return notificationDnd || ringerMode != AudioManager.RINGER_MODE_NORMAL;
1164            } else {
1165                return notificationDnd || ringerMode == AudioManager.RINGER_MODE_SILENT;
1166            }
1167        } catch (Throwable throwable) {
1168            Log.d(Config.LOGTAG, "platform bug in isPhoneSilenced (" + throwable.getMessage() + ")");
1169            return notificationDnd;
1170        }
1171    }
1172
1173    private void resetAllAttemptCounts(boolean reallyAll, boolean retryImmediately) {
1174        Log.d(Config.LOGTAG, "resetting all attempt counts");
1175        for (Account account : accounts) {
1176            if (account.hasErrorStatus() || reallyAll) {
1177                final XmppConnection connection = account.getXmppConnection();
1178                if (connection != null) {
1179                    connection.resetAttemptCount(retryImmediately);
1180                }
1181            }
1182            if (account.setShowErrorNotification(true)) {
1183                mDatabaseWriterExecutor.execute(() -> databaseBackend.updateAccount(account));
1184            }
1185        }
1186        mNotificationService.updateErrorNotification();
1187    }
1188
1189    private void dismissErrorNotifications() {
1190        for (final Account account : this.accounts) {
1191            if (account.hasErrorStatus()) {
1192                Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": dismissing error notification");
1193                if (account.setShowErrorNotification(false)) {
1194                    mDatabaseWriterExecutor.execute(() -> databaseBackend.updateAccount(account));
1195                }
1196            }
1197        }
1198    }
1199
1200    private void expireOldMessages() {
1201        expireOldMessages(false);
1202    }
1203
1204    public void expireOldMessages(final boolean resetHasMessagesLeftOnServer) {
1205        mLastExpiryRun.set(SystemClock.elapsedRealtime());
1206        mDatabaseWriterExecutor.execute(() -> {
1207            long timestamp = getAutomaticMessageDeletionDate();
1208            if (timestamp > 0) {
1209                databaseBackend.expireOldMessages(timestamp);
1210                synchronized (XmppConnectionService.this.conversations) {
1211                    for (Conversation conversation : XmppConnectionService.this.conversations) {
1212                        conversation.expireOldMessages(timestamp);
1213                        if (resetHasMessagesLeftOnServer) {
1214                            conversation.messagesLoaded.set(true);
1215                            conversation.setHasMessagesLeftOnServer(true);
1216                        }
1217                    }
1218                }
1219                updateConversationUi();
1220            }
1221        });
1222    }
1223
1224    public boolean hasInternetConnection() {
1225        final ConnectivityManager cm = ContextCompat.getSystemService(this, ConnectivityManager.class);
1226        if (cm == null) {
1227            return true; //if internet connection can not be checked it is probably best to just try
1228        }
1229        try {
1230            if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.Q) {
1231                final Network activeNetwork = cm.getActiveNetwork();
1232                final NetworkCapabilities capabilities = activeNetwork == null ? null : cm.getNetworkCapabilities(activeNetwork);
1233                return capabilities != null && capabilities.hasCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET);
1234            } else {
1235                final NetworkInfo networkInfo = cm.getActiveNetworkInfo();
1236                return networkInfo != null && (networkInfo.isConnected() || networkInfo.getType() == ConnectivityManager.TYPE_ETHERNET);
1237            }
1238        } catch (final RuntimeException e) {
1239            Log.d(Config.LOGTAG, "unable to check for internet connection", e);
1240            return true; //if internet connection can not be checked it is probably best to just try
1241        }
1242    }
1243
1244    @SuppressLint("TrulyRandom")
1245    @Override
1246    public void onCreate() {
1247        setTheme(ThemeHelper.find(this));
1248        ThemeHelper.applyCustomColors(this);
1249        if (Compatibility.runsTwentySix()) {
1250            mNotificationService.initializeChannels();
1251        }
1252        mChannelDiscoveryService.initializeMuclumbusService();
1253        mForceDuringOnCreate.set(Compatibility.runsAndTargetsTwentySix(this));
1254        toggleForegroundService();
1255        this.destroyed = false;
1256        OmemoSetting.load(this);
1257        ExceptionHelper.init(getApplicationContext());
1258        try {
1259            Security.insertProviderAt(Conscrypt.newProvider(), 1);
1260        } catch (Throwable throwable) {
1261            Log.e(Config.LOGTAG, "unable to initialize security provider", throwable);
1262        }
1263        Resolver.init(this);
1264        updateMemorizingTrustmanager();
1265        final int maxMemory = (int) (Runtime.getRuntime().maxMemory() / 1024);
1266        final int cacheSize = maxMemory / 10;
1267        this.mBitmapCache = new LruCache<String, Bitmap>(cacheSize) {
1268            @Override
1269            protected int sizeOf(final String key, final Bitmap bitmap) {
1270                return bitmap.getByteCount() / 1024;
1271            }
1272        };
1273        this.mDrawableCache = new LruCache<String, Drawable>(cacheSize) {
1274            @Override
1275            protected int sizeOf(final String key, final Drawable drawable) {
1276                if (drawable instanceof BitmapDrawable) {
1277                    return ((BitmapDrawable) drawable).getBitmap().getByteCount() / 1024;
1278                } else {
1279                    return drawable.getIntrinsicWidth() * drawable.getIntrinsicHeight() * 40 / 1024;
1280                }
1281            }
1282        };
1283        if (mLastActivity == 0) {
1284            mLastActivity = getPreferences().getLong(SETTING_LAST_ACTIVITY_TS, System.currentTimeMillis());
1285        }
1286
1287        Log.d(Config.LOGTAG, "initializing database...");
1288        this.databaseBackend = DatabaseBackend.getInstance(getApplicationContext());
1289        Log.d(Config.LOGTAG, "restoring accounts...");
1290        this.accounts = databaseBackend.getAccounts();
1291        for (Account account : this.accounts) {
1292            final int color = getPreferences().getInt("account_color:" + account.getUuid(), 0);
1293            if (color != 0) account.setColor(color);
1294        }
1295        final SharedPreferences.Editor editor = getPreferences().edit();
1296        if (this.accounts.size() == 0 && Arrays.asList("Sony", "Sony Ericsson").contains(Build.MANUFACTURER)) {
1297            editor.putBoolean(SettingsActivity.KEEP_FOREGROUND_SERVICE, true);
1298            Log.d(Config.LOGTAG, Build.MANUFACTURER + " is on blacklist. enabling foreground service");
1299        }
1300        final boolean hasEnabledAccounts = hasEnabledAccounts();
1301        editor.putBoolean(EventReceiver.SETTING_ENABLED_ACCOUNTS, hasEnabledAccounts).apply();
1302        editor.apply();
1303        toggleSetProfilePictureActivity(hasEnabledAccounts);
1304        reconfigurePushDistributor();
1305
1306        restoreFromDatabase();
1307
1308        if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M || ContextCompat.checkSelfPermission(this, Manifest.permission.READ_CONTACTS) == PackageManager.PERMISSION_GRANTED) {
1309            startContactObserver();
1310        }
1311        FILE_OBSERVER_EXECUTOR.execute(fileBackend::deleteHistoricAvatarPath);
1312        if (Compatibility.hasStoragePermission(this)) {
1313            Log.d(Config.LOGTAG, "starting file observer");
1314            FILE_OBSERVER_EXECUTOR.execute(this.fileObserver::startWatching);
1315            FILE_OBSERVER_EXECUTOR.execute(this::checkForDeletedFiles);
1316        }
1317        if (Config.supportOpenPgp()) {
1318            this.pgpServiceConnection = new OpenPgpServiceConnection(this, "org.sufficientlysecure.keychain", new OpenPgpServiceConnection.OnBound() {
1319                @Override
1320                public void onBound(IOpenPgpService2 service) {
1321                    for (Account account : accounts) {
1322                        final PgpDecryptionService pgp = account.getPgpDecryptionService();
1323                        if (pgp != null) {
1324                            pgp.continueDecryption(true);
1325                        }
1326                    }
1327                }
1328
1329                @Override
1330                public void onError(Exception e) {
1331                }
1332            });
1333            this.pgpServiceConnection.bindToService();
1334        }
1335
1336        final PowerManager pm = ContextCompat.getSystemService(this, PowerManager.class);
1337        this.wakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "Conversations:Service");
1338
1339        toggleForegroundService();
1340        updateUnreadCountBadge();
1341        toggleScreenEventReceiver();
1342        final IntentFilter intentFilter = new IntentFilter();
1343        intentFilter.addAction(TorServiceUtils.ACTION_STATUS);
1344        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
1345            scheduleNextIdlePing();
1346            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
1347                intentFilter.addAction(ConnectivityManager.CONNECTIVITY_ACTION);
1348            }
1349            intentFilter.addAction(NotificationManager.ACTION_INTERRUPTION_FILTER_CHANGED);
1350        }
1351        registerReceiver(this.mInternalEventReceiver, intentFilter);
1352        mForceDuringOnCreate.set(false);
1353        toggleForegroundService();
1354        setupPhoneStateListener();
1355    }
1356
1357
1358    private void setupPhoneStateListener() {
1359        final TelephonyManager telephonyManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
1360        if (telephonyManager == null || Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
1361            return;
1362        }
1363        telephonyManager.listen(phoneStateListener, PhoneStateListener.LISTEN_CALL_STATE);
1364    }
1365
1366    public boolean isPhoneInCall() {
1367        return isPhoneInCall.get();
1368    }
1369
1370    private void checkForDeletedFiles() {
1371        if (destroyed) {
1372            Log.d(Config.LOGTAG, "Do not check for deleted files because service has been destroyed");
1373            return;
1374        }
1375        final long start = SystemClock.elapsedRealtime();
1376        final List<DatabaseBackend.FilePathInfo> relativeFilePaths = databaseBackend.getFilePathInfo();
1377        final List<DatabaseBackend.FilePathInfo> changed = new ArrayList<>();
1378        for (final DatabaseBackend.FilePathInfo filePath : relativeFilePaths) {
1379            if (destroyed) {
1380                Log.d(Config.LOGTAG, "Stop checking for deleted files because service has been destroyed");
1381                return;
1382            }
1383            final File file = fileBackend.getFileForPath(filePath.path);
1384            if (filePath.setDeleted(!file.exists())) {
1385                changed.add(filePath);
1386            }
1387        }
1388        final long duration = SystemClock.elapsedRealtime() - start;
1389        Log.d(Config.LOGTAG, "found " + changed.size() + " changed files on start up. total=" + relativeFilePaths.size() + ". (" + duration + "ms)");
1390        if (changed.size() > 0) {
1391            databaseBackend.markFilesAsChanged(changed);
1392            markChangedFiles(changed);
1393        }
1394    }
1395
1396    public void startContactObserver() {
1397        getContentResolver().registerContentObserver(ContactsContract.Contacts.CONTENT_URI, true, new ContentObserver(null) {
1398            @Override
1399            public void onChange(boolean selfChange) {
1400                super.onChange(selfChange);
1401                if (restoredFromDatabaseLatch.getCount() == 0) {
1402                    loadPhoneContacts();
1403                }
1404            }
1405        });
1406    }
1407
1408    @Override
1409    public void onTrimMemory(int level) {
1410        super.onTrimMemory(level);
1411        if (level >= TRIM_MEMORY_COMPLETE) {
1412            Log.d(Config.LOGTAG, "clear cache due to low memory");
1413            getBitmapCache().evictAll();
1414        }
1415    }
1416
1417    @Override
1418    public void onDestroy() {
1419        try {
1420            unregisterReceiver(this.mInternalEventReceiver);
1421            unregisterReceiver(this.mInternalScreenEventReceiver);
1422        } catch (final IllegalArgumentException e) {
1423            //ignored
1424        }
1425        destroyed = false;
1426        fileObserver.stopWatching();
1427        super.onDestroy();
1428    }
1429
1430    public void restartFileObserver() {
1431        Log.d(Config.LOGTAG, "restarting file observer");
1432        FILE_OBSERVER_EXECUTOR.execute(this.fileObserver::restartWatching);
1433        FILE_OBSERVER_EXECUTOR.execute(this::checkForDeletedFiles);
1434    }
1435
1436    public void toggleScreenEventReceiver() {
1437        if (awayWhenScreenLocked() && !manuallyChangePresence()) {
1438            final IntentFilter filter = new IntentFilter();
1439            filter.addAction(Intent.ACTION_SCREEN_ON);
1440            filter.addAction(Intent.ACTION_SCREEN_OFF);
1441            filter.addAction(Intent.ACTION_USER_PRESENT);
1442            registerReceiver(this.mInternalScreenEventReceiver, filter);
1443        } else {
1444            try {
1445                unregisterReceiver(this.mInternalScreenEventReceiver);
1446            } catch (IllegalArgumentException e) {
1447                //ignored
1448            }
1449        }
1450    }
1451
1452    public void toggleForegroundService() {
1453        toggleForegroundService(false);
1454    }
1455
1456    public void setOngoingCall(AbstractJingleConnection.Id id, Set<Media> media, final boolean reconnecting) {
1457        ongoingCall.set(new OngoingCall(id, media, reconnecting));
1458        toggleForegroundService(false);
1459    }
1460
1461    public void removeOngoingCall() {
1462        ongoingCall.set(null);
1463        toggleForegroundService(false);
1464    }
1465
1466    private void toggleForegroundService(boolean force) {
1467        final boolean status;
1468        final OngoingCall ongoing = ongoingCall.get();
1469        final boolean showOngoing = ongoing != null && !diallerIntegrationActive.get();
1470        if (force || mForceDuringOnCreate.get() || mForceForegroundService.get() || showOngoing || (Compatibility.keepForegroundService(this) && hasEnabledAccounts())) {
1471            final Notification notification;
1472            final int id;
1473            if (showOngoing) {
1474                notification = this.mNotificationService.getOngoingCallNotification(ongoing);
1475                id = NotificationService.ONGOING_CALL_NOTIFICATION_ID;
1476                startForeground(id, notification);
1477                mNotificationService.cancel(NotificationService.FOREGROUND_NOTIFICATION_ID);
1478            } else {
1479                notification = this.mNotificationService.createForegroundNotification();
1480                id = NotificationService.FOREGROUND_NOTIFICATION_ID;
1481                startForeground(id, notification);
1482            }
1483
1484            if (!mForceForegroundService.get()) {
1485                mNotificationService.notify(id, notification);
1486            }
1487            status = true;
1488        } else {
1489            stopForeground(true);
1490            status = false;
1491        }
1492        if (!mForceForegroundService.get()) {
1493            mNotificationService.cancel(NotificationService.FOREGROUND_NOTIFICATION_ID);
1494        }
1495        if (!showOngoing) {
1496            mNotificationService.cancel(NotificationService.ONGOING_CALL_NOTIFICATION_ID);
1497        }
1498        Log.d(Config.LOGTAG, "ForegroundService: " + (status ? "on" : "off"));
1499    }
1500
1501    public boolean foregroundNotificationNeedsUpdatingWhenErrorStateChanges() {
1502        return !mForceForegroundService.get() && ongoingCall.get() == null && Compatibility.keepForegroundService(this) && hasEnabledAccounts();
1503    }
1504
1505    @Override
1506    public void onTaskRemoved(final Intent rootIntent) {
1507        super.onTaskRemoved(rootIntent);
1508        if ((Compatibility.keepForegroundService(this) && hasEnabledAccounts()) || mForceForegroundService.get() || ongoingCall.get() != null) {
1509            Log.d(Config.LOGTAG, "ignoring onTaskRemoved because foreground service is activated");
1510        } else {
1511            this.logoutAndSave(false);
1512        }
1513    }
1514
1515    private void logoutAndSave(boolean stop) {
1516        int activeAccounts = 0;
1517        for (final Account account : accounts) {
1518            if (account.getStatus() != Account.State.DISABLED) {
1519                databaseBackend.writeRoster(account.getRoster());
1520                activeAccounts++;
1521            }
1522            if (account.getXmppConnection() != null) {
1523                new Thread(() -> disconnect(account, false)).start();
1524            }
1525        }
1526        if (stop || activeAccounts == 0) {
1527            Log.d(Config.LOGTAG, "good bye");
1528            stopSelf();
1529        }
1530    }
1531
1532    private void schedulePostConnectivityChange() {
1533        final AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
1534        if (alarmManager == null) {
1535            return;
1536        }
1537        final long triggerAtMillis = SystemClock.elapsedRealtime() + (Config.POST_CONNECTIVITY_CHANGE_PING_INTERVAL * 1000);
1538        final Intent intent = new Intent(this, EventReceiver.class);
1539        intent.setAction(ACTION_POST_CONNECTIVITY_CHANGE);
1540        try {
1541            final PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 1, intent, s()
1542                    ? PendingIntent.FLAG_IMMUTABLE | PendingIntent.FLAG_UPDATE_CURRENT
1543                    : PendingIntent.FLAG_UPDATE_CURRENT);
1544            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
1545                alarmManager.setAndAllowWhileIdle(AlarmManager.ELAPSED_REALTIME_WAKEUP, triggerAtMillis, pendingIntent);
1546            } else {
1547                alarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, triggerAtMillis, pendingIntent);
1548            }
1549        } catch (RuntimeException e) {
1550            Log.e(Config.LOGTAG, "unable to schedule alarm for post connectivity change", e);
1551        }
1552    }
1553
1554    public void scheduleWakeUpCall(int seconds, int requestCode) {
1555        final long timeToWake = SystemClock.elapsedRealtime() + (seconds < 0 ? 1 : seconds + 1) * 1000L;
1556        final AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
1557        if (alarmManager == null) {
1558            return;
1559        }
1560        final Intent intent = new Intent(this, EventReceiver.class);
1561        intent.setAction("ping");
1562        try {
1563            final PendingIntent pendingIntent;
1564            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
1565                pendingIntent =
1566                        PendingIntent.getBroadcast(
1567                                this, requestCode, intent, PendingIntent.FLAG_IMMUTABLE);
1568            } else {
1569                pendingIntent =
1570                        PendingIntent.getBroadcast(
1571                                this, requestCode, intent, 0);
1572            }
1573            alarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, timeToWake, pendingIntent);
1574        } catch (RuntimeException e) {
1575            Log.e(Config.LOGTAG, "unable to schedule alarm for ping", e);
1576        }
1577    }
1578
1579    @TargetApi(Build.VERSION_CODES.M)
1580    private void scheduleNextIdlePing() {
1581        final long timeToWake = SystemClock.elapsedRealtime() + (Config.IDLE_PING_INTERVAL * 1000);
1582        final AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
1583        if (alarmManager == null) {
1584            return;
1585        }
1586        final Intent intent = new Intent(this, EventReceiver.class);
1587        intent.setAction(ACTION_IDLE_PING);
1588        try {
1589            final PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, intent, s()
1590                    ? PendingIntent.FLAG_IMMUTABLE | PendingIntent.FLAG_UPDATE_CURRENT
1591                    : PendingIntent.FLAG_UPDATE_CURRENT);
1592            alarmManager.setAndAllowWhileIdle(AlarmManager.ELAPSED_REALTIME_WAKEUP, timeToWake, pendingIntent);
1593        } catch (RuntimeException e) {
1594            Log.d(Config.LOGTAG, "unable to schedule alarm for idle ping", e);
1595        }
1596    }
1597
1598    public XmppConnection createConnection(final Account account) {
1599        final XmppConnection connection = new XmppConnection(account, this);
1600        connection.setOnMessagePacketReceivedListener(this.mMessageParser);
1601        connection.setOnStatusChangedListener(this.statusListener);
1602        connection.setOnPresencePacketReceivedListener(this.mPresenceParser);
1603        connection.setOnUnregisteredIqPacketReceivedListener(this.mIqParser);
1604        connection.setOnJinglePacketReceivedListener((mJingleConnectionManager::deliverPacket));
1605        connection.setOnBindListener(this.mOnBindListener);
1606        connection.setOnMessageAcknowledgeListener(this.mOnMessageAcknowledgedListener);
1607        connection.addOnAdvancedStreamFeaturesAvailableListener(this.mMessageArchiveService);
1608        connection.addOnAdvancedStreamFeaturesAvailableListener(this.mAvatarService);
1609        AxolotlService axolotlService = account.getAxolotlService();
1610        if (axolotlService != null) {
1611            connection.addOnAdvancedStreamFeaturesAvailableListener(axolotlService);
1612        }
1613        return connection;
1614    }
1615
1616    public void sendChatState(Conversation conversation) {
1617        if (sendChatStates()) {
1618            MessagePacket packet = mMessageGenerator.generateChatState(conversation);
1619            sendMessagePacket(conversation.getAccount(), packet);
1620        }
1621    }
1622
1623    private void sendFileMessage(final Message message, final boolean delay) {
1624        Log.d(Config.LOGTAG, "send file message");
1625        final Account account = message.getConversation().getAccount();
1626        if (account.httpUploadAvailable(fileBackend.getFile(message, false).getSize())
1627                || message.getConversation().getMode() == Conversation.MODE_MULTI) {
1628            mHttpConnectionManager.createNewUploadConnection(message, delay);
1629        } else {
1630            mJingleConnectionManager.startJingleFileTransfer(message);
1631        }
1632    }
1633
1634    public void sendMessage(final Message message) {
1635        sendMessage(message, false, false);
1636    }
1637
1638    private void sendMessage(final Message message, final boolean resend, final boolean delay) {
1639        final Account account = message.getConversation().getAccount();
1640        if (account.setShowErrorNotification(true)) {
1641            databaseBackend.updateAccount(account);
1642            mNotificationService.updateErrorNotification();
1643        }
1644        final Conversation conversation = (Conversation) message.getConversation();
1645        account.deactivateGracePeriod();
1646
1647
1648        if (QuickConversationsService.isQuicksy() && conversation.getMode() == Conversation.MODE_SINGLE) {
1649            final Contact contact = conversation.getContact();
1650            if (!contact.showInRoster() && contact.getOption(Contact.Options.SYNCED_VIA_OTHER)) {
1651                Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": adding " + contact.getJid() + " on sending message");
1652                createContact(contact, true);
1653            }
1654        }
1655
1656        MessagePacket packet = null;
1657        final boolean addToConversation = !message.edited() && message.getQuoteableBody() != null;
1658        boolean saveInDb = addToConversation;
1659        message.setStatus(Message.STATUS_WAITING);
1660
1661        if (message.getEncryption() != Message.ENCRYPTION_NONE && conversation.getMode() == Conversation.MODE_MULTI && conversation.isPrivateAndNonAnonymous()) {
1662            if (conversation.setAttribute(Conversation.ATTRIBUTE_FORMERLY_PRIVATE_NON_ANONYMOUS, true)) {
1663                databaseBackend.updateConversation(conversation);
1664            }
1665        }
1666
1667        final boolean inProgressJoin = isJoinInProgress(conversation);
1668
1669        if (message.getCounterpart() == null && !message.isPrivateMessage()) {
1670            message.setCounterpart(message.getConversation().getJid().asBareJid());
1671        }
1672
1673        if (account.isOnlineAndConnected() && !inProgressJoin) {
1674            switch (message.getEncryption()) {
1675                case Message.ENCRYPTION_NONE:
1676                    if (message.needsUploading()) {
1677                        if (account.httpUploadAvailable(fileBackend.getFile(message, false).getSize())
1678                                || conversation.getMode() == Conversation.MODE_MULTI
1679                                || message.fixCounterpart()) {
1680                            this.sendFileMessage(message, delay);
1681                        } else {
1682                            break;
1683                        }
1684                    } else {
1685                        packet = mMessageGenerator.generateChat(message);
1686                    }
1687                    break;
1688                case Message.ENCRYPTION_PGP:
1689                case Message.ENCRYPTION_DECRYPTED:
1690                    if (message.needsUploading()) {
1691                        if (account.httpUploadAvailable(fileBackend.getFile(message, false).getSize())
1692                                || conversation.getMode() == Conversation.MODE_MULTI
1693                                || message.fixCounterpart()) {
1694                            this.sendFileMessage(message, delay);
1695                        } else {
1696                            break;
1697                        }
1698                    } else {
1699                        packet = mMessageGenerator.generatePgpChat(message);
1700                    }
1701                    break;
1702                case Message.ENCRYPTION_AXOLOTL:
1703                    message.setFingerprint(account.getAxolotlService().getOwnFingerprint());
1704                    if (message.needsUploading()) {
1705                        if (account.httpUploadAvailable(fileBackend.getFile(message, false).getSize())
1706                                || conversation.getMode() == Conversation.MODE_MULTI
1707                                || message.fixCounterpart()) {
1708                            this.sendFileMessage(message, delay);
1709                        } else {
1710                            break;
1711                        }
1712                    } else {
1713                        XmppAxolotlMessage axolotlMessage = account.getAxolotlService().fetchAxolotlMessageFromCache(message);
1714                        if (axolotlMessage == null) {
1715                            account.getAxolotlService().preparePayloadMessage(message, delay);
1716                        } else {
1717                            packet = mMessageGenerator.generateAxolotlChat(message, axolotlMessage);
1718                        }
1719                    }
1720                    break;
1721
1722            }
1723            if (packet != null) {
1724                if (account.getXmppConnection().getFeatures().sm()
1725                        || (conversation.getMode() == Conversation.MODE_MULTI && message.getCounterpart().isBareJid())) {
1726                    message.setStatus(Message.STATUS_UNSEND);
1727                } else {
1728                    message.setStatus(Message.STATUS_SEND);
1729                }
1730            }
1731        } else {
1732            switch (message.getEncryption()) {
1733                case Message.ENCRYPTION_DECRYPTED:
1734                    if (!message.needsUploading()) {
1735                        String pgpBody = message.getEncryptedBody();
1736                        String decryptedBody = message.getBody();
1737                        message.setBody(pgpBody); //TODO might throw NPE
1738                        message.setEncryption(Message.ENCRYPTION_PGP);
1739                        if (message.edited()) {
1740                            message.setBody(decryptedBody);
1741                            message.setEncryption(Message.ENCRYPTION_DECRYPTED);
1742                            if (!databaseBackend.updateMessage(message, message.getEditedId())) {
1743                                Log.e(Config.LOGTAG, "error updated message in DB after edit");
1744                            }
1745                            updateConversationUi();
1746                            return;
1747                        } else {
1748                            databaseBackend.createMessage(message);
1749                            saveInDb = false;
1750                            message.setBody(decryptedBody);
1751                            message.setEncryption(Message.ENCRYPTION_DECRYPTED);
1752                        }
1753                    }
1754                    break;
1755                case Message.ENCRYPTION_AXOLOTL:
1756                    message.setFingerprint(account.getAxolotlService().getOwnFingerprint());
1757                    break;
1758            }
1759        }
1760
1761
1762        boolean mucMessage = conversation.getMode() == Conversation.MODE_MULTI && !message.isPrivateMessage();
1763        if (mucMessage) {
1764            message.setCounterpart(conversation.getMucOptions().getSelf().getFullJid());
1765        }
1766
1767        if (resend) {
1768            if (packet != null && addToConversation) {
1769                if (account.getXmppConnection().getFeatures().sm() || mucMessage) {
1770                    markMessage(message, Message.STATUS_UNSEND);
1771                } else {
1772                    markMessage(message, Message.STATUS_SEND);
1773                }
1774            }
1775        } else {
1776            if (addToConversation) {
1777                conversation.add(message);
1778            }
1779            if (saveInDb) {
1780                databaseBackend.createMessage(message);
1781            } else if (message.edited()) {
1782                if (!databaseBackend.updateMessage(message, message.getEditedId())) {
1783                    Log.e(Config.LOGTAG, "error updated message in DB after edit");
1784                }
1785            }
1786            updateConversationUi();
1787        }
1788        if (packet != null) {
1789            if (delay) {
1790                mMessageGenerator.addDelay(packet, message.getTimeSent());
1791            }
1792            if (conversation.setOutgoingChatState(Config.DEFAULT_CHAT_STATE)) {
1793                if (this.sendChatStates()) {
1794                    packet.addChild(ChatState.toElement(conversation.getOutgoingChatState()));
1795                }
1796            }
1797            sendMessagePacket(account, packet);
1798        }
1799    }
1800
1801    private boolean isJoinInProgress(final Conversation conversation) {
1802        final Account account = conversation.getAccount();
1803        synchronized (account.inProgressConferenceJoins) {
1804            if (conversation.getMode() == Conversational.MODE_MULTI) {
1805                final boolean inProgress = account.inProgressConferenceJoins.contains(conversation);
1806                final boolean pending = account.pendingConferenceJoins.contains(conversation);
1807                final boolean inProgressJoin = inProgress || pending;
1808                if (inProgressJoin) {
1809                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": holding back message to group. inProgress=" + inProgress + ", pending=" + pending);
1810                }
1811                return inProgressJoin;
1812            } else {
1813                return false;
1814            }
1815        }
1816    }
1817
1818    private void sendUnsentMessages(final Conversation conversation) {
1819        conversation.findWaitingMessages(message -> resendMessage(message, true));
1820    }
1821
1822    public void resendMessage(final Message message, final boolean delay) {
1823        sendMessage(message, true, delay);
1824    }
1825
1826    public boolean isOnboarding() {
1827        return getAccounts().size() == 1 && getAccounts().get(0).getJid().getDomain().equals(Config.ONBOARDING_DOMAIN);
1828    }
1829
1830    public void requestEasyOnboardingInvite(final Account account, final EasyOnboardingInvite.OnInviteRequested callback) {
1831        final XmppConnection connection = account.getXmppConnection();
1832        final Jid jid = connection == null ? null : connection.getJidForCommand(Namespace.EASY_ONBOARDING_INVITE);
1833        if (jid == null) {
1834            callback.inviteRequestFailed(getString(R.string.server_does_not_support_easy_onboarding_invites));
1835            return;
1836        }
1837        final IqPacket request = new IqPacket(IqPacket.TYPE.SET);
1838        request.setTo(jid);
1839        final Element command = request.addChild("command", Namespace.COMMANDS);
1840        command.setAttribute("node", Namespace.EASY_ONBOARDING_INVITE);
1841        command.setAttribute("action", "execute");
1842        sendIqPacket(account, request, (a, response) -> {
1843            if (response.getType() == IqPacket.TYPE.RESULT) {
1844                final Element resultCommand = response.findChild("command", Namespace.COMMANDS);
1845                final Element x = resultCommand == null ? null : resultCommand.findChild("x", Namespace.DATA);
1846                if (x != null) {
1847                    final Data data = Data.parse(x);
1848                    final String uri = data.getValue("uri");
1849                    final String landingUrl = data.getValue("landing-url");
1850                    if (uri != null) {
1851                        final EasyOnboardingInvite invite = new EasyOnboardingInvite(jid.getDomain().toEscapedString(), uri, landingUrl);
1852                        callback.inviteRequested(invite);
1853                        return;
1854                    }
1855                }
1856                callback.inviteRequestFailed(getString(R.string.unable_to_parse_invite));
1857                Log.d(Config.LOGTAG, response.toString());
1858            } else if (response.getType() == IqPacket.TYPE.ERROR) {
1859                callback.inviteRequestFailed(IqParser.errorMessage(response));
1860            } else {
1861                callback.inviteRequestFailed(getString(R.string.remote_server_timeout));
1862            }
1863        });
1864
1865    }
1866
1867    public void fetchRosterFromServer(final Account account) {
1868        final IqPacket iqPacket = new IqPacket(IqPacket.TYPE.GET);
1869        if (!"".equals(account.getRosterVersion())) {
1870            Log.d(Config.LOGTAG, account.getJid().asBareJid()
1871                    + ": fetching roster version " + account.getRosterVersion());
1872        } else {
1873            Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": fetching roster");
1874        }
1875        iqPacket.query(Namespace.ROSTER).setAttribute("ver", account.getRosterVersion());
1876        sendIqPacket(account, iqPacket, mIqParser);
1877    }
1878
1879    public void fetchBookmarks(final Account account) {
1880        final IqPacket iqPacket = new IqPacket(IqPacket.TYPE.GET);
1881        final Element query = iqPacket.query("jabber:iq:private");
1882        query.addChild("storage", Namespace.BOOKMARKS);
1883        final OnIqPacketReceived callback = (a, response) -> {
1884            if (response.getType() == IqPacket.TYPE.RESULT) {
1885                final Element query1 = response.query();
1886                final Element storage = query1.findChild("storage", "storage:bookmarks");
1887                Map<Jid, Bookmark> bookmarks = Bookmark.parseFromStorage(storage, account);
1888                processBookmarksInitial(a, bookmarks, false);
1889            } else {
1890                Log.d(Config.LOGTAG, a.getJid().asBareJid() + ": could not fetch bookmarks");
1891            }
1892        };
1893        sendIqPacket(account, iqPacket, callback);
1894    }
1895
1896    public void fetchBookmarks2(final Account account) {
1897        final IqPacket retrieve = mIqGenerator.retrieveBookmarks();
1898        sendIqPacket(account, retrieve, new OnIqPacketReceived() {
1899            @Override
1900            public void onIqPacketReceived(final Account account, final IqPacket response) {
1901                if (response.getType() == IqPacket.TYPE.RESULT) {
1902                    final Element pubsub = response.findChild("pubsub", Namespace.PUBSUB);
1903                    final Map<Jid, Bookmark> bookmarks = Bookmark.parseFromPubsub(pubsub, account);
1904                    processBookmarksInitial(account, bookmarks, true);
1905                }
1906            }
1907        });
1908    }
1909
1910    public void processBookmarksInitial(Account account, Map<Jid, Bookmark> bookmarks, final boolean pep) {
1911        final Set<Jid> previousBookmarks = account.getBookmarkedJids();
1912        final boolean synchronizeWithBookmarks = synchronizeWithBookmarks();
1913        for (Bookmark bookmark : bookmarks.values()) {
1914            previousBookmarks.remove(bookmark.getJid().asBareJid());
1915            processModifiedBookmark(bookmark, pep, synchronizeWithBookmarks);
1916        }
1917        if (pep && synchronizeWithBookmarks) {
1918            Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": " + previousBookmarks.size() + " bookmarks have been removed");
1919            for (Jid jid : previousBookmarks) {
1920                processDeletedBookmark(account, jid);
1921            }
1922        }
1923        account.setBookmarks(bookmarks);
1924    }
1925
1926    public void processDeletedBookmark(Account account, Jid jid) {
1927        final Conversation conversation = find(account, jid);
1928        if (conversation != null && conversation.getMucOptions().getError() == MucOptions.Error.DESTROYED) {
1929            Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": archiving destroyed conference (" + conversation.getJid() + ") after receiving pep");
1930            archiveConversation(conversation, false);
1931        }
1932    }
1933
1934    private void processModifiedBookmark(Bookmark bookmark, final boolean pep, final boolean synchronizeWithBookmarks) {
1935        final Account account = bookmark.getAccount();
1936        Conversation conversation = find(bookmark);
1937        if (conversation != null) {
1938            if (conversation.getMode() != Conversation.MODE_MULTI) {
1939                return;
1940            }
1941            bookmark.setConversation(conversation);
1942            if (pep && synchronizeWithBookmarks && !bookmark.autojoin()) {
1943                Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": archiving conference (" + conversation.getJid() + ") after receiving pep");
1944                archiveConversation(conversation, false);
1945            } else {
1946                final MucOptions mucOptions = conversation.getMucOptions();
1947                if (mucOptions.getError() == MucOptions.Error.NICK_IN_USE) {
1948                    final String current = mucOptions.getActualNick();
1949                    final String proposed = mucOptions.getProposedNick();
1950                    if (current != null && !current.equals(proposed)) {
1951                        Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": proposed nick changed after bookmark push " + current + "->" + proposed);
1952                        joinMuc(conversation);
1953                    }
1954                }
1955            }
1956        } else if (synchronizeWithBookmarks && bookmark.autojoin()) {
1957            conversation = findOrCreateConversation(account, bookmark.getFullJid(), true, true, false);
1958            bookmark.setConversation(conversation);
1959        }
1960    }
1961
1962    public void processModifiedBookmark(Bookmark bookmark) {
1963        final boolean synchronizeWithBookmarks = synchronizeWithBookmarks();
1964        processModifiedBookmark(bookmark, true, synchronizeWithBookmarks);
1965    }
1966
1967    public void createBookmark(final Account account, final Bookmark bookmark) {
1968        account.putBookmark(bookmark);
1969        final XmppConnection connection = account.getXmppConnection();
1970        if (connection == null) {
1971            Log.d(Config.LOGTAG, account.getJid().asBareJid()+": no connection. ignoring bookmark creation");
1972        } else if (connection.getFeatures().bookmarks2()) {
1973            final Element item = mIqGenerator.publishBookmarkItem(bookmark);
1974            pushNodeAndEnforcePublishOptions(account, Namespace.BOOKMARKS2, item, bookmark.getJid().asBareJid().toEscapedString(), PublishOptions.persistentWhitelistAccessMaxItems());
1975        } else if (connection.getFeatures().bookmarksConversion()) {
1976            pushBookmarksPep(account);
1977        } else {
1978            pushBookmarksPrivateXml(account);
1979        }
1980    }
1981
1982    public void deleteBookmark(final Account account, final Bookmark bookmark) {
1983        if (bookmark.getJid().toString().equals("discuss@conference.soprani.ca")) {
1984            getPreferences().edit().putBoolean("cheogram_sopranica_bookmark_deleted", true).apply();
1985        }
1986        account.removeBookmark(bookmark);
1987        final XmppConnection connection = account.getXmppConnection();
1988        if (connection == null) return;
1989
1990        if (connection.getFeatures().bookmarks2()) {
1991            IqPacket request = mIqGenerator.deleteItem(Namespace.BOOKMARKS2, bookmark.getJid().asBareJid().toEscapedString());
1992            sendIqPacket(account, request, (a, response) -> {
1993                if (response.getType() == IqPacket.TYPE.ERROR) {
1994                    Log.d(Config.LOGTAG, a.getJid().asBareJid() + ": unable to delete bookmark " + response.getErrorCondition());
1995                }
1996            });
1997        } else if (connection.getFeatures().bookmarksConversion()) {
1998            pushBookmarksPep(account);
1999        } else {
2000            pushBookmarksPrivateXml(account);
2001        }
2002    }
2003
2004    private void pushBookmarksPrivateXml(Account account) {
2005        if (!account.areBookmarksLoaded()) return;
2006
2007        Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": pushing bookmarks via private xml");
2008        IqPacket iqPacket = new IqPacket(IqPacket.TYPE.SET);
2009        Element query = iqPacket.query("jabber:iq:private");
2010        Element storage = query.addChild("storage", "storage:bookmarks");
2011        for (final Bookmark bookmark : account.getBookmarks()) {
2012            storage.addChild(bookmark);
2013        }
2014        sendIqPacket(account, iqPacket, mDefaultIqHandler);
2015    }
2016
2017    private void pushBookmarksPep(Account account) {
2018        if (!account.areBookmarksLoaded()) return;
2019
2020        Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": pushing bookmarks via pep");
2021        final Element storage = new Element("storage", "storage:bookmarks");
2022        for (final Bookmark bookmark : account.getBookmarks()) {
2023            storage.addChild(bookmark);
2024        }
2025        pushNodeAndEnforcePublishOptions(account, Namespace.BOOKMARKS, storage, "current", PublishOptions.persistentWhitelistAccess());
2026
2027    }
2028
2029    private void pushNodeAndEnforcePublishOptions(final Account account, final String node, final Element element, final String id, final Bundle options) {
2030        pushNodeAndEnforcePublishOptions(account, node, element, id, options, true);
2031
2032    }
2033
2034    private void pushNodeAndEnforcePublishOptions(final Account account, final String node, final Element element, final String id, final Bundle options, final boolean retry) {
2035        final IqPacket packet = mIqGenerator.publishElement(node, element, id, options);
2036        sendIqPacket(account, packet, (a, response) -> {
2037            if (response.getType() == IqPacket.TYPE.RESULT) {
2038                return;
2039            }
2040            if (retry && PublishOptions.preconditionNotMet(response)) {
2041                pushNodeConfiguration(account, node, options, new OnConfigurationPushed() {
2042                    @Override
2043                    public void onPushSucceeded() {
2044                        pushNodeAndEnforcePublishOptions(account, node, element, id, options, false);
2045                    }
2046
2047                    @Override
2048                    public void onPushFailed() {
2049                        Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": unable to push node configuration (" + node + ")");
2050                    }
2051                });
2052            } else {
2053                Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": error publishing bookmarks (retry=" + retry + ") " + response);
2054            }
2055        });
2056    }
2057
2058    private void restoreFromDatabase() {
2059        synchronized (this.conversations) {
2060            final Map<String, Account> accountLookupTable = new Hashtable<>();
2061            for (Account account : this.accounts) {
2062                accountLookupTable.put(account.getUuid(), account);
2063            }
2064            Log.d(Config.LOGTAG, "restoring conversations...");
2065            final long startTimeConversationsRestore = SystemClock.elapsedRealtime();
2066            this.conversations.addAll(databaseBackend.getConversations(Conversation.STATUS_AVAILABLE));
2067            for (Iterator<Conversation> iterator = conversations.listIterator(); iterator.hasNext(); ) {
2068                Conversation conversation = iterator.next();
2069                Account account = accountLookupTable.get(conversation.getAccountUuid());
2070                if (account != null) {
2071                    conversation.setAccount(account);
2072                } else {
2073                    Log.e(Config.LOGTAG, "unable to restore Conversations with " + conversation.getJid());
2074                    iterator.remove();
2075                }
2076            }
2077            long diffConversationsRestore = SystemClock.elapsedRealtime() - startTimeConversationsRestore;
2078            Log.d(Config.LOGTAG, "finished restoring conversations in " + diffConversationsRestore + "ms");
2079            Runnable runnable = () -> {
2080                if (DatabaseBackend.requiresMessageIndexRebuild()) {
2081                    DatabaseBackend.getInstance(this).rebuildMessagesIndex();
2082                }
2083                final long deletionDate = getAutomaticMessageDeletionDate();
2084                mLastExpiryRun.set(SystemClock.elapsedRealtime());
2085                if (deletionDate > 0) {
2086                    Log.d(Config.LOGTAG, "deleting messages that are older than " + AbstractGenerator.getTimestamp(deletionDate));
2087                    databaseBackend.expireOldMessages(deletionDate);
2088                }
2089                Log.d(Config.LOGTAG, "restoring roster...");
2090                for (final Account account : accounts) {
2091                    databaseBackend.readRoster(account.getRoster());
2092                    account.initAccountServices(XmppConnectionService.this); //roster needs to be loaded at this stage
2093                }
2094                getBitmapCache().evictAll();
2095                loadPhoneContacts();
2096                Log.d(Config.LOGTAG, "restoring messages...");
2097                final long startMessageRestore = SystemClock.elapsedRealtime();
2098                final Conversation quickLoad = QuickLoader.get(this.conversations);
2099                if (quickLoad != null) {
2100                    restoreMessages(quickLoad);
2101                    updateConversationUi();
2102                    final long diffMessageRestore = SystemClock.elapsedRealtime() - startMessageRestore;
2103                    Log.d(Config.LOGTAG, "quickly restored " + quickLoad.getName() + " after " + diffMessageRestore + "ms");
2104                }
2105                for (Conversation conversation : this.conversations) {
2106                    if (quickLoad != conversation) {
2107                        restoreMessages(conversation);
2108                    }
2109                }
2110                mNotificationService.finishBacklog();
2111                restoredFromDatabaseLatch.countDown();
2112                final long diffMessageRestore = SystemClock.elapsedRealtime() - startMessageRestore;
2113                Log.d(Config.LOGTAG, "finished restoring messages in " + diffMessageRestore + "ms");
2114                updateConversationUi();
2115            };
2116            mDatabaseReaderExecutor.execute(runnable); //will contain one write command (expiry) but that's fine
2117        }
2118    }
2119
2120    private void restoreMessages(Conversation conversation) {
2121        conversation.addAll(0, databaseBackend.getMessages(conversation, Config.PAGE_SIZE));
2122        conversation.findUnsentTextMessages(message -> markMessage(message, Message.STATUS_WAITING));
2123        conversation.findUnreadMessagesAndCalls(mNotificationService::pushFromBacklog);
2124    }
2125
2126    public void loadPhoneContacts() {
2127        mContactMergerExecutor.execute(() -> {
2128            final Map<Jid, JabberIdContact> contacts = JabberIdContact.load(this);
2129            Log.d(Config.LOGTAG, "start merging phone contacts with roster");
2130            for (final Account account : accounts) {
2131                final List<Contact> withSystemAccounts = account.getRoster().getWithSystemAccounts(JabberIdContact.class);
2132                for (final JabberIdContact jidContact : contacts.values()) {
2133                    final Contact contact = account.getRoster().getContact(jidContact.getJid());
2134                    boolean needsCacheClean = contact.setPhoneContact(jidContact);
2135                    if (needsCacheClean) {
2136                        getAvatarService().clear(contact);
2137                    }
2138                    withSystemAccounts.remove(contact);
2139                }
2140                for (final Contact contact : withSystemAccounts) {
2141                    boolean needsCacheClean = contact.unsetPhoneContact(JabberIdContact.class);
2142                    if (needsCacheClean) {
2143                        getAvatarService().clear(contact);
2144                    }
2145                }
2146            }
2147            Log.d(Config.LOGTAG, "finished merging phone contacts");
2148            mShortcutService.refresh(mInitialAddressbookSyncCompleted.compareAndSet(false, true));
2149            updateRosterUi();
2150            mQuickConversationsService.considerSync();
2151        });
2152    }
2153
2154
2155    public void syncRoster(final Account account) {
2156        mRosterSyncTaskManager.execute(account, () -> {
2157            unregisterPhoneAccounts(account);
2158            databaseBackend.writeRoster(account.getRoster());
2159            try { Thread.sleep(500); } catch (InterruptedException e) { }
2160        });
2161    }
2162
2163    public List<Conversation> getConversations() {
2164        return this.conversations;
2165    }
2166
2167    private void markFileDeleted(final File file) {
2168        synchronized (FILENAMES_TO_IGNORE_DELETION) {
2169            if (FILENAMES_TO_IGNORE_DELETION.remove(file.getAbsolutePath())) {
2170                Log.d(Config.LOGTAG, "ignored deletion of " + file.getAbsolutePath());
2171                return;
2172            }
2173        }
2174        final boolean isInternalFile = fileBackend.isInternalFile(file);
2175        final List<String> uuids = databaseBackend.markFileAsDeleted(file, isInternalFile);
2176        Log.d(Config.LOGTAG, "deleted file " + file.getAbsolutePath() + " internal=" + isInternalFile + ", database hits=" + uuids.size());
2177        markUuidsAsDeletedFiles(uuids);
2178    }
2179
2180    private void markUuidsAsDeletedFiles(List<String> uuids) {
2181        boolean deleted = false;
2182        for (Conversation conversation : getConversations()) {
2183            deleted |= conversation.markAsDeleted(uuids);
2184        }
2185        for (final String uuid : uuids) {
2186            evictPreview(uuid);
2187        }
2188        if (deleted) {
2189            updateConversationUi();
2190        }
2191    }
2192
2193    private void markChangedFiles(List<DatabaseBackend.FilePathInfo> infos) {
2194        boolean changed = false;
2195        for (Conversation conversation : getConversations()) {
2196            changed |= conversation.markAsChanged(infos);
2197        }
2198        if (changed) {
2199            updateConversationUi();
2200        }
2201    }
2202
2203    public void populateWithOrderedConversations(final List<Conversation> list) {
2204        populateWithOrderedConversations(list, true, true);
2205    }
2206
2207    public void populateWithOrderedConversations(final List<Conversation> list, final boolean includeNoFileUpload) {
2208        populateWithOrderedConversations(list, includeNoFileUpload, true);
2209    }
2210
2211    public void populateWithOrderedConversations(final List<Conversation> list, final boolean includeNoFileUpload, final boolean sort) {
2212        final List<String> orderedUuids;
2213        if (sort) {
2214            orderedUuids = null;
2215        } else {
2216            orderedUuids = new ArrayList<>();
2217            for (Conversation conversation : list) {
2218                orderedUuids.add(conversation.getUuid());
2219            }
2220        }
2221        list.clear();
2222        if (includeNoFileUpload) {
2223            list.addAll(getConversations());
2224        } else {
2225            for (Conversation conversation : getConversations()) {
2226                if (conversation.getMode() == Conversation.MODE_SINGLE
2227                        || (conversation.getAccount().httpUploadAvailable() && conversation.getMucOptions().participating())) {
2228                    list.add(conversation);
2229                }
2230            }
2231        }
2232        try {
2233            if (orderedUuids != null) {
2234                Collections.sort(list, (a, b) -> {
2235                    final int indexA = orderedUuids.indexOf(a.getUuid());
2236                    final int indexB = orderedUuids.indexOf(b.getUuid());
2237                    if (indexA == -1 || indexB == -1 || indexA == indexB) {
2238                        return a.compareTo(b);
2239                    }
2240                    return indexA - indexB;
2241                });
2242            } else {
2243                Collections.sort(list);
2244            }
2245        } catch (IllegalArgumentException e) {
2246            //ignore
2247        }
2248    }
2249
2250    public void loadMoreMessages(final Conversation conversation, final long timestamp, final OnMoreMessagesLoaded callback) {
2251        if (XmppConnectionService.this.getMessageArchiveService().queryInProgress(conversation, callback)) {
2252            return;
2253        } else if (timestamp == 0) {
2254            return;
2255        }
2256        Log.d(Config.LOGTAG, "load more messages for " + conversation.getName() + " prior to " + MessageGenerator.getTimestamp(timestamp));
2257        final Runnable runnable = () -> {
2258            final Account account = conversation.getAccount();
2259            List<Message> messages = databaseBackend.getMessages(conversation, 50, timestamp);
2260            if (messages.size() > 0) {
2261                conversation.addAll(0, messages);
2262                callback.onMoreMessagesLoaded(messages.size(), conversation);
2263            } else if (conversation.hasMessagesLeftOnServer()
2264                    && account.isOnlineAndConnected()
2265                    && conversation.getLastClearHistory().getTimestamp() == 0) {
2266                final boolean mamAvailable;
2267                if (conversation.getMode() == Conversation.MODE_SINGLE) {
2268                    mamAvailable = account.getXmppConnection().getFeatures().mam() && !conversation.getContact().isBlocked();
2269                } else {
2270                    mamAvailable = conversation.getMucOptions().mamSupport();
2271                }
2272                if (mamAvailable) {
2273                    MessageArchiveService.Query query = getMessageArchiveService().query(conversation, new MamReference(0), timestamp, false);
2274                    if (query != null) {
2275                        query.setCallback(callback);
2276                        callback.informUser(R.string.fetching_history_from_server);
2277                    } else {
2278                        callback.informUser(R.string.not_fetching_history_retention_period);
2279                    }
2280
2281                }
2282            }
2283        };
2284        mDatabaseReaderExecutor.execute(runnable);
2285    }
2286
2287    public List<Account> getAccounts() {
2288        return this.accounts;
2289    }
2290
2291
2292    /**
2293     * This will find all conferences with the contact as member and also the conference that is the contact (that 'fake' contact is used to store the avatar)
2294     */
2295    public List<Conversation> findAllConferencesWith(Contact contact) {
2296        final ArrayList<Conversation> results = new ArrayList<>();
2297        for (final Conversation c : conversations) {
2298            if (c.getMode() != Conversation.MODE_MULTI) {
2299                continue;
2300            }
2301            final MucOptions mucOptions = c.getMucOptions();
2302            if (c.getJid().asBareJid().equals(contact.getJid().asBareJid()) || (mucOptions != null && mucOptions.isContactInRoom(contact))) {
2303                results.add(c);
2304            }
2305        }
2306        return results;
2307    }
2308
2309    public Conversation find(final Iterable<Conversation> haystack, final Contact contact) {
2310        for (final Conversation conversation : haystack) {
2311            if (conversation.getContact() == contact) {
2312                return conversation;
2313            }
2314        }
2315        return null;
2316    }
2317
2318    public Conversation find(final Iterable<Conversation> haystack, final Account account, final Jid jid) {
2319        if (jid == null) {
2320            return null;
2321        }
2322        for (final Conversation conversation : haystack) {
2323            if ((account == null || conversation.getAccount() == account)
2324                    && (conversation.getJid().asBareJid().equals(jid.asBareJid()))) {
2325                return conversation;
2326            }
2327        }
2328        return null;
2329    }
2330
2331    public boolean isConversationsListEmpty(final Conversation ignore) {
2332        synchronized (this.conversations) {
2333            final int size = this.conversations.size();
2334            return size == 0 || size == 1 && this.conversations.get(0) == ignore;
2335        }
2336    }
2337
2338    public boolean isConversationStillOpen(final Conversation conversation) {
2339        synchronized (this.conversations) {
2340            for (Conversation current : this.conversations) {
2341                if (current == conversation) {
2342                    return true;
2343                }
2344            }
2345        }
2346        return false;
2347    }
2348
2349    public Conversation findOrCreateConversation(Account account, Jid jid, boolean muc, final boolean async) {
2350        return this.findOrCreateConversation(account, jid, muc, false, async);
2351    }
2352
2353    public Conversation findOrCreateConversation(final Account account, final Jid jid, final boolean muc, final boolean joinAfterCreate, final boolean async) {
2354        return this.findOrCreateConversation(account, jid, muc, joinAfterCreate, null, async);
2355    }
2356
2357    public Conversation findOrCreateConversation(final Account account, final Jid jid, final boolean muc, final boolean joinAfterCreate, final MessageArchiveService.Query query, final boolean async) {
2358        synchronized (this.conversations) {
2359            Conversation conversation = find(account, jid);
2360            if (conversation != null) {
2361                return conversation;
2362            }
2363            conversation = databaseBackend.findConversation(account, jid);
2364            final boolean loadMessagesFromDb;
2365            if (conversation != null) {
2366                conversation.setStatus(Conversation.STATUS_AVAILABLE);
2367                conversation.setAccount(account);
2368                if (muc) {
2369                    conversation.setMode(Conversation.MODE_MULTI);
2370                    conversation.setContactJid(jid);
2371                } else {
2372                    conversation.setMode(Conversation.MODE_SINGLE);
2373                    conversation.setContactJid(jid.asBareJid());
2374                }
2375                databaseBackend.updateConversation(conversation);
2376                loadMessagesFromDb = conversation.messagesLoaded.compareAndSet(true, false);
2377            } else {
2378                String conversationName;
2379                Contact contact = account.getRoster().getContact(jid);
2380                if (contact != null) {
2381                    conversationName = contact.getDisplayName();
2382                } else {
2383                    conversationName = jid.getLocal();
2384                }
2385                if (muc) {
2386                    conversation = new Conversation(conversationName, account, jid,
2387                            Conversation.MODE_MULTI);
2388                } else {
2389                    conversation = new Conversation(conversationName, account, jid.asBareJid(),
2390                            Conversation.MODE_SINGLE);
2391                }
2392                this.databaseBackend.createConversation(conversation);
2393                loadMessagesFromDb = false;
2394            }
2395            final Conversation c = conversation;
2396            final Runnable runnable = () -> {
2397                if (loadMessagesFromDb) {
2398                    c.addAll(0, databaseBackend.getMessages(c, Config.PAGE_SIZE));
2399                    updateConversationUi();
2400                    c.messagesLoaded.set(true);
2401                }
2402                if (account.getXmppConnection() != null
2403                        && !c.getContact().isBlocked()
2404                        && account.getXmppConnection().getFeatures().mam()
2405                        && !muc) {
2406                    if (query == null) {
2407                        mMessageArchiveService.query(c);
2408                    } else {
2409                        if (query.getConversation() == null) {
2410                            mMessageArchiveService.query(c, query.getStart(), query.isCatchup());
2411                        }
2412                    }
2413                }
2414                if (joinAfterCreate) {
2415                    joinMuc(c);
2416                }
2417            };
2418            if (async) {
2419                mDatabaseReaderExecutor.execute(runnable);
2420            } else {
2421                runnable.run();
2422            }
2423            this.conversations.add(conversation);
2424            updateConversationUi();
2425            return conversation;
2426        }
2427    }
2428
2429    public void archiveConversation(Conversation conversation) {
2430        archiveConversation(conversation, true);
2431    }
2432
2433    private void archiveConversation(Conversation conversation, final boolean maySynchronizeWithBookmarks) {
2434        if (isOnboarding()) return;
2435
2436        getNotificationService().clear(conversation);
2437        conversation.setStatus(Conversation.STATUS_ARCHIVED);
2438        conversation.setNextMessage(null);
2439        synchronized (this.conversations) {
2440            getMessageArchiveService().kill(conversation);
2441            if (conversation.getMode() == Conversation.MODE_MULTI) {
2442                if (conversation.getAccount().getStatus() == Account.State.ONLINE) {
2443                    final Bookmark bookmark = conversation.getBookmark();
2444                    if (maySynchronizeWithBookmarks && bookmark != null && synchronizeWithBookmarks()) {
2445                        if (conversation.getMucOptions().getError() == MucOptions.Error.DESTROYED) {
2446                            Account account = bookmark.getAccount();
2447                            bookmark.setConversation(null);
2448                            deleteBookmark(account, bookmark);
2449                        } else if (bookmark.autojoin()) {
2450                            bookmark.setAutojoin(false);
2451                            createBookmark(bookmark.getAccount(), bookmark);
2452                        }
2453                    }
2454                }
2455                leaveMuc(conversation);
2456            } else {
2457                if (conversation.getContact().getOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST)) {
2458                    stopPresenceUpdatesTo(conversation.getContact());
2459                }
2460            }
2461            updateConversation(conversation);
2462            this.conversations.remove(conversation);
2463            updateConversationUi();
2464        }
2465    }
2466
2467    public void stopPresenceUpdatesTo(Contact contact) {
2468        Log.d(Config.LOGTAG, "Canceling presence request from " + contact.getJid().toString());
2469        sendPresencePacket(contact.getAccount(), mPresenceGenerator.stopPresenceUpdatesTo(contact));
2470        contact.resetOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST);
2471    }
2472
2473    public void createAccount(final Account account) {
2474        account.initAccountServices(this);
2475        databaseBackend.createAccount(account);
2476        this.accounts.add(account);
2477        this.reconnectAccountInBackground(account);
2478        updateAccountUi();
2479        syncEnabledAccountSetting();
2480        toggleForegroundService();
2481    }
2482
2483    private void syncEnabledAccountSetting() {
2484        final boolean hasEnabledAccounts = hasEnabledAccounts();
2485        getPreferences().edit().putBoolean(EventReceiver.SETTING_ENABLED_ACCOUNTS, hasEnabledAccounts).apply();
2486        toggleSetProfilePictureActivity(hasEnabledAccounts);
2487    }
2488
2489    private void toggleSetProfilePictureActivity(final boolean enabled) {
2490        try {
2491            final ComponentName name = new ComponentName(this, ChooseAccountForProfilePictureActivity.class);
2492            final int targetState = enabled ? PackageManager.COMPONENT_ENABLED_STATE_ENABLED : PackageManager.COMPONENT_ENABLED_STATE_DISABLED;
2493            getPackageManager().setComponentEnabledSetting(name, targetState, PackageManager.DONT_KILL_APP);
2494        } catch (IllegalStateException e) {
2495            Log.d(Config.LOGTAG, "unable to toggle profile picture activity");
2496        }
2497    }
2498
2499    public boolean reconfigurePushDistributor() {
2500        return this.unifiedPushBroker.reconfigurePushDistributor();
2501    }
2502
2503    public Optional<UnifiedPushBroker.Transport> renewUnifiedPushEndpoints() {
2504        return this.unifiedPushBroker.renewUnifiedPushEndpoints();
2505    }
2506
2507    private void provisionAccount(final String address, final String password) {
2508        final Jid jid = Jid.ofEscaped(address);
2509        final Account account = new Account(jid, password);
2510        account.setOption(Account.OPTION_DISABLED, true);
2511        Log.d(Config.LOGTAG, jid.asBareJid().toEscapedString() + ": provisioning account");
2512        createAccount(account);
2513    }
2514
2515    public void createAccountFromKey(final String alias, final OnAccountCreated callback) {
2516        new Thread(() -> {
2517            try {
2518                final X509Certificate[] chain = KeyChain.getCertificateChain(this, alias);
2519                final X509Certificate cert = chain != null && chain.length > 0 ? chain[0] : null;
2520                if (cert == null) {
2521                    callback.informUser(R.string.unable_to_parse_certificate);
2522                    return;
2523                }
2524                Pair<Jid, String> info = CryptoHelper.extractJidAndName(cert);
2525                if (info == null) {
2526                    callback.informUser(R.string.certificate_does_not_contain_jid);
2527                    return;
2528                }
2529                if (findAccountByJid(info.first) == null) {
2530                    final Account account = new Account(info.first, "");
2531                    account.setPrivateKeyAlias(alias);
2532                    account.setOption(Account.OPTION_DISABLED, true);
2533                    account.setOption(Account.OPTION_FIXED_USERNAME, true);
2534                    account.setDisplayName(info.second);
2535                    createAccount(account);
2536                    callback.onAccountCreated(account);
2537                    if (Config.X509_VERIFICATION) {
2538                        try {
2539                            getMemorizingTrustManager().getNonInteractive(account.getServer()).checkClientTrusted(chain, "RSA");
2540                        } catch (CertificateException e) {
2541                            callback.informUser(R.string.certificate_chain_is_not_trusted);
2542                        }
2543                    }
2544                } else {
2545                    callback.informUser(R.string.account_already_exists);
2546                }
2547            } catch (Exception e) {
2548                callback.informUser(R.string.unable_to_parse_certificate);
2549            }
2550        }).start();
2551
2552    }
2553
2554    public void updateKeyInAccount(final Account account, final String alias) {
2555        Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": update key in account " + alias);
2556        try {
2557            X509Certificate[] chain = KeyChain.getCertificateChain(XmppConnectionService.this, alias);
2558            Log.d(Config.LOGTAG, account.getJid().asBareJid() + " loaded certificate chain");
2559            Pair<Jid, String> info = CryptoHelper.extractJidAndName(chain[0]);
2560            if (info == null) {
2561                showErrorToastInUi(R.string.certificate_does_not_contain_jid);
2562                return;
2563            }
2564            if (account.getJid().asBareJid().equals(info.first)) {
2565                account.setPrivateKeyAlias(alias);
2566                account.setDisplayName(info.second);
2567                databaseBackend.updateAccount(account);
2568                if (Config.X509_VERIFICATION) {
2569                    try {
2570                        getMemorizingTrustManager().getNonInteractive().checkClientTrusted(chain, "RSA");
2571                    } catch (CertificateException e) {
2572                        showErrorToastInUi(R.string.certificate_chain_is_not_trusted);
2573                    }
2574                    account.getAxolotlService().regenerateKeys(true);
2575                }
2576            } else {
2577                showErrorToastInUi(R.string.jid_does_not_match_certificate);
2578            }
2579        } catch (Exception e) {
2580            e.printStackTrace();
2581        }
2582    }
2583
2584    public boolean updateAccount(final Account account) {
2585        if (databaseBackend.updateAccount(account)) {
2586            Integer color = account.getColorToSave();
2587            if (color == null) {
2588                getPreferences().edit().remove("account_color:" + account.getUuid()).commit();
2589            } else {
2590                getPreferences().edit().putInt("account_color:" + account.getUuid(), color.intValue()).commit();
2591            }
2592            account.setShowErrorNotification(true);
2593            this.statusListener.onStatusChanged(account);
2594            databaseBackend.updateAccount(account);
2595            reconnectAccountInBackground(account);
2596            updateAccountUi();
2597            getNotificationService().updateErrorNotification();
2598            toggleForegroundService();
2599            syncEnabledAccountSetting();
2600            mChannelDiscoveryService.cleanCache();
2601            return true;
2602        } else {
2603            return false;
2604        }
2605    }
2606
2607    public void updateAccountPasswordOnServer(final Account account, final String newPassword, final OnAccountPasswordChanged callback) {
2608        final IqPacket iq = getIqGenerator().generateSetPassword(account, newPassword);
2609        sendIqPacket(account, iq, (a, packet) -> {
2610            if (packet.getType() == IqPacket.TYPE.RESULT) {
2611                a.setPassword(newPassword);
2612                a.setOption(Account.OPTION_MAGIC_CREATE, false);
2613                databaseBackend.updateAccount(a);
2614                callback.onPasswordChangeSucceeded();
2615            } else {
2616                callback.onPasswordChangeFailed();
2617            }
2618        });
2619    }
2620
2621    public void deleteAccount(final Account account) {
2622        getPreferences().edit().remove("onboarding_continued").commit();
2623        final boolean connected = account.getStatus() == Account.State.ONLINE;
2624        synchronized (this.conversations) {
2625            if (connected) {
2626                account.getAxolotlService().deleteOmemoIdentity();
2627            }
2628            for (final Conversation conversation : conversations) {
2629                if (conversation.getAccount() == account) {
2630                    if (conversation.getMode() == Conversation.MODE_MULTI) {
2631                        if (connected) {
2632                            leaveMuc(conversation);
2633                        }
2634                    }
2635                    conversations.remove(conversation);
2636                    mNotificationService.clear(conversation);
2637                }
2638            }
2639            new Thread(() -> {
2640                for (final Contact contact : account.getRoster().getContacts()) {
2641                    contact.unregisterAsPhoneAccount(this);
2642                }
2643            }).start();
2644            if (account.getXmppConnection() != null) {
2645                new Thread(() -> disconnect(account, !connected)).start();
2646            }
2647            final Runnable runnable = () -> {
2648                if (!databaseBackend.deleteAccount(account)) {
2649                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": unable to delete account");
2650                }
2651            };
2652            mDatabaseWriterExecutor.execute(runnable);
2653            this.accounts.remove(account);
2654            this.mRosterSyncTaskManager.clear(account);
2655            updateAccountUi();
2656            mNotificationService.updateErrorNotification();
2657            syncEnabledAccountSetting();
2658            toggleForegroundService();
2659        }
2660    }
2661
2662    public void setOnConversationListChangedListener(OnConversationUpdate listener) {
2663        final boolean remainingListeners;
2664        synchronized (LISTENER_LOCK) {
2665            remainingListeners = checkListeners();
2666            if (!this.mOnConversationUpdates.add(listener)) {
2667                Log.w(Config.LOGTAG, listener.getClass().getName() + " is already registered as ConversationListChangedListener");
2668            }
2669            this.mNotificationService.setIsInForeground(this.mOnConversationUpdates.size() > 0);
2670        }
2671        if (remainingListeners) {
2672            switchToForeground();
2673        }
2674    }
2675
2676    public void removeOnConversationListChangedListener(OnConversationUpdate listener) {
2677        final boolean remainingListeners;
2678        synchronized (LISTENER_LOCK) {
2679            this.mOnConversationUpdates.remove(listener);
2680            this.mNotificationService.setIsInForeground(this.mOnConversationUpdates.size() > 0);
2681            remainingListeners = checkListeners();
2682        }
2683        if (remainingListeners) {
2684            switchToBackground();
2685        }
2686    }
2687
2688    public void setOnShowErrorToastListener(OnShowErrorToast listener) {
2689        final boolean remainingListeners;
2690        synchronized (LISTENER_LOCK) {
2691            remainingListeners = checkListeners();
2692            if (!this.mOnShowErrorToasts.add(listener)) {
2693                Log.w(Config.LOGTAG, listener.getClass().getName() + " is already registered as OnShowErrorToastListener");
2694            }
2695        }
2696        if (remainingListeners) {
2697            switchToForeground();
2698        }
2699    }
2700
2701    public void removeOnShowErrorToastListener(OnShowErrorToast onShowErrorToast) {
2702        final boolean remainingListeners;
2703        synchronized (LISTENER_LOCK) {
2704            this.mOnShowErrorToasts.remove(onShowErrorToast);
2705            remainingListeners = checkListeners();
2706        }
2707        if (remainingListeners) {
2708            switchToBackground();
2709        }
2710    }
2711
2712    public void setOnAccountListChangedListener(OnAccountUpdate listener) {
2713        final boolean remainingListeners;
2714        synchronized (LISTENER_LOCK) {
2715            remainingListeners = checkListeners();
2716            if (!this.mOnAccountUpdates.add(listener)) {
2717                Log.w(Config.LOGTAG, listener.getClass().getName() + " is already registered as OnAccountListChangedtListener");
2718            }
2719        }
2720        if (remainingListeners) {
2721            switchToForeground();
2722        }
2723    }
2724
2725    public void removeOnAccountListChangedListener(OnAccountUpdate listener) {
2726        final boolean remainingListeners;
2727        synchronized (LISTENER_LOCK) {
2728            this.mOnAccountUpdates.remove(listener);
2729            remainingListeners = checkListeners();
2730        }
2731        if (remainingListeners) {
2732            switchToBackground();
2733        }
2734    }
2735
2736    public void setOnCaptchaRequestedListener(OnCaptchaRequested listener) {
2737        final boolean remainingListeners;
2738        synchronized (LISTENER_LOCK) {
2739            remainingListeners = checkListeners();
2740            if (!this.mOnCaptchaRequested.add(listener)) {
2741                Log.w(Config.LOGTAG, listener.getClass().getName() + " is already registered as OnCaptchaRequestListener");
2742            }
2743        }
2744        if (remainingListeners) {
2745            switchToForeground();
2746        }
2747    }
2748
2749    public void removeOnCaptchaRequestedListener(OnCaptchaRequested listener) {
2750        final boolean remainingListeners;
2751        synchronized (LISTENER_LOCK) {
2752            this.mOnCaptchaRequested.remove(listener);
2753            remainingListeners = checkListeners();
2754        }
2755        if (remainingListeners) {
2756            switchToBackground();
2757        }
2758    }
2759
2760    public void setOnRosterUpdateListener(final OnRosterUpdate listener) {
2761        final boolean remainingListeners;
2762        synchronized (LISTENER_LOCK) {
2763            remainingListeners = checkListeners();
2764            if (!this.mOnRosterUpdates.add(listener)) {
2765                Log.w(Config.LOGTAG, listener.getClass().getName() + " is already registered as OnRosterUpdateListener");
2766            }
2767        }
2768        if (remainingListeners) {
2769            switchToForeground();
2770        }
2771    }
2772
2773    public void removeOnRosterUpdateListener(final OnRosterUpdate listener) {
2774        final boolean remainingListeners;
2775        synchronized (LISTENER_LOCK) {
2776            this.mOnRosterUpdates.remove(listener);
2777            remainingListeners = checkListeners();
2778        }
2779        if (remainingListeners) {
2780            switchToBackground();
2781        }
2782    }
2783
2784    public void setOnUpdateBlocklistListener(final OnUpdateBlocklist listener) {
2785        final boolean remainingListeners;
2786        synchronized (LISTENER_LOCK) {
2787            remainingListeners = checkListeners();
2788            if (!this.mOnUpdateBlocklist.add(listener)) {
2789                Log.w(Config.LOGTAG, listener.getClass().getName() + " is already registered as OnUpdateBlocklistListener");
2790            }
2791        }
2792        if (remainingListeners) {
2793            switchToForeground();
2794        }
2795    }
2796
2797    public void removeOnUpdateBlocklistListener(final OnUpdateBlocklist listener) {
2798        final boolean remainingListeners;
2799        synchronized (LISTENER_LOCK) {
2800            this.mOnUpdateBlocklist.remove(listener);
2801            remainingListeners = checkListeners();
2802        }
2803        if (remainingListeners) {
2804            switchToBackground();
2805        }
2806    }
2807
2808    public void setOnKeyStatusUpdatedListener(final OnKeyStatusUpdated listener) {
2809        final boolean remainingListeners;
2810        synchronized (LISTENER_LOCK) {
2811            remainingListeners = checkListeners();
2812            if (!this.mOnKeyStatusUpdated.add(listener)) {
2813                Log.w(Config.LOGTAG, listener.getClass().getName() + " is already registered as OnKeyStatusUpdateListener");
2814            }
2815        }
2816        if (remainingListeners) {
2817            switchToForeground();
2818        }
2819    }
2820
2821    public void removeOnNewKeysAvailableListener(final OnKeyStatusUpdated listener) {
2822        final boolean remainingListeners;
2823        synchronized (LISTENER_LOCK) {
2824            this.mOnKeyStatusUpdated.remove(listener);
2825            remainingListeners = checkListeners();
2826        }
2827        if (remainingListeners) {
2828            switchToBackground();
2829        }
2830    }
2831
2832    public void setOnRtpConnectionUpdateListener(final OnJingleRtpConnectionUpdate listener) {
2833        final boolean remainingListeners;
2834        synchronized (LISTENER_LOCK) {
2835            remainingListeners = checkListeners();
2836            if (!this.onJingleRtpConnectionUpdate.add(listener)) {
2837                Log.w(Config.LOGTAG, listener.getClass().getName() + " is already registered as OnJingleRtpConnectionUpdate");
2838            }
2839        }
2840        if (remainingListeners) {
2841            switchToForeground();
2842        }
2843    }
2844
2845    public void removeRtpConnectionUpdateListener(final OnJingleRtpConnectionUpdate listener) {
2846        final boolean remainingListeners;
2847        synchronized (LISTENER_LOCK) {
2848            this.onJingleRtpConnectionUpdate.remove(listener);
2849            remainingListeners = checkListeners();
2850        }
2851        if (remainingListeners) {
2852            switchToBackground();
2853        }
2854    }
2855
2856    public void setOnMucRosterUpdateListener(OnMucRosterUpdate listener) {
2857        final boolean remainingListeners;
2858        synchronized (LISTENER_LOCK) {
2859            remainingListeners = checkListeners();
2860            if (!this.mOnMucRosterUpdate.add(listener)) {
2861                Log.w(Config.LOGTAG, listener.getClass().getName() + " is already registered as OnMucRosterListener");
2862            }
2863        }
2864        if (remainingListeners) {
2865            switchToForeground();
2866        }
2867    }
2868
2869    public void removeOnMucRosterUpdateListener(final OnMucRosterUpdate listener) {
2870        final boolean remainingListeners;
2871        synchronized (LISTENER_LOCK) {
2872            this.mOnMucRosterUpdate.remove(listener);
2873            remainingListeners = checkListeners();
2874        }
2875        if (remainingListeners) {
2876            switchToBackground();
2877        }
2878    }
2879
2880    public boolean checkListeners() {
2881        return (this.mOnAccountUpdates.size() == 0
2882                && this.mOnConversationUpdates.size() == 0
2883                && this.mOnRosterUpdates.size() == 0
2884                && this.mOnCaptchaRequested.size() == 0
2885                && this.mOnMucRosterUpdate.size() == 0
2886                && this.mOnUpdateBlocklist.size() == 0
2887                && this.mOnShowErrorToasts.size() == 0
2888                && this.onJingleRtpConnectionUpdate.size() == 0
2889                && this.mOnKeyStatusUpdated.size() == 0);
2890    }
2891
2892    private void switchToForeground() {
2893        final boolean broadcastLastActivity = broadcastLastActivity();
2894        for (Conversation conversation : getConversations()) {
2895            if (conversation.getMode() == Conversation.MODE_MULTI) {
2896                conversation.getMucOptions().resetChatState();
2897            } else {
2898                conversation.setIncomingChatState(Config.DEFAULT_CHAT_STATE);
2899            }
2900        }
2901        for (Account account : getAccounts()) {
2902            if (account.getStatus() == Account.State.ONLINE) {
2903                account.deactivateGracePeriod();
2904                final XmppConnection connection = account.getXmppConnection();
2905                if (connection != null) {
2906                    if (connection.getFeatures().csi()) {
2907                        connection.sendActive();
2908                    }
2909                    if (broadcastLastActivity) {
2910                        sendPresence(account, false); //send new presence but don't include idle because we are not
2911                    }
2912                }
2913            }
2914        }
2915        Log.d(Config.LOGTAG, "app switched into foreground");
2916    }
2917
2918    private void switchToBackground() {
2919        final boolean broadcastLastActivity = broadcastLastActivity();
2920        if (broadcastLastActivity) {
2921            mLastActivity = System.currentTimeMillis();
2922            final SharedPreferences.Editor editor = getPreferences().edit();
2923            editor.putLong(SETTING_LAST_ACTIVITY_TS, mLastActivity);
2924            editor.apply();
2925        }
2926        for (Account account : getAccounts()) {
2927            if (account.getStatus() == Account.State.ONLINE) {
2928                XmppConnection connection = account.getXmppConnection();
2929                if (connection != null) {
2930                    if (broadcastLastActivity) {
2931                        sendPresence(account, true);
2932                    }
2933                    if (connection.getFeatures().csi()) {
2934                        connection.sendInactive();
2935                    }
2936                }
2937            }
2938        }
2939        this.mNotificationService.setIsInForeground(false);
2940        Log.d(Config.LOGTAG, "app switched into background");
2941    }
2942
2943    private void connectMultiModeConversations(Account account) {
2944        List<Conversation> conversations = getConversations();
2945        for (Conversation conversation : conversations) {
2946            if (conversation.getMode() == Conversation.MODE_MULTI && conversation.getAccount() == account) {
2947                joinMuc(conversation);
2948            }
2949        }
2950    }
2951
2952    public void mucSelfPingAndRejoin(final Conversation conversation) {
2953        final Account account = conversation.getAccount();
2954        synchronized (account.inProgressConferenceJoins) {
2955            if (account.inProgressConferenceJoins.contains(conversation)) {
2956                Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": canceling muc self ping because join is already under way");
2957                return;
2958            }
2959        }
2960        synchronized (account.inProgressConferencePings) {
2961            if (!account.inProgressConferencePings.add(conversation)) {
2962                Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": canceling muc self ping because ping is already under way");
2963                return;
2964            }
2965        }
2966        final Jid self = conversation.getMucOptions().getSelf().getFullJid();
2967        final IqPacket ping = new IqPacket(IqPacket.TYPE.GET);
2968        ping.setTo(self);
2969        ping.addChild("ping", Namespace.PING);
2970        sendIqPacket(conversation.getAccount(), ping, (a, response) -> {
2971            if (response.getType() == IqPacket.TYPE.ERROR) {
2972                Element error = response.findChild("error");
2973                if (error == null || error.hasChild("service-unavailable") || error.hasChild("feature-not-implemented") || error.hasChild("item-not-found")) {
2974                    Log.d(Config.LOGTAG, a.getJid().asBareJid() + ": ping to " + self + " came back as ignorable error");
2975                } else {
2976                    Log.d(Config.LOGTAG, a.getJid().asBareJid() + ": ping to " + self + " failed. attempting rejoin");
2977                    joinMuc(conversation);
2978                }
2979            } else if (response.getType() == IqPacket.TYPE.RESULT) {
2980                Log.d(Config.LOGTAG, a.getJid().asBareJid() + ": ping to " + self + " came back fine");
2981            }
2982            synchronized (account.inProgressConferencePings) {
2983                account.inProgressConferencePings.remove(conversation);
2984            }
2985        });
2986    }
2987    public void joinMuc(Conversation conversation) {
2988        joinMuc(conversation, null, false);
2989    }
2990
2991    public void joinMuc(Conversation conversation, boolean followedInvite) {
2992        joinMuc(conversation, null, followedInvite);
2993    }
2994
2995    private void joinMuc(Conversation conversation, final OnConferenceJoined onConferenceJoined) {
2996        joinMuc(conversation, onConferenceJoined, false);
2997    }
2998
2999    private void joinMuc(Conversation conversation, final OnConferenceJoined onConferenceJoined, final boolean followedInvite) {
3000        final Account account = conversation.getAccount();
3001        synchronized (account.pendingConferenceJoins) {
3002            account.pendingConferenceJoins.remove(conversation);
3003        }
3004        synchronized (account.pendingConferenceLeaves) {
3005            account.pendingConferenceLeaves.remove(conversation);
3006        }
3007        if (account.getStatus() == Account.State.ONLINE) {
3008            synchronized (account.inProgressConferenceJoins) {
3009                account.inProgressConferenceJoins.add(conversation);
3010            }
3011            if (Config.MUC_LEAVE_BEFORE_JOIN) {
3012                sendPresencePacket(account, mPresenceGenerator.leave(conversation.getMucOptions()));
3013            }
3014            conversation.resetMucOptions();
3015            if (onConferenceJoined != null) {
3016                conversation.getMucOptions().flagNoAutoPushConfiguration();
3017            }
3018            conversation.setHasMessagesLeftOnServer(false);
3019            fetchConferenceConfiguration(conversation, new OnConferenceConfigurationFetched() {
3020
3021                private void join(Conversation conversation) {
3022                    Account account = conversation.getAccount();
3023                    final MucOptions mucOptions = conversation.getMucOptions();
3024
3025                    if (mucOptions.nonanonymous() && !mucOptions.membersOnly() && !conversation.getBooleanAttribute("accept_non_anonymous", false)) {
3026                        synchronized (account.inProgressConferenceJoins) {
3027                            account.inProgressConferenceJoins.remove(conversation);
3028                        }
3029                        mucOptions.setError(MucOptions.Error.NON_ANONYMOUS);
3030                        updateConversationUi();
3031                        if (onConferenceJoined != null) {
3032                            onConferenceJoined.onConferenceJoined(conversation);
3033                        }
3034                        return;
3035                    }
3036
3037                    final Jid joinJid = mucOptions.getSelf().getFullJid();
3038                    Log.d(Config.LOGTAG, account.getJid().asBareJid().toString() + ": joining conversation " + joinJid.toString());
3039                    PresencePacket packet = mPresenceGenerator.selfPresence(account, Presence.Status.ONLINE, mucOptions.nonanonymous() || onConferenceJoined != null);
3040                    packet.setTo(joinJid);
3041                    Element x = packet.addChild("x", "http://jabber.org/protocol/muc");
3042                    if (conversation.getMucOptions().getPassword() != null) {
3043                        x.addChild("password").setContent(mucOptions.getPassword());
3044                    }
3045
3046                    if (mucOptions.mamSupport()) {
3047                        // Use MAM instead of the limited muc history to get history
3048                        x.addChild("history").setAttribute("maxchars", "0");
3049                    } else {
3050                        // Fallback to muc history
3051                        x.addChild("history").setAttribute("since", PresenceGenerator.getTimestamp(conversation.getLastMessageTransmitted().getTimestamp()));
3052                    }
3053                    sendPresencePacket(account, packet);
3054                    if (onConferenceJoined != null) {
3055                        onConferenceJoined.onConferenceJoined(conversation);
3056                    }
3057                    if (!joinJid.equals(conversation.getJid())) {
3058                        conversation.setContactJid(joinJid);
3059                        databaseBackend.updateConversation(conversation);
3060                    }
3061
3062                    if (mucOptions.mamSupport()) {
3063                        getMessageArchiveService().catchupMUC(conversation);
3064                    }
3065                    if (mucOptions.isPrivateAndNonAnonymous()) {
3066                        fetchConferenceMembers(conversation);
3067
3068                        if (followedInvite) {
3069                            final Bookmark bookmark = conversation.getBookmark();
3070                            if (bookmark != null) {
3071                                if (!bookmark.autojoin()) {
3072                                    bookmark.setAutojoin(true);
3073                                    createBookmark(account, bookmark);
3074                                }
3075                            } else {
3076                                saveConversationAsBookmark(conversation, null);
3077                            }
3078                        }
3079                    }
3080                    synchronized (account.inProgressConferenceJoins) {
3081                        account.inProgressConferenceJoins.remove(conversation);
3082                        sendUnsentMessages(conversation);
3083                    }
3084                }
3085
3086                @Override
3087                public void onConferenceConfigurationFetched(Conversation conversation) {
3088                    if (conversation.getStatus() == Conversation.STATUS_ARCHIVED) {
3089                        Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": conversation (" + conversation.getJid() + ") got archived before IQ result");
3090                        return;
3091                    }
3092                    join(conversation);
3093                }
3094
3095                @Override
3096                public void onFetchFailed(final Conversation conversation, final String errorCondition) {
3097                    if (conversation.getStatus() == Conversation.STATUS_ARCHIVED) {
3098                        Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": conversation (" + conversation.getJid() + ") got archived before IQ result");
3099                        return;
3100                    }
3101                    if ("remote-server-not-found".equals(errorCondition)) {
3102                        synchronized (account.inProgressConferenceJoins) {
3103                            account.inProgressConferenceJoins.remove(conversation);
3104                        }
3105                        conversation.getMucOptions().setError(MucOptions.Error.SERVER_NOT_FOUND);
3106                        updateConversationUi();
3107                    } else {
3108                        join(conversation);
3109                        fetchConferenceConfiguration(conversation);
3110                    }
3111                }
3112            });
3113            updateConversationUi();
3114        } else {
3115            synchronized (account.pendingConferenceJoins) {
3116                account.pendingConferenceJoins.add(conversation);
3117            }
3118            conversation.resetMucOptions();
3119            conversation.setHasMessagesLeftOnServer(false);
3120            updateConversationUi();
3121        }
3122    }
3123
3124    private void fetchConferenceMembers(final Conversation conversation) {
3125        final Account account = conversation.getAccount();
3126        final AxolotlService axolotlService = account.getAxolotlService();
3127        final String[] affiliations = {"member", "admin", "owner"};
3128        OnIqPacketReceived callback = new OnIqPacketReceived() {
3129
3130            private int i = 0;
3131            private boolean success = true;
3132
3133            @Override
3134            public void onIqPacketReceived(Account account, IqPacket packet) {
3135                final boolean omemoEnabled = conversation.getNextEncryption() == Message.ENCRYPTION_AXOLOTL;
3136                Element query = packet.query("http://jabber.org/protocol/muc#admin");
3137                if (packet.getType() == IqPacket.TYPE.RESULT && query != null) {
3138                    for (Element child : query.getChildren()) {
3139                        if ("item".equals(child.getName())) {
3140                            MucOptions.User user = AbstractParser.parseItem(conversation, child);
3141                            if (!user.realJidMatchesAccount()) {
3142                                boolean isNew = conversation.getMucOptions().updateUser(user);
3143                                Contact contact = user.getContact();
3144                                if (omemoEnabled
3145                                        && isNew
3146                                        && user.getRealJid() != null
3147                                        && (contact == null || !contact.mutualPresenceSubscription())
3148                                        && axolotlService.hasEmptyDeviceList(user.getRealJid())) {
3149                                    axolotlService.fetchDeviceIds(user.getRealJid());
3150                                }
3151                            }
3152                        }
3153                    }
3154                } else {
3155                    success = false;
3156                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": could not request affiliation " + affiliations[i] + " in " + conversation.getJid().asBareJid());
3157                }
3158                ++i;
3159                if (i >= affiliations.length) {
3160                    List<Jid> members = conversation.getMucOptions().getMembers(true);
3161                    if (success) {
3162                        List<Jid> cryptoTargets = conversation.getAcceptedCryptoTargets();
3163                        boolean changed = false;
3164                        for (ListIterator<Jid> iterator = cryptoTargets.listIterator(); iterator.hasNext(); ) {
3165                            Jid jid = iterator.next();
3166                            if (!members.contains(jid) && !members.contains(jid.getDomain())) {
3167                                iterator.remove();
3168                                Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": removed " + jid + " from crypto targets of " + conversation.getName());
3169                                changed = true;
3170                            }
3171                        }
3172                        if (changed) {
3173                            conversation.setAcceptedCryptoTargets(cryptoTargets);
3174                            updateConversation(conversation);
3175                        }
3176                    }
3177                    getAvatarService().clear(conversation);
3178                    updateMucRosterUi();
3179                    updateConversationUi();
3180                }
3181            }
3182        };
3183        for (String affiliation : affiliations) {
3184            sendIqPacket(account, mIqGenerator.queryAffiliation(conversation, affiliation), callback);
3185        }
3186        Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": fetching members for " + conversation.getName());
3187    }
3188
3189    public void providePasswordForMuc(Conversation conversation, String password) {
3190        if (conversation.getMode() == Conversation.MODE_MULTI) {
3191            conversation.getMucOptions().setPassword(password);
3192            if (conversation.getBookmark() != null) {
3193                final Bookmark bookmark = conversation.getBookmark();
3194                if (synchronizeWithBookmarks()) {
3195                    bookmark.setAutojoin(true);
3196                }
3197                createBookmark(conversation.getAccount(), bookmark);
3198            }
3199            updateConversation(conversation);
3200            joinMuc(conversation);
3201        }
3202    }
3203
3204    public void deleteAvatar(final Account account) {
3205        final AtomicBoolean executed = new AtomicBoolean(false);
3206        final Runnable onDeleted =
3207                () -> {
3208                    if (executed.compareAndSet(false, true)) {
3209                        account.setAvatar(null);
3210                        databaseBackend.updateAccount(account);
3211                        getAvatarService().clear(account);
3212                        updateAccountUi();
3213                    }
3214                };
3215        deleteVcardAvatar(account, onDeleted);
3216        deletePepNode(account, Namespace.AVATAR_DATA);
3217        deletePepNode(account, Namespace.AVATAR_METADATA, onDeleted);
3218    }
3219
3220    public void deletePepNode(final Account account, final String node) {
3221        deletePepNode(account, node, null);
3222    }
3223
3224    private void deletePepNode(final Account account, final String node, final Runnable runnable) {
3225        final IqPacket request = mIqGenerator.deleteNode(node);
3226        sendIqPacket(account, request, (a, packet) -> {
3227            if (packet.getType() == IqPacket.TYPE.RESULT) {
3228                Log.d(Config.LOGTAG,a.getJid().asBareJid()+": successfully deleted pep node "+node);
3229                if (runnable != null) {
3230                    runnable.run();
3231                }
3232            } else {
3233                Log.d(Config.LOGTAG,a.getJid().asBareJid()+": failed to delete "+ packet);
3234            }
3235        });
3236    }
3237
3238    private void deleteVcardAvatar(final Account account, @NonNull final Runnable runnable) {
3239        final IqPacket retrieveVcard = mIqGenerator.retrieveVcardAvatar(account.getJid().asBareJid());
3240        sendIqPacket(account, retrieveVcard, (a, response) -> {
3241            if (response.getType() != IqPacket.TYPE.RESULT) {
3242                Log.d(Config.LOGTAG,a.getJid().asBareJid()+": no vCard set. nothing to do");
3243                return;
3244            }
3245            final Element vcard = response.findChild("vCard", "vcard-temp");
3246            if (vcard == null) {
3247                Log.d(Config.LOGTAG,a.getJid().asBareJid()+": no vCard set. nothing to do");
3248                return;
3249            }
3250            Element photo = vcard.findChild("PHOTO");
3251            if (photo == null) {
3252                photo = vcard.addChild("PHOTO");
3253            }
3254            photo.clearChildren();
3255            IqPacket publication = new IqPacket(IqPacket.TYPE.SET);
3256            publication.setTo(a.getJid().asBareJid());
3257            publication.addChild(vcard);
3258            sendIqPacket(account, publication, (a1, publicationResponse) -> {
3259                if (publicationResponse.getType() == IqPacket.TYPE.RESULT) {
3260                    Log.d(Config.LOGTAG,a1.getJid().asBareJid()+": successfully deleted vcard avatar");
3261                    runnable.run();
3262                } else {
3263                    Log.d(Config.LOGTAG, "failed to publish vcard " + publicationResponse.getErrorCondition());
3264                }
3265            });
3266        });
3267    }
3268
3269    private boolean hasEnabledAccounts() {
3270        if (this.accounts == null) {
3271            return false;
3272        }
3273        for (Account account : this.accounts) {
3274            if (account.isEnabled()) {
3275                return true;
3276            }
3277        }
3278        return false;
3279    }
3280
3281
3282    public void getAttachments(final Conversation conversation, int limit, final OnMediaLoaded onMediaLoaded) {
3283        getAttachments(conversation.getAccount(), conversation.getJid().asBareJid(), limit, onMediaLoaded);
3284    }
3285
3286    public void getAttachments(final Account account, final Jid jid, final int limit, final OnMediaLoaded onMediaLoaded) {
3287        getAttachments(account.getUuid(), jid.asBareJid(), limit, onMediaLoaded);
3288    }
3289
3290
3291    public void getAttachments(final String account, final Jid jid, final int limit, final OnMediaLoaded onMediaLoaded) {
3292        new Thread(() -> onMediaLoaded.onMediaLoaded(fileBackend.convertToAttachments(databaseBackend.getRelativeFilePaths(account, jid, limit)))).start();
3293    }
3294
3295    public void persistSelfNick(MucOptions.User self) {
3296        final Conversation conversation = self.getConversation();
3297        final boolean tookProposedNickFromBookmark = conversation.getMucOptions().isTookProposedNickFromBookmark();
3298        Jid full = self.getFullJid();
3299        if (!full.equals(conversation.getJid())) {
3300            Log.d(Config.LOGTAG, "nick changed. updating");
3301            conversation.setContactJid(full);
3302            databaseBackend.updateConversation(conversation);
3303        }
3304
3305        final Bookmark bookmark = conversation.getBookmark();
3306        final String bookmarkedNick = bookmark == null ? null : bookmark.getNick();
3307        if (bookmark != null && (tookProposedNickFromBookmark || TextUtils.isEmpty(bookmarkedNick)) && !full.getResource().equals(bookmarkedNick)) {
3308            final Account account = conversation.getAccount();
3309            final String defaultNick = MucOptions.defaultNick(account);
3310            if (TextUtils.isEmpty(bookmarkedNick) && full.getResource().equals(defaultNick)) {
3311                Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": do not overwrite empty bookmark nick with default nick for " + conversation.getJid().asBareJid());
3312                return;
3313            }
3314            Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": persist nick '" + full.getResource() + "' into bookmark for " + conversation.getJid().asBareJid());
3315            bookmark.setNick(full.getResource());
3316            createBookmark(bookmark.getAccount(), bookmark);
3317        }
3318    }
3319
3320    public boolean renameInMuc(final Conversation conversation, final String nick, final UiCallback<Conversation> callback) {
3321        final MucOptions options = conversation.getMucOptions();
3322        final Jid joinJid = options.createJoinJid(nick);
3323        if (joinJid == null) {
3324            return false;
3325        }
3326        if (options.online()) {
3327            Account account = conversation.getAccount();
3328            options.setOnRenameListener(new OnRenameListener() {
3329
3330                @Override
3331                public void onSuccess() {
3332                    callback.success(conversation);
3333                }
3334
3335                @Override
3336                public void onFailure() {
3337                    callback.error(R.string.nick_in_use, conversation);
3338                }
3339            });
3340
3341            final PresencePacket packet = mPresenceGenerator.selfPresence(account, Presence.Status.ONLINE, options.nonanonymous());
3342            packet.setTo(joinJid);
3343            sendPresencePacket(account, packet);
3344        } else {
3345            conversation.setContactJid(joinJid);
3346            databaseBackend.updateConversation(conversation);
3347            if (conversation.getAccount().getStatus() == Account.State.ONLINE) {
3348                Bookmark bookmark = conversation.getBookmark();
3349                if (bookmark != null) {
3350                    bookmark.setNick(nick);
3351                    createBookmark(bookmark.getAccount(), bookmark);
3352                }
3353                joinMuc(conversation);
3354            }
3355        }
3356        return true;
3357    }
3358
3359    public void leaveMuc(Conversation conversation) {
3360        leaveMuc(conversation, false);
3361    }
3362
3363    private void leaveMuc(Conversation conversation, boolean now) {
3364        final Account account = conversation.getAccount();
3365        synchronized (account.pendingConferenceJoins) {
3366            account.pendingConferenceJoins.remove(conversation);
3367        }
3368        synchronized (account.pendingConferenceLeaves) {
3369            account.pendingConferenceLeaves.remove(conversation);
3370        }
3371        if (account.getStatus() == Account.State.ONLINE || now) {
3372            sendPresencePacket(conversation.getAccount(), mPresenceGenerator.leave(conversation.getMucOptions()));
3373            conversation.getMucOptions().setOffline();
3374            Bookmark bookmark = conversation.getBookmark();
3375            if (bookmark != null) {
3376                bookmark.setConversation(null);
3377            }
3378            Log.d(Config.LOGTAG, conversation.getAccount().getJid().asBareJid() + ": leaving muc " + conversation.getJid());
3379        } else {
3380            synchronized (account.pendingConferenceLeaves) {
3381                account.pendingConferenceLeaves.add(conversation);
3382            }
3383        }
3384    }
3385
3386    public String findConferenceServer(final Account account) {
3387        String server;
3388        if (account.getXmppConnection() != null) {
3389            server = account.getXmppConnection().getMucServer();
3390            if (server != null) {
3391                return server;
3392            }
3393        }
3394        for (Account other : getAccounts()) {
3395            if (other != account && other.getXmppConnection() != null) {
3396                server = other.getXmppConnection().getMucServer();
3397                if (server != null) {
3398                    return server;
3399                }
3400            }
3401        }
3402        return null;
3403    }
3404
3405
3406    public void createPublicChannel(final Account account, final String name, final Jid address, final UiCallback<Conversation> callback) {
3407        joinMuc(findOrCreateConversation(account, address, true, false, true), conversation -> {
3408            final Bundle configuration = IqGenerator.defaultChannelConfiguration();
3409            if (!TextUtils.isEmpty(name)) {
3410                configuration.putString("muc#roomconfig_roomname", name);
3411            }
3412            pushConferenceConfiguration(conversation, configuration, new OnConfigurationPushed() {
3413                @Override
3414                public void onPushSucceeded() {
3415                    saveConversationAsBookmark(conversation, name);
3416                    callback.success(conversation);
3417                }
3418
3419                @Override
3420                public void onPushFailed() {
3421                    if (conversation.getMucOptions().getSelf().getAffiliation().ranks(MucOptions.Affiliation.OWNER)) {
3422                        callback.error(R.string.unable_to_set_channel_configuration, conversation);
3423                    } else {
3424                        callback.error(R.string.joined_an_existing_channel, conversation);
3425                    }
3426                }
3427            });
3428        });
3429    }
3430
3431    public boolean createAdhocConference(final Account account,
3432                                         final String name,
3433                                         final Iterable<Jid> jids,
3434                                         final UiCallback<Conversation> callback) {
3435        Log.d(Config.LOGTAG, account.getJid().asBareJid().toString() + ": creating adhoc conference with " + jids.toString());
3436        if (account.getStatus() == Account.State.ONLINE) {
3437            try {
3438                String server = findConferenceServer(account);
3439                if (server == null) {
3440                    if (callback != null) {
3441                        callback.error(R.string.no_conference_server_found, null);
3442                    }
3443                    return false;
3444                }
3445                final Jid jid = Jid.of(CryptoHelper.pronounceable(), server, null);
3446                final Conversation conversation = findOrCreateConversation(account, jid, true, false, true);
3447                joinMuc(conversation, new OnConferenceJoined() {
3448                    @Override
3449                    public void onConferenceJoined(final Conversation conversation) {
3450                        final Bundle configuration = IqGenerator.defaultGroupChatConfiguration();
3451                        if (!TextUtils.isEmpty(name)) {
3452                            configuration.putString("muc#roomconfig_roomname", name);
3453                        }
3454                        pushConferenceConfiguration(conversation, configuration, new OnConfigurationPushed() {
3455                            @Override
3456                            public void onPushSucceeded() {
3457                                for (Jid invite : jids) {
3458                                    invite(conversation, invite);
3459                                }
3460                                for (String resource : account.getSelfContact().getPresences().toResourceArray()) {
3461                                    if (resource == null || "".equals(resource)) continue;
3462                                    Jid other = account.getJid().withResource(resource);
3463                                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": sending direct invite to " + other);
3464                                    directInvite(conversation, other);
3465                                }
3466                                saveConversationAsBookmark(conversation, name);
3467                                if (callback != null) {
3468                                    callback.success(conversation);
3469                                }
3470                            }
3471
3472                            @Override
3473                            public void onPushFailed() {
3474                                archiveConversation(conversation);
3475                                if (callback != null) {
3476                                    callback.error(R.string.conference_creation_failed, conversation);
3477                                }
3478                            }
3479                        });
3480                    }
3481                });
3482                return true;
3483            } catch (IllegalArgumentException e) {
3484                if (callback != null) {
3485                    callback.error(R.string.conference_creation_failed, null);
3486                }
3487                return false;
3488            }
3489        } else {
3490            if (callback != null) {
3491                callback.error(R.string.not_connected_try_again, null);
3492            }
3493            return false;
3494        }
3495    }
3496
3497    public void checkIfMuc(final Account account, final Jid jid, Consumer<Boolean> cb) {
3498        if (jid.isDomainJid()) {
3499            // Spec basically says MUC needs to have a node
3500            // And also specifies that MUC and MUC service should have the same identity...
3501            cb.accept(false);
3502            return;
3503        }
3504
3505        IqPacket request = mIqGenerator.queryDiscoInfo(jid.asBareJid());
3506        sendIqPacket(account, request, (acct, reply) -> {
3507            ServiceDiscoveryResult result = new ServiceDiscoveryResult(reply);
3508            cb.accept(
3509                result.getFeatures().contains("http://jabber.org/protocol/muc") &&
3510                result.hasIdentity("conference", null)
3511            );
3512        });
3513    }
3514
3515    public void fetchConferenceConfiguration(final Conversation conversation) {
3516        fetchConferenceConfiguration(conversation, null);
3517    }
3518
3519    public void fetchConferenceConfiguration(final Conversation conversation, final OnConferenceConfigurationFetched callback) {
3520        IqPacket request = mIqGenerator.queryDiscoInfo(conversation.getJid().asBareJid());
3521        sendIqPacket(conversation.getAccount(), request, new OnIqPacketReceived() {
3522            @Override
3523            public void onIqPacketReceived(Account account, IqPacket packet) {
3524                if (packet.getType() == IqPacket.TYPE.RESULT) {
3525                    final MucOptions mucOptions = conversation.getMucOptions();
3526                    final Bookmark bookmark = conversation.getBookmark();
3527                    final boolean sameBefore = StringUtils.equals(bookmark == null ? null : bookmark.getBookmarkName(), mucOptions.getName());
3528
3529                    if (mucOptions.updateConfiguration(new ServiceDiscoveryResult(packet))) {
3530                        Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": muc configuration changed for " + conversation.getJid().asBareJid());
3531                        updateConversation(conversation);
3532                    }
3533
3534                    if (bookmark != null && (sameBefore || bookmark.getBookmarkName() == null)) {
3535                        if (bookmark.setBookmarkName(StringUtils.nullOnEmpty(mucOptions.getName()))) {
3536                            createBookmark(account, bookmark);
3537                        }
3538                    }
3539
3540
3541                    if (callback != null) {
3542                        callback.onConferenceConfigurationFetched(conversation);
3543                    }
3544
3545
3546                    updateConversationUi();
3547                } else if (packet.getType() == IqPacket.TYPE.TIMEOUT) {
3548                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": received timeout waiting for conference configuration fetch");
3549                } else {
3550                    if (callback != null) {
3551                        callback.onFetchFailed(conversation, packet.getErrorCondition());
3552                    }
3553                }
3554            }
3555        });
3556    }
3557
3558    public void pushNodeConfiguration(Account account, final String node, final Bundle options, final OnConfigurationPushed callback) {
3559        pushNodeConfiguration(account, account.getJid().asBareJid(), node, options, callback);
3560    }
3561
3562    public void pushNodeConfiguration(Account account, final Jid jid, final String node, final Bundle options, final OnConfigurationPushed callback) {
3563        Log.d(Config.LOGTAG, "pushing node configuration");
3564        sendIqPacket(account, mIqGenerator.requestPubsubConfiguration(jid, node), new OnIqPacketReceived() {
3565            @Override
3566            public void onIqPacketReceived(Account account, IqPacket packet) {
3567                if (packet.getType() == IqPacket.TYPE.RESULT) {
3568                    Element pubsub = packet.findChild("pubsub", "http://jabber.org/protocol/pubsub#owner");
3569                    Element configuration = pubsub == null ? null : pubsub.findChild("configure");
3570                    Element x = configuration == null ? null : configuration.findChild("x", Namespace.DATA);
3571                    if (x != null) {
3572                        Data data = Data.parse(x);
3573                        data.submit(options);
3574                        sendIqPacket(account, mIqGenerator.publishPubsubConfiguration(jid, node, data), new OnIqPacketReceived() {
3575                            @Override
3576                            public void onIqPacketReceived(Account account, IqPacket packet) {
3577                                if (packet.getType() == IqPacket.TYPE.RESULT && callback != null) {
3578                                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": successfully changed node configuration for node " + node);
3579                                    callback.onPushSucceeded();
3580                                } else if (packet.getType() == IqPacket.TYPE.ERROR && callback != null) {
3581                                    callback.onPushFailed();
3582                                }
3583                            }
3584                        });
3585                    } else if (callback != null) {
3586                        callback.onPushFailed();
3587                    }
3588                } else if (packet.getType() == IqPacket.TYPE.ERROR && callback != null) {
3589                    callback.onPushFailed();
3590                }
3591            }
3592        });
3593    }
3594
3595    public void pushConferenceConfiguration(final Conversation conversation, final Bundle options, final OnConfigurationPushed callback) {
3596        if (options.getString("muc#roomconfig_whois", "moderators").equals("anyone")) {
3597            conversation.setAttribute("accept_non_anonymous", true);
3598            updateConversation(conversation);
3599        }
3600        if (options.containsKey("muc#roomconfig_moderatedroom")) {
3601            final boolean moderated = "1".equals(options.getString("muc#roomconfig_moderatedroom"));
3602            options.putString("members_by_default", moderated ? "0" : "1");
3603        }
3604        final IqPacket request = new IqPacket(IqPacket.TYPE.GET);
3605        request.setTo(conversation.getJid().asBareJid());
3606        request.query("http://jabber.org/protocol/muc#owner");
3607        sendIqPacket(conversation.getAccount(), request, new OnIqPacketReceived() {
3608            @Override
3609            public void onIqPacketReceived(Account account, IqPacket packet) {
3610                if (packet.getType() == IqPacket.TYPE.RESULT) {
3611                    final Data data = Data.parse(packet.query().findChild("x", Namespace.DATA));
3612                    data.submit(options);
3613                    final IqPacket set = new IqPacket(IqPacket.TYPE.SET);
3614                    set.setTo(conversation.getJid().asBareJid());
3615                    set.query("http://jabber.org/protocol/muc#owner").addChild(data);
3616                    sendIqPacket(account, set, new OnIqPacketReceived() {
3617                        @Override
3618                        public void onIqPacketReceived(Account account, IqPacket packet) {
3619                            if (callback != null) {
3620                                if (packet.getType() == IqPacket.TYPE.RESULT) {
3621                                    callback.onPushSucceeded();
3622                                } else {
3623                                    callback.onPushFailed();
3624                                }
3625                            }
3626                        }
3627                    });
3628                } else {
3629                    if (callback != null) {
3630                        callback.onPushFailed();
3631                    }
3632                }
3633            }
3634        });
3635    }
3636
3637    public void pushSubjectToConference(final Conversation conference, final String subject) {
3638        MessagePacket packet = this.getMessageGenerator().conferenceSubject(conference, StringUtils.nullOnEmpty(subject));
3639        this.sendMessagePacket(conference.getAccount(), packet);
3640    }
3641
3642    public void changeAffiliationInConference(final Conversation conference, Jid user, final MucOptions.Affiliation affiliation, final OnAffiliationChanged callback) {
3643        final Jid jid = user.asBareJid();
3644        final IqPacket request = this.mIqGenerator.changeAffiliation(conference, jid, affiliation.toString());
3645        sendIqPacket(conference.getAccount(), request, (account, response) -> {
3646            if (response.getType() == IqPacket.TYPE.RESULT) {
3647                conference.getMucOptions().changeAffiliation(jid, affiliation);
3648                getAvatarService().clear(conference);
3649                if (callback != null) {
3650                    callback.onAffiliationChangedSuccessful(jid);
3651                } else {
3652                    Log.d(Config.LOGTAG, "changed affiliation of " + user + " to " + affiliation);
3653                }
3654            } else if (callback != null) {
3655                callback.onAffiliationChangeFailed(jid, R.string.could_not_change_affiliation);
3656            } else {
3657                Log.d(Config.LOGTAG, "unable to change affiliation");
3658            }
3659        });
3660    }
3661
3662    public void changeRoleInConference(final Conversation conference, final String nick, MucOptions.Role role) {
3663        IqPacket request = this.mIqGenerator.changeRole(conference, nick, role.toString());
3664        sendIqPacket(conference.getAccount(), request, (account, packet) -> {
3665            if (packet.getType() != IqPacket.TYPE.RESULT) {
3666                Log.d(Config.LOGTAG, account.getJid().asBareJid() + " unable to change role of " + nick);
3667            }
3668        });
3669    }
3670
3671    public void moderateMessage(final Account account, final Message m, final String reason) {
3672        IqPacket request = this.mIqGenerator.moderateMessage(account, m, reason);
3673        sendIqPacket(account, request, (a, packet) -> {
3674            if (packet.getType() != IqPacket.TYPE.RESULT) {
3675                showErrorToastInUi(R.string.unable_to_moderate);
3676                Log.d(Config.LOGTAG, a.getJid().asBareJid() + " unable to moderate: " + packet);
3677            }
3678        });
3679    }
3680
3681    public void destroyRoom(final Conversation conversation, final OnRoomDestroy callback) {
3682        IqPacket request = new IqPacket(IqPacket.TYPE.SET);
3683        request.setTo(conversation.getJid().asBareJid());
3684        request.query("http://jabber.org/protocol/muc#owner").addChild("destroy");
3685        sendIqPacket(conversation.getAccount(), request, new OnIqPacketReceived() {
3686            @Override
3687            public void onIqPacketReceived(Account account, IqPacket packet) {
3688                if (packet.getType() == IqPacket.TYPE.RESULT) {
3689                    if (callback != null) {
3690                        callback.onRoomDestroySucceeded();
3691                    }
3692                } else if (packet.getType() == IqPacket.TYPE.ERROR) {
3693                    if (callback != null) {
3694                        callback.onRoomDestroyFailed();
3695                    }
3696                }
3697            }
3698        });
3699    }
3700
3701    private void disconnect(Account account, boolean force) {
3702        if ((account.getStatus() == Account.State.ONLINE)
3703                || (account.getStatus() == Account.State.DISABLED)) {
3704            final XmppConnection connection = account.getXmppConnection();
3705            if (!force) {
3706                List<Conversation> conversations = getConversations();
3707                for (Conversation conversation : conversations) {
3708                    if (conversation.getAccount() == account) {
3709                        if (conversation.getMode() == Conversation.MODE_MULTI) {
3710                            leaveMuc(conversation, true);
3711                        }
3712                    }
3713                }
3714                sendOfflinePresence(account);
3715            }
3716            connection.disconnect(force);
3717        }
3718    }
3719
3720    @Override
3721    public IBinder onBind(Intent intent) {
3722        return mBinder;
3723    }
3724
3725    public void updateMessage(Message message) {
3726        updateMessage(message, true);
3727    }
3728
3729    public void updateMessage(Message message, boolean includeBody) {
3730        databaseBackend.updateMessage(message, includeBody);
3731        updateConversationUi();
3732    }
3733
3734    public void createMessageAsync(final Message message) {
3735        mDatabaseWriterExecutor.execute(() -> databaseBackend.createMessage(message));
3736    }
3737
3738    public void updateMessage(Message message, String uuid) {
3739        if (!databaseBackend.updateMessage(message, uuid)) {
3740            Log.e(Config.LOGTAG, "error updated message in DB after edit");
3741        }
3742        updateConversationUi();
3743    }
3744
3745    protected void syncDirtyContacts(Account account) {
3746        for (Contact contact : account.getRoster().getContacts()) {
3747            if (contact.getOption(Contact.Options.DIRTY_PUSH)) {
3748                pushContactToServer(contact);
3749            }
3750            if (contact.getOption(Contact.Options.DIRTY_DELETE)) {
3751                deleteContactOnServer(contact);
3752            }
3753        }
3754    }
3755
3756    protected void unregisterPhoneAccounts(final Account account) {
3757        for (final Contact contact : account.getRoster().getContacts()) {
3758            if (!contact.showInRoster()) {
3759                contact.unregisterAsPhoneAccount(this);
3760            }
3761        }
3762    }
3763
3764    public void createContact(final Contact contact, final boolean autoGrant) {
3765        createContact(contact, autoGrant, null);
3766    }
3767
3768    public void createContact(final Contact contact, final boolean autoGrant, final String preAuth) {
3769        if (autoGrant) {
3770            contact.setOption(Contact.Options.PREEMPTIVE_GRANT);
3771            contact.setOption(Contact.Options.ASKING);
3772        }
3773        pushContactToServer(contact, preAuth);
3774    }
3775
3776    public void pushContactToServer(final Contact contact) {
3777        pushContactToServer(contact, null);
3778    }
3779
3780    private void pushContactToServer(final Contact contact, final String preAuth) {
3781        contact.resetOption(Contact.Options.DIRTY_DELETE);
3782        contact.setOption(Contact.Options.DIRTY_PUSH);
3783        final Account account = contact.getAccount();
3784        if (account.getStatus() == Account.State.ONLINE) {
3785            final boolean ask = contact.getOption(Contact.Options.ASKING);
3786            final boolean sendUpdates = contact
3787                    .getOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST)
3788                    && contact.getOption(Contact.Options.PREEMPTIVE_GRANT);
3789            final IqPacket iq = new IqPacket(IqPacket.TYPE.SET);
3790            iq.query(Namespace.ROSTER).addChild(contact.asElement());
3791            account.getXmppConnection().sendIqPacket(iq, mDefaultIqHandler);
3792            if (sendUpdates) {
3793                sendPresencePacket(account, mPresenceGenerator.sendPresenceUpdatesTo(contact));
3794            }
3795            if (ask) {
3796                sendPresencePacket(account, mPresenceGenerator.requestPresenceUpdatesFrom(contact, preAuth));
3797            }
3798        } else {
3799            syncRoster(contact.getAccount());
3800        }
3801    }
3802
3803    public void publishMucAvatar(final Conversation conversation, final Uri image, final OnAvatarPublication callback) {
3804        new Thread(() -> {
3805            final Bitmap.CompressFormat format = Config.AVATAR_FORMAT;
3806            final int size = Config.AVATAR_SIZE;
3807            final Avatar avatar = getFileBackend().getPepAvatar(image, size, format);
3808            if (avatar != null) {
3809                if (!getFileBackend().save(avatar)) {
3810                    callback.onAvatarPublicationFailed(R.string.error_saving_avatar);
3811                    return;
3812                }
3813                avatar.owner = conversation.getJid().asBareJid();
3814                publishMucAvatar(conversation, avatar, callback);
3815            } else {
3816                callback.onAvatarPublicationFailed(R.string.error_publish_avatar_converting);
3817            }
3818        }).start();
3819    }
3820
3821    public void publishAvatar(final Account account, final Uri image, final OnAvatarPublication callback) {
3822        new Thread(() -> {
3823            final Bitmap.CompressFormat format = Config.AVATAR_FORMAT;
3824            final int size = Config.AVATAR_SIZE;
3825            final Avatar avatar = getFileBackend().getPepAvatar(image, size, format);
3826            if (avatar != null) {
3827                if (!getFileBackend().save(avatar)) {
3828                    Log.d(Config.LOGTAG, "unable to save vcard");
3829                    callback.onAvatarPublicationFailed(R.string.error_saving_avatar);
3830                    return;
3831                }
3832                publishAvatar(account, avatar, callback);
3833            } else {
3834                callback.onAvatarPublicationFailed(R.string.error_publish_avatar_converting);
3835            }
3836        }).start();
3837
3838    }
3839
3840    private void publishMucAvatar(Conversation conversation, Avatar avatar, OnAvatarPublication callback) {
3841        final IqPacket retrieve = mIqGenerator.retrieveVcardAvatar(avatar);
3842        sendIqPacket(conversation.getAccount(), retrieve, (account, response) -> {
3843            boolean itemNotFound = response.getType() == IqPacket.TYPE.ERROR && response.hasChild("error") && response.findChild("error").hasChild("item-not-found");
3844            if (response.getType() == IqPacket.TYPE.RESULT || itemNotFound) {
3845                Element vcard = response.findChild("vCard", "vcard-temp");
3846                if (vcard == null) {
3847                    vcard = new Element("vCard", "vcard-temp");
3848                }
3849                Element photo = vcard.findChild("PHOTO");
3850                if (photo == null) {
3851                    photo = vcard.addChild("PHOTO");
3852                }
3853                photo.clearChildren();
3854                photo.addChild("TYPE").setContent(avatar.type);
3855                photo.addChild("BINVAL").setContent(avatar.image);
3856                IqPacket publication = new IqPacket(IqPacket.TYPE.SET);
3857                publication.setTo(conversation.getJid().asBareJid());
3858                publication.addChild(vcard);
3859                sendIqPacket(account, publication, (a1, publicationResponse) -> {
3860                    if (publicationResponse.getType() == IqPacket.TYPE.RESULT) {
3861                        callback.onAvatarPublicationSucceeded();
3862                    } else {
3863                        Log.d(Config.LOGTAG, "failed to publish vcard " + publicationResponse.getErrorCondition());
3864                        callback.onAvatarPublicationFailed(R.string.error_publish_avatar_server_reject);
3865                    }
3866                });
3867            } else {
3868                Log.d(Config.LOGTAG, "failed to request vcard " + response);
3869                callback.onAvatarPublicationFailed(R.string.error_publish_avatar_no_server_support);
3870            }
3871        });
3872    }
3873
3874    public void publishAvatar(Account account, final Avatar avatar, final OnAvatarPublication callback) {
3875        final Bundle options;
3876        if (account.getXmppConnection().getFeatures().pepPublishOptions()) {
3877            options = PublishOptions.openAccess();
3878        } else {
3879            options = null;
3880        }
3881        publishAvatar(account, avatar, options, true, callback);
3882    }
3883
3884    public void publishAvatar(Account account, final Avatar avatar, final Bundle options, final boolean retry, final OnAvatarPublication callback) {
3885        Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": publishing avatar. options=" + options);
3886        IqPacket packet = this.mIqGenerator.publishAvatar(avatar, options);
3887        this.sendIqPacket(account, packet, new OnIqPacketReceived() {
3888
3889            @Override
3890            public void onIqPacketReceived(Account account, IqPacket result) {
3891                if (result.getType() == IqPacket.TYPE.RESULT) {
3892                    publishAvatarMetadata(account, avatar, options, true, callback);
3893                } else if (retry && PublishOptions.preconditionNotMet(result)) {
3894                    pushNodeConfiguration(account, Namespace.AVATAR_DATA, options, new OnConfigurationPushed() {
3895                        @Override
3896                        public void onPushSucceeded() {
3897                            Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": changed node configuration for avatar node");
3898                            publishAvatar(account, avatar, options, false, callback);
3899                        }
3900
3901                        @Override
3902                        public void onPushFailed() {
3903                            Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": unable to change node configuration for avatar node");
3904                            publishAvatar(account, avatar, null, false, callback);
3905                        }
3906                    });
3907                } else {
3908                    Element error = result.findChild("error");
3909                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": server rejected avatar " + (avatar.size / 1024) + "KiB " + (error != null ? error.toString() : ""));
3910                    if (callback != null) {
3911                        callback.onAvatarPublicationFailed(R.string.error_publish_avatar_server_reject);
3912                    }
3913                }
3914            }
3915        });
3916    }
3917
3918    public void publishAvatarMetadata(Account account, final Avatar avatar, final Bundle options, final boolean retry, final OnAvatarPublication callback) {
3919        final IqPacket packet = XmppConnectionService.this.mIqGenerator.publishAvatarMetadata(avatar, options);
3920        sendIqPacket(account, packet, new OnIqPacketReceived() {
3921            @Override
3922            public void onIqPacketReceived(Account account, IqPacket result) {
3923                if (result.getType() == IqPacket.TYPE.RESULT) {
3924                    if (account.setAvatar(avatar.getFilename())) {
3925                        getAvatarService().clear(account);
3926                        databaseBackend.updateAccount(account);
3927                        notifyAccountAvatarHasChanged(account);
3928                    }
3929                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": published avatar " + (avatar.size / 1024) + "KiB");
3930                    if (callback != null) {
3931                        callback.onAvatarPublicationSucceeded();
3932                    }
3933                } else if (retry && PublishOptions.preconditionNotMet(result)) {
3934                    pushNodeConfiguration(account, Namespace.AVATAR_METADATA, options, new OnConfigurationPushed() {
3935                        @Override
3936                        public void onPushSucceeded() {
3937                            Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": changed node configuration for avatar meta data node");
3938                            publishAvatarMetadata(account, avatar, options, false, callback);
3939                        }
3940
3941                        @Override
3942                        public void onPushFailed() {
3943                            Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": unable to change node configuration for avatar meta data node");
3944                            publishAvatarMetadata(account, avatar, null, false, callback);
3945                        }
3946                    });
3947                } else {
3948                    if (callback != null) {
3949                        callback.onAvatarPublicationFailed(R.string.error_publish_avatar_server_reject);
3950                    }
3951                }
3952            }
3953        });
3954    }
3955
3956    public void republishAvatarIfNeeded(Account account) {
3957        if (account.getAxolotlService().isPepBroken()) {
3958            Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": skipping republication of avatar because pep is broken");
3959            return;
3960        }
3961        IqPacket packet = this.mIqGenerator.retrieveAvatarMetaData(null);
3962        this.sendIqPacket(account, packet, new OnIqPacketReceived() {
3963
3964            private Avatar parseAvatar(IqPacket packet) {
3965                Element pubsub = packet.findChild("pubsub", "http://jabber.org/protocol/pubsub");
3966                if (pubsub != null) {
3967                    Element items = pubsub.findChild("items");
3968                    if (items != null) {
3969                        return Avatar.parseMetadata(items);
3970                    }
3971                }
3972                return null;
3973            }
3974
3975            private boolean errorIsItemNotFound(IqPacket packet) {
3976                Element error = packet.findChild("error");
3977                return packet.getType() == IqPacket.TYPE.ERROR
3978                        && error != null
3979                        && error.hasChild("item-not-found");
3980            }
3981
3982            @Override
3983            public void onIqPacketReceived(Account account, IqPacket packet) {
3984                if (packet.getType() == IqPacket.TYPE.RESULT || errorIsItemNotFound(packet)) {
3985                    Avatar serverAvatar = parseAvatar(packet);
3986                    if (serverAvatar == null && account.getAvatar() != null) {
3987                        Avatar avatar = fileBackend.getStoredPepAvatar(account.getAvatar());
3988                        if (avatar != null) {
3989                            Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": avatar on server was null. republishing");
3990                            publishAvatar(account, fileBackend.getStoredPepAvatar(account.getAvatar()), null);
3991                        } else {
3992                            Log.e(Config.LOGTAG, account.getJid().asBareJid() + ": error rereading avatar");
3993                        }
3994                    }
3995                }
3996            }
3997        });
3998    }
3999
4000    public void fetchAvatar(Account account, Avatar avatar) {
4001        fetchAvatar(account, avatar, null);
4002    }
4003
4004    public void fetchAvatar(Account account, final Avatar avatar, final UiCallback<Avatar> callback) {
4005        if (databaseBackend.isBlockedMedia(avatar.cid())) {
4006            if (callback != null) callback.error(0, null);
4007            return;
4008        }
4009
4010        final String KEY = generateFetchKey(account, avatar);
4011        synchronized (this.mInProgressAvatarFetches) {
4012            if (mInProgressAvatarFetches.add(KEY)) {
4013                switch (avatar.origin) {
4014                    case PEP:
4015                        this.mInProgressAvatarFetches.add(KEY);
4016                        fetchAvatarPep(account, avatar, callback);
4017                        break;
4018                    case VCARD:
4019                        this.mInProgressAvatarFetches.add(KEY);
4020                        fetchAvatarVcard(account, avatar, callback);
4021                        break;
4022                }
4023            } else if (avatar.origin == Avatar.Origin.PEP) {
4024                mOmittedPepAvatarFetches.add(KEY);
4025            } else {
4026                Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": already fetching " + avatar.origin + " avatar for " + avatar.owner);
4027            }
4028        }
4029    }
4030
4031    private void fetchAvatarPep(Account account, final Avatar avatar, final UiCallback<Avatar> callback) {
4032        IqPacket packet = this.mIqGenerator.retrievePepAvatar(avatar);
4033        sendIqPacket(account, packet, (a, result) -> {
4034            synchronized (mInProgressAvatarFetches) {
4035                mInProgressAvatarFetches.remove(generateFetchKey(a, avatar));
4036            }
4037            final String ERROR = a.getJid().asBareJid() + ": fetching avatar for " + avatar.owner + " failed ";
4038            if (result.getType() == IqPacket.TYPE.RESULT) {
4039                avatar.image = mIqParser.avatarData(result);
4040                if (avatar.image != null) {
4041                    if (getFileBackend().save(avatar)) {
4042                        if (a.getJid().asBareJid().equals(avatar.owner)) {
4043                            if (a.setAvatar(avatar.getFilename())) {
4044                                databaseBackend.updateAccount(a);
4045                            }
4046                            getAvatarService().clear(a);
4047                            updateConversationUi();
4048                            updateAccountUi();
4049                        } else {
4050                            final Contact contact = a.getRoster().getContact(avatar.owner);
4051                            contact.setAvatar(avatar);
4052                            syncRoster(account);
4053                            getAvatarService().clear(contact);
4054                            updateConversationUi();
4055                            updateRosterUi();
4056                        }
4057                        if (callback != null) {
4058                            callback.success(avatar);
4059                        }
4060                        Log.d(Config.LOGTAG, a.getJid().asBareJid() + ": successfully fetched pep avatar for " + avatar.owner);
4061                        return;
4062                    }
4063                } else {
4064
4065                    Log.d(Config.LOGTAG, ERROR + "(parsing error)");
4066                }
4067            } else {
4068                Element error = result.findChild("error");
4069                if (error == null) {
4070                    Log.d(Config.LOGTAG, ERROR + "(server error)");
4071                } else {
4072                    Log.d(Config.LOGTAG, ERROR + error.toString());
4073                }
4074            }
4075            if (callback != null) {
4076                callback.error(0, null);
4077            }
4078
4079        });
4080    }
4081
4082    private void fetchAvatarVcard(final Account account, final Avatar avatar, final UiCallback<Avatar> callback) {
4083        IqPacket packet = this.mIqGenerator.retrieveVcardAvatar(avatar);
4084        this.sendIqPacket(account, packet, new OnIqPacketReceived() {
4085            @Override
4086            public void onIqPacketReceived(Account account, IqPacket packet) {
4087                final boolean previouslyOmittedPepFetch;
4088                synchronized (mInProgressAvatarFetches) {
4089                    final String KEY = generateFetchKey(account, avatar);
4090                    mInProgressAvatarFetches.remove(KEY);
4091                    previouslyOmittedPepFetch = mOmittedPepAvatarFetches.remove(KEY);
4092                }
4093                if (packet.getType() == IqPacket.TYPE.RESULT) {
4094                    Element vCard = packet.findChild("vCard", "vcard-temp");
4095                    Element photo = vCard != null ? vCard.findChild("PHOTO") : null;
4096                    String image = photo != null ? photo.findChildContent("BINVAL") : null;
4097                    if (image != null) {
4098                        avatar.image = image;
4099                        if (getFileBackend().save(avatar)) {
4100                            Log.d(Config.LOGTAG, account.getJid().asBareJid()
4101                                    + ": successfully fetched vCard avatar for " + avatar.owner + " omittedPep=" + previouslyOmittedPepFetch);
4102                            if (avatar.owner.isBareJid()) {
4103                                if (account.getJid().asBareJid().equals(avatar.owner) && account.getAvatar() == null) {
4104                                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": had no avatar. replacing with vcard");
4105                                    account.setAvatar(avatar.getFilename());
4106                                    databaseBackend.updateAccount(account);
4107                                    getAvatarService().clear(account);
4108                                    updateAccountUi();
4109                                } else {
4110                                    final Contact contact = account.getRoster().getContact(avatar.owner);
4111                                    contact.setAvatar(avatar, previouslyOmittedPepFetch);
4112                                    syncRoster(account);
4113                                    getAvatarService().clear(contact);
4114                                    updateRosterUi();
4115                                }
4116                                updateConversationUi();
4117                            } else {
4118                                Conversation conversation = find(account, avatar.owner.asBareJid());
4119                                if (conversation != null && conversation.getMode() == Conversation.MODE_MULTI) {
4120                                    MucOptions.User user = conversation.getMucOptions().findUserByFullJid(avatar.owner);
4121                                    if (user != null) {
4122                                        if (user.setAvatar(avatar)) {
4123                                            getAvatarService().clear(user);
4124                                            updateConversationUi();
4125                                            updateMucRosterUi();
4126                                        }
4127                                        if (user.getRealJid() != null) {
4128                                            Contact contact = account.getRoster().getContact(user.getRealJid());
4129                                            contact.setAvatar(avatar);
4130                                            syncRoster(account);
4131                                            getAvatarService().clear(contact);
4132                                            updateRosterUi();
4133                                        }
4134                                    }
4135                                }
4136                            }
4137                        }
4138                    }
4139                }
4140            }
4141        });
4142    }
4143
4144    public void checkForAvatar(Account account, final UiCallback<Avatar> callback) {
4145        IqPacket packet = this.mIqGenerator.retrieveAvatarMetaData(null);
4146        this.sendIqPacket(account, packet, new OnIqPacketReceived() {
4147
4148            @Override
4149            public void onIqPacketReceived(Account account, IqPacket packet) {
4150                if (packet.getType() == IqPacket.TYPE.RESULT) {
4151                    Element pubsub = packet.findChild("pubsub", "http://jabber.org/protocol/pubsub");
4152                    if (pubsub != null) {
4153                        Element items = pubsub.findChild("items");
4154                        if (items != null) {
4155                            Avatar avatar = Avatar.parseMetadata(items);
4156                            if (avatar != null) {
4157                                avatar.owner = account.getJid().asBareJid();
4158                                if (fileBackend.isAvatarCached(avatar)) {
4159                                    if (account.setAvatar(avatar.getFilename())) {
4160                                        databaseBackend.updateAccount(account);
4161                                    }
4162                                    getAvatarService().clear(account);
4163                                    callback.success(avatar);
4164                                } else {
4165                                    fetchAvatarPep(account, avatar, callback);
4166                                }
4167                                return;
4168                            }
4169                        }
4170                    }
4171                }
4172                callback.error(0, null);
4173            }
4174        });
4175    }
4176
4177    public void notifyAccountAvatarHasChanged(final Account account) {
4178        final XmppConnection connection = account.getXmppConnection();
4179        if (connection != null && connection.getFeatures().bookmarksConversion()) {
4180            Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": avatar changed. resending presence to online group chats");
4181            for (Conversation conversation : conversations) {
4182                if (conversation.getAccount() == account && conversation.getMode() == Conversational.MODE_MULTI) {
4183                    final MucOptions mucOptions = conversation.getMucOptions();
4184                    if (mucOptions.online()) {
4185                        PresencePacket packet = mPresenceGenerator.selfPresence(account, Presence.Status.ONLINE, mucOptions.nonanonymous());
4186                        packet.setTo(mucOptions.getSelf().getFullJid());
4187                        connection.sendPresencePacket(packet);
4188                    }
4189                }
4190            }
4191        }
4192    }
4193
4194    public void fetchVcard4(Account account, final Contact contact, final Consumer<Element> callback) {
4195        IqPacket packet = this.mIqGenerator.retrieveVcard4(contact.getJid());
4196        sendIqPacket(account, packet, (a, result) -> {
4197            if (result.getType() == IqPacket.TYPE.RESULT) {
4198                final Element item = mIqParser.getItem(result);
4199                if (item != null) {
4200                    final Element vcard4 = item.findChild("vcard", Namespace.VCARD4);
4201                    if (vcard4 != null) {
4202                        if (callback != null) {
4203                            callback.accept(vcard4);
4204                        }
4205                        return;
4206                    }
4207                }
4208            } else {
4209                Element error = result.findChild("error");
4210                if (error == null) {
4211                    Log.d(Config.LOGTAG, "fetchVcard4 (server error)");
4212                } else {
4213                    Log.d(Config.LOGTAG, "fetchVcard4 " + error.toString());
4214                }
4215            }
4216            if (callback != null) {
4217                callback.accept(null);
4218            }
4219
4220        });
4221    }
4222
4223    public void deleteContactOnServer(Contact contact) {
4224        contact.resetOption(Contact.Options.PREEMPTIVE_GRANT);
4225        contact.resetOption(Contact.Options.DIRTY_PUSH);
4226        contact.setOption(Contact.Options.DIRTY_DELETE);
4227        Account account = contact.getAccount();
4228        if (account.getStatus() == Account.State.ONLINE) {
4229            IqPacket iq = new IqPacket(IqPacket.TYPE.SET);
4230            Element item = iq.query(Namespace.ROSTER).addChild("item");
4231            item.setAttribute("jid", contact.getJid());
4232            item.setAttribute("subscription", "remove");
4233            account.getXmppConnection().sendIqPacket(iq, mDefaultIqHandler);
4234        }
4235    }
4236
4237    public void updateConversation(final Conversation conversation) {
4238        mDatabaseWriterExecutor.execute(() -> databaseBackend.updateConversation(conversation));
4239    }
4240
4241    private void reconnectAccount(final Account account, final boolean force, final boolean interactive) {
4242        synchronized (account) {
4243            XmppConnection connection = account.getXmppConnection();
4244            if (connection == null) {
4245                connection = createConnection(account);
4246                account.setXmppConnection(connection);
4247            }
4248            boolean hasInternet = hasInternetConnection();
4249            if (account.isEnabled() && hasInternet) {
4250                if (!force) {
4251                    disconnect(account, false);
4252                }
4253                Thread thread = new Thread(connection);
4254                connection.setInteractive(interactive);
4255                connection.prepareNewConnection();
4256                connection.interrupt();
4257                thread.start();
4258                scheduleWakeUpCall(Config.CONNECT_DISCO_TIMEOUT, account.getUuid().hashCode());
4259            } else {
4260                disconnect(account, force || account.getTrueStatus().isError() || !hasInternet);
4261                account.getRoster().clearPresences();
4262                connection.resetEverything();
4263                final AxolotlService axolotlService = account.getAxolotlService();
4264                if (axolotlService != null) {
4265                    axolotlService.resetBrokenness();
4266                }
4267                if (!hasInternet) {
4268                    account.setStatus(Account.State.NO_INTERNET);
4269                }
4270            }
4271        }
4272    }
4273
4274    public void reconnectAccountInBackground(final Account account) {
4275        new Thread(() -> reconnectAccount(account, false, true)).start();
4276    }
4277
4278    public void invite(final Conversation conversation, final Jid contact) {
4279        Log.d(Config.LOGTAG, conversation.getAccount().getJid().asBareJid() + ": inviting " + contact + " to " + conversation.getJid().asBareJid());
4280        final MucOptions.User user = conversation.getMucOptions().findUserByRealJid(contact.asBareJid());
4281        if (user == null || user.getAffiliation() == MucOptions.Affiliation.OUTCAST) {
4282            changeAffiliationInConference(conversation, contact, MucOptions.Affiliation.NONE, null);
4283        }
4284        final MessagePacket packet = mMessageGenerator.invite(conversation, contact);
4285        sendMessagePacket(conversation.getAccount(), packet);
4286    }
4287
4288    public void directInvite(Conversation conversation, Jid jid) {
4289        MessagePacket packet = mMessageGenerator.directInvite(conversation, jid);
4290        sendMessagePacket(conversation.getAccount(), packet);
4291    }
4292
4293    public void resetSendingToWaiting(Account account) {
4294        for (Conversation conversation : getConversations()) {
4295            if (conversation.getAccount() == account) {
4296                conversation.findUnsentTextMessages(message -> markMessage(message, Message.STATUS_WAITING));
4297            }
4298        }
4299    }
4300
4301    public Message markMessage(final Account account, final Jid recipient, final String uuid, final int status) {
4302        return markMessage(account, recipient, uuid, status, null);
4303    }
4304
4305    public Message markMessage(final Account account, final Jid recipient, final String uuid, final int status, String errorMessage) {
4306        if (uuid == null) {
4307            return null;
4308        }
4309        for (Conversation conversation : getConversations()) {
4310            if (conversation.getJid().asBareJid().equals(recipient) && conversation.getAccount() == account) {
4311                final Message message = conversation.findSentMessageWithUuidOrRemoteId(uuid);
4312                if (message != null) {
4313                    markMessage(message, status, errorMessage);
4314                }
4315                return message;
4316            }
4317        }
4318        return null;
4319    }
4320
4321    public boolean markMessage(final Conversation conversation, final String uuid, final int status, final String serverMessageId) {
4322        return markMessage(conversation, uuid, status, serverMessageId, null);
4323    }
4324
4325    public boolean markMessage(final Conversation conversation, final String uuid, final int status, final String serverMessageId, final LocalizedContent body) {
4326        if (uuid == null) {
4327            return false;
4328        } else {
4329            final Message message = conversation.findSentMessageWithUuid(uuid);
4330            if (message != null) {
4331                if (message.getServerMsgId() == null) {
4332                    message.setServerMsgId(serverMessageId);
4333                }
4334                if (message.getEncryption() == Message.ENCRYPTION_NONE
4335                        && message.isTypeText()
4336                        && isBodyModified(message, body)) {
4337                    message.setBody(body.content);
4338                    if (body.count > 1) {
4339                        message.setBodyLanguage(body.language);
4340                    }
4341                    markMessage(message, status, null, true);
4342                } else {
4343                    markMessage(message, status);
4344                }
4345                return true;
4346            } else {
4347                return false;
4348            }
4349        }
4350    }
4351
4352    private static boolean isBodyModified(final Message message, final LocalizedContent body) {
4353        if (body == null || body.content == null) {
4354            return false;
4355        }
4356        return !body.content.equals(message.getBody());
4357    }
4358
4359    public void markMessage(Message message, int status) {
4360        markMessage(message, status, null);
4361    }
4362
4363
4364    public void markMessage(final Message message, final int status, final String errorMessage) {
4365        markMessage(message, status, errorMessage, false);
4366    }
4367
4368    public void markMessage(final Message message, final int status, final String errorMessage, final boolean includeBody) {
4369        final int oldStatus = message.getStatus();
4370        if (status == Message.STATUS_SEND_FAILED && (oldStatus == Message.STATUS_SEND_RECEIVED || oldStatus == Message.STATUS_SEND_DISPLAYED)) {
4371            return;
4372        }
4373        if (status == Message.STATUS_SEND_RECEIVED && oldStatus == Message.STATUS_SEND_DISPLAYED) {
4374            return;
4375        }
4376        message.setErrorMessage(errorMessage);
4377        message.setStatus(status);
4378        databaseBackend.updateMessage(message, includeBody);
4379        updateConversationUi();
4380        if (oldStatus != status && status == Message.STATUS_SEND_FAILED) {
4381            mNotificationService.pushFailedDelivery(message);
4382        }
4383    }
4384
4385    public SharedPreferences getPreferences() {
4386        return PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
4387    }
4388
4389    public long getAutomaticMessageDeletionDate() {
4390        final long timeout = getLongPreference(SettingsActivity.AUTOMATIC_MESSAGE_DELETION, R.integer.automatic_message_deletion);
4391        return timeout == 0 ? timeout : (System.currentTimeMillis() - (timeout * 1000));
4392    }
4393
4394    public long getLongPreference(String name, @IntegerRes int res) {
4395        long defaultValue = getResources().getInteger(res);
4396        try {
4397            return Long.parseLong(getPreferences().getString(name, String.valueOf(defaultValue)));
4398        } catch (NumberFormatException e) {
4399            return defaultValue;
4400        }
4401    }
4402
4403    public boolean getBooleanPreference(String name, @BoolRes int res) {
4404        return getPreferences().getBoolean(name, getResources().getBoolean(res));
4405    }
4406
4407    public boolean confirmMessages() {
4408        return getBooleanPreference("confirm_messages", R.bool.confirm_messages);
4409    }
4410
4411    public boolean allowMessageCorrection() {
4412        return getBooleanPreference("allow_message_correction", R.bool.allow_message_correction);
4413    }
4414
4415    public boolean sendChatStates() {
4416        return getBooleanPreference("chat_states", R.bool.chat_states);
4417    }
4418
4419    private boolean synchronizeWithBookmarks() {
4420        return getBooleanPreference("autojoin", R.bool.autojoin);
4421    }
4422
4423    public boolean useTorToConnect() {
4424        return getBooleanPreference("use_tor", R.bool.use_tor);
4425    }
4426
4427    public boolean showExtendedConnectionOptions() {
4428        return getBooleanPreference("show_connection_options", R.bool.show_connection_options);
4429    }
4430
4431    public boolean broadcastLastActivity() {
4432        return getBooleanPreference(SettingsActivity.BROADCAST_LAST_ACTIVITY, R.bool.last_activity);
4433    }
4434
4435    public int unreadCount() {
4436        int count = 0;
4437        for (Conversation conversation : getConversations()) {
4438            count += conversation.unreadCount();
4439        }
4440        return count;
4441    }
4442
4443
4444    private <T> List<T> threadSafeList(Set<T> set) {
4445        synchronized (LISTENER_LOCK) {
4446            return set.size() == 0 ? Collections.emptyList() : new ArrayList<>(set);
4447        }
4448    }
4449
4450    public void showErrorToastInUi(int resId) {
4451        for (OnShowErrorToast listener : threadSafeList(this.mOnShowErrorToasts)) {
4452            listener.onShowErrorToast(resId);
4453        }
4454    }
4455
4456    public void updateConversationUi() {
4457        updateConversationUi(false);
4458    }
4459
4460    public void updateConversationUi(boolean newCaps) {
4461        for (OnConversationUpdate listener : threadSafeList(this.mOnConversationUpdates)) {
4462            listener.onConversationUpdate(newCaps);
4463        }
4464    }
4465
4466    public void notifyJingleRtpConnectionUpdate(final Account account, final Jid with, final String sessionId, final RtpEndUserState state) {
4467        for (OnJingleRtpConnectionUpdate listener : threadSafeList(this.onJingleRtpConnectionUpdate)) {
4468            listener.onJingleRtpConnectionUpdate(account, with, sessionId, state);
4469        }
4470    }
4471
4472    public void notifyJingleRtpConnectionUpdate(AppRTCAudioManager.AudioDevice selectedAudioDevice, Set<AppRTCAudioManager.AudioDevice> availableAudioDevices) {
4473        for (OnJingleRtpConnectionUpdate listener : threadSafeList(this.onJingleRtpConnectionUpdate)) {
4474            listener.onAudioDeviceChanged(selectedAudioDevice, availableAudioDevices);
4475        }
4476    }
4477
4478    public void updateAccountUi() {
4479        for (final OnAccountUpdate listener : threadSafeList(this.mOnAccountUpdates)) {
4480            listener.onAccountUpdate();
4481        }
4482    }
4483
4484    public void updateRosterUi() {
4485        for (OnRosterUpdate listener : threadSafeList(this.mOnRosterUpdates)) {
4486            listener.onRosterUpdate();
4487        }
4488    }
4489
4490    public boolean displayCaptchaRequest(Account account, String id, Data data, Bitmap captcha) {
4491        if (mOnCaptchaRequested.size() > 0) {
4492            DisplayMetrics metrics = getApplicationContext().getResources().getDisplayMetrics();
4493            Bitmap scaled = Bitmap.createScaledBitmap(captcha, (int) (captcha.getWidth() * metrics.scaledDensity),
4494                    (int) (captcha.getHeight() * metrics.scaledDensity), false);
4495            for (OnCaptchaRequested listener : threadSafeList(this.mOnCaptchaRequested)) {
4496                listener.onCaptchaRequested(account, id, data, scaled);
4497            }
4498            return true;
4499        }
4500        return false;
4501    }
4502
4503    public void updateBlocklistUi(final OnUpdateBlocklist.Status status) {
4504        for (OnUpdateBlocklist listener : threadSafeList(this.mOnUpdateBlocklist)) {
4505            listener.OnUpdateBlocklist(status);
4506        }
4507    }
4508
4509    public void updateMucRosterUi() {
4510        for (OnMucRosterUpdate listener : threadSafeList(this.mOnMucRosterUpdate)) {
4511            listener.onMucRosterUpdate();
4512        }
4513    }
4514
4515    public void keyStatusUpdated(AxolotlService.FetchStatus report) {
4516        for (OnKeyStatusUpdated listener : threadSafeList(this.mOnKeyStatusUpdated)) {
4517            listener.onKeyStatusUpdated(report);
4518        }
4519    }
4520
4521    public Account findAccountByJid(final Jid jid) {
4522        for (final Account account : this.accounts) {
4523            if (account.getJid().asBareJid().equals(jid.asBareJid())) {
4524                return account;
4525            }
4526        }
4527        return null;
4528    }
4529
4530    public Account findAccountByUuid(final String uuid) {
4531        for (Account account : this.accounts) {
4532            if (account.getUuid().equals(uuid)) {
4533                return account;
4534            }
4535        }
4536        return null;
4537    }
4538
4539    public Conversation findConversationByUuid(String uuid) {
4540        for (Conversation conversation : getConversations()) {
4541            if (conversation.getUuid().equals(uuid)) {
4542                return conversation;
4543            }
4544        }
4545        return null;
4546    }
4547
4548    public Conversation findUniqueConversationByJid(XmppUri xmppUri) {
4549        List<Conversation> findings = new ArrayList<>();
4550        for (Conversation c : getConversations()) {
4551            if (c.getAccount().isEnabled() && c.getJid().asBareJid().equals(xmppUri.getJid().asBareJid()) && ((c.getMode() == Conversational.MODE_MULTI) == xmppUri.isAction(XmppUri.ACTION_JOIN))) {
4552                findings.add(c);
4553            }
4554        }
4555        return findings.size() == 1 ? findings.get(0) : null;
4556    }
4557
4558    public boolean markRead(final Conversation conversation, boolean dismiss) {
4559        return markRead(conversation, null, dismiss).size() > 0;
4560    }
4561
4562    public void markRead(final Conversation conversation) {
4563        markRead(conversation, null, true);
4564    }
4565
4566    public List<Message> markRead(final Conversation conversation, String upToUuid, boolean dismiss) {
4567        if (dismiss) {
4568            mNotificationService.clear(conversation);
4569        }
4570        final List<Message> readMessages = conversation.markRead(upToUuid);
4571        if (readMessages.size() > 0) {
4572            Runnable runnable = () -> {
4573                for (Message message : readMessages) {
4574                    databaseBackend.updateMessage(message, false);
4575                }
4576            };
4577            mDatabaseWriterExecutor.execute(runnable);
4578            updateConversationUi();
4579            updateUnreadCountBadge();
4580            return readMessages;
4581        } else {
4582            return readMessages;
4583        }
4584    }
4585
4586    public synchronized void updateUnreadCountBadge() {
4587        int count = unreadCount();
4588        if (unreadCount != count) {
4589            Log.d(Config.LOGTAG, "update unread count to " + count);
4590            if (count > 0) {
4591                ShortcutBadger.applyCount(getApplicationContext(), count);
4592            } else {
4593                ShortcutBadger.removeCount(getApplicationContext());
4594            }
4595            unreadCount = count;
4596        }
4597    }
4598
4599    public void sendReadMarker(final Conversation conversation, String upToUuid) {
4600        final boolean isPrivateAndNonAnonymousMuc = conversation.getMode() == Conversation.MODE_MULTI && conversation.isPrivateAndNonAnonymous();
4601        final List<Message> readMessages = this.markRead(conversation, upToUuid, true);
4602        if (readMessages.size() > 0) {
4603            updateConversationUi();
4604        }
4605        final Message markable = Conversation.getLatestMarkableMessage(readMessages, isPrivateAndNonAnonymousMuc);
4606        if (confirmMessages()
4607                && markable != null
4608                && (markable.trusted() || isPrivateAndNonAnonymousMuc)
4609                && markable.getRemoteMsgId() != null) {
4610            Log.d(Config.LOGTAG, conversation.getAccount().getJid().asBareJid() + ": sending read marker to " + markable.getCounterpart().toString());
4611            final Account account = conversation.getAccount();
4612            final MessagePacket packet = mMessageGenerator.confirm(markable);
4613            this.sendMessagePacket(account, packet);
4614        }
4615    }
4616
4617    public MemorizingTrustManager getMemorizingTrustManager() {
4618        return this.mMemorizingTrustManager;
4619    }
4620
4621    public void setMemorizingTrustManager(MemorizingTrustManager trustManager) {
4622        this.mMemorizingTrustManager = trustManager;
4623    }
4624
4625    public void updateMemorizingTrustmanager() {
4626        final MemorizingTrustManager tm;
4627        final boolean dontTrustSystemCAs = getBooleanPreference("dont_trust_system_cas", R.bool.dont_trust_system_cas);
4628        if (dontTrustSystemCAs) {
4629            tm = new MemorizingTrustManager(getApplicationContext(), null);
4630        } else {
4631            tm = new MemorizingTrustManager(getApplicationContext());
4632        }
4633        setMemorizingTrustManager(tm);
4634    }
4635
4636    public LruCache<String, Bitmap> getBitmapCache() {
4637        return this.mBitmapCache;
4638    }
4639
4640    public LruCache<String, Drawable> getDrawableCache() {
4641        return this.mDrawableCache;
4642    }
4643
4644    public Collection<String> getKnownHosts() {
4645        final Set<String> hosts = new HashSet<>();
4646        for (final Account account : getAccounts()) {
4647            hosts.add(account.getServer());
4648            for (final Contact contact : account.getRoster().getContacts()) {
4649                if (contact.showInRoster()) {
4650                    final String server = contact.getServer();
4651                    if (server != null) {
4652                        hosts.add(server);
4653                    }
4654                }
4655            }
4656        }
4657        if (Config.QUICKSY_DOMAIN != null) {
4658            hosts.remove(Config.QUICKSY_DOMAIN.toEscapedString()); //we only want to show this when we type a e164 number
4659        }
4660        if (Config.DOMAIN_LOCK != null) {
4661            hosts.add(Config.DOMAIN_LOCK);
4662        }
4663        if (Config.MAGIC_CREATE_DOMAIN != null) {
4664            hosts.add(Config.MAGIC_CREATE_DOMAIN);
4665        }
4666        return hosts;
4667    }
4668
4669    public Collection<String> getKnownConferenceHosts() {
4670        final Set<String> mucServers = new HashSet<>();
4671        for (final Account account : accounts) {
4672            if (account.getXmppConnection() != null) {
4673                mucServers.addAll(account.getXmppConnection().getMucServers());
4674                for (final Bookmark bookmark : account.getBookmarks()) {
4675                    final Jid jid = bookmark.getJid();
4676                    final String s = jid == null ? null : jid.getDomain().toEscapedString();
4677                    if (s != null) {
4678                        mucServers.add(s);
4679                    }
4680                }
4681            }
4682        }
4683        return mucServers;
4684    }
4685
4686    public void sendMessagePacket(Account account, MessagePacket packet) {
4687        final XmppConnection connection = account.getXmppConnection();
4688        if (connection != null) {
4689            connection.sendMessagePacket(packet);
4690        }
4691    }
4692
4693    public void sendPresencePacket(Account account, PresencePacket packet) {
4694        XmppConnection connection = account.getXmppConnection();
4695        if (connection != null) {
4696            connection.sendPresencePacket(packet);
4697        }
4698    }
4699
4700    public void sendCreateAccountWithCaptchaPacket(Account account, String id, Data data) {
4701        final XmppConnection connection = account.getXmppConnection();
4702        if (connection != null) {
4703            IqPacket request = mIqGenerator.generateCreateAccountWithCaptcha(account, id, data);
4704            connection.sendUnmodifiedIqPacket(request, connection.registrationResponseListener, true);
4705        }
4706    }
4707
4708    public void sendIqPacket(final Account account, final IqPacket packet, final OnIqPacketReceived callback) {
4709        final XmppConnection connection = account.getXmppConnection();
4710        if (connection != null) {
4711            connection.sendIqPacket(packet, callback);
4712        } else if (callback != null) {
4713            callback.onIqPacketReceived(account, new IqPacket(IqPacket.TYPE.TIMEOUT));
4714        }
4715    }
4716
4717    public void sendPresence(final Account account) {
4718        sendPresence(account, checkListeners() && broadcastLastActivity());
4719    }
4720
4721    private void sendPresence(final Account account, final boolean includeIdleTimestamp) {
4722        final Presence.Status status;
4723        if (manuallyChangePresence()) {
4724            status = account.getPresenceStatus();
4725        } else {
4726            status = getTargetPresence();
4727        }
4728        final PresencePacket packet = mPresenceGenerator.selfPresence(account, status);
4729        if (mLastActivity > 0 && includeIdleTimestamp) {
4730            long since = Math.min(mLastActivity, System.currentTimeMillis()); //don't send future dates
4731            packet.addChild("idle", Namespace.IDLE).setAttribute("since", AbstractGenerator.getTimestamp(since));
4732        }
4733        sendPresencePacket(account, packet);
4734    }
4735
4736    private void deactivateGracePeriod() {
4737        for (Account account : getAccounts()) {
4738            account.deactivateGracePeriod();
4739        }
4740    }
4741
4742    public void refreshAllPresences() {
4743        boolean includeIdleTimestamp = checkListeners() && broadcastLastActivity();
4744        for (Account account : getAccounts()) {
4745            if (account.isEnabled()) {
4746                sendPresence(account, includeIdleTimestamp);
4747            }
4748        }
4749    }
4750
4751    private void refreshAllFcmTokens() {
4752        for (Account account : getAccounts()) {
4753            if (account.isOnlineAndConnected() && mPushManagementService.available(account)) {
4754                mPushManagementService.registerPushTokenOnServer(account);
4755            }
4756        }
4757    }
4758
4759
4760
4761    private void sendOfflinePresence(final Account account) {
4762        Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": sending offline presence");
4763        sendPresencePacket(account, mPresenceGenerator.sendOfflinePresence(account));
4764    }
4765
4766    public MessageGenerator getMessageGenerator() {
4767        return this.mMessageGenerator;
4768    }
4769
4770    public PresenceGenerator getPresenceGenerator() {
4771        return this.mPresenceGenerator;
4772    }
4773
4774    public IqGenerator getIqGenerator() {
4775        return this.mIqGenerator;
4776    }
4777
4778    public IqParser getIqParser() {
4779        return this.mIqParser;
4780    }
4781
4782    public JingleConnectionManager getJingleConnectionManager() {
4783        return this.mJingleConnectionManager;
4784    }
4785
4786    public MessageArchiveService getMessageArchiveService() {
4787        return this.mMessageArchiveService;
4788    }
4789
4790    public QuickConversationsService getQuickConversationsService() {
4791        return this.mQuickConversationsService;
4792    }
4793
4794    public List<Contact> findContacts(Jid jid, String accountJid) {
4795        ArrayList<Contact> contacts = new ArrayList<>();
4796        for (Account account : getAccounts()) {
4797            if ((account.isEnabled() || accountJid != null)
4798                    && (accountJid == null || accountJid.equals(account.getJid().asBareJid().toString()))) {
4799                Contact contact = account.getRoster().getContactFromContactList(jid);
4800                if (contact != null) {
4801                    contacts.add(contact);
4802                }
4803            }
4804        }
4805        return contacts;
4806    }
4807
4808    public Conversation findFirstMuc(Jid jid) {
4809        for (Conversation conversation : getConversations()) {
4810            if (conversation.getAccount().isEnabled() && conversation.getJid().asBareJid().equals(jid.asBareJid()) && conversation.getMode() == Conversation.MODE_MULTI) {
4811                return conversation;
4812            }
4813        }
4814        return null;
4815    }
4816
4817    public NotificationService getNotificationService() {
4818        return this.mNotificationService;
4819    }
4820
4821    public HttpConnectionManager getHttpConnectionManager() {
4822        return this.mHttpConnectionManager;
4823    }
4824
4825    public void resendFailedMessages(final Message message) {
4826        final Collection<Message> messages = new ArrayList<>();
4827        Message current = message;
4828        while (current.getStatus() == Message.STATUS_SEND_FAILED) {
4829            messages.add(current);
4830            if (current.mergeable(current.next())) {
4831                current = current.next();
4832            } else {
4833                break;
4834            }
4835        }
4836        for (final Message msg : messages) {
4837            msg.setTime(System.currentTimeMillis());
4838            markMessage(msg, Message.STATUS_WAITING);
4839            this.resendMessage(msg, false);
4840        }
4841        if (message.getConversation() instanceof Conversation) {
4842            ((Conversation) message.getConversation()).sort();
4843        }
4844        updateConversationUi();
4845    }
4846
4847    public void clearConversationHistory(final Conversation conversation) {
4848        final long clearDate;
4849        final String reference;
4850        if (conversation.countMessages() > 0) {
4851            Message latestMessage = conversation.getLatestMessage();
4852            clearDate = latestMessage.getTimeSent() + 1000;
4853            reference = latestMessage.getServerMsgId();
4854        } else {
4855            clearDate = System.currentTimeMillis();
4856            reference = null;
4857        }
4858        conversation.clearMessages();
4859        conversation.setHasMessagesLeftOnServer(false); //avoid messages getting loaded through mam
4860        conversation.setLastClearHistory(clearDate, reference);
4861        Runnable runnable = () -> {
4862            databaseBackend.deleteMessagesInConversation(conversation);
4863            databaseBackend.updateConversation(conversation);
4864        };
4865        mDatabaseWriterExecutor.execute(runnable);
4866    }
4867
4868    public boolean sendBlockRequest(final Blockable blockable, boolean reportSpam) {
4869        if (blockable != null && blockable.getBlockedJid() != null) {
4870            final Jid jid = blockable.getBlockedJid();
4871            this.sendIqPacket(blockable.getAccount(), getIqGenerator().generateSetBlockRequest(jid, reportSpam), (a, response) -> {
4872                if (response.getType() == IqPacket.TYPE.RESULT) {
4873                    a.getBlocklist().add(jid);
4874                    updateBlocklistUi(OnUpdateBlocklist.Status.BLOCKED);
4875                }
4876            });
4877            if (blockable.getBlockedJid().isFullJid()) {
4878                return false;
4879            } else if (removeBlockedConversations(blockable.getAccount(), jid)) {
4880                updateConversationUi();
4881                return true;
4882            } else {
4883                return false;
4884            }
4885        } else {
4886            return false;
4887        }
4888    }
4889
4890    public boolean removeBlockedConversations(final Account account, final Jid blockedJid) {
4891        boolean removed = false;
4892        synchronized (this.conversations) {
4893            boolean domainJid = blockedJid.getLocal() == null;
4894            for (Conversation conversation : this.conversations) {
4895                boolean jidMatches = (domainJid && blockedJid.getDomain().equals(conversation.getJid().getDomain()))
4896                        || blockedJid.equals(conversation.getJid().asBareJid());
4897                if (conversation.getAccount() == account
4898                        && conversation.getMode() == Conversation.MODE_SINGLE
4899                        && jidMatches) {
4900                    this.conversations.remove(conversation);
4901                    markRead(conversation);
4902                    conversation.setStatus(Conversation.STATUS_ARCHIVED);
4903                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": archiving conversation " + conversation.getJid().asBareJid() + " because jid was blocked");
4904                    updateConversation(conversation);
4905                    removed = true;
4906                }
4907            }
4908        }
4909        return removed;
4910    }
4911
4912    public void sendUnblockRequest(final Blockable blockable) {
4913        if (blockable != null && blockable.getJid() != null) {
4914            final Jid jid = blockable.getBlockedJid();
4915            this.sendIqPacket(blockable.getAccount(), getIqGenerator().generateSetUnblockRequest(jid), new OnIqPacketReceived() {
4916                @Override
4917                public void onIqPacketReceived(final Account account, final IqPacket packet) {
4918                    if (packet.getType() == IqPacket.TYPE.RESULT) {
4919                        account.getBlocklist().remove(jid);
4920                        updateBlocklistUi(OnUpdateBlocklist.Status.UNBLOCKED);
4921                    }
4922                }
4923            });
4924        }
4925    }
4926
4927    public void publishDisplayName(Account account) {
4928        String displayName = account.getDisplayName();
4929        final IqPacket request;
4930        if (TextUtils.isEmpty(displayName)) {
4931            request = mIqGenerator.deleteNode(Namespace.NICK);
4932        } else {
4933            request = mIqGenerator.publishNick(displayName);
4934        }
4935        mAvatarService.clear(account);
4936        sendIqPacket(account, request, (account1, packet) -> {
4937            if (packet.getType() == IqPacket.TYPE.ERROR) {
4938                Log.d(Config.LOGTAG, account1.getJid().asBareJid() + ": unable to modify nick name " + packet);
4939            }
4940        });
4941    }
4942
4943    public ServiceDiscoveryResult getCachedServiceDiscoveryResult(Pair<String, String> key) {
4944        ServiceDiscoveryResult result = discoCache.get(key);
4945        if (result != null) {
4946            return result;
4947        } else {
4948            if (key.first == null || key.second == null) return null;
4949            result = databaseBackend.findDiscoveryResult(key.first, key.second);
4950            if (result != null) {
4951                discoCache.put(key, result);
4952            }
4953            return result;
4954        }
4955    }
4956
4957    public void fetchFromGateway(Account account, final Jid jid, final String input, final OnGatewayResult callback) {
4958        IqPacket request = new IqPacket(input == null ? IqPacket.TYPE.GET : IqPacket.TYPE.SET);
4959        request.setTo(jid);
4960        Element query = request.query("jabber:iq:gateway");
4961        if (input != null) {
4962            Element prompt = query.addChild("prompt");
4963            prompt.setContent(input);
4964        }
4965        sendIqPacket(account, request, (Account acct, IqPacket packet) -> {
4966            if (packet.getType() == IqPacket.TYPE.RESULT) {
4967                callback.onGatewayResult(packet.query().findChildContent(input == null ? "prompt" : "jid"), null);
4968            } else {
4969                Element error = packet.findChild("error");
4970                callback.onGatewayResult(null, error == null ? null : error.findChildContent("text"));
4971            }
4972        });
4973    }
4974
4975    public void fetchCaps(Account account, final Jid jid, final Presence presence) {
4976        fetchCaps(account, jid, presence, null);
4977    }
4978
4979    public void fetchCaps(Account account, final Jid jid, final Presence presence, Runnable cb) {
4980        final Pair<String, String> key = presence == null ? null : new Pair<>(presence.getHash(), presence.getVer());
4981        final ServiceDiscoveryResult disco = key == null ? null : getCachedServiceDiscoveryResult(key);
4982
4983        if (disco != null) {
4984            presence.setServiceDiscoveryResult(disco);
4985            final Contact contact = account.getRoster().getContact(jid);
4986            if (contact.refreshRtpCapability()) {
4987                syncRoster(account);
4988            }
4989            if (disco.hasIdentity("gateway", "pstn")) {
4990                contact.registerAsPhoneAccount(this);
4991                mQuickConversationsService.considerSyncBackground(false);
4992            }
4993            updateConversationUi(true);
4994        } else {
4995            final IqPacket request = new IqPacket(IqPacket.TYPE.GET);
4996            request.setTo(jid);
4997            final String node = presence == null ? null : presence.getNode();
4998            final String ver = presence == null ? null : presence.getVer();
4999            final Element query = request.query(Namespace.DISCO_INFO);
5000            if (node != null && ver != null) {
5001                query.setAttribute("node", node + "#" + ver);
5002            }
5003            Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": making disco request for " + (key == null ? "" : key.second) + " to " + jid);
5004            sendIqPacket(account, request, (a, response) -> {
5005                if (response.getType() == IqPacket.TYPE.RESULT) {
5006                    final ServiceDiscoveryResult discoveryResult = new ServiceDiscoveryResult(response);
5007                    if (presence == null || presence.getVer() == null || presence.getVer().equals(discoveryResult.getVer())) {
5008                        databaseBackend.insertDiscoveryResult(discoveryResult);
5009                        injectServiceDiscoveryResult(a.getRoster(), presence == null ? null : presence.getHash(), presence == null ? null : presence.getVer(), jid.getResource(), discoveryResult);
5010                        if (discoveryResult.hasIdentity("gateway", "pstn")) {
5011                            final Contact contact = account.getRoster().getContact(jid);
5012                            contact.registerAsPhoneAccount(this);
5013                            mQuickConversationsService.considerSyncBackground(false);
5014                        }
5015                        updateConversationUi(true);
5016                        if (cb != null) cb.run();
5017                    } else {
5018                        Log.d(Config.LOGTAG, a.getJid().asBareJid() + ": mismatch in caps for contact " + jid + " " + presence.getVer() + " vs " + discoveryResult.getVer());
5019                    }
5020                } else {
5021                    Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": unable to fetch caps from " + jid);
5022                }
5023            });
5024        }
5025    }
5026
5027    public void fetchCommands(Account account, final Jid jid, OnIqPacketReceived callback) {
5028        final IqPacket request = mIqGenerator.queryDiscoItems(jid, "http://jabber.org/protocol/commands");
5029        sendIqPacket(account, request, callback);
5030    }
5031
5032    private void injectServiceDiscoveryResult(Roster roster, String hash, String ver, String resource, ServiceDiscoveryResult disco) {
5033        boolean rosterNeedsSync = false;
5034        for (final Contact contact : roster.getContacts()) {
5035            boolean serviceDiscoverySet = false;
5036            Presence onePresence = contact.getPresences().get(resource == null ? "" : resource);
5037            if (onePresence != null) {
5038                onePresence.setServiceDiscoveryResult(disco);
5039                serviceDiscoverySet = true;
5040            } else if (resource == null && hash == null && ver == null) {
5041                Presence p = new Presence(Presence.Status.OFFLINE, null, null, null, "");
5042                p.setServiceDiscoveryResult(disco);
5043                contact.updatePresence("", p);
5044                serviceDiscoverySet = true;
5045            }
5046            if (hash != null && ver != null) {
5047                for (final Presence presence : contact.getPresences().getPresences()) {
5048                    if (hash.equals(presence.getHash()) && ver.equals(presence.getVer())) {
5049                        presence.setServiceDiscoveryResult(disco);
5050                        serviceDiscoverySet = true;
5051                    }
5052                }
5053            }
5054            if (serviceDiscoverySet) {
5055                rosterNeedsSync |= contact.refreshRtpCapability();
5056            }
5057        }
5058        if (rosterNeedsSync) {
5059            syncRoster(roster.getAccount());
5060        }
5061    }
5062
5063    public void fetchMamPreferences(Account account, final OnMamPreferencesFetched callback) {
5064        final MessageArchiveService.Version version = MessageArchiveService.Version.get(account);
5065        IqPacket request = new IqPacket(IqPacket.TYPE.GET);
5066        request.addChild("prefs", version.namespace);
5067        sendIqPacket(account, request, (account1, packet) -> {
5068            Element prefs = packet.findChild("prefs", version.namespace);
5069            if (packet.getType() == IqPacket.TYPE.RESULT && prefs != null) {
5070                callback.onPreferencesFetched(prefs);
5071            } else {
5072                callback.onPreferencesFetchFailed();
5073            }
5074        });
5075    }
5076
5077    public PushManagementService getPushManagementService() {
5078        return mPushManagementService;
5079    }
5080
5081    public void changeStatus(Account account, PresenceTemplate template, String signature) {
5082        if (!template.getStatusMessage().isEmpty()) {
5083            databaseBackend.insertPresenceTemplate(template);
5084        }
5085        account.setPgpSignature(signature);
5086        account.setPresenceStatus(template.getStatus());
5087        account.setPresenceStatusMessage(template.getStatusMessage());
5088        databaseBackend.updateAccount(account);
5089        sendPresence(account);
5090    }
5091
5092    public List<PresenceTemplate> getPresenceTemplates(Account account) {
5093        List<PresenceTemplate> templates = databaseBackend.getPresenceTemplates();
5094        for (PresenceTemplate template : account.getSelfContact().getPresences().asTemplates()) {
5095            if (!templates.contains(template)) {
5096                templates.add(0, template);
5097            }
5098        }
5099        return templates;
5100    }
5101
5102    public void saveConversationAsBookmark(Conversation conversation, String name) {
5103        final Account account = conversation.getAccount();
5104        final Bookmark bookmark = new Bookmark(account, conversation.getJid().asBareJid());
5105        final String nick = conversation.getJid().getResource();
5106        if (nick != null && !nick.isEmpty() && !nick.equals(MucOptions.defaultNick(account))) {
5107            bookmark.setNick(nick);
5108        }
5109        if (!TextUtils.isEmpty(name)) {
5110            bookmark.setBookmarkName(name);
5111        }
5112        bookmark.setAutojoin(getPreferences().getBoolean("autojoin", getResources().getBoolean(R.bool.autojoin)));
5113        createBookmark(account, bookmark);
5114        bookmark.setConversation(conversation);
5115    }
5116
5117    public boolean verifyFingerprints(Contact contact, List<XmppUri.Fingerprint> fingerprints) {
5118        boolean performedVerification = false;
5119        final AxolotlService axolotlService = contact.getAccount().getAxolotlService();
5120        for (XmppUri.Fingerprint fp : fingerprints) {
5121            if (fp.type == XmppUri.FingerprintType.OMEMO) {
5122                String fingerprint = "05" + fp.fingerprint.replaceAll("\\s", "");
5123                FingerprintStatus fingerprintStatus = axolotlService.getFingerprintTrust(fingerprint);
5124                if (fingerprintStatus != null) {
5125                    if (!fingerprintStatus.isVerified()) {
5126                        performedVerification = true;
5127                        axolotlService.setFingerprintTrust(fingerprint, fingerprintStatus.toVerified());
5128                    }
5129                } else {
5130                    axolotlService.preVerifyFingerprint(contact, fingerprint);
5131                }
5132            }
5133        }
5134        return performedVerification;
5135    }
5136
5137    public boolean verifyFingerprints(Account account, List<XmppUri.Fingerprint> fingerprints) {
5138        final AxolotlService axolotlService = account.getAxolotlService();
5139        boolean verifiedSomething = false;
5140        for (XmppUri.Fingerprint fp : fingerprints) {
5141            if (fp.type == XmppUri.FingerprintType.OMEMO) {
5142                String fingerprint = "05" + fp.fingerprint.replaceAll("\\s", "");
5143                Log.d(Config.LOGTAG, "trying to verify own fp=" + fingerprint);
5144                FingerprintStatus fingerprintStatus = axolotlService.getFingerprintTrust(fingerprint);
5145                if (fingerprintStatus != null) {
5146                    if (!fingerprintStatus.isVerified()) {
5147                        axolotlService.setFingerprintTrust(fingerprint, fingerprintStatus.toVerified());
5148                        verifiedSomething = true;
5149                    }
5150                } else {
5151                    axolotlService.preVerifyFingerprint(account, fingerprint);
5152                    verifiedSomething = true;
5153                }
5154            }
5155        }
5156        return verifiedSomething;
5157    }
5158
5159    public boolean blindTrustBeforeVerification() {
5160        return getBooleanPreference(SettingsActivity.BLIND_TRUST_BEFORE_VERIFICATION, R.bool.btbv);
5161    }
5162
5163    public ShortcutService getShortcutService() {
5164        return mShortcutService;
5165    }
5166
5167    public void pushMamPreferences(Account account, Element prefs) {
5168        IqPacket set = new IqPacket(IqPacket.TYPE.SET);
5169        set.addChild(prefs);
5170        sendIqPacket(account, set, null);
5171    }
5172
5173    public void evictPreview(File f) {
5174        if (mBitmapCache.remove(f.getAbsolutePath()) != null) {
5175            Log.d(Config.LOGTAG, "deleted cached preview");
5176        }
5177        if (mDrawableCache.remove(f.getAbsolutePath()) != null) {
5178            Log.d(Config.LOGTAG, "deleted cached preview");
5179        }
5180    }
5181
5182    public void evictPreview(String uuid) {
5183        if (mBitmapCache.remove(uuid) != null) {
5184            Log.d(Config.LOGTAG, "deleted cached preview");
5185        }
5186        if (mDrawableCache.remove(uuid) != null) {
5187            Log.d(Config.LOGTAG, "deleted cached preview");
5188        }
5189    }
5190
5191    public interface OnMamPreferencesFetched {
5192        void onPreferencesFetched(Element prefs);
5193
5194        void onPreferencesFetchFailed();
5195    }
5196
5197    public interface OnAccountCreated {
5198        void onAccountCreated(Account account);
5199
5200        void informUser(int r);
5201    }
5202
5203    public interface OnMoreMessagesLoaded {
5204        void onMoreMessagesLoaded(int count, Conversation conversation);
5205
5206        void informUser(int r);
5207    }
5208
5209    public interface OnAccountPasswordChanged {
5210        void onPasswordChangeSucceeded();
5211
5212        void onPasswordChangeFailed();
5213    }
5214
5215    public interface OnRoomDestroy {
5216        void onRoomDestroySucceeded();
5217
5218        void onRoomDestroyFailed();
5219    }
5220
5221    public interface OnAffiliationChanged {
5222        void onAffiliationChangedSuccessful(Jid jid);
5223
5224        void onAffiliationChangeFailed(Jid jid, int resId);
5225    }
5226
5227    public interface OnConversationUpdate {
5228        default void onConversationUpdate() { onConversationUpdate(false); }
5229        default void onConversationUpdate(boolean newCaps) { onConversationUpdate(); }
5230    }
5231
5232    public interface OnJingleRtpConnectionUpdate {
5233        void onJingleRtpConnectionUpdate(final Account account, final Jid with, final String sessionId, final RtpEndUserState state);
5234
5235        void onAudioDeviceChanged(AppRTCAudioManager.AudioDevice selectedAudioDevice, Set<AppRTCAudioManager.AudioDevice> availableAudioDevices);
5236    }
5237
5238    public interface OnAccountUpdate {
5239        void onAccountUpdate();
5240    }
5241
5242    public interface OnCaptchaRequested {
5243        void onCaptchaRequested(Account account, String id, Data data, Bitmap captcha);
5244    }
5245
5246    public interface OnRosterUpdate {
5247        void onRosterUpdate();
5248    }
5249
5250    public interface OnMucRosterUpdate {
5251        void onMucRosterUpdate();
5252    }
5253
5254    public interface OnConferenceConfigurationFetched {
5255        void onConferenceConfigurationFetched(Conversation conversation);
5256
5257        void onFetchFailed(Conversation conversation, String errorCondition);
5258    }
5259
5260    public interface OnConferenceJoined {
5261        void onConferenceJoined(Conversation conversation);
5262    }
5263
5264    public interface OnConfigurationPushed {
5265        void onPushSucceeded();
5266
5267        void onPushFailed();
5268    }
5269
5270    public interface OnShowErrorToast {
5271        void onShowErrorToast(int resId);
5272    }
5273
5274    public class XmppConnectionBinder extends Binder {
5275        public XmppConnectionService getService() {
5276            return XmppConnectionService.this;
5277        }
5278    }
5279
5280    private class InternalEventReceiver extends BroadcastReceiver {
5281
5282        @Override
5283        public void onReceive(Context context, Intent intent) {
5284            onStartCommand(intent, 0, 0);
5285        }
5286    }
5287
5288    public static class OngoingCall {
5289        public final AbstractJingleConnection.Id id;
5290        public final Set<Media> media;
5291        public final boolean reconnecting;
5292
5293        public OngoingCall(AbstractJingleConnection.Id id, Set<Media> media, final boolean reconnecting) {
5294            this.id = id;
5295            this.media = media;
5296            this.reconnecting = reconnecting;
5297        }
5298
5299        @Override
5300        public boolean equals(Object o) {
5301            if (this == o) return true;
5302            if (o == null || getClass() != o.getClass()) return false;
5303            OngoingCall that = (OngoingCall) o;
5304            return reconnecting == that.reconnecting && Objects.equal(id, that.id) && Objects.equal(media, that.media);
5305        }
5306
5307        @Override
5308        public int hashCode() {
5309            return Objects.hashCode(id, media, reconnecting);
5310        }
5311    }
5312
5313    public static class BlockedMediaException extends Exception { }
5314}