292 lines
16 KiB
Java
Raw Normal View History

2017-10-15 23:54:34 +08:00
package com.topjohnwu.magisk.utils;
2017-11-06 05:36:20 +08:00
import android.Manifest;
2017-10-15 23:54:34 +08:00
import android.app.Activity;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
2017-12-12 02:35:00 +08:00
import android.os.Handler;
2017-10-15 23:54:34 +08:00
import android.support.v4.app.NotificationCompat;
import android.support.v4.app.TaskStackBuilder;
import android.support.v7.app.AlertDialog;
import android.widget.Toast;
import com.topjohnwu.magisk.FlashActivity;
import com.topjohnwu.magisk.MagiskManager;
import com.topjohnwu.magisk.R;
import com.topjohnwu.magisk.SplashActivity;
2017-12-12 02:35:00 +08:00
import com.topjohnwu.magisk.asyncs.RestoreImages;
2017-10-15 23:54:34 +08:00
import com.topjohnwu.magisk.components.AlertDialogBuilder;
import com.topjohnwu.magisk.receivers.DownloadReceiver;
import com.topjohnwu.magisk.receivers.ManagerUpdate;
2017-11-15 04:39:05 +08:00
import com.topjohnwu.magisk.receivers.RebootReceiver;
2017-10-15 23:54:34 +08:00
2017-12-12 02:35:00 +08:00
import java.io.ByteArrayOutputStream;
2017-10-15 23:54:34 +08:00
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
public class ShowUI {
2017-11-15 04:39:05 +08:00
public static void magiskUpdateNotification() {
2017-10-16 00:54:48 +08:00
MagiskManager mm = MagiskManager.get();
2017-11-15 04:39:05 +08:00
2017-10-15 23:54:34 +08:00
Intent intent = new Intent(mm, SplashActivity.class);
2017-11-06 04:41:23 +08:00
intent.putExtra(Const.Key.OPEN_SECTION, "magisk");
2017-10-15 23:54:34 +08:00
TaskStackBuilder stackBuilder = TaskStackBuilder.create(mm);
stackBuilder.addParentStack(SplashActivity.class);
stackBuilder.addNextIntent(intent);
2017-11-06 04:41:23 +08:00
PendingIntent pendingIntent = stackBuilder.getPendingIntent(Const.ID.MAGISK_UPDATE_NOTIFICATION_ID,
2017-10-15 23:54:34 +08:00
PendingIntent.FLAG_UPDATE_CURRENT);
2017-11-15 04:39:05 +08:00
NotificationCompat.Builder builder = new NotificationCompat.Builder(mm, Const.ID.NOTIFICATION_CHANNEL);
builder.setSmallIcon(R.drawable.ic_magisk)
.setContentTitle(mm.getString(R.string.magisk_update_title))
.setContentText(mm.getString(R.string.magisk_update_available, mm.remoteMagiskVersionString))
.setVibrate(new long[]{0, 100, 100, 100})
.setAutoCancel(true)
.setContentIntent(pendingIntent);
2017-10-15 23:54:34 +08:00
NotificationManager notificationManager =
(NotificationManager) mm.getSystemService(Context.NOTIFICATION_SERVICE);
2017-11-06 04:41:23 +08:00
notificationManager.notify(Const.ID.MAGISK_UPDATE_NOTIFICATION_ID, builder.build());
2017-10-15 23:54:34 +08:00
}
2017-11-15 04:39:05 +08:00
public static void managerUpdateNotification() {
2017-10-16 00:54:48 +08:00
MagiskManager mm = MagiskManager.get();
2017-11-15 04:39:05 +08:00
2017-10-15 23:54:34 +08:00
Intent intent = new Intent(mm, ManagerUpdate.class);
2017-11-06 04:41:23 +08:00
intent.putExtra(Const.Key.INTENT_SET_LINK, mm.managerLink);
intent.putExtra(Const.Key.INTENT_SET_VERSION, mm.remoteManagerVersionString);
2017-10-15 23:54:34 +08:00
PendingIntent pendingIntent = PendingIntent.getBroadcast(mm,
2017-11-06 04:41:23 +08:00
Const.ID.APK_UPDATE_NOTIFICATION_ID, intent, PendingIntent.FLAG_UPDATE_CURRENT);
2017-11-15 04:39:05 +08:00
NotificationCompat.Builder builder = new NotificationCompat.Builder(mm, Const.ID.NOTIFICATION_CHANNEL);
builder.setSmallIcon(R.drawable.ic_magisk)
.setContentTitle(mm.getString(R.string.manager_update_title))
.setContentText(mm.getString(R.string.manager_download_install))
.setVibrate(new long[]{0, 100, 100, 100})
.setAutoCancel(true)
.setContentIntent(pendingIntent);
2017-10-15 23:54:34 +08:00
NotificationManager notificationManager =
(NotificationManager) mm.getSystemService(Context.NOTIFICATION_SERVICE);
2017-11-06 04:41:23 +08:00
notificationManager.notify(Const.ID.APK_UPDATE_NOTIFICATION_ID, builder.build());
2017-10-15 23:54:34 +08:00
}
2017-11-15 04:39:05 +08:00
public static void dtboPatchedNotification() {
MagiskManager mm = MagiskManager.get();
Intent intent = new Intent(mm, RebootReceiver.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(mm,
Const.ID.DTBO_NOTIFICATION_ID, intent, PendingIntent.FLAG_UPDATE_CURRENT);
NotificationCompat.Builder builder = new NotificationCompat.Builder(mm, Const.ID.NOTIFICATION_CHANNEL);
builder.setSmallIcon(R.drawable.ic_magisk)
.setContentTitle(mm.getString(R.string.dtbo_patched_title))
.setContentText(mm.getString(R.string.dtbo_patched_reboot))
.setVibrate(new long[]{0, 100, 100, 100})
.addAction(R.drawable.ic_refresh, mm.getString(R.string.reboot), pendingIntent);
NotificationManager notificationManager =
(NotificationManager) mm.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(Const.ID.DTBO_NOTIFICATION_ID, builder.build());
}
public static void magiskInstallDialog(Activity activity, boolean enc, boolean verity) {
MagiskManager mm = Utils.getMagiskManager(activity);
String filename = Utils.fmt("Magisk-v%s.zip", mm.remoteMagiskVersionString);
2017-11-15 04:39:05 +08:00
new AlertDialogBuilder(activity)
2017-10-15 23:54:34 +08:00
.setTitle(mm.getString(R.string.repo_install_title, mm.getString(R.string.magisk)))
.setMessage(mm.getString(R.string.repo_install_msg, filename))
.setCancelable(true)
.setPositiveButton(R.string.install, (d, i) -> {
List<String> options = new ArrayList<>();
options.add(mm.getString(R.string.download_zip_only));
options.add(mm.getString(R.string.patch_boot_file));
if (Shell.rootAccess()) {
options.add(mm.getString(R.string.direct_install));
}
List<String> res = Shell.su("echo $SLOT");
if (Utils.isValidShellResponse(res)) {
options.add(mm.getString(R.string.install_second_slot));
}
char[] slot = Utils.isValidShellResponse(res) ? res.get(0).toCharArray() : null;
2017-11-15 04:39:05 +08:00
new AlertDialog.Builder(activity)
2017-10-15 23:54:34 +08:00
.setTitle(R.string.select_method)
.setItems(
options.toArray(new String [0]),
(dialog, idx) -> {
String boot;
DownloadReceiver receiver = null;
switch (idx) {
case 1:
if (mm.remoteMagiskVersionCode < 1400) {
2017-10-16 00:54:48 +08:00
MagiskManager.toast(R.string.no_boot_file_patch_support, Toast.LENGTH_LONG);
2017-10-15 23:54:34 +08:00
return;
}
2017-10-16 00:54:48 +08:00
MagiskManager.toast(R.string.boot_file_patch_msg, Toast.LENGTH_LONG);
2017-10-15 23:54:34 +08:00
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("*/*");
2017-11-15 04:39:05 +08:00
((com.topjohnwu.magisk.components.Activity) activity)
.startActivityForResult(intent, Const.ID.SELECT_BOOT,
2017-10-15 23:54:34 +08:00
(requestCode, resultCode, data) -> {
2017-11-06 04:41:23 +08:00
if (requestCode == Const.ID.SELECT_BOOT
2017-10-15 23:54:34 +08:00
&& resultCode == Activity.RESULT_OK && data != null) {
Utils.dlAndReceive(
2017-11-15 04:39:05 +08:00
activity,
2017-10-15 23:54:34 +08:00
new DownloadReceiver() {
@Override
public void onDownloadDone(Uri uri) {
Intent intent = new Intent(mm, FlashActivity.class);
intent.setData(uri)
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
2017-11-06 04:41:23 +08:00
.putExtra(Const.Key.FLASH_SET_BOOT, data.getData())
.putExtra(Const.Key.FLASH_SET_ENC, enc)
.putExtra(Const.Key.FLASH_SET_VERITY, verity)
.putExtra(Const.Key.FLASH_ACTION, Const.Value.PATCH_BOOT);
2017-10-15 23:54:34 +08:00
mm.startActivity(intent);
}
},
mm.magiskLink,
filename
);
}
});
return;
case 0:
receiver = new DownloadReceiver() {
@Override
public void onDownloadDone(Uri uri) {
2017-11-15 04:39:05 +08:00
Utils.showUriSnack(activity, uri);
2017-10-15 23:54:34 +08:00
}
};
break;
case 2:
2017-11-15 04:39:05 +08:00
boot = mm.bootBlock;
2017-10-15 23:54:34 +08:00
if (boot == null)
return;
receiver = new DownloadReceiver() {
@Override
public void onDownloadDone(Uri uri) {
Intent intent = new Intent(mm, FlashActivity.class);
intent.setData(uri)
2017-11-06 04:41:23 +08:00
.putExtra(Const.Key.FLASH_SET_BOOT, boot)
.putExtra(Const.Key.FLASH_SET_ENC, enc)
.putExtra(Const.Key.FLASH_SET_VERITY, verity)
.putExtra(Const.Key.FLASH_ACTION, Const.Value.FLASH_MAGISK);
2017-11-15 04:39:05 +08:00
activity.startActivity(intent);
2017-10-15 23:54:34 +08:00
}
};
break;
case 3:
assert (slot != null);
// Choose the other slot
if (slot[1] == 'a') slot[1] = 'b';
else slot[1] = 'a';
// Then find the boot image again
List<String> ret = Shell.su(
"SLOT=" + String.valueOf(slot),
"find_boot_image",
"echo \"$BOOTIMAGE\""
);
boot = Utils.isValidShellResponse(ret) ? ret.get(ret.size() - 1) : null;
Shell.su_raw("mount_partitions");
if (boot == null)
return;
receiver = new DownloadReceiver() {
@Override
public void onDownloadDone(Uri uri) {
Intent intent = new Intent(mm, FlashActivity.class);
intent.setData(uri)
2017-11-06 04:41:23 +08:00
.putExtra(Const.Key.FLASH_SET_BOOT, boot)
.putExtra(Const.Key.FLASH_SET_ENC, enc)
.putExtra(Const.Key.FLASH_SET_VERITY, verity)
.putExtra(Const.Key.FLASH_ACTION, Const.Value.FLASH_MAGISK);
2017-11-15 04:39:05 +08:00
activity.startActivity(intent);
2017-10-15 23:54:34 +08:00
}
};
default:
}
Utils.dlAndReceive(
2017-11-15 04:39:05 +08:00
activity,
2017-10-15 23:54:34 +08:00
receiver,
mm.magiskLink,
filename
);
}
).show();
})
.setNeutralButton(R.string.release_notes, (d, i) -> {
if (mm.releaseNoteLink != null) {
Intent openLink = new Intent(Intent.ACTION_VIEW, Uri.parse(mm.releaseNoteLink));
openLink.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
mm.startActivity(openLink);
}
})
.setNegativeButton(R.string.no_thanks, null)
.show();
}
2017-11-15 04:39:05 +08:00
public static void managerInstallDialog(Activity activity) {
2017-10-15 23:54:34 +08:00
MagiskManager mm = Utils.getMagiskManager(activity);
new AlertDialogBuilder(activity)
.setTitle(mm.getString(R.string.repo_install_title, mm.getString(R.string.app_name)))
.setMessage(mm.getString(R.string.repo_install_msg,
Utils.fmt("MagiskManager-v%s.apk", mm.remoteManagerVersionString)))
2017-10-15 23:54:34 +08:00
.setCancelable(true)
.setPositiveButton(R.string.install, (d, i) -> {
2017-11-06 05:36:20 +08:00
Utils.runWithPermission(activity, Manifest.permission.WRITE_EXTERNAL_STORAGE, () -> {
Intent intent = new Intent(mm, ManagerUpdate.class);
intent.putExtra(Const.Key.INTENT_SET_LINK, mm.managerLink);
intent.putExtra(Const.Key.INTENT_SET_VERSION, mm.remoteManagerVersionString);
mm.sendBroadcast(intent);
});
2017-10-15 23:54:34 +08:00
})
.setNegativeButton(R.string.no_thanks, null)
.show();
}
2017-11-15 04:39:05 +08:00
public static void uninstallDialog(Activity activity) {
MagiskManager mm = Utils.getMagiskManager(activity);
new AlertDialogBuilder(activity)
2017-10-15 23:54:34 +08:00
.setTitle(R.string.uninstall_magisk_title)
.setMessage(R.string.uninstall_magisk_msg)
.setPositiveButton(R.string.complete_uninstall, (d, i) -> {
2017-12-12 02:35:00 +08:00
ByteArrayOutputStream uninstaller = new ByteArrayOutputStream();
try (InputStream in = mm.getAssets().open(Const.UNINSTALLER)) {
Utils.inToOut(in, uninstaller);
2017-10-15 23:54:34 +08:00
} catch (IOException e) {
e.printStackTrace();
2017-12-12 02:35:00 +08:00
return;
2017-10-15 23:54:34 +08:00
}
2017-12-12 02:35:00 +08:00
ByteArrayOutputStream utils = new ByteArrayOutputStream();
try (InputStream in = mm.getAssets().open(Const.UTIL_FUNCTIONS)) {
Utils.inToOut(in, utils);
} catch (IOException e) {
e.printStackTrace();
return;
}
Shell.su(
Utils.fmt("echo '%s' > /cache/%s", uninstaller.toString().replace("'", "'\\''"), Const.UNINSTALLER),
2017-12-16 02:01:04 +08:00
Utils.fmt("echo '%s' > %s/%s", utils.toString().replace("'", "'\\''"),
mm.magiskVersionCode >= 1464 ? "/data/adb/magisk" : "/data/magisk", Const.UTIL_FUNCTIONS)
2017-12-12 02:35:00 +08:00
);
try {
uninstaller.close();
utils.close();
} catch (IOException ignored) {}
MagiskManager.toast(R.string.uninstall_toast, Toast.LENGTH_LONG);
new Handler().postDelayed(() -> Utils.uninstallPkg(mm.getPackageName()), 5000);
2017-10-15 23:54:34 +08:00
})
2017-12-12 02:35:00 +08:00
.setNeutralButton(R.string.restore_img, (d, i) -> new RestoreImages().exec())
.setNegativeButton(R.string.uninstall_app, (d, i) -> Utils.uninstallPkg(mm.getPackageName()))
2017-10-15 23:54:34 +08:00
.show();
}
}