2019-01-30 03:10:12 -05:00
|
|
|
package com.topjohnwu.magisk.utils;
|
2016-08-23 03:50:46 +08:00
|
|
|
|
2016-08-28 03:52:03 +08:00
|
|
|
import android.content.Context;
|
2019-03-24 02:16:19 -04:00
|
|
|
import android.content.Intent;
|
2017-01-28 06:13:07 +08:00
|
|
|
import android.content.SharedPreferences;
|
2018-10-17 19:44:48 -04:00
|
|
|
import android.content.pm.ApplicationInfo;
|
|
|
|
import android.content.pm.PackageManager;
|
|
|
|
import android.content.res.Configuration;
|
|
|
|
import android.content.res.Resources;
|
2017-02-15 05:24:02 +08:00
|
|
|
import android.database.Cursor;
|
2016-08-29 06:35:07 +08:00
|
|
|
import android.net.Uri;
|
2017-02-15 05:24:02 +08:00
|
|
|
import android.provider.OpenableColumns;
|
2018-07-31 17:41:54 +08:00
|
|
|
import android.widget.Toast;
|
2016-08-28 03:52:03 +08:00
|
|
|
|
2019-03-24 02:16:19 -04:00
|
|
|
import androidx.work.Constraints;
|
|
|
|
import androidx.work.ExistingPeriodicWorkPolicy;
|
|
|
|
import androidx.work.NetworkType;
|
|
|
|
import androidx.work.PeriodicWorkRequest;
|
|
|
|
import androidx.work.WorkManager;
|
|
|
|
|
2019-01-30 03:10:12 -05:00
|
|
|
import com.topjohnwu.magisk.App;
|
2019-03-11 07:38:31 -04:00
|
|
|
import com.topjohnwu.magisk.BuildConfig;
|
2019-03-24 02:16:19 -04:00
|
|
|
import com.topjohnwu.magisk.ClassMap;
|
2019-01-30 03:10:12 -05:00
|
|
|
import com.topjohnwu.magisk.Config;
|
|
|
|
import com.topjohnwu.magisk.Const;
|
2019-03-24 02:16:19 -04:00
|
|
|
import com.topjohnwu.magisk.R;
|
|
|
|
import com.topjohnwu.magisk.components.UpdateCheckService;
|
2019-01-30 03:10:12 -05:00
|
|
|
import com.topjohnwu.magisk.container.Module;
|
|
|
|
import com.topjohnwu.magisk.container.ValueSortedMap;
|
2018-12-12 05:51:45 -05:00
|
|
|
import com.topjohnwu.net.Networking;
|
2018-10-28 00:54:56 -04:00
|
|
|
import com.topjohnwu.superuser.Shell;
|
2019-01-31 23:49:57 -05:00
|
|
|
import com.topjohnwu.superuser.internal.UiThreadHandler;
|
2018-08-02 00:41:10 +08:00
|
|
|
import com.topjohnwu.superuser.io.SuFile;
|
2016-08-28 03:52:03 +08:00
|
|
|
|
2017-07-22 22:14:02 +08:00
|
|
|
import java.util.Locale;
|
2018-08-02 00:41:10 +08:00
|
|
|
import java.util.Map;
|
2019-03-24 02:16:19 -04:00
|
|
|
import java.util.concurrent.TimeUnit;
|
2016-08-20 17:26:49 +02:00
|
|
|
|
|
|
|
public class Utils {
|
|
|
|
|
2018-12-13 04:35:50 -05:00
|
|
|
public static void toast(CharSequence msg, int duration) {
|
2019-01-31 23:49:57 -05:00
|
|
|
UiThreadHandler.run(() -> Toast.makeText(App.self, msg, duration).show());
|
2018-12-13 04:35:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void toast(int resId, int duration) {
|
2019-01-31 23:49:57 -05:00
|
|
|
UiThreadHandler.run(() -> Toast.makeText(App.self, resId, duration).show());
|
2018-12-13 04:35:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public static String dlString(String url) {
|
|
|
|
String s = Networking.get(url).execForString().getResult();
|
|
|
|
return s == null ? "" : s;
|
|
|
|
}
|
|
|
|
|
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-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;
|
|
|
|
}
|
|
|
|
|
2017-11-20 03:09:08 +08:00
|
|
|
public static int dpInPx(int dp) {
|
2018-12-13 04:35:50 -05:00
|
|
|
float scale = App.self.getResources().getDisplayMetrics().density;
|
2017-11-20 03:09:08 +08:00
|
|
|
return (int) (dp * scale + 0.5);
|
|
|
|
}
|
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);
|
|
|
|
}
|
2018-05-06 02:51:23 +08:00
|
|
|
|
2018-12-13 04:35:50 -05:00
|
|
|
public static String getAppLabel(ApplicationInfo info, PackageManager pm) {
|
|
|
|
try {
|
2019-02-12 16:58:05 -05:00
|
|
|
if (info.labelRes > 0) {
|
2018-12-13 04:35:50 -05:00
|
|
|
Resources res = pm.getResourcesForApplication(info);
|
|
|
|
Configuration config = new Configuration();
|
|
|
|
config.setLocale(LocaleManager.locale);
|
|
|
|
res.updateConfiguration(config, res.getDisplayMetrics());
|
|
|
|
return res.getString(info.labelRes);
|
2018-07-31 03:51:11 +08:00
|
|
|
}
|
2018-12-13 04:35:50 -05:00
|
|
|
} catch (Exception ignored) {}
|
|
|
|
return info.loadLabel(pm).toString();
|
2018-07-31 17:41:54 +08:00
|
|
|
}
|
|
|
|
|
2018-12-13 04:35:50 -05:00
|
|
|
public static String getLegalFilename(CharSequence filename) {
|
|
|
|
return filename.toString().replace(" ", "_").replace("'", "").replace("\"", "")
|
|
|
|
.replace("$", "").replace("`", "").replace("*", "").replace("/", "_")
|
|
|
|
.replace("#", "").replace("@", "").replace("\\", "_");
|
2018-07-31 17:41:54 +08:00
|
|
|
}
|
2018-08-02 00:41:10 +08:00
|
|
|
|
|
|
|
public static void loadModules() {
|
2019-03-23 23:18:26 -04:00
|
|
|
loadModules(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void loadModules(boolean async) {
|
2019-03-23 21:58:42 -04:00
|
|
|
Event.reset(Event.MODULE_LOAD_DONE);
|
2019-03-23 23:18:26 -04:00
|
|
|
Runnable run = () -> {
|
2018-08-02 00:41:10 +08:00
|
|
|
Map<String, Module> moduleMap = new ValueSortedMap<>();
|
|
|
|
SuFile path = new SuFile(Const.MAGISK_PATH);
|
2018-10-23 16:16:32 +08:00
|
|
|
SuFile[] modules = path.listFiles(
|
2018-08-02 00:41:10 +08:00
|
|
|
(file, name) -> !name.equals("lost+found") && !name.equals(".core"));
|
2018-10-23 16:16:32 +08:00
|
|
|
for (SuFile file : modules) {
|
|
|
|
if (file.isFile()) continue;
|
|
|
|
Module module = new Module(Const.MAGISK_PATH + "/" + file.getName());
|
2018-08-02 00:41:10 +08:00
|
|
|
moduleMap.put(module.getId(), module);
|
|
|
|
}
|
2019-03-23 21:58:42 -04:00
|
|
|
Event.trigger(Event.MODULE_LOAD_DONE, moduleMap);
|
2019-03-23 23:18:26 -04:00
|
|
|
};
|
|
|
|
if (async)
|
|
|
|
App.THREAD_POOL.execute(run);
|
|
|
|
else
|
|
|
|
run.run();
|
2018-08-02 00:41:10 +08:00
|
|
|
}
|
2018-10-17 19:44:48 -04:00
|
|
|
|
2018-10-28 00:54:56 -04:00
|
|
|
public static boolean showSuperUser() {
|
|
|
|
return Shell.rootAccess() && (Const.USER_ID == 0 ||
|
2019-01-21 15:49:03 -05:00
|
|
|
(int) Config.get(Config.Key.SU_MULTIUSER_MODE) !=
|
|
|
|
Config.Value.MULTIUSER_MODE_OWNER_MANAGED);
|
2018-10-28 00:54:56 -04:00
|
|
|
}
|
2018-12-02 04:47:57 -05:00
|
|
|
|
2019-03-11 07:38:31 -04:00
|
|
|
public static boolean isCanary() {
|
|
|
|
return BuildConfig.VERSION_NAME.contains("-");
|
|
|
|
}
|
2019-03-24 02:16:19 -04:00
|
|
|
|
|
|
|
public static void scheduleUpdateCheck() {
|
|
|
|
if (Config.get(Config.Key.CHECK_UPDATES)) {
|
|
|
|
Constraints constraints = new Constraints.Builder()
|
|
|
|
.setRequiredNetworkType(NetworkType.CONNECTED)
|
|
|
|
.build();
|
|
|
|
PeriodicWorkRequest request = new PeriodicWorkRequest
|
|
|
|
.Builder(ClassMap.get(UpdateCheckService.class), 12, TimeUnit.HOURS)
|
|
|
|
.setConstraints(constraints)
|
|
|
|
.build();
|
|
|
|
WorkManager.getInstance().enqueueUniquePeriodicWork(
|
|
|
|
Const.ID.CHECK_MAGISK_UPDATE_WORKER_ID,
|
|
|
|
ExistingPeriodicWorkPolicy.REPLACE, request);
|
|
|
|
} else {
|
|
|
|
WorkManager.getInstance().cancelUniqueWork(Const.ID.CHECK_MAGISK_UPDATE_WORKER_ID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void openLink(Context context, Uri link) {
|
|
|
|
Intent intent = new Intent(Intent.ACTION_VIEW, link);
|
|
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
|
|
if (intent.resolveActivity(context.getPackageManager()) != null) {
|
|
|
|
context.startActivity(intent);
|
|
|
|
} else {
|
|
|
|
toast(R.string.open_link_failed_toast, Toast.LENGTH_SHORT);
|
|
|
|
}
|
|
|
|
}
|
2018-12-13 04:35:50 -05:00
|
|
|
}
|