FairEmail/app/src/main/java/eu/faircode/email/Helper.java

1157 lines
44 KiB
Java
Raw Normal View History

2018-08-02 13:33:06 +00:00
package eu.faircode.email;
/*
2018-08-14 05:53:24 +00:00
This file is part of FairEmail.
2018-08-02 13:33:06 +00:00
2018-08-14 05:53:24 +00:00
FairEmail is free software: you can redistribute it and/or modify
2018-08-02 13:33:06 +00:00
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
2018-10-29 10:46:49 +00:00
FairEmail is distributed in the hope that it will be useful,
2018-08-02 13:33:06 +00:00
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
2018-10-29 10:46:49 +00:00
along with FairEmail. If not, see <http://www.gnu.org/licenses/>.
2018-08-02 13:33:06 +00:00
2018-12-31 08:04:33 +00:00
Copyright 2018-2019 by Marcel Bokhorst (M66B)
2018-08-02 13:33:06 +00:00
*/
2018-08-27 16:19:56 +00:00
import android.accounts.Account;
import android.accounts.AccountManager;
2018-11-13 15:01:29 +00:00
import android.app.usage.UsageStatsManager;
2018-11-08 19:51:38 +00:00
import android.content.ActivityNotFoundException;
2018-08-02 13:33:06 +00:00
import android.content.Context;
2018-12-01 12:17:33 +00:00
import android.content.DialogInterface;
import android.content.Intent;
2018-12-24 10:47:21 +00:00
import android.content.SharedPreferences;
2018-09-27 06:44:02 +00:00
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
2018-12-23 13:34:42 +00:00
import android.content.pm.ResolveInfo;
2019-03-27 08:08:06 +00:00
import android.content.res.Configuration;
2018-08-06 15:07:46 +00:00
import android.content.res.TypedArray;
2019-01-29 13:29:39 +00:00
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
2019-03-26 19:48:26 +00:00
import android.graphics.Point;
2018-11-13 15:01:29 +00:00
import android.net.ConnectivityManager;
import android.net.Network;
import android.net.NetworkCapabilities;
import android.net.NetworkInfo;
2018-09-19 11:03:44 +00:00
import android.net.Uri;
2018-11-13 15:01:29 +00:00
import android.os.Build;
2018-12-01 12:17:33 +00:00
import android.os.Bundle;
2018-11-13 15:01:29 +00:00
import android.os.PowerManager;
2018-08-23 14:36:19 +00:00
import android.text.TextUtils;
2019-03-26 19:48:26 +00:00
import android.view.Display;
2018-08-13 13:53:46 +00:00
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;
2019-03-26 19:48:26 +00:00
import android.view.WindowManager;
2019-01-27 17:48:41 +00:00
import android.webkit.WebView;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
2018-08-13 13:53:46 +00:00
import android.widget.ImageView;
import android.widget.Spinner;
2018-11-08 19:51:38 +00:00
import android.widget.Toast;
2018-08-02 13:33:06 +00:00
2018-08-25 13:32:52 +00:00
import com.android.billingclient.api.BillingClient;
2018-08-13 13:53:46 +00:00
import com.google.android.material.bottomnavigation.BottomNavigationView;
2019-03-09 16:54:43 +00:00
import com.sun.mail.imap.IMAPStore;
2019-02-21 09:34:43 +00:00
import com.sun.mail.util.FolderClosedIOException;
2019-02-28 10:46:27 +00:00
import com.sun.mail.util.MailConnectException;
2018-08-13 13:53:46 +00:00
import org.json.JSONException;
import org.json.JSONObject;
2019-01-16 13:42:17 +00:00
import java.io.BufferedInputStream;
2018-12-24 10:47:21 +00:00
import java.io.BufferedOutputStream;
import java.io.BufferedReader;
2019-01-21 16:45:05 +00:00
import java.io.BufferedWriter;
2018-08-23 18:58:21 +00:00
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
2019-01-21 16:45:05 +00:00
import java.io.FileReader;
import java.io.FileWriter;
2018-08-02 17:07:02 +00:00
import java.io.IOException;
2018-08-23 18:58:21 +00:00
import java.io.InputStream;
2018-12-24 10:47:21 +00:00
import java.io.InputStreamReader;
2018-08-23 18:58:21 +00:00
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
2019-03-09 15:46:49 +00:00
import java.net.InetAddress;
import java.net.URL;
2019-02-28 10:46:27 +00:00
import java.net.UnknownHostException;
2018-08-25 11:27:54 +00:00
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
2018-12-24 10:47:21 +00:00
import java.text.DateFormat;
import java.text.DecimalFormat;
2018-12-24 10:47:21 +00:00
import java.text.SimpleDateFormat;
import java.util.ArrayList;
2018-12-01 12:17:33 +00:00
import java.util.Date;
2019-03-10 08:08:33 +00:00
import java.util.HashMap;
2019-03-09 16:54:43 +00:00
import java.util.LinkedHashMap;
import java.util.List;
2018-12-24 10:47:21 +00:00
import java.util.Map;
2019-02-26 10:05:21 +00:00
import java.util.Objects;
2019-03-18 10:51:47 +00:00
import java.util.Set;
2018-09-04 07:02:54 +00:00
import java.util.concurrent.ThreadFactory;
import javax.mail.Address;
import javax.mail.AuthenticationFailedException;
2019-02-21 09:34:43 +00:00
import javax.mail.FolderClosedException;
import javax.mail.MessageRemovedException;
import javax.mail.MessagingException;
import javax.mail.internet.InternetAddress;
2019-03-09 15:46:49 +00:00
import javax.net.ssl.HttpsURLConnection;
2018-08-02 17:07:02 +00:00
2018-11-17 09:36:11 +00:00
import androidx.annotation.NonNull;
2018-09-19 11:03:44 +00:00
import androidx.browser.customtabs.CustomTabsIntent;
2019-02-07 09:02:40 +00:00
import androidx.core.content.ContextCompat;
import androidx.lifecycle.Lifecycle;
import androidx.lifecycle.LifecycleOwner;
2019-03-15 13:54:25 +00:00
import androidx.preference.PreferenceManager;
2018-09-15 05:49:54 +00:00
2018-09-04 07:02:54 +00:00
import static android.os.Process.THREAD_PRIORITY_BACKGROUND;
2018-12-23 13:34:42 +00:00
import static androidx.browser.customtabs.CustomTabsService.ACTION_CUSTOM_TABS_CONNECTION;
2018-09-04 07:02:54 +00:00
2018-08-02 13:33:06 +00:00
public class Helper {
2019-03-10 08:08:33 +00:00
private static Map<String, String> hostOrganization = new HashMap<>();
2019-02-15 07:51:14 +00:00
static final int NOTIFICATION_SYNCHRONIZE = 1;
static final int NOTIFICATION_SEND = 2;
static final int NOTIFICATION_EXTERNAL = 3;
2019-02-15 07:51:14 +00:00
2018-08-27 14:31:45 +00:00
static final int AUTH_TYPE_PASSWORD = 1;
static final int AUTH_TYPE_GMAIL = 2;
2019-01-17 10:53:29 +00:00
static final float LOW_LIGHT = 0.6f;
2019-02-07 19:51:50 +00:00
static final String FAQ_URI = "https://github.com/M66B/open-source-email/blob/master/FAQ.md";
2018-09-04 07:02:54 +00:00
static ThreadFactory backgroundThreadFactory = new ThreadFactory() {
@Override
public Thread newThread(@NonNull Runnable runnable) {
Thread thread = new Thread(runnable);
thread.setPriority(THREAD_PRIORITY_BACKGROUND);
return thread;
}
};
2019-02-07 09:02:40 +00:00
static boolean hasPermission(Context context, String name) {
return (ContextCompat.checkSelfPermission(context, name) == PackageManager.PERMISSION_GRANTED);
}
static void view(Context context, LifecycleOwner owner, Intent intent) {
Uri uri = intent.getData();
if ("http".equals(uri.getScheme()) || "https".equals(uri.getScheme()))
2018-12-23 13:34:42 +00:00
view(context, owner, intent.getData(), false);
else
context.startActivity(intent);
}
2018-12-23 13:34:42 +00:00
static void view(Context context, LifecycleOwner owner, Uri uri, boolean browse) {
2018-12-24 12:27:45 +00:00
Log.i("View=" + uri);
2018-12-23 13:34:42 +00:00
if (!hasCustomTabs(context, uri))
browse = true;
if (browse) {
Intent view = new Intent(Intent.ACTION_VIEW, uri);
2018-12-30 10:56:04 +00:00
context.startActivity(getChooser(context, view));
2018-12-23 13:34:42 +00:00
} else {
// https://developer.chrome.com/multidevice/android/customtabs
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
2019-01-27 12:24:37 +00:00
builder.setToolbarColor(resolveColor(context, R.attr.colorPrimary));
2018-12-23 13:34:42 +00:00
CustomTabsIntent customTabsIntent = builder.build();
try {
customTabsIntent.launchUrl(context, uri);
} catch (ActivityNotFoundException ex) {
2019-02-19 16:14:07 +00:00
Log.w(ex);
2018-12-23 13:34:42 +00:00
Toast.makeText(context, context.getString(R.string.title_no_viewer, uri.toString()), Toast.LENGTH_LONG).show();
} catch (Throwable ex) {
2018-12-24 12:41:38 +00:00
Log.e(ex);
2019-01-27 12:24:37 +00:00
unexpectedError(context, owner, ex);
2018-12-23 13:34:42 +00:00
}
}
}
2018-12-23 13:34:42 +00:00
static boolean hasCustomTabs(Context context, Uri uri) {
PackageManager pm = context.getPackageManager();
Intent view = new Intent(Intent.ACTION_VIEW, uri);
2018-09-19 11:03:44 +00:00
2018-12-23 13:34:42 +00:00
for (ResolveInfo info : pm.queryIntentActivities(view, 0)) {
Intent intent = new Intent();
intent.setAction(ACTION_CUSTOM_TABS_CONNECTION);
intent.setPackage(info.activityInfo.packageName);
if (pm.resolveService(intent, 0) != null)
return true;
2018-11-08 19:51:38 +00:00
}
2018-12-23 13:34:42 +00:00
return false;
2018-09-19 11:03:44 +00:00
}
static Intent getChooser(Context context, Intent intent) {
PackageManager pm = context.getPackageManager();
if (pm.queryIntentActivities(intent, 0).size() == 1)
return intent;
else
return Intent.createChooser(intent, context.getString(R.string.title_select_app));
}
2019-02-18 17:00:58 +00:00
static Intent getIntentSetupHelp() {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("https://github.com/M66B/open-source-email/blob/master/SETUP.md#setup-help"));
return intent;
}
2019-01-14 10:29:47 +00:00
static Intent getIntentFAQ() {
Intent intent = new Intent(Intent.ACTION_VIEW);
2019-02-07 19:51:50 +00:00
intent.setData(Uri.parse(Helper.FAQ_URI));
2019-01-14 10:29:47 +00:00
return intent;
}
static Intent getIntentPrivacy() {
Intent intent = new Intent(Intent.ACTION_VIEW);
2019-01-10 13:53:23 +00:00
intent.setData(Uri.parse("https://github.com/M66B/open-source-email/blob/master/PRIVACY.md#fairemail"));
return intent;
}
2018-10-29 15:47:27 +00:00
static Intent getIntentOpenKeychain() {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("https://f-droid.org/en/packages/org.sufficientlysecure.keychain/"));
return intent;
}
2018-12-30 14:35:19 +00:00
static int dp2pixels(Context context, int dp) {
2018-12-29 07:40:12 +00:00
float scale = context.getResources().getDisplayMetrics().density;
return Math.round(dp * scale);
}
2018-12-30 14:35:19 +00:00
static float getTextSize(Context context, int zoom) {
2018-12-30 14:34:14 +00:00
TypedArray ta = null;
try {
if (zoom == 0)
ta = context.obtainStyledAttributes(
R.style.TextAppearance_AppCompat_Small, new int[]{android.R.attr.textSize});
else if (zoom == 2)
ta = context.obtainStyledAttributes(
R.style.TextAppearance_AppCompat_Large, new int[]{android.R.attr.textSize});
else
ta = context.obtainStyledAttributes(
R.style.TextAppearance_AppCompat_Medium, new int[]{android.R.attr.textSize});
2018-12-30 16:17:22 +00:00
return ta.getDimension(0, 0);
2018-12-30 14:34:14 +00:00
} finally {
if (ta != null)
ta.recycle();
}
}
2018-08-02 13:33:06 +00:00
static int resolveColor(Context context, int attr) {
2018-08-06 15:07:46 +00:00
int[] attrs = new int[]{attr};
TypedArray a = context.getTheme().obtainStyledAttributes(attrs);
int color = a.getColor(0, 0xFF0000);
a.recycle();
return color;
2018-08-02 13:33:06 +00:00
}
2019-01-29 13:29:39 +00:00
static Bitmap decodeImage(File file, int scaleToPixels) {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(file.getAbsolutePath(), options);
2019-02-04 07:39:34 +00:00
int factor = 1;
while (options.outWidth / factor > scaleToPixels)
factor *= 2;
2019-01-29 13:29:39 +00:00
if (factor > 1) {
Log.i("Decode image factor=" + factor);
options.inJustDecodeBounds = false;
options.inSampleSize = factor;
return BitmapFactory.decodeFile(file.getAbsolutePath(), options);
}
return BitmapFactory.decodeFile(file.getAbsolutePath());
}
static void setViewsEnabled(ViewGroup view, boolean enabled) {
for (int i = 0; i < view.getChildCount(); i++) {
View child = view.getChildAt(i);
if (child instanceof Spinner ||
child instanceof EditText ||
child instanceof CheckBox ||
child instanceof ImageView /* =ImageButton */ ||
(child instanceof Button && "disable".equals(child.getTag())))
child.setEnabled(enabled);
2018-08-13 13:53:46 +00:00
if (child instanceof BottomNavigationView) {
Menu menu = ((BottomNavigationView) child).getMenu();
menu.setGroupEnabled(0, enabled);
} else if (child instanceof ViewGroup)
setViewsEnabled((ViewGroup) child, enabled);
}
}
2018-08-02 13:33:06 +00:00
static String localizeFolderName(Context context, String name) {
2019-02-02 07:28:14 +00:00
if (name != null && "INBOX".equals(name.toUpperCase()))
2018-08-02 13:33:06 +00:00
return context.getString(R.string.title_folder_inbox);
else if ("OUTBOX".equals(name))
return context.getString(R.string.title_folder_outbox);
else
return name;
}
static String formatThrowable(Throwable ex) {
2019-02-21 09:34:43 +00:00
return formatThrowable(ex, false, " ");
2019-01-23 08:44:25 +00:00
}
2019-02-21 09:34:43 +00:00
static String formatThrowable(Throwable ex, boolean sanitize) {
return formatThrowable(ex, sanitize, " ");
}
static String formatThrowable(Throwable ex, boolean sanitize, String separator) {
if (sanitize) {
if (ex instanceof MessageRemovedException)
return null;
if (ex instanceof FolderClosedException)
return null;
if (ex instanceof FolderClosedIOException)
return null;
if (ex instanceof IllegalStateException)
// sync when store disconnected
return null;
2019-03-05 13:09:08 +00:00
//if (ex instanceof SSLException || ex.getCause() instanceof SSLException)
// return null;
2019-02-28 10:46:27 +00:00
if (ex instanceof MailConnectException && ex.getCause() instanceof UnknownHostException)
return null;
2019-02-21 09:34:43 +00:00
}
2018-08-02 13:33:06 +00:00
StringBuilder sb = new StringBuilder();
2019-02-20 08:20:07 +00:00
if (BuildConfig.DEBUG)
sb.append(ex.toString());
else
sb.append(ex.getMessage() == null ? ex.getClass().getName() : ex.getMessage());
2018-12-08 16:27:50 +00:00
2018-08-02 13:33:06 +00:00
Throwable cause = ex.getCause();
while (cause != null) {
2019-02-20 08:20:07 +00:00
if (BuildConfig.DEBUG)
sb.append(separator).append(cause.toString());
else
sb.append(separator).append(cause.getMessage() == null ? cause.getClass().getName() : cause.getMessage());
2018-08-02 13:33:06 +00:00
cause = cause.getCause();
}
2018-12-08 16:27:50 +00:00
2018-08-02 13:33:06 +00:00
return sb.toString();
}
2018-08-02 17:07:02 +00:00
2018-12-01 12:17:33 +00:00
static void unexpectedError(final Context context, final LifecycleOwner owner, final Throwable ex) {
if (owner.getLifecycle().getCurrentState().isAtLeast(Lifecycle.State.RESUMED))
new DialogBuilderLifecycle(context, owner)
2018-12-01 09:58:19 +00:00
.setTitle(R.string.title_unexpected_error)
.setMessage(ex.toString())
.setPositiveButton(android.R.string.cancel, null)
2018-12-01 12:17:33 +00:00
.setNeutralButton(R.string.title_report, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
new SimpleTask<Long>() {
@Override
2018-12-31 07:03:48 +00:00
protected Long onExecute(Context context, Bundle args) throws Throwable {
2018-12-30 14:35:19 +00:00
return getDebugInfo(context, R.string.title_crash_info_remark, ex, null).id;
2018-12-01 12:17:33 +00:00
}
@Override
2018-12-31 07:03:48 +00:00
protected void onExecuted(Bundle args, Long id) {
2018-12-24 10:47:21 +00:00
context.startActivity(
new Intent(context, ActivityCompose.class)
.putExtra("action", "edit")
.putExtra("id", id));
2018-12-01 12:17:33 +00:00
}
@Override
protected void onException(Bundle args, Throwable ex) {
2018-12-24 10:47:21 +00:00
if (ex instanceof IllegalArgumentException)
Toast.makeText(context, ex.getMessage(), Toast.LENGTH_LONG).show();
else
Toast.makeText(context, ex.toString(), Toast.LENGTH_LONG).show();
2018-12-01 12:17:33 +00:00
}
2019-01-12 11:48:00 +00:00
}.execute(context, owner, new Bundle(), "error:unexpected");
2018-12-01 12:17:33 +00:00
}
})
2018-12-01 09:58:19 +00:00
.show();
2018-12-24 10:47:21 +00:00
else
ApplicationEx.writeCrashLog(context, ex);
}
2018-12-30 14:35:19 +00:00
static EntityMessage getDebugInfo(Context context, int title, Throwable ex, String log) throws IOException {
2018-12-24 10:47:21 +00:00
StringBuilder sb = new StringBuilder();
sb.append(context.getString(title)).append("\n\n\n\n");
2019-01-27 12:24:37 +00:00
sb.append(getAppInfo(context));
2018-12-24 10:47:21 +00:00
if (ex != null)
2018-12-24 12:27:45 +00:00
sb.append(ex.toString()).append("\n").append(android.util.Log.getStackTraceString(ex));
2018-12-24 10:47:21 +00:00
if (log != null)
sb.append(log);
String body = "<pre>" + sb.toString().replaceAll("\\r?\\n", "<br />") + "</pre>";
EntityMessage draft;
DB db = DB.getInstance(context);
try {
db.beginTransaction();
EntityFolder drafts = db.folder().getPrimaryDrafts();
if (drafts == null)
throw new IllegalArgumentException(context.getString(R.string.title_no_primary_drafts));
2019-01-18 19:32:44 +00:00
List<EntityIdentity> identities = db.identity().getIdentities(drafts.account);
EntityIdentity primary = null;
for (EntityIdentity identity : identities) {
if (identity.primary) {
primary = identity;
break;
} else if (primary == null)
primary = identity;
}
2018-12-24 10:47:21 +00:00
draft = new EntityMessage();
draft.account = drafts.account;
draft.folder = drafts.id;
2019-01-18 19:32:44 +00:00
draft.identity = (primary == null ? null : primary.id);
2018-12-24 10:47:21 +00:00
draft.msgid = EntityMessage.generateMessageId();
2019-02-06 07:29:25 +00:00
draft.thread = draft.msgid;
2019-01-27 12:24:37 +00:00
draft.to = new Address[]{myAddress()};
2018-12-24 10:47:21 +00:00
draft.subject = context.getString(R.string.app_name) + " " + BuildConfig.VERSION_NAME + " debug info";
draft.received = new Date().getTime();
draft.id = db.message().insertMessage(draft);
2019-03-14 07:45:13 +00:00
writeText(draft.getFile(context), body);
db.message().setMessageContent(draft.id, true, HtmlHelper.getPreview(body), null);
2018-12-24 10:47:21 +00:00
2018-12-30 14:35:19 +00:00
attachSettings(context, draft.id, 1);
attachAccounts(context, draft.id, 2);
attachNetworkInfo(context, draft.id, 3);
attachLog(context, draft.id, 4);
attachOperations(context, draft.id, 5);
attachLogcat(context, draft.id, 6);
2018-12-24 10:47:21 +00:00
Core.updateMessageSize(context, draft.id);
2019-01-04 18:37:56 +00:00
EntityOperation.queue(context, db, draft, EntityOperation.ADD);
2018-12-24 10:47:21 +00:00
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
return draft;
}
private static StringBuilder getAppInfo(Context context) {
StringBuilder sb = new StringBuilder();
// Get version info
String installer = context.getPackageManager().getInstallerPackageName(BuildConfig.APPLICATION_ID);
2019-03-31 06:42:00 +00:00
sb.append(String.format("%s: %s/%s %s/%s%s%s%s\r\n",
2018-12-24 10:47:21 +00:00
context.getString(R.string.app_name),
BuildConfig.APPLICATION_ID,
installer,
BuildConfig.VERSION_NAME,
2019-01-27 12:24:37 +00:00
hasValidFingerprint(context) ? "1" : "3",
2019-03-10 11:31:40 +00:00
BuildConfig.PLAY_STORE_RELEASE ? "p" : "",
2019-03-31 06:42:00 +00:00
BuildConfig.DEBUG ? "d" : "",
2019-01-27 12:24:37 +00:00
isPro(context) ? "+" : ""));
2018-12-24 10:47:21 +00:00
sb.append(String.format("Android: %s (SDK %d)\r\n", Build.VERSION.RELEASE, Build.VERSION.SDK_INT));
sb.append("\r\n");
// Get device info
sb.append(String.format("Brand: %s\r\n", Build.BRAND));
sb.append(String.format("Manufacturer: %s\r\n", Build.MANUFACTURER));
sb.append(String.format("Model: %s\r\n", Build.MODEL));
sb.append(String.format("Product: %s\r\n", Build.PRODUCT));
sb.append(String.format("Device: %s\r\n", Build.DEVICE));
sb.append(String.format("Host: %s\r\n", Build.HOST));
sb.append(String.format("Display: %s\r\n", Build.DISPLAY));
sb.append(String.format("Id: %s\r\n", Build.ID));
sb.append("\r\n");
2019-03-26 19:48:26 +00:00
WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
Display display = wm.getDefaultDisplay();
Point size = new Point();
display.getSize(size);
2019-03-27 08:08:06 +00:00
float density = context.getResources().getDisplayMetrics().density;
sb.append(String.format("Resolution: %.2f x %.2f dp %b\r\n",
size.x / density, size.y / density,
context.getResources().getConfiguration().isLayoutSizeAtLeast(Configuration.SCREENLAYOUT_SIZE_NORMAL)));
2019-03-26 19:48:26 +00:00
2018-12-24 10:47:21 +00:00
PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
boolean ignoring = true;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M)
ignoring = pm.isIgnoringBatteryOptimizations(BuildConfig.APPLICATION_ID);
sb.append(String.format("Battery optimizations: %b\r\n", !ignoring));
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
UsageStatsManager usm = (UsageStatsManager) context.getSystemService(Context.USAGE_STATS_SERVICE);
int bucket = usm.getAppStandbyBucket();
sb.append(String.format("Standby bucket: %d\r\n", bucket));
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
boolean saving = (cm.getRestrictBackgroundStatus() == ConnectivityManager.RESTRICT_BACKGROUND_STATUS_ENABLED);
sb.append(String.format("Data saving: %b\r\n", saving));
}
sb.append("\r\n");
2019-03-25 17:41:43 +00:00
sb.append(new Date().toString()).append("\r\n");
sb.append("\r\n");
2018-12-24 10:47:21 +00:00
return sb;
}
2018-12-30 14:35:19 +00:00
private static void attachSettings(Context context, long id, int sequence) throws IOException {
2018-12-24 10:47:21 +00:00
DB db = DB.getInstance(context);
2019-01-06 10:15:06 +00:00
EntityAttachment attachment = new EntityAttachment();
attachment.message = id;
attachment.sequence = sequence;
attachment.name = "settings.txt";
attachment.type = "text/plain";
attachment.size = null;
attachment.progress = 0;
attachment.id = db.attachment().insertAttachment(attachment);
2018-12-24 10:47:21 +00:00
2019-03-14 07:18:42 +00:00
File file = attachment.getFile(context);
2019-02-22 15:59:23 +00:00
try (OutputStream os = new BufferedOutputStream(new FileOutputStream(file))) {
2018-12-24 10:47:21 +00:00
long size = 0;
2018-12-24 10:47:21 +00:00
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
Map<String, ?> settings = prefs.getAll();
for (String key : settings.keySet())
size += write(os, key + "=" + settings.get(key) + "\r\n");
2019-01-06 10:15:06 +00:00
db.attachment().setDownloaded(attachment.id, size);
2018-12-24 10:47:21 +00:00
}
}
private static void attachAccounts(Context context, long id, int sequence) throws IOException {
DB db = DB.getInstance(context);
EntityAttachment attachment = new EntityAttachment();
attachment.message = id;
attachment.sequence = sequence;
attachment.name = "accounts.txt";
attachment.type = "text/plain";
attachment.size = null;
attachment.progress = 0;
attachment.id = db.attachment().insertAttachment(attachment);
File file = attachment.getFile(context);
try (OutputStream os = new BufferedOutputStream(new FileOutputStream(file))) {
long size = 0;
List<EntityAccount> accounts = db.account().getAccounts();
for (EntityAccount account : accounts)
try {
JSONObject jaccount = account.toJSON();
jaccount.remove("user");
jaccount.remove("password");
size += write(os, "==========\r\n");
size += write(os, jaccount.toString(2) + "\r\n");
List<EntityIdentity> identities = db.identity().getIdentities(account.id);
for (EntityIdentity identity : identities)
try {
JSONObject jidentity = identity.toJSON();
jidentity.remove("user");
jidentity.remove("password");
size += write(os, "----------\r\n");
size += write(os, jidentity.toString(2) + "\r\n");
} catch (JSONException ex) {
size += write(os, ex.toString() + "\r\n");
}
} catch (JSONException ex) {
size += write(os, ex.toString() + "\r\n");
}
db.attachment().setDownloaded(attachment.id, size);
}
}
2018-12-30 14:35:19 +00:00
private static void attachNetworkInfo(Context context, long id, int sequence) throws IOException {
2018-12-24 10:47:21 +00:00
DB db = DB.getInstance(context);
2019-01-06 10:15:06 +00:00
EntityAttachment attachment = new EntityAttachment();
attachment.message = id;
attachment.sequence = sequence;
attachment.name = "network.txt";
attachment.type = "text/plain";
attachment.size = null;
attachment.progress = 0;
attachment.id = db.attachment().insertAttachment(attachment);
2018-12-24 10:47:21 +00:00
2019-03-14 07:18:42 +00:00
File file = attachment.getFile(context);
2019-02-22 15:59:23 +00:00
try (OutputStream os = new BufferedOutputStream(new FileOutputStream(file))) {
2018-12-24 10:47:21 +00:00
long size = 0;
2018-12-24 10:47:21 +00:00
ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
2019-03-15 15:32:56 +00:00
Network active = null;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M)
active = cm.getActiveNetwork();
2018-12-24 10:47:21 +00:00
for (Network network : cm.getAllNetworks()) {
NetworkCapabilities caps = cm.getNetworkCapabilities(network);
2019-03-15 15:32:56 +00:00
size += write(os, (network.equals(active) ? "active=" : "network=") + network + " capabilities=" + caps + "\r\n\r\n");
2018-12-24 10:47:21 +00:00
}
2019-01-06 10:15:06 +00:00
db.attachment().setDownloaded(attachment.id, size);
2018-12-24 10:47:21 +00:00
}
}
2018-12-30 14:35:19 +00:00
private static void attachLog(Context context, long id, int sequence) throws IOException {
2018-12-24 10:47:21 +00:00
DB db = DB.getInstance(context);
2019-03-14 07:18:42 +00:00
EntityAttachment attachment = new EntityAttachment();
attachment.message = id;
attachment.sequence = sequence;
attachment.name = "log.txt";
attachment.type = "text/plain";
attachment.size = null;
attachment.progress = 0;
attachment.id = db.attachment().insertAttachment(attachment);
2018-12-24 10:47:21 +00:00
2019-03-14 07:18:42 +00:00
File file = attachment.getFile(context);
2019-02-22 15:59:23 +00:00
try (OutputStream os = new BufferedOutputStream(new FileOutputStream(file))) {
2018-12-24 10:47:21 +00:00
long size = 0;
2018-12-24 10:47:21 +00:00
long from = new Date().getTime() - 24 * 3600 * 1000L;
DateFormat DF = SimpleDateFormat.getTimeInstance();
for (EntityLog entry : db.log().getLogs(from))
size += write(os, String.format("%s %s\r\n", DF.format(entry.time), entry.data));
2019-03-14 07:18:42 +00:00
db.attachment().setDownloaded(attachment.id, size);
2018-12-24 10:47:21 +00:00
}
}
2018-12-30 14:35:19 +00:00
private static void attachOperations(Context context, long id, int sequence) throws IOException {
2018-12-24 10:47:21 +00:00
DB db = DB.getInstance(context);
2019-01-06 10:15:06 +00:00
EntityAttachment attachment = new EntityAttachment();
attachment.message = id;
attachment.sequence = sequence;
attachment.name = "operations.txt";
attachment.type = "text/plain";
attachment.size = null;
attachment.progress = 0;
attachment.id = db.attachment().insertAttachment(attachment);
2018-12-24 10:47:21 +00:00
2019-03-14 07:18:42 +00:00
File file = attachment.getFile(context);
2019-02-22 15:59:23 +00:00
try (OutputStream os = new BufferedOutputStream(new FileOutputStream(file))) {
2018-12-24 10:47:21 +00:00
long size = 0;
2018-12-24 10:47:21 +00:00
DateFormat DF = SimpleDateFormat.getTimeInstance();
for (EntityOperation op : db.operation().getOperations())
size += write(os, String.format("%s %d %s %s %s\r\n",
DF.format(op.created),
op.message == null ? -1 : op.message,
op.name,
op.args,
op.error));
2019-01-06 10:15:06 +00:00
db.attachment().setDownloaded(attachment.id, size);
2018-12-24 10:47:21 +00:00
}
}
2018-12-30 14:35:19 +00:00
private static void attachLogcat(Context context, long id, int sequence) throws IOException {
2018-12-24 10:47:21 +00:00
DB db = DB.getInstance(context);
2019-01-06 10:15:06 +00:00
EntityAttachment attachment = new EntityAttachment();
attachment.message = id;
attachment.sequence = sequence;
attachment.name = "logcat.txt";
attachment.type = "text/plain";
attachment.size = null;
attachment.progress = 0;
attachment.id = db.attachment().insertAttachment(attachment);
2018-12-24 10:47:21 +00:00
Process proc = null;
2019-03-14 07:18:42 +00:00
File file = attachment.getFile(context);
2019-02-22 15:59:23 +00:00
try (OutputStream os = new BufferedOutputStream(new FileOutputStream(file))) {
2018-12-24 10:47:21 +00:00
String[] cmd = new String[]{"logcat",
"-d",
"-v", "threadtime",
//"-t", "1000",
2018-12-24 12:27:45 +00:00
Log.TAG + ":I"};
2018-12-24 10:47:21 +00:00
proc = Runtime.getRuntime().exec(cmd);
long size = 0;
2019-02-22 15:59:23 +00:00
try (BufferedReader br = new BufferedReader(new InputStreamReader(proc.getInputStream()))) {
String line;
while ((line = br.readLine()) != null)
size += write(os, line + "\r\n");
}
2018-12-24 10:47:21 +00:00
2019-01-06 10:15:06 +00:00
db.attachment().setDownloaded(attachment.id, size);
2018-12-24 10:47:21 +00:00
} finally {
if (proc != null)
proc.destroy();
}
}
private static int write(OutputStream os, String text) throws IOException {
byte[] bytes = text.getBytes();
os.write(bytes);
return bytes.length;
2018-09-15 05:49:54 +00:00
}
2018-08-03 19:12:19 +00:00
static String humanReadableByteCount(long bytes, boolean si) {
int unit = si ? 1000 : 1024;
if (bytes < unit) return bytes + " B";
int exp = (int) (Math.log(bytes) / Math.log(unit));
String pre = (si ? "kMGTPE" : "KMGTPE").charAt(exp - 1) + (si ? "" : "i");
return new DecimalFormat("@@").format(bytes / Math.pow(unit, exp)) + " " + pre + "B";
2018-08-03 19:12:19 +00:00
}
2019-01-27 12:24:37 +00:00
static InternetAddress myAddress() throws UnsupportedEncodingException {
return new InternetAddress("marcel+fairemail@faircode.eu", "FairCode");
}
2018-08-23 14:36:19 +00:00
static String canonicalAddress(String address) {
2018-12-09 14:49:43 +00:00
String[] a = address.split("@");
2018-12-29 07:20:09 +00:00
if (a.length > 0) {
String[] extra = a[0].split("\\+");
if (extra.length > 0)
a[0] = extra[0];
}
return TextUtils.join("@", a).toLowerCase();
2018-08-23 14:36:19 +00:00
}
2018-08-23 18:58:21 +00:00
2019-01-21 16:45:05 +00:00
static void writeText(File file, String content) throws IOException {
2019-02-22 15:59:23 +00:00
try (BufferedWriter out = new BufferedWriter(new FileWriter(file))) {
2019-01-21 16:45:05 +00:00
out.write(content == null ? "" : content);
}
}
static String readText(File file) throws IOException {
2019-02-22 15:59:23 +00:00
try (BufferedReader in = new BufferedReader(new FileReader(file))) {
2019-01-21 16:45:05 +00:00
StringBuilder body = new StringBuilder();
String line;
while ((line = in.readLine()) != null) {
body.append(line);
body.append('\n');
}
return body.toString();
}
}
2018-08-23 18:58:21 +00:00
static void copy(File src, File dst) throws IOException {
2019-02-22 15:59:23 +00:00
try (InputStream in = new BufferedInputStream(new FileInputStream(src))) {
try (OutputStream out = new BufferedOutputStream(new FileOutputStream(dst))) {
2018-08-23 18:58:21 +00:00
byte[] buf = new byte[4096];
int len;
while ((len = in.read(buf)) > 0)
out.write(buf, 0, len);
}
}
}
2018-08-25 11:27:54 +00:00
2018-09-20 15:03:07 +00:00
static String getExtension(String filename) {
if (filename == null)
return null;
int index = filename.lastIndexOf(".");
if (index < 0)
return null;
return filename.substring(index + 1);
}
2019-03-16 13:12:31 +00:00
static class NetworkState {
private Boolean connected = null;
private Boolean suitable = null;
private Boolean unmetered = null;
boolean isConnected() {
return (connected != null && connected);
}
boolean isSuitable() {
return (suitable != null && suitable);
}
boolean isUnmetered() {
return (unmetered != null && unmetered);
}
public void update(NetworkState newState) {
2019-03-16 18:30:56 +00:00
connected = newState.connected;
2019-03-16 13:12:31 +00:00
unmetered = newState.unmetered;
2019-03-16 18:30:56 +00:00
suitable = newState.suitable;
2019-03-16 13:12:31 +00:00
}
}
static NetworkState getNetworkState(Context context) {
2019-03-06 09:51:46 +00:00
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean metered = prefs.getBoolean("metered", true);
2019-03-16 13:12:31 +00:00
NetworkState state = new NetworkState();
2019-03-16 18:38:47 +00:00
Boolean isMetered = isMetered(context);
2019-03-16 13:12:31 +00:00
state.connected = (isMetered != null);
state.unmetered = (isMetered != null && !isMetered);
state.suitable = (isMetered != null && (metered || !isMetered));
return state;
2019-02-28 19:17:09 +00:00
}
2019-03-16 18:38:47 +00:00
private static Boolean isMetered(Context context) {
2018-12-09 17:49:52 +00:00
ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
2019-03-02 10:22:15 +00:00
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M) {
NetworkInfo ani = cm.getActiveNetworkInfo();
if (ani == null || !ani.isConnected())
return null;
2018-12-09 17:49:52 +00:00
return cm.isActiveNetworkMetered();
2019-03-02 10:22:15 +00:00
}
Network active = cm.getActiveNetwork();
if (active == null) {
2019-03-16 18:38:47 +00:00
Log.i("isMetered: no active network");
return null;
}
2019-02-10 08:05:17 +00:00
NetworkCapabilities caps = cm.getNetworkCapabilities(active);
if (caps == null) {
2019-03-16 18:38:47 +00:00
Log.i("isMetered: active no caps");
2018-12-24 08:48:32 +00:00
return null; // network unknown
}
2019-03-16 18:38:47 +00:00
Log.i("isMetered: active caps=" + caps);
2019-03-16 07:35:15 +00:00
if (caps.hasCapability(NetworkCapabilities.NET_CAPABILITY_NOT_VPN) &&
!caps.hasCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET)) {
2019-03-16 18:38:47 +00:00
Log.i("isMetered: no internet");
2019-03-15 15:32:56 +00:00
return null;
}
2019-03-16 07:35:15 +00:00
if (!caps.hasCapability(NetworkCapabilities.NET_CAPABILITY_NOT_RESTRICTED)) {
2019-03-16 18:38:47 +00:00
Log.i("isMetered: active restricted");
2019-03-15 15:32:56 +00:00
return null;
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P &&
2019-03-16 07:35:15 +00:00
!caps.hasCapability(NetworkCapabilities.NET_CAPABILITY_FOREGROUND)) {
2019-03-16 18:38:47 +00:00
Log.i("isMetered: active background");
2019-03-15 15:32:56 +00:00
return null;
}
if (caps.hasCapability(NetworkCapabilities.NET_CAPABILITY_NOT_VPN)) {
boolean unmetered = caps.hasCapability(NetworkCapabilities.NET_CAPABILITY_NOT_METERED);
2019-03-16 18:38:47 +00:00
Log.i("isMetered: active not VPN unmetered=" + unmetered);
return !unmetered;
}
// VPN: evaluate underlying networks
2018-12-24 08:48:32 +00:00
boolean underlying = false;
Network[] networks = cm.getAllNetworks();
2018-12-19 09:41:41 +00:00
if (networks != null)
for (Network network : networks) {
caps = cm.getNetworkCapabilities(network);
if (caps == null) {
2019-03-16 18:38:47 +00:00
Log.i("isMetered: no underlying caps");
2018-12-24 08:48:32 +00:00
continue; // network unknown
2018-12-19 09:41:41 +00:00
}
2019-03-16 18:38:47 +00:00
Log.i("isMetered: underlying caps=" + caps);
2018-12-09 18:09:06 +00:00
2019-03-15 15:32:56 +00:00
if (!caps.hasCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET)) {
2019-03-16 18:38:47 +00:00
Log.i("isMetered: underlying no internet");
2019-03-15 15:32:56 +00:00
continue;
}
if (!caps.hasCapability(NetworkCapabilities.NET_CAPABILITY_NOT_RESTRICTED)) {
2019-03-16 18:38:47 +00:00
Log.i("isMetered: underlying restricted");
2019-03-15 15:32:56 +00:00
continue;
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P &&
!caps.hasCapability(NetworkCapabilities.NET_CAPABILITY_FOREGROUND)) {
2019-03-16 18:38:47 +00:00
Log.i("isMetered: underlying background");
2019-03-15 15:32:56 +00:00
continue;
}
2018-12-19 09:41:41 +00:00
if (caps.hasCapability(NetworkCapabilities.NET_CAPABILITY_NOT_VPN)) {
2018-12-24 08:48:32 +00:00
underlying = true;
2019-03-16 18:38:47 +00:00
Log.i("isMetered: underlying is connected");
2018-12-19 09:41:41 +00:00
2019-03-15 15:32:56 +00:00
if (caps.hasCapability(NetworkCapabilities.NET_CAPABILITY_NOT_METERED)) {
2019-03-16 18:38:47 +00:00
Log.i("isMetered: underlying is unmetered");
2019-03-15 15:32:56 +00:00
return false;
2018-12-23 19:58:16 +00:00
}
2018-12-19 09:41:41 +00:00
}
}
2018-12-24 08:48:32 +00:00
if (!underlying) {
2019-03-16 18:38:47 +00:00
Log.i("isMetered: no underlying network");
2018-12-24 08:48:32 +00:00
return null;
}
2018-12-19 09:41:41 +00:00
// Assume metered
2019-03-16 18:38:47 +00:00
Log.i("isMetered: underlying assume metered");
return true;
}
2019-03-09 16:54:43 +00:00
static void connect(Context context, IMAPStore istore, EntityAccount account) throws MessagingException {
try {
istore.connect(account.host, account.port, account.user, account.password);
} catch (AuthenticationFailedException ex) {
2019-01-27 12:24:37 +00:00
if (account.auth_type == AUTH_TYPE_GMAIL) {
account.password = refreshToken(context, "com.google", account.user, account.password);
DB.getInstance(context).account().setAccountPassword(account.id, account.password);
istore.connect(account.host, account.port, account.user, account.password);
} else
throw ex;
}
2019-03-09 16:54:43 +00:00
// https://www.ietf.org/rfc/rfc2971.txt
if (istore.hasCapability("ID"))
try {
Map<String, String> id = new LinkedHashMap<>();
id.put("name", context.getString(R.string.app_name));
id.put("version", BuildConfig.VERSION_NAME);
Map<String, String> sid = istore.id(id);
2019-03-10 11:21:46 +00:00
if (sid != null)
for (String key : sid.keySet())
Log.i("Server " + key + "=" + sid.get(key));
2019-03-09 16:54:43 +00:00
} catch (MessagingException ex) {
Log.w(ex);
}
}
2018-09-21 13:09:22 +00:00
static String refreshToken(Context context, String type, String name, String current) {
2018-08-27 16:19:56 +00:00
try {
AccountManager am = AccountManager.get(context);
Account[] accounts = am.getAccountsByType(type);
for (Account account : accounts)
if (name.equals(account.name)) {
2018-12-24 12:27:45 +00:00
Log.i("Refreshing token");
2018-08-27 16:19:56 +00:00
am.invalidateAuthToken(type, current);
String refreshed = am.blockingGetAuthToken(account, getAuthTokenType(type), true);
2018-12-24 12:27:45 +00:00
Log.i("Refreshed token");
2018-08-27 16:19:56 +00:00
return refreshed;
}
} catch (Throwable ex) {
2018-12-24 12:27:45 +00:00
Log.w(ex);
2018-08-27 16:19:56 +00:00
}
return current;
}
static String getAuthTokenType(String type) {
if ("com.google".equals(type))
return "oauth2:https://mail.google.com/";
return null;
}
2018-08-25 11:27:54 +00:00
static boolean isPlayStoreInstall(Context context) {
2019-03-07 14:03:15 +00:00
return BuildConfig.PLAY_STORE_RELEASE;
2018-08-25 11:27:54 +00:00
}
static String sha256(String data) throws NoSuchAlgorithmException {
return sha256(data.getBytes());
}
static String sha256(byte[] data) throws NoSuchAlgorithmException {
byte[] bytes = MessageDigest.getInstance("SHA-256").digest(data);
StringBuilder sb = new StringBuilder();
for (byte b : bytes)
sb.append(String.format("%02x", b));
return sb.toString();
}
2018-08-25 13:32:52 +00:00
static String getBillingResponseText(@BillingClient.BillingResponse int responseCode) {
switch (responseCode) {
case BillingClient.BillingResponse.BILLING_UNAVAILABLE:
// Billing API version is not supported for the type requested
return "BILLING_UNAVAILABLE";
case BillingClient.BillingResponse.DEVELOPER_ERROR:
// Invalid arguments provided to the API.
return "DEVELOPER_ERROR";
case BillingClient.BillingResponse.ERROR:
// Fatal error during the API action
return "ERROR";
case BillingClient.BillingResponse.FEATURE_NOT_SUPPORTED:
// Requested feature is not supported by Play Store on the current device.
return "FEATURE_NOT_SUPPORTED";
case BillingClient.BillingResponse.ITEM_ALREADY_OWNED:
// Failure to purchase since item is already owned
return "ITEM_ALREADY_OWNED";
case BillingClient.BillingResponse.ITEM_NOT_OWNED:
// Failure to consume since item is not owned
return "ITEM_NOT_OWNED";
case BillingClient.BillingResponse.ITEM_UNAVAILABLE:
// Requested product is not available for purchase
return "ITEM_UNAVAILABLE";
case BillingClient.BillingResponse.OK:
// Success
return "OK";
case BillingClient.BillingResponse.SERVICE_DISCONNECTED:
// Play Store service is not connected now - potentially transient state.
return "SERVICE_DISCONNECTED";
case BillingClient.BillingResponse.SERVICE_UNAVAILABLE:
// Network connection is down
return "SERVICE_UNAVAILABLE";
case BillingClient.BillingResponse.USER_CANCELED:
// User pressed back or canceled a dialog
return "USER_CANCELED";
default:
return Integer.toString(responseCode);
}
}
2018-09-17 06:15:54 +00:00
2019-01-27 17:48:41 +00:00
static boolean hasWebView(Context context) {
PackageManager pm = context.getPackageManager();
2019-04-06 13:22:40 +00:00
if (pm.hasSystemFeature(PackageManager.FEATURE_WEBVIEW))
2019-01-27 17:48:41 +00:00
try {
new WebView(context);
return true;
} catch (Throwable ex) {
return false;
}
else
return false;
}
2019-04-05 12:12:56 +00:00
static boolean canPrint(Context context) {
PackageManager pm = context.getPackageManager();
2019-04-06 13:22:40 +00:00
return pm.hasSystemFeature(PackageManager.FEATURE_PRINTING);
2019-04-05 12:12:56 +00:00
}
2018-09-27 06:44:02 +00:00
public static String getFingerprint(Context context) {
try {
PackageManager pm = context.getPackageManager();
String pkg = context.getPackageName();
PackageInfo info = pm.getPackageInfo(pkg, PackageManager.GET_SIGNATURES);
byte[] cert = info.signatures[0].toByteArray();
MessageDigest digest = MessageDigest.getInstance("SHA1");
byte[] bytes = digest.digest(cert);
StringBuilder sb = new StringBuilder();
for (byte b : bytes)
sb.append(Integer.toString(b & 0xff, 16).toUpperCase());
return sb.toString();
} catch (Throwable ex) {
2018-12-24 12:27:45 +00:00
Log.e(ex);
2018-09-27 06:44:02 +00:00
return null;
}
}
public static boolean hasValidFingerprint(Context context) {
String signed = getFingerprint(context);
String expected = context.getString(R.string.fingerprint);
2019-02-26 10:05:21 +00:00
return Objects.equals(signed, expected);
2018-09-27 06:44:02 +00:00
}
2018-09-17 06:15:54 +00:00
static boolean isPro(Context context) {
2018-09-22 05:36:24 +00:00
if (false && BuildConfig.DEBUG)
2018-09-17 06:15:54 +00:00
return true;
return PreferenceManager.getDefaultSharedPreferences(context).getBoolean("pro", false);
}
static long[] toLongArray(List<Long> list) {
long[] result = new long[list.size()];
for (int i = 0; i < list.size(); i++)
result[i] = list.get(i);
return result;
}
2019-03-18 10:51:47 +00:00
static long[] toLongArray(Set<Long> set) {
long[] result = new long[set.size()];
int i = 0;
for (Long value : set)
result[i++] = value;
return result;
}
static List<Long> fromLongArray(long[] array) {
List<Long> result = new ArrayList<>();
for (int i = 0; i < array.length; i++)
result.add(array[i]);
return result;
}
2018-11-25 12:34:08 +00:00
static boolean equal(String[] a1, String[] a2) {
if (a1.length != a2.length)
return false;
for (int i = 0; i < a1.length; i++)
if (!a1[i].equals(a2[i]))
return false;
return true;
}
2018-11-26 11:42:06 +00:00
static String sanitizeKeyword(String keyword) {
2018-12-10 12:14:15 +00:00
// https://tools.ietf.org/html/rfc3501
StringBuilder sb = new StringBuilder();
for (int i = 0; i < keyword.length(); i++) {
// flag-keyword = atom
// atom = 1*ATOM-CHAR
// ATOM-CHAR = <any CHAR except atom-specials>
2019-03-10 08:12:13 +00:00
char kar = keyword.charAt(i);
2018-12-10 12:14:15 +00:00
// atom-specials = "(" / ")" / "{" / SP / CTL / list-wildcards / quoted-specials / resp-specials
if (kar == '(' || kar == ')' || kar == '{' || kar == ' ' || Character.isISOControl(kar))
continue;
// list-wildcards = "%" / "*"
if (kar == '%' || kar == '*')
continue;
// quoted-specials = DQUOTE / "\"
if (kar == '"' || kar == '\\')
continue;
// resp-specials = "]"
if (kar == ']')
continue;
sb.append(kar);
}
return sb.toString();
2018-11-26 11:42:06 +00:00
}
2019-02-19 14:46:20 +00:00
static String sanitizeFilename(String name) {
return (name == null ? null : name.replaceAll("[^a-zA-Z0-9\\.\\-]", "_"));
}
2019-03-09 15:46:49 +00:00
static String getOrganization(String host) throws IOException {
2019-03-10 08:08:33 +00:00
synchronized (hostOrganization) {
if (hostOrganization.containsKey(host))
return hostOrganization.get(host);
}
2019-03-09 15:46:49 +00:00
InetAddress address = InetAddress.getByName(host);
URL url = new URL("https://ipinfo.io/" + address.getHostAddress() + "/org");
HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.setReadTimeout(15 * 1000);
connection.connect();
try (BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()))) {
String organization = reader.readLine();
if ("undefined".equals(organization))
organization = null;
2019-03-10 08:08:33 +00:00
synchronized (hostOrganization) {
hostOrganization.put(host, organization);
}
2019-03-09 15:46:49 +00:00
return organization;
}
}
2018-08-02 13:33:06 +00:00
}