Search in sources :

Example 1 with DownloadReceiver

use of com.topjohnwu.magisk.receivers.DownloadReceiver in project MagiskManager by topjohnwu.

the class ShowUI method magiskInstallDialog.

public static void magiskInstallDialog(Activity activity) {
    MagiskManager mm = Utils.getMagiskManager(activity);
    String filename = Utils.fmt("Magisk-v%s(%d).zip", mm.remoteMagiskVersionString, mm.remoteMagiskVersionCode);
    new AlertDialogBuilder(activity).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));
        }
        String s = Utils.cmd("echo $SLOT");
        if (s != null) {
            options.add(mm.getString(R.string.install_second_slot));
        }
        char[] slot = s == null ? null : s.toCharArray();
        new AlertDialog.Builder(activity).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) {
                        MagiskManager.toast(R.string.no_boot_file_patch_support, Toast.LENGTH_LONG);
                        return;
                    }
                    MagiskManager.toast(R.string.boot_file_patch_msg, Toast.LENGTH_LONG);
                    Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
                    intent.setType("*/*");
                    ((com.topjohnwu.magisk.components.Activity) activity).startActivityForResult(intent, Const.ID.SELECT_BOOT, (requestCode, resultCode, data) -> {
                        if (requestCode == Const.ID.SELECT_BOOT && resultCode == Activity.RESULT_OK && data != null) {
                            Utils.dlAndReceive(activity, new DownloadReceiver() {

                                @Override
                                public void onDownloadDone(Uri uri) {
                                    Intent intent = new Intent(mm, FlashActivity.class);
                                    intent.setData(uri).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK).putExtra(Const.Key.FLASH_SET_BOOT, data.getData()).putExtra(Const.Key.FLASH_ACTION, Const.Value.PATCH_BOOT);
                                    mm.startActivity(intent);
                                }
                            }, mm.magiskLink, filename);
                        }
                    });
                    return;
                case 0:
                    receiver = new DownloadReceiver() {

                        @Override
                        public void onDownloadDone(Uri uri) {
                            Utils.showUriSnack(activity, uri);
                        }
                    };
                    break;
                case 2:
                    boot = mm.bootBlock;
                    if (boot == null)
                        return;
                    receiver = new DownloadReceiver() {

                        @Override
                        public void onDownloadDone(Uri uri) {
                            Intent intent = new Intent(mm, FlashActivity.class);
                            intent.setData(uri).putExtra(Const.Key.FLASH_SET_BOOT, boot).putExtra(Const.Key.FLASH_ACTION, Const.Value.FLASH_MAGISK);
                            activity.startActivity(intent);
                        }
                    };
                    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
                    boot = Utils.cmd("SLOT=" + String.valueOf(slot) + "; find_boot_image;" + "echo \"$BOOTIMAGE\"");
                    Shell.Async.su("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).putExtra(Const.Key.FLASH_SET_BOOT, boot).putExtra(Const.Key.FLASH_ACTION, Const.Value.FLASH_MAGISK);
                            activity.startActivity(intent);
                        }
                    };
                default:
            }
            Utils.dlAndReceive(activity, 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();
}
Also used : Context(android.content.Context) ByteArrayOutputStream(java.io.ByteArrayOutputStream) AlertDialogBuilder(com.topjohnwu.magisk.components.AlertDialogBuilder) Uri(android.net.Uri) TaskStackBuilder(android.support.v4.app.TaskStackBuilder) Intent(android.content.Intent) PendingIntent(android.app.PendingIntent) FlashActivity(com.topjohnwu.magisk.FlashActivity) RebootReceiver(com.topjohnwu.magisk.receivers.RebootReceiver) Shell(com.topjohnwu.superuser.Shell) ManagerUpdate(com.topjohnwu.magisk.receivers.ManagerUpdate) ArrayList(java.util.ArrayList) R(com.topjohnwu.magisk.R) ShellUtils(com.topjohnwu.superuser.ShellUtils) Manifest(android.Manifest) Handler(android.os.Handler) Toast(android.widget.Toast) MagiskManager(com.topjohnwu.magisk.MagiskManager) SplashActivity(com.topjohnwu.magisk.SplashActivity) RestoreImages(com.topjohnwu.magisk.asyncs.RestoreImages) NotificationManager(android.app.NotificationManager) DownloadReceiver(com.topjohnwu.magisk.receivers.DownloadReceiver) IOException(java.io.IOException) List(java.util.List) AlertDialog(android.support.v7.app.AlertDialog) NotificationCompat(android.support.v4.app.NotificationCompat) Activity(android.app.Activity) InputStream(java.io.InputStream) FlashActivity(com.topjohnwu.magisk.FlashActivity) MagiskManager(com.topjohnwu.magisk.MagiskManager) AlertDialogBuilder(com.topjohnwu.magisk.components.AlertDialogBuilder) TaskStackBuilder(android.support.v4.app.TaskStackBuilder) FlashActivity(com.topjohnwu.magisk.FlashActivity) SplashActivity(com.topjohnwu.magisk.SplashActivity) Activity(android.app.Activity) Intent(android.content.Intent) PendingIntent(android.app.PendingIntent) Uri(android.net.Uri) DownloadReceiver(com.topjohnwu.magisk.receivers.DownloadReceiver) AlertDialogBuilder(com.topjohnwu.magisk.components.AlertDialogBuilder) ArrayList(java.util.ArrayList) List(java.util.List)

Aggregations

Manifest (android.Manifest)1 Activity (android.app.Activity)1 NotificationManager (android.app.NotificationManager)1 PendingIntent (android.app.PendingIntent)1 Context (android.content.Context)1 Intent (android.content.Intent)1 Uri (android.net.Uri)1 Handler (android.os.Handler)1 NotificationCompat (android.support.v4.app.NotificationCompat)1 TaskStackBuilder (android.support.v4.app.TaskStackBuilder)1 AlertDialog (android.support.v7.app.AlertDialog)1 Toast (android.widget.Toast)1 FlashActivity (com.topjohnwu.magisk.FlashActivity)1 MagiskManager (com.topjohnwu.magisk.MagiskManager)1 R (com.topjohnwu.magisk.R)1 SplashActivity (com.topjohnwu.magisk.SplashActivity)1 RestoreImages (com.topjohnwu.magisk.asyncs.RestoreImages)1 AlertDialogBuilder (com.topjohnwu.magisk.components.AlertDialogBuilder)1 DownloadReceiver (com.topjohnwu.magisk.receivers.DownloadReceiver)1 ManagerUpdate (com.topjohnwu.magisk.receivers.ManagerUpdate)1