2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2016-01-13 11:05:59 +00:00
|
|
|
import android.Manifest;
|
2014-09-27 09:46:56 +00:00
|
|
|
import android.annotation.SuppressLint;
|
2014-11-19 16:31:28 +00:00
|
|
|
import android.annotation.TargetApi;
|
2015-01-20 21:53:45 +00:00
|
|
|
import android.app.ActionBar;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.app.Activity;
|
2014-03-03 15:39:19 +00:00
|
|
|
import android.app.AlertDialog;
|
|
|
|
import android.app.AlertDialog.Builder;
|
2014-11-04 11:15:14 +00:00
|
|
|
import android.app.PendingIntent;
|
2014-10-23 19:27:41 +00:00
|
|
|
import android.content.ClipData;
|
|
|
|
import android.content.ClipboardManager;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.content.ComponentName;
|
|
|
|
import android.content.Context;
|
2014-05-02 10:02:18 +00:00
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.DialogInterface.OnClickListener;
|
2014-11-04 11:15:14 +00:00
|
|
|
import android.content.Intent;
|
2014-05-08 12:35:21 +00:00
|
|
|
import android.content.IntentSender.SendIntentException;
|
2014-11-04 11:15:14 +00:00
|
|
|
import android.content.ServiceConnection;
|
|
|
|
import android.content.SharedPreferences;
|
2014-09-11 16:02:09 +00:00
|
|
|
import android.content.pm.PackageManager;
|
|
|
|
import android.content.pm.ResolveInfo;
|
2014-09-02 13:51:20 +00:00
|
|
|
import android.content.res.Resources;
|
|
|
|
import android.graphics.Bitmap;
|
2014-11-04 11:15:14 +00:00
|
|
|
import android.graphics.Color;
|
|
|
|
import android.graphics.Point;
|
2014-09-02 13:51:20 +00:00
|
|
|
import android.graphics.drawable.BitmapDrawable;
|
|
|
|
import android.graphics.drawable.Drawable;
|
2014-05-02 10:02:18 +00:00
|
|
|
import android.net.Uri;
|
2014-11-04 11:15:14 +00:00
|
|
|
import android.nfc.NdefMessage;
|
|
|
|
import android.nfc.NdefRecord;
|
2014-11-03 19:00:20 +00:00
|
|
|
import android.nfc.NfcAdapter;
|
2014-11-04 11:15:14 +00:00
|
|
|
import android.nfc.NfcEvent;
|
2014-09-02 13:51:20 +00:00
|
|
|
import android.os.AsyncTask;
|
2014-11-19 16:31:28 +00:00
|
|
|
import android.os.Build;
|
2014-03-09 12:21:28 +00:00
|
|
|
import android.os.Bundle;
|
2015-02-17 13:18:35 +00:00
|
|
|
import android.os.Handler;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.os.IBinder;
|
2016-01-11 10:17:45 +00:00
|
|
|
import android.os.PowerManager;
|
2015-02-17 13:18:35 +00:00
|
|
|
import android.os.SystemClock;
|
2014-09-08 21:58:37 +00:00
|
|
|
import android.preference.PreferenceManager;
|
2014-09-04 09:46:13 +00:00
|
|
|
import android.text.InputType;
|
2014-09-02 13:51:20 +00:00
|
|
|
import android.util.DisplayMetrics;
|
2014-07-16 22:03:37 +00:00
|
|
|
import android.util.Log;
|
2016-02-27 09:25:31 +00:00
|
|
|
import android.view.Menu;
|
2014-03-05 14:41:14 +00:00
|
|
|
import android.view.MenuItem;
|
2014-03-03 04:01:02 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.inputmethod.InputMethodManager;
|
2015-07-19 12:09:49 +00:00
|
|
|
import android.widget.CompoundButton;
|
2014-07-16 10:34:09 +00:00
|
|
|
import android.widget.EditText;
|
2014-09-02 13:51:20 +00:00
|
|
|
import android.widget.ImageView;
|
2015-07-19 12:09:49 +00:00
|
|
|
import android.widget.LinearLayout;
|
|
|
|
import android.widget.TextView;
|
2014-11-20 17:20:42 +00:00
|
|
|
import android.widget.Toast;
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2014-11-04 11:15:14 +00:00
|
|
|
import com.google.zxing.BarcodeFormat;
|
|
|
|
import com.google.zxing.EncodeHintType;
|
|
|
|
import com.google.zxing.WriterException;
|
|
|
|
import com.google.zxing.common.BitMatrix;
|
|
|
|
import com.google.zxing.qrcode.QRCodeWriter;
|
|
|
|
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
|
|
|
|
|
2014-11-10 00:24:35 +00:00
|
|
|
import net.java.otr4j.session.SessionID;
|
|
|
|
|
2014-11-04 11:15:14 +00:00
|
|
|
import java.io.FileNotFoundException;
|
|
|
|
import java.lang.ref.WeakReference;
|
2014-11-20 17:20:42 +00:00
|
|
|
import java.util.ArrayList;
|
2014-11-04 11:15:14 +00:00
|
|
|
import java.util.Hashtable;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.concurrent.RejectedExecutionException;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.Config;
|
|
|
|
import eu.siacs.conversations.R;
|
2015-08-01 16:27:52 +00:00
|
|
|
import eu.siacs.conversations.crypto.axolotl.XmppAxolotlSession;
|
2014-11-04 11:15:14 +00:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
|
|
|
import eu.siacs.conversations.entities.Message;
|
2015-03-17 14:00:50 +00:00
|
|
|
import eu.siacs.conversations.entities.MucOptions;
|
2014-11-04 11:15:14 +00:00
|
|
|
import eu.siacs.conversations.entities.Presences;
|
|
|
|
import eu.siacs.conversations.services.AvatarService;
|
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.XmppConnectionBinder;
|
2015-07-19 12:09:49 +00:00
|
|
|
import eu.siacs.conversations.ui.widget.Switch;
|
|
|
|
import eu.siacs.conversations.utils.CryptoHelper;
|
2014-11-04 11:15:14 +00:00
|
|
|
import eu.siacs.conversations.utils.ExceptionHelper;
|
2015-07-21 12:18:16 +00:00
|
|
|
import eu.siacs.conversations.xmpp.OnKeyStatusUpdated;
|
2014-12-21 20:43:58 +00:00
|
|
|
import eu.siacs.conversations.xmpp.OnUpdateBlocklist;
|
2014-11-09 15:21:13 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jid.InvalidJidException;
|
2014-11-06 19:33:13 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
2014-11-04 11:15:14 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
public abstract class XmppActivity extends Activity {
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-08-13 09:22:32 +00:00
|
|
|
protected static final int REQUEST_ANNOUNCE_PGP = 0x0101;
|
|
|
|
protected static final int REQUEST_INVITE_TO_CONVERSATION = 0x0102;
|
2015-10-29 13:03:41 +00:00
|
|
|
protected static final int REQUEST_CHOOSE_PGP_ID = 0x0103;
|
2016-01-11 10:17:45 +00:00
|
|
|
protected static final int REQUEST_BATTERY_OP = 0x13849ff;
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2016-01-22 19:46:24 +00:00
|
|
|
public static final String EXTRA_ACCOUNT = "account";
|
2016-01-22 19:21:45 +00:00
|
|
|
|
2014-01-26 02:27:55 +00:00
|
|
|
public XmppConnectionService xmppConnectionService;
|
|
|
|
public boolean xmppConnectionServiceBound = false;
|
2014-11-11 16:39:28 +00:00
|
|
|
protected boolean registeredListeners = false;
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-07-22 13:31:54 +00:00
|
|
|
protected int mPrimaryTextColor;
|
|
|
|
protected int mSecondaryTextColor;
|
2015-07-21 12:18:16 +00:00
|
|
|
protected int mTertiaryTextColor;
|
2015-04-13 13:59:18 +00:00
|
|
|
protected int mPrimaryBackgroundColor;
|
2014-10-03 13:00:29 +00:00
|
|
|
protected int mSecondaryBackgroundColor;
|
2014-09-11 12:24:10 +00:00
|
|
|
protected int mColorRed;
|
|
|
|
protected int mColorOrange;
|
|
|
|
protected int mColorGreen;
|
2014-07-31 13:09:34 +00:00
|
|
|
protected int mPrimaryColor;
|
2014-09-28 13:21:56 +00:00
|
|
|
|
2014-09-22 11:23:35 +00:00
|
|
|
protected boolean mUseSubject = true;
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-09-02 13:51:20 +00:00
|
|
|
private DisplayMetrics metrics;
|
2014-12-09 19:22:21 +00:00
|
|
|
protected int mTheme;
|
2015-01-14 20:28:27 +00:00
|
|
|
protected boolean mUsingEnterKey = false;
|
2014-09-04 09:46:13 +00:00
|
|
|
|
2015-02-17 13:18:35 +00:00
|
|
|
private long mLastUiRefresh = 0;
|
|
|
|
private Handler mRefreshUiHandler = new Handler();
|
|
|
|
private Runnable mRefreshUiRunnable = new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
mLastUiRefresh = SystemClock.elapsedRealtime();
|
|
|
|
refreshUiReal();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-05-12 02:33:04 +00:00
|
|
|
protected ConferenceInvite mPendingConferenceInvite = null;
|
|
|
|
|
2015-02-17 13:18:35 +00:00
|
|
|
|
2015-07-20 13:48:58 +00:00
|
|
|
protected final void refreshUi() {
|
2015-02-17 13:18:35 +00:00
|
|
|
final long diff = SystemClock.elapsedRealtime() - mLastUiRefresh;
|
|
|
|
if (diff > Config.REFRESH_UI_INTERVAL) {
|
|
|
|
mRefreshUiHandler.removeCallbacks(mRefreshUiRunnable);
|
|
|
|
runOnUiThread(mRefreshUiRunnable);
|
|
|
|
} else {
|
|
|
|
final long next = Config.REFRESH_UI_INTERVAL - diff;
|
|
|
|
mRefreshUiHandler.removeCallbacks(mRefreshUiRunnable);
|
|
|
|
mRefreshUiHandler.postDelayed(mRefreshUiRunnable,next);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-20 13:48:58 +00:00
|
|
|
abstract protected void refreshUiReal();
|
2015-02-17 13:18:35 +00:00
|
|
|
|
2014-07-16 10:34:09 +00:00
|
|
|
protected interface OnValueEdited {
|
|
|
|
public void onValueEdited(String value);
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-07-16 22:03:37 +00:00
|
|
|
public interface OnPresenceSelected {
|
|
|
|
public void onPresenceSelected();
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
protected ServiceConnection mConnection = new ServiceConnection() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onServiceConnected(ComponentName className, IBinder service) {
|
|
|
|
XmppConnectionBinder binder = (XmppConnectionBinder) service;
|
|
|
|
xmppConnectionService = binder.getService();
|
|
|
|
xmppConnectionServiceBound = true;
|
2014-11-19 16:31:28 +00:00
|
|
|
if (!registeredListeners && shouldRegisterListeners()) {
|
2014-11-11 16:39:28 +00:00
|
|
|
registerListeners();
|
|
|
|
registeredListeners = true;
|
2014-11-10 23:16:43 +00:00
|
|
|
}
|
2014-11-11 16:39:28 +00:00
|
|
|
onBackendConnected();
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onServiceDisconnected(ComponentName arg0) {
|
|
|
|
xmppConnectionServiceBound = false;
|
|
|
|
}
|
|
|
|
};
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
@Override
|
|
|
|
protected void onStart() {
|
|
|
|
super.onStart();
|
|
|
|
if (!xmppConnectionServiceBound) {
|
2014-03-19 14:05:01 +00:00
|
|
|
connectToBackend();
|
2014-11-11 16:39:28 +00:00
|
|
|
} else {
|
|
|
|
if (!registeredListeners) {
|
|
|
|
this.registerListeners();
|
|
|
|
this.registeredListeners = true;
|
|
|
|
}
|
|
|
|
this.onBackendConnected();
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-11-19 16:31:28 +00:00
|
|
|
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
|
|
|
|
protected boolean shouldRegisterListeners() {
|
|
|
|
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
|
|
|
|
return !isDestroyed() && !isFinishing();
|
|
|
|
} else {
|
|
|
|
return !isFinishing();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-19 14:05:01 +00:00
|
|
|
public void connectToBackend() {
|
|
|
|
Intent intent = new Intent(this, XmppConnectionService.class);
|
|
|
|
intent.setAction("ui");
|
|
|
|
startService(intent);
|
|
|
|
bindService(intent, mConnection, Context.BIND_AUTO_CREATE);
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
@Override
|
|
|
|
protected void onStop() {
|
|
|
|
super.onStop();
|
|
|
|
if (xmppConnectionServiceBound) {
|
2014-11-11 16:39:28 +00:00
|
|
|
if (registeredListeners) {
|
|
|
|
this.unregisterListeners();
|
|
|
|
this.registeredListeners = false;
|
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
unbindService(mConnection);
|
|
|
|
xmppConnectionServiceBound = false;
|
|
|
|
}
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-03-03 04:01:02 +00:00
|
|
|
protected void hideKeyboard() {
|
|
|
|
InputMethodManager inputManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
|
|
|
|
|
|
View focus = getCurrentFocus();
|
|
|
|
|
|
|
|
if (focus != null) {
|
|
|
|
|
2014-06-09 19:25:01 +00:00
|
|
|
inputManager.hideSoftInputFromWindow(focus.getWindowToken(),
|
2014-03-03 04:01:02 +00:00
|
|
|
InputMethodManager.HIDE_NOT_ALWAYS);
|
|
|
|
}
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-03-03 15:39:19 +00:00
|
|
|
public boolean hasPgp() {
|
2014-06-09 19:25:01 +00:00
|
|
|
return xmppConnectionService.getPgpEngine() != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void showInstallPgpDialog() {
|
|
|
|
Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle(getString(R.string.openkeychain_required));
|
|
|
|
builder.setIconAttribute(android.R.attr.alertDialogIcon);
|
|
|
|
builder.setMessage(getText(R.string.openkeychain_required_long));
|
|
|
|
builder.setNegativeButton(getString(R.string.cancel), null);
|
|
|
|
builder.setNeutralButton(getString(R.string.restart),
|
|
|
|
new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
unbindService(mConnection);
|
|
|
|
xmppConnectionServiceBound = false;
|
|
|
|
}
|
|
|
|
stopService(new Intent(XmppActivity.this,
|
2014-12-21 20:43:58 +00:00
|
|
|
XmppConnectionService.class));
|
2014-06-09 19:25:01 +00:00
|
|
|
finish();
|
2014-05-03 13:24:19 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
});
|
|
|
|
builder.setPositiveButton(getString(R.string.install),
|
|
|
|
new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
Uri uri = Uri
|
2014-12-21 20:43:58 +00:00
|
|
|
.parse("market://details?id=org.sufficientlysecure.keychain");
|
2014-09-11 16:02:09 +00:00
|
|
|
Intent marketIntent = new Intent(Intent.ACTION_VIEW,
|
|
|
|
uri);
|
|
|
|
PackageManager manager = getApplicationContext()
|
2014-12-21 20:43:58 +00:00
|
|
|
.getPackageManager();
|
2014-09-11 16:02:09 +00:00
|
|
|
List<ResolveInfo> infos = manager
|
2014-12-21 20:43:58 +00:00
|
|
|
.queryIntentActivities(marketIntent, 0);
|
2014-09-11 16:02:09 +00:00
|
|
|
if (infos.size() > 0) {
|
|
|
|
startActivity(marketIntent);
|
|
|
|
} else {
|
|
|
|
uri = Uri.parse("http://www.openkeychain.org/");
|
|
|
|
Intent browserIntent = new Intent(
|
|
|
|
Intent.ACTION_VIEW, uri);
|
|
|
|
startActivity(browserIntent);
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
finish();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
2014-03-03 15:39:19 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
abstract void onBackendConnected();
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-11-11 16:39:28 +00:00
|
|
|
protected void registerListeners() {
|
|
|
|
if (this instanceof XmppConnectionService.OnConversationUpdate) {
|
|
|
|
this.xmppConnectionService.setOnConversationListChangedListener((XmppConnectionService.OnConversationUpdate) this);
|
|
|
|
}
|
|
|
|
if (this instanceof XmppConnectionService.OnAccountUpdate) {
|
|
|
|
this.xmppConnectionService.setOnAccountListChangedListener((XmppConnectionService.OnAccountUpdate) this);
|
|
|
|
}
|
2015-10-11 11:11:50 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnCaptchaRequested) {
|
|
|
|
this.xmppConnectionService.setOnCaptchaRequestedListener((XmppConnectionService.OnCaptchaRequested) this);
|
|
|
|
}
|
2014-11-11 16:39:28 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnRosterUpdate) {
|
|
|
|
this.xmppConnectionService.setOnRosterUpdateListener((XmppConnectionService.OnRosterUpdate) this);
|
|
|
|
}
|
2014-11-23 14:19:44 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnMucRosterUpdate) {
|
|
|
|
this.xmppConnectionService.setOnMucRosterUpdateListener((XmppConnectionService.OnMucRosterUpdate) this);
|
|
|
|
}
|
2014-12-21 20:43:58 +00:00
|
|
|
if (this instanceof OnUpdateBlocklist) {
|
|
|
|
this.xmppConnectionService.setOnUpdateBlocklistListener((OnUpdateBlocklist) this);
|
|
|
|
}
|
2015-07-10 11:28:50 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnShowErrorToast) {
|
|
|
|
this.xmppConnectionService.setOnShowErrorToastListener((XmppConnectionService.OnShowErrorToast) this);
|
|
|
|
}
|
2015-07-21 12:18:16 +00:00
|
|
|
if (this instanceof OnKeyStatusUpdated) {
|
|
|
|
this.xmppConnectionService.setOnKeyStatusUpdatedListener((OnKeyStatusUpdated) this);
|
2015-07-19 16:36:28 +00:00
|
|
|
}
|
2014-11-11 16:39:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected void unregisterListeners() {
|
|
|
|
if (this instanceof XmppConnectionService.OnConversationUpdate) {
|
|
|
|
this.xmppConnectionService.removeOnConversationListChangedListener();
|
|
|
|
}
|
|
|
|
if (this instanceof XmppConnectionService.OnAccountUpdate) {
|
|
|
|
this.xmppConnectionService.removeOnAccountListChangedListener();
|
|
|
|
}
|
2015-10-11 11:11:50 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnCaptchaRequested) {
|
|
|
|
this.xmppConnectionService.removeOnCaptchaRequestedListener();
|
|
|
|
}
|
2014-11-11 16:39:28 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnRosterUpdate) {
|
|
|
|
this.xmppConnectionService.removeOnRosterUpdateListener();
|
|
|
|
}
|
2014-11-23 14:19:44 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnMucRosterUpdate) {
|
|
|
|
this.xmppConnectionService.removeOnMucRosterUpdateListener();
|
|
|
|
}
|
2014-12-21 20:43:58 +00:00
|
|
|
if (this instanceof OnUpdateBlocklist) {
|
|
|
|
this.xmppConnectionService.removeOnUpdateBlocklistListener();
|
|
|
|
}
|
2015-07-10 11:28:50 +00:00
|
|
|
if (this instanceof XmppConnectionService.OnShowErrorToast) {
|
|
|
|
this.xmppConnectionService.removeOnShowErrorToastListener();
|
|
|
|
}
|
2015-07-21 12:18:16 +00:00
|
|
|
if (this instanceof OnKeyStatusUpdated) {
|
2015-07-19 16:36:28 +00:00
|
|
|
this.xmppConnectionService.removeOnNewKeysAvailableListener();
|
|
|
|
}
|
2014-11-11 16:39:28 +00:00
|
|
|
}
|
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(final MenuItem item) {
|
2014-03-05 14:41:14 +00:00
|
|
|
switch (item.getItemId()) {
|
2014-11-04 11:15:14 +00:00
|
|
|
case R.id.action_settings:
|
|
|
|
startActivity(new Intent(this, SettingsActivity.class));
|
|
|
|
break;
|
|
|
|
case R.id.action_accounts:
|
|
|
|
startActivity(new Intent(this, ManageAccountActivity.class));
|
|
|
|
break;
|
|
|
|
case android.R.id.home:
|
|
|
|
finish();
|
|
|
|
break;
|
|
|
|
case R.id.action_show_qr_code:
|
|
|
|
showQrCode();
|
|
|
|
break;
|
2014-03-05 14:41:14 +00:00
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-03-09 12:21:28 +00:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
2014-09-02 13:51:20 +00:00
|
|
|
metrics = getResources().getDisplayMetrics();
|
2014-03-09 12:21:28 +00:00
|
|
|
ExceptionHelper.init(getApplicationContext());
|
2015-07-13 10:55:13 +00:00
|
|
|
mPrimaryTextColor = getResources().getColor(R.color.black87);
|
|
|
|
mSecondaryTextColor = getResources().getColor(R.color.black54);
|
2015-07-21 12:18:16 +00:00
|
|
|
mTertiaryTextColor = getResources().getColor(R.color.black12);
|
2015-07-30 10:40:50 +00:00
|
|
|
mColorRed = getResources().getColor(R.color.red800);
|
2015-07-13 10:55:13 +00:00
|
|
|
mColorOrange = getResources().getColor(R.color.orange500);
|
|
|
|
mColorGreen = getResources().getColor(R.color.green500);
|
2015-08-26 19:17:29 +00:00
|
|
|
mPrimaryColor = getResources().getColor(R.color.primary);
|
2015-07-13 10:55:13 +00:00
|
|
|
mPrimaryBackgroundColor = getResources().getColor(R.color.grey50);
|
|
|
|
mSecondaryBackgroundColor = getResources().getColor(R.color.grey200);
|
2014-12-09 19:22:21 +00:00
|
|
|
this.mTheme = findTheme();
|
|
|
|
setTheme(this.mTheme);
|
2015-01-14 20:28:27 +00:00
|
|
|
this.mUsingEnterKey = usingEnterKey();
|
2014-09-22 11:23:35 +00:00
|
|
|
mUseSubject = getPreferences().getBoolean("use_subject", true);
|
2015-01-20 21:53:45 +00:00
|
|
|
final ActionBar ab = getActionBar();
|
|
|
|
if (ab!=null) {
|
|
|
|
ab.setDisplayHomeAsUpEnabled(true);
|
|
|
|
}
|
2014-09-08 21:58:37 +00:00
|
|
|
}
|
|
|
|
|
2016-02-27 09:25:31 +00:00
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
final MenuItem menuSettings = menu.findItem(R.id.action_settings);
|
|
|
|
final MenuItem menuManageAccounts = menu.findItem(R.id.action_accounts);
|
|
|
|
if (menuSettings != null) {
|
|
|
|
menuSettings.setVisible(!Config.LOCK_SETTINGS);
|
|
|
|
}
|
|
|
|
if (menuManageAccounts != null) {
|
|
|
|
menuManageAccounts.setVisible(!Config.LOCK_SETTINGS);
|
|
|
|
}
|
|
|
|
return super.onCreateOptionsMenu(menu);
|
|
|
|
}
|
|
|
|
|
2016-03-06 14:53:49 +00:00
|
|
|
protected boolean isOptimizingBattery() {
|
2016-01-11 10:17:45 +00:00
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
|
|
|
PowerManager pm = (PowerManager) getSystemService(POWER_SERVICE);
|
|
|
|
return !pm.isIgnoringBatteryOptimizations(getPackageName());
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-14 20:28:27 +00:00
|
|
|
protected boolean usingEnterKey() {
|
|
|
|
return getPreferences().getBoolean("display_enter_key", false);
|
|
|
|
}
|
|
|
|
|
2014-09-08 21:58:37 +00:00
|
|
|
protected SharedPreferences getPreferences() {
|
|
|
|
return PreferenceManager
|
2014-12-21 20:43:58 +00:00
|
|
|
.getDefaultSharedPreferences(getApplicationContext());
|
2014-03-09 12:21:28 +00:00
|
|
|
}
|
2014-09-28 13:21:56 +00:00
|
|
|
|
2014-09-22 11:23:35 +00:00
|
|
|
public boolean useSubjectToIdentifyConference() {
|
|
|
|
return mUseSubject;
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-07-11 17:48:41 +00:00
|
|
|
public void switchToConversation(Conversation conversation) {
|
|
|
|
switchToConversation(conversation, null, false);
|
|
|
|
}
|
2014-07-12 01:44:23 +00:00
|
|
|
|
2014-06-09 19:25:01 +00:00
|
|
|
public void switchToConversation(Conversation conversation, String text,
|
2014-12-21 20:43:58 +00:00
|
|
|
boolean newTask) {
|
2015-07-21 11:15:59 +00:00
|
|
|
switchToConversation(conversation,text,null,false,newTask);
|
2014-11-17 00:54:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void highlightInMuc(Conversation conversation, String nick) {
|
2015-07-21 11:15:59 +00:00
|
|
|
switchToConversation(conversation, null, nick, false, false);
|
2014-11-17 00:54:01 +00:00
|
|
|
}
|
|
|
|
|
2015-07-21 11:15:59 +00:00
|
|
|
public void privateMsgInMuc(Conversation conversation, String nick) {
|
|
|
|
switchToConversation(conversation, null, nick, true, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void switchToConversation(Conversation conversation, String text, String nick, boolean pm, boolean newTask) {
|
2014-03-13 20:37:27 +00:00
|
|
|
Intent viewConversationIntent = new Intent(this,
|
|
|
|
ConversationActivity.class);
|
|
|
|
viewConversationIntent.setAction(Intent.ACTION_VIEW);
|
|
|
|
viewConversationIntent.putExtra(ConversationActivity.CONVERSATION,
|
|
|
|
conversation.getUuid());
|
2014-06-09 19:25:01 +00:00
|
|
|
if (text != null) {
|
2014-03-13 20:37:27 +00:00
|
|
|
viewConversationIntent.putExtra(ConversationActivity.TEXT, text);
|
|
|
|
}
|
2014-11-17 00:54:01 +00:00
|
|
|
if (nick != null) {
|
|
|
|
viewConversationIntent.putExtra(ConversationActivity.NICK, nick);
|
2015-07-21 11:15:59 +00:00
|
|
|
viewConversationIntent.putExtra(ConversationActivity.PRIVATE_MESSAGE,pm);
|
2014-11-17 00:54:01 +00:00
|
|
|
}
|
2014-03-13 20:37:27 +00:00
|
|
|
viewConversationIntent.setType(ConversationActivity.VIEW_CONVERSATION);
|
2014-05-21 14:43:19 +00:00
|
|
|
if (newTask) {
|
2014-05-31 17:33:46 +00:00
|
|
|
viewConversationIntent.setFlags(viewConversationIntent.getFlags()
|
2014-06-09 19:25:01 +00:00
|
|
|
| Intent.FLAG_ACTIVITY_NEW_TASK
|
|
|
|
| Intent.FLAG_ACTIVITY_SINGLE_TOP);
|
2014-05-21 14:43:19 +00:00
|
|
|
} else {
|
|
|
|
viewConversationIntent.setFlags(viewConversationIntent.getFlags()
|
2014-06-09 19:25:01 +00:00
|
|
|
| Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
2014-05-21 14:43:19 +00:00
|
|
|
}
|
2014-03-13 20:37:27 +00:00
|
|
|
startActivity(viewConversationIntent);
|
2014-09-27 09:37:02 +00:00
|
|
|
finish();
|
2014-03-13 20:37:27 +00:00
|
|
|
}
|
2014-07-12 01:44:23 +00:00
|
|
|
|
2014-07-09 23:55:19 +00:00
|
|
|
public void switchToContactDetails(Contact contact) {
|
2015-07-29 18:21:37 +00:00
|
|
|
switchToContactDetails(contact, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void switchToContactDetails(Contact contact, String messageFingerprint) {
|
2014-07-09 23:55:19 +00:00
|
|
|
Intent intent = new Intent(this, ContactDetailsActivity.class);
|
|
|
|
intent.setAction(ContactDetailsActivity.ACTION_VIEW_CONTACT);
|
2016-01-22 19:46:24 +00:00
|
|
|
intent.putExtra(EXTRA_ACCOUNT, contact.getAccount().getJid().toBareJid().toString());
|
2014-11-06 19:33:13 +00:00
|
|
|
intent.putExtra("contact", contact.getJid().toString());
|
2015-07-29 18:21:37 +00:00
|
|
|
intent.putExtra("fingerprint", messageFingerprint);
|
2014-07-09 23:55:19 +00:00
|
|
|
startActivity(intent);
|
|
|
|
}
|
2014-09-28 13:21:56 +00:00
|
|
|
|
2014-09-20 14:02:49 +00:00
|
|
|
public void switchToAccount(Account account) {
|
2015-10-25 23:59:32 +00:00
|
|
|
switchToAccount(account, false);
|
2015-10-09 11:37:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void switchToAccount(Account account, boolean init) {
|
2014-09-20 14:02:49 +00:00
|
|
|
Intent intent = new Intent(this, EditAccountActivity.class);
|
2014-11-09 15:57:22 +00:00
|
|
|
intent.putExtra("jid", account.getJid().toBareJid().toString());
|
2015-10-09 11:37:08 +00:00
|
|
|
intent.putExtra("init", init);
|
2014-09-20 14:02:49 +00:00
|
|
|
startActivity(intent);
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-07-16 22:03:37 +00:00
|
|
|
protected void inviteToConversation(Conversation conversation) {
|
2014-08-15 15:31:24 +00:00
|
|
|
Intent intent = new Intent(getApplicationContext(),
|
|
|
|
ChooseContactActivity.class);
|
2015-03-17 14:00:50 +00:00
|
|
|
List<String> contacts = new ArrayList<>();
|
|
|
|
if (conversation.getMode() == Conversation.MODE_MULTI) {
|
|
|
|
for (MucOptions.User user : conversation.getMucOptions().getUsers()) {
|
|
|
|
Jid jid = user.getJid();
|
|
|
|
if (jid != null) {
|
|
|
|
contacts.add(jid.toBareJid().toString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
contacts.add(conversation.getJid().toBareJid().toString());
|
|
|
|
}
|
|
|
|
intent.putExtra("filter_contacts", contacts.toArray(new String[contacts.size()]));
|
2014-08-15 15:31:24 +00:00
|
|
|
intent.putExtra("conversation", conversation.getUuid());
|
2015-03-17 14:00:50 +00:00
|
|
|
intent.putExtra("multiple", true);
|
2016-01-04 16:27:51 +00:00
|
|
|
intent.putExtra("show_enter_jid", true);
|
2016-01-22 19:46:24 +00:00
|
|
|
intent.putExtra(EXTRA_ACCOUNT, conversation.getAccount().getJid().toBareJid().toString());
|
2014-07-16 22:03:37 +00:00
|
|
|
startActivityForResult(intent, REQUEST_INVITE_TO_CONVERSATION);
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-06-07 11:25:27 +00:00
|
|
|
protected void announcePgp(Account account, final Conversation conversation) {
|
2015-10-29 13:03:41 +00:00
|
|
|
if (account.getPgpId() == -1) {
|
|
|
|
choosePgpSignId(account);
|
|
|
|
} else {
|
2015-11-09 01:07:30 +00:00
|
|
|
xmppConnectionService.getPgpEngine().generateSignature(account, "", new UiCallback<Account>() {
|
2015-10-29 13:03:41 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void userInputRequried(PendingIntent pi,
|
|
|
|
Account account) {
|
|
|
|
try {
|
|
|
|
startIntentSenderForResult(pi.getIntentSender(),
|
|
|
|
REQUEST_ANNOUNCE_PGP, null, 0, 0, 0);
|
|
|
|
} catch (final SendIntentException ignored) {
|
2014-06-09 19:25:01 +00:00
|
|
|
}
|
2015-10-29 13:03:41 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2015-10-29 13:03:41 +00:00
|
|
|
@Override
|
|
|
|
public void success(Account account) {
|
|
|
|
xmppConnectionService.databaseBackend.updateAccount(account);
|
|
|
|
xmppConnectionService.sendPresence(account);
|
|
|
|
if (conversation != null) {
|
|
|
|
conversation.setNextEncryption(Message.ENCRYPTION_PGP);
|
|
|
|
xmppConnectionService.databaseBackend.updateConversation(conversation);
|
2014-06-09 19:25:01 +00:00
|
|
|
}
|
2015-10-29 13:03:41 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2015-10-29 13:03:41 +00:00
|
|
|
@Override
|
|
|
|
public void error(int error, Account account) {
|
|
|
|
displayErrorDialog(error);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void choosePgpSignId(Account account) {
|
|
|
|
xmppConnectionService.getPgpEngine().chooseKey(account, new UiCallback<Account>() {
|
|
|
|
@Override
|
|
|
|
public void success(Account account1) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void error(int errorCode, Account object) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void userInputRequried(PendingIntent pi, Account object) {
|
|
|
|
try {
|
|
|
|
startIntentSenderForResult(pi.getIntentSender(),
|
|
|
|
REQUEST_CHOOSE_PGP_ID, null, 0, 0, 0);
|
|
|
|
} catch (final SendIntentException ignored) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-05-12 12:59:46 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-05-12 12:59:46 +00:00
|
|
|
protected void displayErrorDialog(final int errorCode) {
|
|
|
|
runOnUiThread(new Runnable() {
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-05-12 12:59:46 +00:00
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-06-09 19:25:01 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(
|
|
|
|
XmppActivity.this);
|
2014-05-12 12:59:46 +00:00
|
|
|
builder.setIconAttribute(android.R.attr.alertDialogIcon);
|
|
|
|
builder.setTitle(getString(R.string.error));
|
|
|
|
builder.setMessage(errorCode);
|
|
|
|
builder.setNeutralButton(R.string.accept, null);
|
|
|
|
builder.create().show();
|
2014-05-08 12:35:21 +00:00
|
|
|
}
|
|
|
|
});
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-05-08 12:35:21 +00:00
|
|
|
}
|
2014-07-12 01:44:23 +00:00
|
|
|
|
2014-06-16 12:21:22 +00:00
|
|
|
protected void showAddToRosterDialog(final Conversation conversation) {
|
2015-01-21 14:31:40 +00:00
|
|
|
showAddToRosterDialog(conversation.getContact());
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void showAddToRosterDialog(final Contact contact) {
|
2014-06-16 12:21:22 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2015-01-21 14:31:40 +00:00
|
|
|
builder.setTitle(contact.getJid().toString());
|
2014-06-16 12:21:22 +00:00
|
|
|
builder.setMessage(getString(R.string.not_in_roster));
|
|
|
|
builder.setNegativeButton(getString(R.string.cancel), null);
|
|
|
|
builder.setPositiveButton(getString(R.string.add_contact),
|
|
|
|
new DialogInterface.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
2015-01-21 14:31:40 +00:00
|
|
|
final Jid jid = contact.getJid();
|
|
|
|
Account account = contact.getAccount();
|
2014-06-16 12:21:22 +00:00
|
|
|
Contact contact = account.getRoster().getContact(jid);
|
|
|
|
xmppConnectionService.createContact(contact);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
2014-07-12 01:44:23 +00:00
|
|
|
|
2014-09-05 11:29:45 +00:00
|
|
|
private void showAskForPresenceDialog(final Contact contact) {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2014-11-06 19:33:13 +00:00
|
|
|
builder.setTitle(contact.getJid().toString());
|
2014-09-05 11:29:45 +00:00
|
|
|
builder.setMessage(R.string.request_presence_updates);
|
2014-09-08 10:46:48 +00:00
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setPositiveButton(R.string.request_now,
|
2014-09-05 11:29:45 +00:00
|
|
|
new DialogInterface.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
if (xmppConnectionServiceBound) {
|
2014-09-08 21:58:37 +00:00
|
|
|
xmppConnectionService.sendPresencePacket(contact
|
|
|
|
.getAccount(), xmppConnectionService
|
|
|
|
.getPresenceGenerator()
|
|
|
|
.requestPresenceUpdatesFrom(contact));
|
2014-09-05 11:29:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
2014-09-08 21:58:37 +00:00
|
|
|
|
|
|
|
private void warnMutalPresenceSubscription(final Conversation conversation,
|
2014-12-21 20:43:58 +00:00
|
|
|
final OnPresenceSelected listener) {
|
2014-09-08 10:46:48 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2014-11-06 19:33:13 +00:00
|
|
|
builder.setTitle(conversation.getContact().getJid().toString());
|
2014-09-08 10:46:48 +00:00
|
|
|
builder.setMessage(R.string.without_mutual_presence_updates);
|
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setPositiveButton(R.string.ignore, new OnClickListener() {
|
2014-09-08 21:58:37 +00:00
|
|
|
|
2014-09-08 10:46:48 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
2014-11-09 15:21:13 +00:00
|
|
|
conversation.setNextCounterpart(null);
|
2014-09-08 21:58:37 +00:00
|
|
|
if (listener != null) {
|
2014-09-08 10:46:48 +00:00
|
|
|
listener.onPresenceSelected();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
2014-09-05 11:29:45 +00:00
|
|
|
|
2014-09-04 09:46:13 +00:00
|
|
|
protected void quickEdit(String previousValue, OnValueEdited callback) {
|
|
|
|
quickEdit(previousValue, callback, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void quickPasswordEdit(String previousValue,
|
2014-12-21 20:43:58 +00:00
|
|
|
OnValueEdited callback) {
|
2014-09-04 09:46:13 +00:00
|
|
|
quickEdit(previousValue, callback, true);
|
|
|
|
}
|
|
|
|
|
2014-09-27 09:46:56 +00:00
|
|
|
@SuppressLint("InflateParams")
|
2014-09-04 09:46:13 +00:00
|
|
|
private void quickEdit(final String previousValue,
|
2014-12-21 20:43:58 +00:00
|
|
|
final OnValueEdited callback, boolean password) {
|
2014-07-16 10:34:09 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2014-10-26 17:54:10 +00:00
|
|
|
View view = getLayoutInflater().inflate(R.layout.quickedit, null);
|
2014-07-16 10:34:09 +00:00
|
|
|
final EditText editor = (EditText) view.findViewById(R.id.editor);
|
2014-09-04 09:46:13 +00:00
|
|
|
OnClickListener mClickListener = new OnClickListener() {
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-07-16 10:34:09 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
String value = editor.getText().toString();
|
|
|
|
if (!previousValue.equals(value) && value.trim().length() > 0) {
|
|
|
|
callback.onValueEdited(value);
|
|
|
|
}
|
|
|
|
}
|
2014-09-04 09:46:13 +00:00
|
|
|
};
|
|
|
|
if (password) {
|
|
|
|
editor.setInputType(InputType.TYPE_CLASS_TEXT
|
|
|
|
| InputType.TYPE_TEXT_VARIATION_PASSWORD);
|
|
|
|
editor.setHint(R.string.password);
|
|
|
|
builder.setPositiveButton(R.string.accept, mClickListener);
|
|
|
|
} else {
|
|
|
|
builder.setPositiveButton(R.string.edit, mClickListener);
|
|
|
|
}
|
|
|
|
editor.requestFocus();
|
|
|
|
editor.setText(previousValue);
|
|
|
|
builder.setView(view);
|
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
2014-07-16 10:34:09 +00:00
|
|
|
builder.create().show();
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2015-12-23 18:18:53 +00:00
|
|
|
protected boolean addFingerprintRow(LinearLayout keys, final Account account, final String fingerprint, boolean highlight, View.OnClickListener onKeyClickedListener) {
|
2015-08-01 16:27:52 +00:00
|
|
|
final XmppAxolotlSession.Trust trust = account.getAxolotlService()
|
2015-07-19 12:09:49 +00:00
|
|
|
.getFingerprintTrust(fingerprint);
|
2015-10-11 12:27:09 +00:00
|
|
|
if (trust == null) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-09-06 13:08:42 +00:00
|
|
|
return addFingerprintRowWithListeners(keys, account, fingerprint, highlight, trust, true,
|
2015-07-19 12:09:49 +00:00
|
|
|
new CompoundButton.OnCheckedChangeListener() {
|
|
|
|
@Override
|
|
|
|
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
|
2015-08-01 16:27:52 +00:00
|
|
|
account.getAxolotlService().setFingerprintTrust(fingerprint,
|
|
|
|
(isChecked) ? XmppAxolotlSession.Trust.TRUSTED :
|
|
|
|
XmppAxolotlSession.Trust.UNTRUSTED);
|
2015-07-19 12:09:49 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
account.getAxolotlService().setFingerprintTrust(fingerprint,
|
2015-08-01 16:27:52 +00:00
|
|
|
XmppAxolotlSession.Trust.UNTRUSTED);
|
2015-07-28 20:29:19 +00:00
|
|
|
v.setEnabled(true);
|
2015-07-19 12:09:49 +00:00
|
|
|
}
|
2015-12-23 18:18:53 +00:00
|
|
|
},
|
|
|
|
onKeyClickedListener
|
2015-07-19 12:09:49 +00:00
|
|
|
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-07-20 20:18:24 +00:00
|
|
|
protected boolean addFingerprintRowWithListeners(LinearLayout keys, final Account account,
|
2015-09-06 13:08:42 +00:00
|
|
|
final String fingerprint,
|
2015-07-29 18:21:37 +00:00
|
|
|
boolean highlight,
|
2015-08-01 16:27:52 +00:00
|
|
|
XmppAxolotlSession.Trust trust,
|
2015-07-29 18:21:37 +00:00
|
|
|
boolean showTag,
|
|
|
|
CompoundButton.OnCheckedChangeListener
|
|
|
|
onCheckedChangeListener,
|
2015-12-23 18:18:53 +00:00
|
|
|
View.OnClickListener onClickListener,
|
|
|
|
View.OnClickListener onKeyClickedListener) {
|
2015-08-01 16:27:52 +00:00
|
|
|
if (trust == XmppAxolotlSession.Trust.COMPROMISED) {
|
2015-07-20 20:18:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-07-19 12:09:49 +00:00
|
|
|
View view = getLayoutInflater().inflate(R.layout.contact_key, keys, false);
|
|
|
|
TextView key = (TextView) view.findViewById(R.id.key);
|
2015-12-23 18:18:53 +00:00
|
|
|
key.setOnClickListener(onKeyClickedListener);
|
2015-07-19 12:09:49 +00:00
|
|
|
TextView keyType = (TextView) view.findViewById(R.id.key_type);
|
2015-12-23 18:18:53 +00:00
|
|
|
keyType.setOnClickListener(onKeyClickedListener);
|
2015-07-19 12:09:49 +00:00
|
|
|
Switch trustToggle = (Switch) view.findViewById(R.id.tgl_trust);
|
|
|
|
trustToggle.setVisibility(View.VISIBLE);
|
|
|
|
trustToggle.setOnCheckedChangeListener(onCheckedChangeListener);
|
|
|
|
trustToggle.setOnClickListener(onClickListener);
|
2015-12-27 17:37:31 +00:00
|
|
|
final View.OnLongClickListener purge = new View.OnLongClickListener() {
|
2015-07-20 20:18:24 +00:00
|
|
|
@Override
|
|
|
|
public boolean onLongClick(View v) {
|
2015-09-06 13:08:42 +00:00
|
|
|
showPurgeKeyDialog(account, fingerprint);
|
2015-07-20 20:18:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
2015-12-27 17:37:31 +00:00
|
|
|
};
|
|
|
|
view.setOnLongClickListener(purge);
|
|
|
|
key.setOnLongClickListener(purge);
|
|
|
|
keyType.setOnLongClickListener(purge);
|
2015-10-31 09:57:57 +00:00
|
|
|
boolean x509 = trust == XmppAxolotlSession.Trust.TRUSTED_X509 || trust == XmppAxolotlSession.Trust.INACTIVE_TRUSTED_X509;
|
2015-07-19 12:09:49 +00:00
|
|
|
switch (trust) {
|
|
|
|
case UNTRUSTED:
|
|
|
|
case TRUSTED:
|
2015-10-31 09:57:57 +00:00
|
|
|
case TRUSTED_X509:
|
|
|
|
trustToggle.setChecked(trust.trusted(), false);
|
|
|
|
trustToggle.setEnabled(trust != XmppAxolotlSession.Trust.TRUSTED_X509);
|
|
|
|
if (trust == XmppAxolotlSession.Trust.TRUSTED_X509) {
|
|
|
|
trustToggle.setOnClickListener(null);
|
|
|
|
}
|
2015-07-21 12:18:16 +00:00
|
|
|
key.setTextColor(getPrimaryTextColor());
|
|
|
|
keyType.setTextColor(getSecondaryTextColor());
|
2015-07-19 12:09:49 +00:00
|
|
|
break;
|
|
|
|
case UNDECIDED:
|
|
|
|
trustToggle.setChecked(false, false);
|
|
|
|
trustToggle.setEnabled(false);
|
2015-07-21 12:18:16 +00:00
|
|
|
key.setTextColor(getPrimaryTextColor());
|
|
|
|
keyType.setTextColor(getSecondaryTextColor());
|
|
|
|
break;
|
2015-08-01 16:27:52 +00:00
|
|
|
case INACTIVE_UNTRUSTED:
|
|
|
|
case INACTIVE_UNDECIDED:
|
|
|
|
trustToggle.setOnClickListener(null);
|
|
|
|
trustToggle.setChecked(false, false);
|
|
|
|
trustToggle.setEnabled(false);
|
|
|
|
key.setTextColor(getTertiaryTextColor());
|
|
|
|
keyType.setTextColor(getTertiaryTextColor());
|
|
|
|
break;
|
|
|
|
case INACTIVE_TRUSTED:
|
2015-10-31 09:57:57 +00:00
|
|
|
case INACTIVE_TRUSTED_X509:
|
2015-07-21 22:53:18 +00:00
|
|
|
trustToggle.setOnClickListener(null);
|
2015-07-21 12:18:16 +00:00
|
|
|
trustToggle.setChecked(true, false);
|
|
|
|
trustToggle.setEnabled(false);
|
|
|
|
key.setTextColor(getTertiaryTextColor());
|
|
|
|
keyType.setTextColor(getTertiaryTextColor());
|
2015-07-19 12:09:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (showTag) {
|
2015-10-31 09:57:57 +00:00
|
|
|
keyType.setText(getString(x509 ? R.string.omemo_fingerprint_x509 : R.string.omemo_fingerprint));
|
2015-07-19 12:09:49 +00:00
|
|
|
} else {
|
|
|
|
keyType.setVisibility(View.GONE);
|
|
|
|
}
|
2015-07-29 18:21:37 +00:00
|
|
|
if (highlight) {
|
|
|
|
keyType.setTextColor(getResources().getColor(R.color.accent));
|
2015-10-31 09:57:57 +00:00
|
|
|
keyType.setText(getString(x509 ? R.string.omemo_fingerprint_x509_selected_message : R.string.omemo_fingerprint_selected_message));
|
2015-07-29 18:21:37 +00:00
|
|
|
} else {
|
2015-10-31 09:57:57 +00:00
|
|
|
keyType.setText(getString(x509 ? R.string.omemo_fingerprint_x509 : R.string.omemo_fingerprint));
|
2015-07-29 18:21:37 +00:00
|
|
|
}
|
2015-07-19 12:09:49 +00:00
|
|
|
|
2015-12-27 17:37:31 +00:00
|
|
|
key.setText(CryptoHelper.prettifyFingerprint(fingerprint.substring(2)));
|
2015-07-19 12:09:49 +00:00
|
|
|
keys.addView(view);
|
2015-07-20 20:18:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
2015-07-19 12:09:49 +00:00
|
|
|
|
2015-09-06 13:08:42 +00:00
|
|
|
public void showPurgeKeyDialog(final Account account, final String fingerprint) {
|
2015-07-20 20:18:24 +00:00
|
|
|
Builder builder = new Builder(this);
|
|
|
|
builder.setTitle(getString(R.string.purge_key));
|
|
|
|
builder.setIconAttribute(android.R.attr.alertDialogIcon);
|
|
|
|
builder.setMessage(getString(R.string.purge_key_desc_part1)
|
2015-12-27 17:37:31 +00:00
|
|
|
+ "\n\n" + CryptoHelper.prettifyFingerprint(fingerprint.substring(2))
|
2015-07-20 20:18:24 +00:00
|
|
|
+ "\n\n" + getString(R.string.purge_key_desc_part2));
|
|
|
|
builder.setNegativeButton(getString(R.string.cancel), null);
|
2016-02-28 22:10:50 +00:00
|
|
|
builder.setPositiveButton(getString(R.string.purge_key),
|
2015-07-20 20:18:24 +00:00
|
|
|
new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
2016-01-12 08:48:49 +00:00
|
|
|
account.getAxolotlService().purgeKey(fingerprint);
|
|
|
|
refreshUi();
|
2015-07-20 20:18:24 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
2015-07-19 12:09:49 +00:00
|
|
|
}
|
|
|
|
|
2016-01-13 11:05:59 +00:00
|
|
|
public boolean hasStoragePermission(int requestCode) {
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
|
|
|
if (checkSelfPermission(Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
|
|
|
|
requestPermissions(new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, requestCode);
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-16 12:21:22 +00:00
|
|
|
public void selectPresence(final Conversation conversation,
|
2014-12-21 20:43:58 +00:00
|
|
|
final OnPresenceSelected listener) {
|
2014-11-09 15:21:13 +00:00
|
|
|
final Contact contact = conversation.getContact();
|
2014-11-10 00:24:35 +00:00
|
|
|
if (conversation.hasValidOtrSession()) {
|
|
|
|
SessionID id = conversation.getOtrSession().getSessionID();
|
|
|
|
Jid jid;
|
|
|
|
try {
|
|
|
|
jid = Jid.fromString(id.getAccountID() + "/" + id.getUserID());
|
|
|
|
} catch (InvalidJidException e) {
|
|
|
|
jid = null;
|
|
|
|
}
|
|
|
|
conversation.setNextCounterpart(jid);
|
|
|
|
listener.onPresenceSelected();
|
|
|
|
} else if (!contact.showInRoster()) {
|
2014-06-16 12:21:22 +00:00
|
|
|
showAddToRosterDialog(conversation);
|
|
|
|
} else {
|
|
|
|
Presences presences = contact.getPresences();
|
|
|
|
if (presences.size() == 0) {
|
2014-09-05 11:29:45 +00:00
|
|
|
if (!contact.getOption(Contact.Options.TO)
|
|
|
|
&& !contact.getOption(Contact.Options.ASKING)
|
2014-11-15 16:09:02 +00:00
|
|
|
&& contact.getAccount().getStatus() == Account.State.ONLINE) {
|
2014-09-05 11:29:45 +00:00
|
|
|
showAskForPresenceDialog(contact);
|
2014-09-08 21:58:37 +00:00
|
|
|
} else if (!contact.getOption(Contact.Options.TO)
|
|
|
|
|| !contact.getOption(Contact.Options.FROM)) {
|
|
|
|
warnMutalPresenceSubscription(conversation, listener);
|
2014-09-08 10:46:48 +00:00
|
|
|
} else {
|
2014-11-09 15:21:13 +00:00
|
|
|
conversation.setNextCounterpart(null);
|
2014-09-08 10:46:48 +00:00
|
|
|
listener.onPresenceSelected();
|
2014-09-05 11:29:45 +00:00
|
|
|
}
|
2014-06-16 12:21:22 +00:00
|
|
|
} else if (presences.size() == 1) {
|
2014-10-26 17:54:10 +00:00
|
|
|
String presence = presences.asStringArray()[0];
|
2014-11-09 15:21:13 +00:00
|
|
|
try {
|
|
|
|
conversation.setNextCounterpart(Jid.fromParts(contact.getJid().getLocalpart(),contact.getJid().getDomainpart(),presence));
|
|
|
|
} catch (InvalidJidException e) {
|
|
|
|
conversation.setNextCounterpart(null);
|
|
|
|
}
|
2014-06-16 12:21:22 +00:00
|
|
|
listener.onPresenceSelected();
|
|
|
|
} else {
|
|
|
|
final StringBuilder presence = new StringBuilder();
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle(getString(R.string.choose_presence));
|
|
|
|
final String[] presencesArray = presences.asStringArray();
|
|
|
|
int preselectedPresence = 0;
|
|
|
|
for (int i = 0; i < presencesArray.length; ++i) {
|
|
|
|
if (presencesArray[i].equals(contact.lastseen.presence)) {
|
|
|
|
preselectedPresence = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
presence.append(presencesArray[preselectedPresence]);
|
|
|
|
builder.setSingleChoiceItems(presencesArray,
|
|
|
|
preselectedPresence,
|
|
|
|
new DialogInterface.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog,
|
2014-12-21 20:43:58 +00:00
|
|
|
int which) {
|
2014-06-16 12:21:22 +00:00
|
|
|
presence.delete(0, presence.length());
|
|
|
|
presence.append(presencesArray[which]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setPositiveButton(R.string.ok, new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
2014-11-09 15:21:13 +00:00
|
|
|
try {
|
|
|
|
conversation.setNextCounterpart(Jid.fromParts(contact.getJid().getLocalpart(),contact.getJid().getDomainpart(),presence.toString()));
|
|
|
|
} catch (InvalidJidException e) {
|
|
|
|
conversation.setNextCounterpart(null);
|
|
|
|
}
|
2014-06-16 12:21:22 +00:00
|
|
|
listener.onPresenceSelected();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-07-16 22:03:37 +00:00
|
|
|
protected void onActivityResult(int requestCode, int resultCode,
|
2014-12-21 20:43:58 +00:00
|
|
|
final Intent data) {
|
2014-07-16 22:03:37 +00:00
|
|
|
super.onActivityResult(requestCode, resultCode, data);
|
2015-05-12 02:33:04 +00:00
|
|
|
if (requestCode == REQUEST_INVITE_TO_CONVERSATION && resultCode == RESULT_OK) {
|
|
|
|
mPendingConferenceInvite = ConferenceInvite.parse(data);
|
|
|
|
if (xmppConnectionServiceBound && mPendingConferenceInvite != null) {
|
|
|
|
mPendingConferenceInvite.execute(this);
|
|
|
|
mPendingConferenceInvite = null;
|
2014-07-16 22:03:37 +00:00
|
|
|
}
|
2015-03-17 14:00:50 +00:00
|
|
|
}
|
2014-07-16 22:03:37 +00:00
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-11-20 17:20:42 +00:00
|
|
|
private UiCallback<Conversation> adhocCallback = new UiCallback<Conversation>() {
|
|
|
|
@Override
|
|
|
|
public void success(final Conversation conversation) {
|
|
|
|
switchToConversation(conversation);
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
Toast.makeText(XmppActivity.this,R.string.conference_created,Toast.LENGTH_LONG).show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void error(final int errorCode, Conversation object) {
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
Toast.makeText(XmppActivity.this,errorCode,Toast.LENGTH_LONG).show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void userInputRequried(PendingIntent pi, Conversation object) {
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-07-21 12:18:16 +00:00
|
|
|
public int getTertiaryTextColor() {
|
|
|
|
return this.mTertiaryTextColor;
|
|
|
|
}
|
|
|
|
|
2014-07-22 13:31:54 +00:00
|
|
|
public int getSecondaryTextColor() {
|
|
|
|
return this.mSecondaryTextColor;
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-07-22 13:31:54 +00:00
|
|
|
public int getPrimaryTextColor() {
|
|
|
|
return this.mPrimaryTextColor;
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-07-31 13:09:34 +00:00
|
|
|
public int getWarningTextColor() {
|
2014-09-11 12:24:10 +00:00
|
|
|
return this.mColorRed;
|
2014-07-31 13:09:34 +00:00
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2015-01-23 21:28:10 +00:00
|
|
|
public int getOnlineColor() {
|
|
|
|
return this.mColorGreen;
|
|
|
|
}
|
2015-04-13 13:59:18 +00:00
|
|
|
|
|
|
|
public int getPrimaryBackgroundColor() {
|
|
|
|
return this.mPrimaryBackgroundColor;
|
|
|
|
}
|
|
|
|
|
2014-10-03 13:00:29 +00:00
|
|
|
public int getSecondaryBackgroundColor() {
|
|
|
|
return this.mSecondaryBackgroundColor;
|
|
|
|
}
|
2014-09-04 09:46:13 +00:00
|
|
|
|
2014-10-20 19:08:33 +00:00
|
|
|
public int getPixel(int dp) {
|
|
|
|
DisplayMetrics metrics = getResources().getDisplayMetrics();
|
|
|
|
return ((int) (dp * metrics.density));
|
|
|
|
}
|
2014-11-04 11:15:14 +00:00
|
|
|
|
|
|
|
public boolean copyTextToClipboard(String text, int labelResId) {
|
2014-10-23 19:27:41 +00:00
|
|
|
ClipboardManager mClipBoardManager = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
|
|
|
|
String label = getResources().getString(labelResId);
|
|
|
|
if (mClipBoardManager != null) {
|
|
|
|
ClipData mClipData = ClipData.newPlainText(label, text);
|
|
|
|
mClipBoardManager.setPrimaryClip(mClipData);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2014-10-20 19:08:33 +00:00
|
|
|
|
2014-11-04 11:15:14 +00:00
|
|
|
protected void registerNdefPushMessageCallback() {
|
2014-12-21 20:43:58 +00:00
|
|
|
NfcAdapter nfcAdapter = NfcAdapter.getDefaultAdapter(this);
|
|
|
|
if (nfcAdapter != null && nfcAdapter.isEnabled()) {
|
|
|
|
nfcAdapter.setNdefPushMessageCallback(new NfcAdapter.CreateNdefMessageCallback() {
|
|
|
|
@Override
|
|
|
|
public NdefMessage createNdefMessage(NfcEvent nfcEvent) {
|
|
|
|
return new NdefMessage(new NdefRecord[]{
|
2016-01-22 19:21:45 +00:00
|
|
|
NdefRecord.createUri(getShareableUri()),
|
2014-12-21 20:43:58 +00:00
|
|
|
NdefRecord.createApplicationRecord("eu.siacs.conversations")
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, this);
|
|
|
|
}
|
2014-11-04 11:15:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected void unregisterNdefPushMessageCallback() {
|
|
|
|
NfcAdapter nfcAdapter = NfcAdapter.getDefaultAdapter(this);
|
|
|
|
if (nfcAdapter != null && nfcAdapter.isEnabled()) {
|
|
|
|
nfcAdapter.setNdefPushMessageCallback(null,this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected String getShareableUri() {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2014-11-04 16:10:35 +00:00
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
if (this.getShareableUri()!=null) {
|
|
|
|
this.registerNdefPushMessageCallback();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-09 19:22:21 +00:00
|
|
|
protected int findTheme() {
|
|
|
|
if (getPreferences().getBoolean("use_larger_font", false)) {
|
|
|
|
return R.style.ConversationsTheme_LargerText;
|
|
|
|
} else {
|
|
|
|
return R.style.ConversationsTheme;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-04 16:10:35 +00:00
|
|
|
@Override
|
|
|
|
public void onPause() {
|
|
|
|
super.onPause();
|
|
|
|
this.unregisterNdefPushMessageCallback();
|
|
|
|
}
|
|
|
|
|
2014-11-04 11:15:14 +00:00
|
|
|
protected void showQrCode() {
|
|
|
|
String uri = getShareableUri();
|
|
|
|
if (uri!=null) {
|
|
|
|
Point size = new Point();
|
|
|
|
getWindowManager().getDefaultDisplay().getSize(size);
|
|
|
|
final int width = (size.x < size.y ? size.x : size.y);
|
|
|
|
Bitmap bitmap = createQrCodeBitmap(uri, width);
|
|
|
|
ImageView view = new ImageView(this);
|
|
|
|
view.setImageBitmap(bitmap);
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setView(view);
|
|
|
|
builder.create().show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected Bitmap createQrCodeBitmap(String input, int size) {
|
2014-11-10 18:23:54 +00:00
|
|
|
Log.d(Config.LOGTAG,"qr code requested size: "+size);
|
2014-11-04 11:15:14 +00:00
|
|
|
try {
|
|
|
|
final QRCodeWriter QR_CODE_WRITER = new QRCodeWriter();
|
2014-11-06 19:33:13 +00:00
|
|
|
final Hashtable<EncodeHintType, Object> hints = new Hashtable<>();
|
2014-11-04 11:15:14 +00:00
|
|
|
hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);
|
|
|
|
final BitMatrix result = QR_CODE_WRITER.encode(input, BarcodeFormat.QR_CODE, size, size, hints);
|
|
|
|
final int width = result.getWidth();
|
|
|
|
final int height = result.getHeight();
|
|
|
|
final int[] pixels = new int[width * height];
|
|
|
|
for (int y = 0; y < height; y++) {
|
|
|
|
final int offset = y * width;
|
|
|
|
for (int x = 0; x < width; x++) {
|
|
|
|
pixels[offset + x] = result.get(x, y) ? Color.BLACK : Color.TRANSPARENT;
|
|
|
|
}
|
2014-11-03 22:47:49 +00:00
|
|
|
}
|
2014-11-04 11:15:14 +00:00
|
|
|
final Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
|
2014-11-10 18:23:54 +00:00
|
|
|
Log.d(Config.LOGTAG,"output size: "+width+"x"+height);
|
2014-11-04 11:15:14 +00:00
|
|
|
bitmap.setPixels(pixels, 0, width, 0, 0, width, height);
|
|
|
|
return bitmap;
|
|
|
|
} catch (final WriterException e) {
|
|
|
|
return null;
|
2014-11-03 19:00:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-22 19:21:45 +00:00
|
|
|
protected Account extractAccount(Intent intent) {
|
2016-01-22 19:46:24 +00:00
|
|
|
String jid = intent != null ? intent.getStringExtra(EXTRA_ACCOUNT) : null;
|
2016-01-22 19:21:45 +00:00
|
|
|
try {
|
|
|
|
return jid != null ? xmppConnectionService.findAccountByJid(Jid.fromString(jid)) : null;
|
|
|
|
} catch (InvalidJidException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-12 02:33:04 +00:00
|
|
|
public static class ConferenceInvite {
|
|
|
|
private String uuid;
|
|
|
|
private List<Jid> jids = new ArrayList<>();
|
|
|
|
|
|
|
|
public static ConferenceInvite parse(Intent data) {
|
|
|
|
ConferenceInvite invite = new ConferenceInvite();
|
|
|
|
invite.uuid = data.getStringExtra("conversation");
|
|
|
|
if (invite.uuid == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
if (data.getBooleanExtra("multiple", false)) {
|
|
|
|
String[] toAdd = data.getStringArrayExtra("contacts");
|
|
|
|
for (String item : toAdd) {
|
|
|
|
invite.jids.add(Jid.fromString(item));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
invite.jids.add(Jid.fromString(data.getStringExtra("contact")));
|
|
|
|
}
|
|
|
|
} catch (final InvalidJidException ignored) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return invite;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void execute(XmppActivity activity) {
|
|
|
|
XmppConnectionService service = activity.xmppConnectionService;
|
|
|
|
Conversation conversation = service.findConversationByUuid(this.uuid);
|
|
|
|
if (conversation == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (conversation.getMode() == Conversation.MODE_MULTI) {
|
|
|
|
for (Jid jid : jids) {
|
|
|
|
service.invite(conversation, jid);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
jids.add(conversation.getJid().toBareJid());
|
|
|
|
service.createAdhocConference(conversation.getAccount(), jids, activity.adhocCallback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-21 12:57:16 +00:00
|
|
|
public AvatarService avatarService() {
|
|
|
|
return xmppConnectionService.getAvatarService();
|
|
|
|
}
|
|
|
|
|
2014-09-02 13:51:20 +00:00
|
|
|
class BitmapWorkerTask extends AsyncTask<Message, Void, Bitmap> {
|
|
|
|
private final WeakReference<ImageView> imageViewReference;
|
|
|
|
private Message message = null;
|
|
|
|
|
|
|
|
public BitmapWorkerTask(ImageView imageView) {
|
2014-11-06 19:33:13 +00:00
|
|
|
imageViewReference = new WeakReference<>(imageView);
|
2014-09-02 13:51:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected Bitmap doInBackground(Message... params) {
|
|
|
|
message = params[0];
|
|
|
|
try {
|
|
|
|
return xmppConnectionService.getFileBackend().getThumbnail(
|
|
|
|
message, (int) (metrics.density * 288), false);
|
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Bitmap bitmap) {
|
2014-11-06 19:33:13 +00:00
|
|
|
if (bitmap != null) {
|
2014-09-02 13:51:20 +00:00
|
|
|
final ImageView imageView = imageViewReference.get();
|
|
|
|
if (imageView != null) {
|
|
|
|
imageView.setImageBitmap(bitmap);
|
|
|
|
imageView.setBackgroundColor(0x00000000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void loadBitmap(Message message, ImageView imageView) {
|
|
|
|
Bitmap bm;
|
|
|
|
try {
|
|
|
|
bm = xmppConnectionService.getFileBackend().getThumbnail(message,
|
|
|
|
(int) (metrics.density * 288), true);
|
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
bm = null;
|
|
|
|
}
|
|
|
|
if (bm != null) {
|
|
|
|
imageView.setImageBitmap(bm);
|
|
|
|
imageView.setBackgroundColor(0x00000000);
|
|
|
|
} else {
|
|
|
|
if (cancelPotentialWork(message, imageView)) {
|
|
|
|
imageView.setBackgroundColor(0xff333333);
|
2016-03-16 09:46:33 +00:00
|
|
|
imageView.setImageDrawable(null);
|
2014-09-02 13:51:20 +00:00
|
|
|
final BitmapWorkerTask task = new BitmapWorkerTask(imageView);
|
|
|
|
final AsyncDrawable asyncDrawable = new AsyncDrawable(
|
|
|
|
getResources(), null, task);
|
|
|
|
imageView.setImageDrawable(asyncDrawable);
|
|
|
|
try {
|
|
|
|
task.execute(message);
|
2014-11-06 19:33:13 +00:00
|
|
|
} catch (final RejectedExecutionException ignored) {
|
2014-12-21 20:43:58 +00:00
|
|
|
}
|
2014-09-02 13:51:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean cancelPotentialWork(Message message,
|
2014-12-21 20:43:58 +00:00
|
|
|
ImageView imageView) {
|
2014-09-02 13:51:20 +00:00
|
|
|
final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
|
|
|
|
|
|
|
|
if (bitmapWorkerTask != null) {
|
|
|
|
final Message oldMessage = bitmapWorkerTask.message;
|
|
|
|
if (oldMessage == null || message != oldMessage) {
|
|
|
|
bitmapWorkerTask.cancel(true);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static BitmapWorkerTask getBitmapWorkerTask(ImageView imageView) {
|
|
|
|
if (imageView != null) {
|
|
|
|
final Drawable drawable = imageView.getDrawable();
|
|
|
|
if (drawable instanceof AsyncDrawable) {
|
|
|
|
final AsyncDrawable asyncDrawable = (AsyncDrawable) drawable;
|
|
|
|
return asyncDrawable.getBitmapWorkerTask();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
static class AsyncDrawable extends BitmapDrawable {
|
|
|
|
private final WeakReference<BitmapWorkerTask> bitmapWorkerTaskReference;
|
|
|
|
|
|
|
|
public AsyncDrawable(Resources res, Bitmap bitmap,
|
2014-12-21 20:43:58 +00:00
|
|
|
BitmapWorkerTask bitmapWorkerTask) {
|
2014-09-02 13:51:20 +00:00
|
|
|
super(res, bitmap);
|
2014-11-06 19:33:13 +00:00
|
|
|
bitmapWorkerTaskReference = new WeakReference<>(
|
2014-09-02 13:51:20 +00:00
|
|
|
bitmapWorkerTask);
|
|
|
|
}
|
|
|
|
|
|
|
|
public BitmapWorkerTask getBitmapWorkerTask() {
|
|
|
|
return bitmapWorkerTaskReference.get();
|
|
|
|
}
|
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|