2018-12-02 04:47:57 -05:00
|
|
|
package com.topjohnwu.magisk.utils;
|
|
|
|
|
|
|
|
import android.os.AsyncTask;
|
|
|
|
|
2018-12-13 04:35:50 -05:00
|
|
|
import com.topjohnwu.core.App;
|
2019-01-21 15:49:03 -05:00
|
|
|
import com.topjohnwu.core.Config;
|
2018-12-13 04:35:50 -05:00
|
|
|
import com.topjohnwu.core.utils.RootUtils;
|
|
|
|
import com.topjohnwu.core.utils.Utils;
|
2018-12-02 15:28:18 -05:00
|
|
|
import com.topjohnwu.magisk.BuildConfig;
|
2018-12-02 05:33:53 -05:00
|
|
|
import com.topjohnwu.magisk.R;
|
2018-12-03 01:44:13 -05:00
|
|
|
import com.topjohnwu.magisk.components.ProgressNotification;
|
2018-12-12 05:51:45 -05:00
|
|
|
import com.topjohnwu.net.Networking;
|
|
|
|
import com.topjohnwu.net.ResponseListener;
|
2018-12-02 04:47:57 -05:00
|
|
|
import com.topjohnwu.superuser.ShellUtils;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
|
2018-12-31 15:53:24 +08:00
|
|
|
import dalvik.system.DexClassLoader;
|
|
|
|
|
2018-12-13 04:35:50 -05:00
|
|
|
public class DownloadApp {
|
2018-12-02 04:47:57 -05:00
|
|
|
|
|
|
|
public static void upgrade(String name) {
|
|
|
|
dlInstall(name, new PatchPackageName());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void restore() {
|
|
|
|
String name = Utils.fmt("MagiskManager v%s(%d)",
|
2019-01-21 15:49:03 -05:00
|
|
|
Config.remoteManagerVersionString, Config.remoteManagerVersionCode);
|
2018-12-02 04:47:57 -05:00
|
|
|
dlInstall(name, new RestoreManager());
|
|
|
|
}
|
|
|
|
|
2018-12-12 05:51:45 -05:00
|
|
|
private static void dlInstall(String name, ManagerDownloadListener listener) {
|
2018-12-31 16:05:29 +08:00
|
|
|
File apk = new File(App.self.getCacheDir(), "manager.apk");
|
2018-12-03 01:44:13 -05:00
|
|
|
ProgressNotification progress = new ProgressNotification(name);
|
2019-01-01 18:45:48 +08:00
|
|
|
listener.progress = progress;
|
2019-01-21 15:49:03 -05:00
|
|
|
Networking.get(Config.managerLink)
|
2018-12-02 04:47:57 -05:00
|
|
|
.setExecutor(AsyncTask.THREAD_POOL_EXECUTOR)
|
|
|
|
.setDownloadProgressListener(progress)
|
2018-12-12 05:51:45 -05:00
|
|
|
.setErrorHandler((conn, e) -> progress.dlFail())
|
2019-01-01 18:45:48 +08:00
|
|
|
.getAsFile(apk, listener);
|
2018-12-02 04:47:57 -05:00
|
|
|
}
|
|
|
|
|
2019-01-01 18:45:48 +08:00
|
|
|
private abstract static class ManagerDownloadListener implements ResponseListener<File> {
|
|
|
|
ProgressNotification progress;
|
2018-12-02 04:47:57 -05:00
|
|
|
}
|
|
|
|
|
2019-01-01 18:45:48 +08:00
|
|
|
private static class PatchPackageName extends ManagerDownloadListener {
|
2018-12-02 04:47:57 -05:00
|
|
|
|
|
|
|
@Override
|
2019-01-01 18:45:48 +08:00
|
|
|
public void onResponse(File apk) {
|
2018-12-02 04:47:57 -05:00
|
|
|
File patched = apk;
|
2018-12-13 04:35:50 -05:00
|
|
|
App app = App.self;
|
2019-01-01 18:45:48 +08:00
|
|
|
if (!app.getPackageName().equals(BuildConfig.APPLICATION_ID)) {
|
2018-12-29 17:49:41 +08:00
|
|
|
progress.getNotificationBuilder()
|
2018-12-02 04:47:57 -05:00
|
|
|
.setProgress(0, 0, true)
|
2018-12-13 04:35:50 -05:00
|
|
|
.setContentTitle(app.getString(R.string.hide_manager_title))
|
2018-12-02 05:33:53 -05:00
|
|
|
.setContentText("");
|
2018-12-02 04:47:57 -05:00
|
|
|
progress.update();
|
|
|
|
patched = new File(apk.getParent(), "patched.apk");
|
|
|
|
try {
|
2018-12-31 15:53:24 +08:00
|
|
|
// Try using the new APK to patch itself
|
|
|
|
ClassLoader loader = new DexClassLoader(apk.getPath(),
|
|
|
|
apk.getParent(), null, ClassLoader.getSystemClassLoader());
|
|
|
|
loader.loadClass("a.a")
|
|
|
|
.getMethod("patchAPK", String.class, String.class, String.class)
|
|
|
|
.invoke(null, apk.getPath(), patched.getPath(), app.getPackageName());
|
2018-12-02 04:47:57 -05:00
|
|
|
} catch (Exception e) {
|
2018-12-31 15:53:24 +08:00
|
|
|
e.printStackTrace();
|
|
|
|
// Fallback to use the current implementation
|
|
|
|
PatchAPK.patch(apk.getPath(), patched.getPath(), app.getPackageName());
|
2018-12-02 04:47:57 -05:00
|
|
|
}
|
|
|
|
}
|
2018-12-13 04:35:50 -05:00
|
|
|
APKInstall.install(app, patched);
|
2018-12-07 21:42:53 -05:00
|
|
|
progress.dismiss();
|
2018-12-02 04:47:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-01 18:45:48 +08:00
|
|
|
private static class RestoreManager extends ManagerDownloadListener {
|
2018-12-02 04:47:57 -05:00
|
|
|
|
|
|
|
@Override
|
2019-01-01 18:45:48 +08:00
|
|
|
public void onResponse(File apk) {
|
2018-12-13 04:35:50 -05:00
|
|
|
App app = App.self;
|
2018-12-29 17:49:41 +08:00
|
|
|
progress.getNotificationBuilder()
|
2018-12-07 21:42:53 -05:00
|
|
|
.setProgress(0, 0, true)
|
2018-12-13 04:35:50 -05:00
|
|
|
.setContentTitle(app.getString(R.string.restore_img_msg))
|
2018-12-07 21:42:53 -05:00
|
|
|
.setContentText("");
|
|
|
|
progress.update();
|
2019-01-21 15:49:03 -05:00
|
|
|
Config.export();
|
2018-12-07 21:42:53 -05:00
|
|
|
// Make it world readable
|
|
|
|
apk.setReadable(true, false);
|
2018-12-02 04:47:57 -05:00
|
|
|
if (ShellUtils.fastCmdResult("pm install " + apk))
|
2018-12-13 04:35:50 -05:00
|
|
|
RootUtils.rmAndLaunch(app.getPackageName(), BuildConfig.APPLICATION_ID);
|
2018-12-07 21:42:53 -05:00
|
|
|
progress.dismiss();
|
2018-12-02 04:47:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|