218 lines
8.3 KiB
Java
Raw Normal View History

2016-08-23 05:18:28 +08:00
package com.topjohnwu.magisk.utils;
2016-08-23 03:50:46 +08:00
2016-08-29 06:35:07 +08:00
import android.Manifest;
2017-02-12 20:53:41 +08:00
import android.app.Activity;
2016-08-29 06:35:07 +08:00
import android.app.DownloadManager;
import android.app.admin.DevicePolicyManager;
2016-08-28 03:52:03 +08:00
import android.content.Context;
2016-08-29 06:35:07 +08:00
import android.content.IntentFilter;
2017-01-28 06:13:07 +08:00
import android.content.SharedPreferences;
2016-08-29 06:35:07 +08:00
import android.content.pm.PackageManager;
2017-07-22 22:14:02 +08:00
import android.content.res.Configuration;
2017-02-15 05:24:02 +08:00
import android.database.Cursor;
2017-05-23 16:51:23 +08:00
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
2016-08-29 06:35:07 +08:00
import android.net.Uri;
import android.os.Build;
2016-08-29 06:35:07 +08:00
import android.os.Environment;
2017-02-15 05:24:02 +08:00
import android.provider.OpenableColumns;
2017-07-22 22:14:02 +08:00
import android.support.annotation.StringRes;
2017-02-15 05:24:02 +08:00
import android.support.design.widget.Snackbar;
2016-08-29 06:35:07 +08:00
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.ContextCompat;
import android.text.TextUtils;
2016-08-28 03:52:03 +08:00
import android.widget.Toast;
2017-02-07 02:01:32 +08:00
import com.topjohnwu.magisk.MagiskManager;
2016-08-28 03:52:03 +08:00
import com.topjohnwu.magisk.R;
2017-02-15 05:24:02 +08:00
import com.topjohnwu.magisk.components.SnackbarMaker;
2016-09-26 10:45:34 +08:00
import com.topjohnwu.magisk.receivers.DownloadReceiver;
2016-08-28 03:52:03 +08:00
2016-08-29 06:35:07 +08:00
import java.io.File;
2017-07-22 22:14:02 +08:00
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
2016-08-22 10:09:36 +02:00
import java.util.List;
2017-07-22 22:14:02 +08:00
import java.util.Locale;
2016-08-20 17:26:49 +02:00
public class Utils {
2017-09-05 17:43:13 +08:00
public static final String UTIL_FUNCTIONS= "util_functions.sh";
2016-12-27 14:30:26 +08:00
public static boolean isDownloading = false;
2017-10-15 23:02:44 +08:00
public static boolean itemExist(String path) {
2017-07-18 00:59:22 +08:00
String command = "[ -e " + path + " ] && echo true || echo false";
2017-10-15 23:02:44 +08:00
List<String> ret = Shell.su(command);
2017-02-05 22:02:14 +08:00
return isValidShellResponse(ret) && Boolean.parseBoolean(ret.get(0));
}
2017-10-15 23:02:44 +08:00
public static void createFile(String path) {
2016-11-09 05:17:50 +08:00
String folder = path.substring(0, path.lastIndexOf('/'));
2017-07-18 00:59:22 +08:00
String command = "mkdir -p " + folder + " 2>/dev/null; touch " + path + " 2>/dev/null;";
2017-10-15 23:02:44 +08:00
Shell.su_raw(command);
}
2016-08-20 17:26:49 +02:00
2017-10-15 23:02:44 +08:00
public static void removeItem(String path) {
2017-07-18 00:59:22 +08:00
String command = "rm -rf " + path + " 2>/dev/null";
2017-10-15 23:02:44 +08:00
Shell.su_raw(command);
2016-09-18 02:32:08 +08:00
}
2017-10-15 23:02:44 +08:00
public static List<String> readFile(String path) {
2017-07-20 00:51:30 +08:00
String command = "cat " + path + " | sed '$a\\ ' | sed '$d'";
2017-10-15 23:02:44 +08:00
return Shell.su(command);
2016-08-23 01:44:34 +08:00
}
public static void dlAndReceive(Context context, DownloadReceiver receiver, String link, String filename) {
2017-02-12 19:49:46 +08:00
if (isDownloading)
2016-12-27 14:30:26 +08:00
return;
runWithPermission(context, Manifest.permission.WRITE_EXTERNAL_STORAGE, () -> {
File file = new File(Environment.getExternalStorageDirectory() + "/MagiskManager/" + filename);
2016-12-27 14:30:26 +08:00
if ((!file.getParentFile().exists() && !file.getParentFile().mkdirs())
|| (file.exists() && !file.delete())) {
Toast.makeText(context, R.string.permissionNotGranted, Toast.LENGTH_LONG).show();
return;
}
2016-08-29 06:35:07 +08:00
Toast.makeText(context, context.getString(R.string.downloading_toast, filename), Toast.LENGTH_LONG).show();
isDownloading = true;
2016-12-27 14:30:26 +08:00
DownloadManager downloadManager = (DownloadManager) context.getSystemService(Context.DOWNLOAD_SERVICE);
2016-08-29 06:35:07 +08:00
if (link != null) {
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(link));
request.setDestinationUri(Uri.fromFile(file));
receiver.setDownloadID(downloadManager.enqueue(request));
}
receiver.setFilename(filename);
context.getApplicationContext().registerReceiver(receiver, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));
});
2016-08-29 06:35:07 +08:00
}
public static String getLegalFilename(CharSequence filename) {
return filename.toString().replace(" ", "_").replace("'", "").replace("\"", "")
.replace("$", "").replace("`", "").replace("(", "").replace(")", "")
.replace("#", "").replace("@", "").replace("*", "");
}
2017-01-26 13:46:54 +08:00
public static boolean isValidShellResponse(List<String> list) {
if (list != null && list.size() != 0) {
// Check if all empty
for (String res : list) {
if (!TextUtils.isEmpty(res)) return true;
}
2016-11-23 22:38:15 +08:00
}
2017-01-26 13:46:54 +08:00
return false;
2016-11-23 22:38:15 +08:00
}
2017-01-28 06:13:07 +08:00
public static int getPrefsInt(SharedPreferences prefs, String key, int def) {
return Integer.parseInt(prefs.getString(key, String.valueOf(def)));
}
2017-08-29 01:34:42 +08:00
public static int getPrefsInt(SharedPreferences prefs, String key) {
return getPrefsInt(prefs, key, 0);
}
public static MagiskManager getMagiskManager(Context context) {
return (MagiskManager) context.getApplicationContext();
2017-02-05 22:02:14 +08:00
}
2017-02-15 05:24:02 +08:00
public static String getNameFromUri(Context context, Uri uri) {
String name = null;
try (Cursor c = context.getContentResolver().query(uri, null, null, null, null)) {
if (c != null) {
int nameIndex = c.getColumnIndex(OpenableColumns.DISPLAY_NAME);
if (nameIndex != -1) {
c.moveToFirst();
name = c.getString(nameIndex);
}
}
}
if (name == null) {
int idx = uri.getPath().lastIndexOf('/');
name = uri.getPath().substring(idx + 1);
}
return name;
}
public static void showUriSnack(Activity activity, Uri uri) {
SnackbarMaker.make(activity, activity.getString(R.string.internal_storage,
"/MagiskManager/" + Utils.getNameFromUri(activity, uri)),
Snackbar.LENGTH_LONG)
.setAction(R.string.ok, (v)->{}).show();
}
2017-05-23 16:51:23 +08:00
2017-10-16 00:54:48 +08:00
public static boolean checkNetworkStatus() {
ConnectivityManager manager = (ConnectivityManager)
MagiskManager.get().getSystemService(Context.CONNECTIVITY_SERVICE);
2017-05-23 16:51:23 +08:00
NetworkInfo networkInfo = manager.getActiveNetworkInfo();
return networkInfo != null && networkInfo.isConnected();
}
2017-10-16 00:54:48 +08:00
public static String getLocaleString(Locale locale, @StringRes int id) {
Context context = MagiskManager.get();
2017-07-22 22:14:02 +08:00
Configuration config = context.getResources().getConfiguration();
config.setLocale(locale);
Context localizedContext = context.createConfigurationContext(config);
return localizedContext.getString(id);
}
2017-10-16 00:54:48 +08:00
public static List<Locale> getAvailableLocale() {
2017-07-22 22:14:02 +08:00
List<Locale> locales = new ArrayList<>();
HashSet<String> set = new HashSet<>();
Locale locale;
2017-10-16 00:54:48 +08:00
@StringRes int compareId = R.string.download_file_error;
2017-08-27 01:38:05 +08:00
2017-07-22 22:14:02 +08:00
// Add default locale
locales.add(Locale.ENGLISH);
2017-10-16 00:54:48 +08:00
set.add(getLocaleString(Locale.ENGLISH, compareId));
2017-07-22 22:14:02 +08:00
// Add some special locales
locales.add(Locale.TAIWAN);
2017-10-16 00:54:48 +08:00
set.add(getLocaleString(Locale.TAIWAN, compareId));
2017-07-22 22:14:02 +08:00
locale = new Locale("pt", "BR");
locales.add(locale);
2017-10-16 00:54:48 +08:00
set.add(getLocaleString(locale, compareId));
2017-07-22 22:14:02 +08:00
// Other locales
2017-10-16 00:54:48 +08:00
for (String s : MagiskManager.get().getAssets().getLocales()) {
2017-07-22 22:14:02 +08:00
locale = Locale.forLanguageTag(s);
2017-10-16 00:54:48 +08:00
if (set.add(getLocaleString(locale, compareId))) {
2017-07-22 22:14:02 +08:00
locales.add(locale);
}
}
Collections.sort(locales, (l1, l2) -> l1.getDisplayName(l1).compareTo(l2.getDisplayName(l2)));
return locales;
}
2017-08-22 03:01:54 +08:00
public static void runWithPermission(Context context, String permission, Runnable callback) {
if (ContextCompat.checkSelfPermission(context, permission) != PackageManager.PERMISSION_GRANTED) {
// Passed in context should be an activity if not granted, need to show dialog!
if (!(context instanceof com.topjohnwu.magisk.components.Activity))
return;
com.topjohnwu.magisk.components.Activity activity = (com.topjohnwu.magisk.components.Activity) context;
activity.setPermissionGrantCallback(callback);
ActivityCompat.requestPermissions(activity, new String[] { permission }, 0);
} else {
callback.run();
}
}
2017-09-05 17:43:13 +08:00
public static boolean useFDE(Context context) {
return Build.VERSION.SDK_INT >= Build.VERSION_CODES.N
&& context.getSystemService(DevicePolicyManager.class).getStorageEncryptionStatus()
== DevicePolicyManager.ENCRYPTION_STATUS_ACTIVE_PER_USER;
}
2017-10-16 00:54:48 +08:00
public static Context getEncContext() {
Context context = MagiskManager.get();
if (useFDE(context))
return context.createDeviceProtectedStorageContext();
else
return context;
}
2016-09-21 09:22:36 -05:00
}