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;
|
2016-08-28 03:52:03 +08:00
|
|
|
import android.content.Context;
|
2017-11-06 05:36:20 +08:00
|
|
|
import android.content.Intent;
|
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-10-30 03:45:22 +08:00
|
|
|
import android.content.res.AssetManager;
|
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;
|
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;
|
2017-08-29 03:08:09 +08:00
|
|
|
import android.support.v4.content.ContextCompat;
|
2016-08-28 03:52:03 +08:00
|
|
|
import android.widget.Toast;
|
|
|
|
|
2017-12-02 02:35:07 +08:00
|
|
|
import com.google.gson.Gson;
|
|
|
|
import com.google.gson.reflect.TypeToken;
|
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-11-06 05:36:20 +08:00
|
|
|
import com.topjohnwu.magisk.SplashActivity;
|
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;
|
2018-01-21 06:07:24 +08:00
|
|
|
import com.topjohnwu.superuser.Shell;
|
2018-02-12 23:07:35 +08:00
|
|
|
import com.topjohnwu.superuser.ShellUtils;
|
|
|
|
import com.topjohnwu.superuser.io.SuFile;
|
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;
|
2017-12-02 02:35:07 +08:00
|
|
|
import java.util.Map;
|
2016-08-20 17:26:49 +02:00
|
|
|
|
|
|
|
public class Utils {
|
|
|
|
|
2016-12-27 14:30:26 +08:00
|
|
|
public static boolean isDownloading = false;
|
|
|
|
|
2018-02-12 23:07:35 +08:00
|
|
|
public static String cmd(String cmd) {
|
|
|
|
return ShellUtils.fastCmd(Shell.getShell(), cmd);
|
2017-12-12 02:35:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void uninstallPkg(String pkg) {
|
2018-02-18 12:41:58 +08:00
|
|
|
Shell.Sync.su("sudb_clean " + Const.USER_ID, "pm uninstall " + pkg);
|
2017-12-12 02:35:00 +08:00
|
|
|
}
|
|
|
|
|
2016-11-20 22:13:29 +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;
|
|
|
|
|
2017-08-29 03:08:09 +08:00
|
|
|
runWithPermission(context, Manifest.permission.WRITE_EXTERNAL_STORAGE, () -> {
|
2017-12-19 20:59:59 +08:00
|
|
|
File file = new File(Const.EXTERNAL_PATH, getLegalFilename(filename));
|
2016-12-27 14:30:26 +08:00
|
|
|
|
2017-08-29 03:08:09 +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
|
|
|
|
2017-08-29 03:08:09 +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
|
|
|
|
2017-12-19 20:59:59 +08:00
|
|
|
DownloadManager.Request request = new DownloadManager
|
|
|
|
.Request(Uri.parse(link))
|
|
|
|
.setDestinationUri(Uri.fromFile(file));
|
2016-08-29 06:35:07 +08:00
|
|
|
|
2017-12-19 20:59:59 +08:00
|
|
|
DownloadManager dm = (DownloadManager) context.getSystemService(Context.DOWNLOAD_SERVICE);
|
|
|
|
receiver.setDownloadID(dm.enqueue(request)).setFile(file);
|
2017-08-29 03:08:09 +08:00
|
|
|
context.getApplicationContext().registerReceiver(receiver, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));
|
|
|
|
});
|
2016-08-29 06:35:07 +08:00
|
|
|
}
|
|
|
|
|
2016-11-20 22:13:29 +08:00
|
|
|
public static String getLegalFilename(CharSequence filename) {
|
|
|
|
return filename.toString().replace(" ", "_").replace("'", "").replace("\"", "")
|
2018-02-13 01:22:43 +08:00
|
|
|
.replace("$", "").replace("`", "").replace("*", "").replace("/", "_")
|
|
|
|
.replace("#", "").replace("@", "").replace("\\", "_");
|
2016-11-20 22:13:29 +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);
|
|
|
|
}
|
|
|
|
|
2017-02-12 05:02:18 +08:00
|
|
|
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
|
|
|
|
2017-08-29 03:08:09 +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!
|
2017-11-06 05:36:20 +08:00
|
|
|
Utils.getMagiskManager(context).setPermissionGrantCallback(callback);
|
|
|
|
if (!(context instanceof com.topjohnwu.magisk.components.Activity)) {
|
|
|
|
// Start activity to show dialog
|
|
|
|
Intent intent = new Intent(context, SplashActivity.class);
|
|
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
|
|
intent.putExtra(Const.Key.INTENT_PERM, permission);
|
|
|
|
context.startActivity(intent);
|
|
|
|
} else {
|
|
|
|
ActivityCompat.requestPermissions((Activity) context, new String[] { permission }, 0);
|
|
|
|
}
|
|
|
|
|
2017-08-29 03:08:09 +08:00
|
|
|
} else {
|
|
|
|
callback.run();
|
|
|
|
}
|
|
|
|
}
|
2017-09-05 17:43:13 +08:00
|
|
|
|
2017-10-30 03:45:22 +08:00
|
|
|
public static AssetManager getAssets(String apk) {
|
|
|
|
try {
|
|
|
|
AssetManager asset = AssetManager.class.newInstance();
|
|
|
|
AssetManager.class.getMethod("addAssetPath", String.class).invoke(asset, apk);
|
|
|
|
return asset;
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2017-10-31 16:31:58 +08:00
|
|
|
|
2017-11-15 04:39:05 +08:00
|
|
|
public static void patchDTBO() {
|
2017-12-07 04:20:15 +08:00
|
|
|
MagiskManager mm = MagiskManager.get();
|
|
|
|
if (mm.magiskVersionCode >= 1446 && !mm.keepVerity) {
|
2018-02-12 23:07:35 +08:00
|
|
|
if (ShellUtils.fastCmdResult(Shell.getShell(), "patch_dtbo_image")) {
|
2017-11-15 04:39:05 +08:00
|
|
|
ShowUI.dtboPatchedNotification();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-11-20 03:09:08 +08:00
|
|
|
|
|
|
|
public static int dpInPx(int dp) {
|
|
|
|
Context context = MagiskManager.get();
|
|
|
|
float scale = context.getResources().getDisplayMetrics().density;
|
|
|
|
return (int) (dp * scale + 0.5);
|
|
|
|
}
|
2017-12-02 02:35:07 +08:00
|
|
|
|
|
|
|
public static void dumpPrefs() {
|
|
|
|
Gson gson = new Gson();
|
2017-12-21 23:26:49 +08:00
|
|
|
Map<String, ?> prefs = MagiskManager.get().prefs.getAll();
|
|
|
|
prefs.remove("App Restrictions");
|
|
|
|
String json = gson.toJson(prefs, new TypeToken<Map<String, ?>>(){}.getType());
|
2018-01-25 18:43:30 +08:00
|
|
|
Shell.Sync.su(fmt("for usr in /data/user/*; do echo '%s' > ${usr}/%s; done", json, Const.MANAGER_CONFIGS));
|
2017-12-02 02:35:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void loadPrefs() {
|
2018-02-12 23:07:35 +08:00
|
|
|
SuFile config = new SuFile(fmt("/data/user/%d/%s", Const.USER_ID, Const.MANAGER_CONFIGS), true);
|
|
|
|
List<String> ret = Shell.Sync.su("cat " + config);
|
|
|
|
if (ShellUtils.isValidOutput(ret)) {
|
2017-12-02 02:35:07 +08:00
|
|
|
SharedPreferences.Editor editor = MagiskManager.get().prefs.edit();
|
|
|
|
String json = ret.get(0);
|
|
|
|
Gson gson = new Gson();
|
|
|
|
Map<String, ?> prefMap = gson.fromJson(json, new TypeToken<Map<String, ?>>(){}.getType());
|
|
|
|
editor.clear();
|
|
|
|
for (Map.Entry<String, ?> entry : prefMap.entrySet()) {
|
|
|
|
Object value = entry.getValue();
|
|
|
|
if (value instanceof String) {
|
|
|
|
editor.putString(entry.getKey(), (String) value);
|
|
|
|
} else if (value instanceof Boolean) {
|
|
|
|
editor.putBoolean(entry.getKey(), (boolean) value);
|
2017-12-19 20:59:59 +08:00
|
|
|
} else if (value instanceof Number) {
|
|
|
|
editor.putInt(entry.getKey(), ((Number) value).intValue());
|
2017-12-02 02:35:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
editor.remove(Const.Key.ETAG_KEY);
|
|
|
|
editor.apply();
|
|
|
|
MagiskManager.get().loadConfig();
|
2018-02-12 23:07:35 +08:00
|
|
|
config.delete();
|
2017-12-02 02:35:07 +08:00
|
|
|
}
|
|
|
|
}
|
2017-12-08 23:38:03 +08:00
|
|
|
|
|
|
|
public static String fmt(String fmt, Object... args) {
|
|
|
|
return String.format(Locale.US, fmt, args);
|
|
|
|
}
|
2016-09-21 09:22:36 -05:00
|
|
|
}
|