2017-02-15 05:24:02 +08:00
|
|
|
package com.topjohnwu.magisk.asyncs;
|
|
|
|
|
2017-09-03 22:10:54 +08:00
|
|
|
import android.Manifest;
|
2017-02-15 05:24:02 +08:00
|
|
|
import android.app.Activity;
|
|
|
|
import android.app.ProgressDialog;
|
2017-07-18 00:59:22 +08:00
|
|
|
import android.content.Intent;
|
2017-02-15 05:24:02 +08:00
|
|
|
import android.net.Uri;
|
2017-09-03 22:10:54 +08:00
|
|
|
import android.os.Environment;
|
2017-10-01 02:38:25 +08:00
|
|
|
import android.support.annotation.NonNull;
|
2017-02-15 05:24:02 +08:00
|
|
|
import android.widget.Toast;
|
|
|
|
|
2017-07-18 00:59:22 +08:00
|
|
|
import com.topjohnwu.magisk.FlashActivity;
|
2017-02-15 05:24:02 +08:00
|
|
|
import com.topjohnwu.magisk.R;
|
2017-10-13 20:47:14 +08:00
|
|
|
import com.topjohnwu.magisk.container.InputStreamWrapper;
|
2017-02-15 05:24:02 +08:00
|
|
|
import com.topjohnwu.magisk.utils.Shell;
|
|
|
|
import com.topjohnwu.magisk.utils.Utils;
|
2017-09-03 22:10:54 +08:00
|
|
|
import com.topjohnwu.magisk.utils.WebService;
|
2017-02-15 05:24:02 +08:00
|
|
|
import com.topjohnwu.magisk.utils.ZipUtils;
|
|
|
|
|
2017-09-03 22:10:54 +08:00
|
|
|
import java.io.BufferedInputStream;
|
|
|
|
import java.io.BufferedOutputStream;
|
2017-02-15 23:43:30 +08:00
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileInputStream;
|
2017-09-03 22:10:54 +08:00
|
|
|
import java.io.FileOutputStream;
|
2017-10-01 02:38:25 +08:00
|
|
|
import java.io.IOException;
|
2017-09-03 22:10:54 +08:00
|
|
|
import java.io.InputStream;
|
2017-02-15 05:24:02 +08:00
|
|
|
import java.io.OutputStream;
|
2017-10-01 01:12:45 +08:00
|
|
|
import java.net.HttpURLConnection;
|
2017-10-04 22:27:14 +08:00
|
|
|
import java.util.jar.JarEntry;
|
|
|
|
import java.util.jar.JarInputStream;
|
|
|
|
import java.util.jar.JarOutputStream;
|
2017-02-15 05:24:02 +08:00
|
|
|
|
2017-10-01 02:38:25 +08:00
|
|
|
public class ProcessRepoZip extends ParallelTask<Void, Object, Boolean> {
|
2017-02-15 05:24:02 +08:00
|
|
|
|
|
|
|
private ProgressDialog progressDialog;
|
2017-02-16 17:50:36 +08:00
|
|
|
private boolean mInstall;
|
2017-09-13 15:46:05 +08:00
|
|
|
private String mLink;
|
|
|
|
private File mFile;
|
2017-10-13 03:25:56 +08:00
|
|
|
private int progress = 0, total = -1;
|
2017-10-01 02:38:25 +08:00
|
|
|
|
|
|
|
private static final int UPDATE_DL_PROG = 0;
|
|
|
|
private static final int SHOW_PROCESSING = 1;
|
2017-02-15 05:24:02 +08:00
|
|
|
|
2017-09-03 22:10:54 +08:00
|
|
|
public ProcessRepoZip(Activity context, String link, String filename, boolean install) {
|
2017-02-15 05:24:02 +08:00
|
|
|
super(context);
|
2017-09-03 22:10:54 +08:00
|
|
|
mLink = link;
|
2017-09-13 15:46:05 +08:00
|
|
|
mFile = new File(Environment.getExternalStorageDirectory() + "/MagiskManager", filename);
|
|
|
|
mFile.getParentFile().mkdirs();
|
2017-02-16 17:50:36 +08:00
|
|
|
mInstall = install;
|
2017-02-15 05:24:02 +08:00
|
|
|
}
|
|
|
|
|
2017-10-04 22:27:14 +08:00
|
|
|
private void removeTopFolder(InputStream in, File output) throws IOException {
|
|
|
|
JarInputStream source = new JarInputStream(in);
|
|
|
|
JarOutputStream dest = new JarOutputStream(new BufferedOutputStream(new FileOutputStream(output)));
|
|
|
|
JarEntry entry;
|
|
|
|
String path;
|
|
|
|
int size;
|
|
|
|
byte buffer[] = new byte[4096];
|
|
|
|
while ((entry = source.getNextJarEntry()) != null) {
|
|
|
|
// Remove the top directory from the path
|
|
|
|
path = entry.getName().substring(entry.getName().indexOf("/") + 1);
|
|
|
|
// If it's the top folder, ignore it
|
|
|
|
if (path.isEmpty()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Don't include placeholder
|
|
|
|
if (path.equals("system/placeholder")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
dest.putNextEntry(new JarEntry(path));
|
|
|
|
while((size = source.read(buffer)) != -1) {
|
|
|
|
dest.write(buffer, 0, size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
source.close();
|
|
|
|
dest.close();
|
|
|
|
in.close();
|
|
|
|
}
|
|
|
|
|
2017-02-15 05:24:02 +08:00
|
|
|
@Override
|
|
|
|
protected void onPreExecute() {
|
2017-07-19 18:01:22 +08:00
|
|
|
Activity activity = getActivity();
|
2017-10-01 02:38:25 +08:00
|
|
|
progressDialog = ProgressDialog.show(activity, activity.getString(R.string.zip_download_title), activity.getString(R.string.zip_download_msg, 0));
|
2017-09-03 22:10:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-10-01 02:38:25 +08:00
|
|
|
protected void onProgressUpdate(Object... values) {
|
|
|
|
int mode = (int) values[0];
|
|
|
|
switch (mode) {
|
|
|
|
case UPDATE_DL_PROG:
|
|
|
|
int add = (int) values[1];
|
|
|
|
progress += add;
|
|
|
|
progressDialog.setMessage(getActivity().getString(R.string.zip_download_msg, 100 * progress / total));
|
|
|
|
break;
|
|
|
|
case SHOW_PROCESSING:
|
|
|
|
progressDialog.setTitle(R.string.zip_process_title);
|
|
|
|
progressDialog.setMessage(getActivity().getString(R.string.zip_process_msg));
|
|
|
|
break;
|
|
|
|
}
|
2017-02-15 05:24:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected Boolean doInBackground(Void... params) {
|
2017-07-19 18:01:22 +08:00
|
|
|
Activity activity = getActivity();
|
|
|
|
if (activity == null) return null;
|
2017-02-15 05:24:02 +08:00
|
|
|
try {
|
|
|
|
|
2017-09-03 22:10:54 +08:00
|
|
|
// Request zip from Internet
|
2017-10-13 03:25:56 +08:00
|
|
|
HttpURLConnection conn;
|
|
|
|
do {
|
|
|
|
conn = WebService.request(mLink, null);
|
|
|
|
if (conn == null) return null;
|
|
|
|
total = conn.getContentLength();
|
|
|
|
if (total < 0)
|
|
|
|
conn.disconnect();
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
} while (true);
|
|
|
|
|
2017-10-13 20:47:14 +08:00
|
|
|
InputStream in = new BufferedInputStream(new ProgressInputStream(conn.getInputStream()));
|
2017-09-03 22:10:54 +08:00
|
|
|
|
|
|
|
// Temp files
|
2017-07-19 16:10:17 +08:00
|
|
|
File temp1 = new File(activity.getCacheDir(), "1.zip");
|
2017-09-03 22:10:54 +08:00
|
|
|
File temp2 = new File(temp1.getParentFile(), "2.zip");
|
|
|
|
temp1.getParentFile().mkdir();
|
2017-02-15 23:43:30 +08:00
|
|
|
|
2017-09-03 22:10:54 +08:00
|
|
|
// First remove top folder in Github source zip, Web -> temp1
|
2017-10-04 22:27:14 +08:00
|
|
|
removeTopFolder(in, temp1);
|
2017-09-03 22:10:54 +08:00
|
|
|
|
2017-10-01 01:12:45 +08:00
|
|
|
conn.disconnect();
|
2017-10-01 02:38:25 +08:00
|
|
|
publishProgress(SHOW_PROCESSING);
|
2017-02-15 05:24:02 +08:00
|
|
|
|
2017-02-15 23:43:30 +08:00
|
|
|
// Then sign the zip for the first time, temp1 -> temp2
|
2017-06-16 03:07:46 +08:00
|
|
|
ZipUtils.signZip(activity, temp1, temp2, false);
|
2017-02-15 23:43:30 +08:00
|
|
|
|
2017-06-16 03:07:46 +08:00
|
|
|
// Adjust the zip to prevent unzip issues, temp2 -> temp1
|
|
|
|
ZipUtils.zipAdjust(temp2.getPath(), temp1.getPath());
|
2017-02-15 23:43:30 +08:00
|
|
|
|
2017-06-16 03:07:46 +08:00
|
|
|
// Finally, sign the whole zip file again, temp1 -> temp2
|
|
|
|
ZipUtils.signZip(activity, temp1, temp2, true);
|
2017-02-15 23:43:30 +08:00
|
|
|
|
2017-09-03 22:10:54 +08:00
|
|
|
// Write it to the target zip, temp2 -> file
|
|
|
|
try (OutputStream out = new BufferedOutputStream(new FileOutputStream(mFile));
|
|
|
|
InputStream source = new BufferedInputStream(new FileInputStream(temp2))
|
2017-07-22 17:39:34 +08:00
|
|
|
) {
|
2017-02-15 23:43:30 +08:00
|
|
|
byte[] buffer = new byte[4096];
|
|
|
|
int length;
|
2017-09-03 22:10:54 +08:00
|
|
|
while ((length = source.read(buffer)) > 0)
|
2017-07-22 17:39:34 +08:00
|
|
|
out.write(buffer, 0, length);
|
2017-02-15 05:24:02 +08:00
|
|
|
}
|
2017-02-15 23:43:30 +08:00
|
|
|
|
2017-09-03 22:10:54 +08:00
|
|
|
// Delete temp files
|
2017-02-15 23:43:30 +08:00
|
|
|
temp1.delete();
|
|
|
|
temp2.delete();
|
|
|
|
|
2017-02-15 05:24:02 +08:00
|
|
|
return true;
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Boolean result) {
|
2017-07-19 18:01:22 +08:00
|
|
|
Activity activity = getActivity();
|
|
|
|
if (activity == null) return;
|
2017-02-15 05:24:02 +08:00
|
|
|
progressDialog.dismiss();
|
2017-09-13 15:46:05 +08:00
|
|
|
Uri uri = Uri.fromFile(mFile);
|
2017-02-15 05:24:02 +08:00
|
|
|
if (result) {
|
2017-02-21 03:30:37 +08:00
|
|
|
if (Shell.rootAccess() && mInstall) {
|
2017-08-31 03:07:33 +08:00
|
|
|
Intent intent = new Intent(getActivity(), FlashActivity.class);
|
2017-09-03 22:10:54 +08:00
|
|
|
intent.setData(uri).putExtra(FlashActivity.SET_ACTION, FlashActivity.FLASH_ZIP);
|
2017-08-31 03:07:33 +08:00
|
|
|
activity.startActivity(intent);
|
2017-02-21 03:30:37 +08:00
|
|
|
} else {
|
2017-09-03 22:10:54 +08:00
|
|
|
Utils.showUriSnack(activity, uri);
|
2017-02-21 03:30:37 +08:00
|
|
|
}
|
2017-02-15 05:24:02 +08:00
|
|
|
} else {
|
2017-07-19 18:01:22 +08:00
|
|
|
Utils.getMagiskManager(activity).toast(R.string.process_error, Toast.LENGTH_LONG);
|
2017-02-15 05:24:02 +08:00
|
|
|
}
|
2017-08-31 03:07:33 +08:00
|
|
|
super.onPostExecute(result);
|
2017-02-15 05:24:02 +08:00
|
|
|
}
|
2017-09-03 22:10:54 +08:00
|
|
|
|
|
|
|
@Override
|
2017-10-01 02:38:25 +08:00
|
|
|
public ParallelTask<Void, Object, Boolean> exec(Void... voids) {
|
2017-10-04 22:27:14 +08:00
|
|
|
Utils.runWithPermission(getActivity(), Manifest.permission.WRITE_EXTERNAL_STORAGE,
|
|
|
|
() -> super.exec(voids));
|
2017-09-03 22:10:54 +08:00
|
|
|
return this;
|
|
|
|
}
|
2017-10-01 02:38:25 +08:00
|
|
|
|
2017-10-13 20:47:14 +08:00
|
|
|
private class ProgressInputStream extends InputStreamWrapper {
|
2017-10-01 02:38:25 +08:00
|
|
|
|
2017-10-13 20:47:14 +08:00
|
|
|
ProgressInputStream(InputStream in) {
|
2017-10-01 02:38:25 +08:00
|
|
|
super(in);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public synchronized int read() throws IOException {
|
|
|
|
publishProgress(UPDATE_DL_PROG, 1);
|
|
|
|
return super.read();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int read(@NonNull byte[] b) throws IOException {
|
|
|
|
return read(b, 0, b.length);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public synchronized int read(@NonNull byte[] b, int off, int len) throws IOException {
|
|
|
|
int read = super.read(b, off, len);
|
|
|
|
publishProgress(UPDATE_DL_PROG, read);
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
}
|
2017-02-15 05:24:02 +08:00
|
|
|
}
|