2016-08-20 15:26:49 +00:00
|
|
|
package com.topjohnwu.magisk.ui;
|
2016-08-17 11:00:55 +00:00
|
|
|
|
|
|
|
import android.app.ProgressDialog;
|
|
|
|
import android.os.AsyncTask;
|
|
|
|
import android.os.Bundle;
|
2016-08-21 13:29:42 +00:00
|
|
|
import android.support.annotation.Nullable;
|
|
|
|
import android.support.v7.widget.RecyclerView;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
2016-08-20 15:26:49 +00:00
|
|
|
|
|
|
|
import com.topjohnwu.magisk.R;
|
|
|
|
import com.topjohnwu.magisk.model.Module;
|
|
|
|
import com.topjohnwu.magisk.rv.ModulesAdapter;
|
2016-08-21 13:29:42 +00:00
|
|
|
import com.topjohnwu.magisk.ui.utils.Utils;
|
2016-08-17 11:00:55 +00:00
|
|
|
|
|
|
|
import java.io.File;
|
2016-08-21 13:29:42 +00:00
|
|
|
import java.io.FileFilter;
|
2016-08-17 11:00:55 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
2016-08-21 13:29:42 +00:00
|
|
|
import butterknife.BindView;
|
|
|
|
import butterknife.ButterKnife;
|
|
|
|
|
|
|
|
public class ModulesFragment extends android.support.v4.app.Fragment {
|
2016-08-17 11:00:55 +00:00
|
|
|
|
|
|
|
private static final String MAGISK_PATH = "/magisk";
|
|
|
|
private static final String MAGISK_CACHE_PATH = "/cache/magisk";
|
|
|
|
|
2016-08-21 13:29:42 +00:00
|
|
|
@BindView(R.id.recyclerView) RecyclerView recyclerView;
|
|
|
|
|
2016-08-17 11:00:55 +00:00
|
|
|
private List<Module> listModules = new ArrayList<>();
|
|
|
|
|
2016-08-21 13:29:42 +00:00
|
|
|
@Nullable
|
2016-08-17 11:00:55 +00:00
|
|
|
@Override
|
2016-08-21 13:29:42 +00:00
|
|
|
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
|
|
|
View v = inflater.inflate(R.layout.modules_fragment, container, false);
|
|
|
|
ButterKnife.bind(this, v);
|
2016-08-17 11:00:55 +00:00
|
|
|
|
|
|
|
new CheckFolders().execute();
|
2016-08-21 13:29:42 +00:00
|
|
|
|
|
|
|
return v;
|
2016-08-17 11:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private class CheckFolders extends AsyncTask<Void, Integer, Boolean> {
|
|
|
|
|
|
|
|
private ProgressDialog progress;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPreExecute() {
|
|
|
|
super.onPreExecute();
|
|
|
|
|
2016-08-21 13:29:42 +00:00
|
|
|
progress = ProgressDialog.show(getContext(), null, getString(R.string.loading), true, false);
|
2016-08-17 11:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected Boolean doInBackground(Void... voids) {
|
2016-08-21 13:29:42 +00:00
|
|
|
File[] magisk = new File(MAGISK_PATH).listFiles(new FileFilter() {
|
|
|
|
@Override
|
|
|
|
public boolean accept(File file) {
|
|
|
|
return file.isDirectory();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Utils.executeCommand("chmod 777 /cache");
|
|
|
|
|
|
|
|
File[] magiskCache = new File(MAGISK_CACHE_PATH).listFiles(new FileFilter() {
|
|
|
|
@Override
|
|
|
|
public boolean accept(File file) {
|
|
|
|
return file.isDirectory();
|
|
|
|
}
|
|
|
|
});
|
2016-08-17 11:00:55 +00:00
|
|
|
|
|
|
|
if (magisk != null) {
|
|
|
|
for (File mod : magisk) {
|
2016-08-18 09:27:26 +00:00
|
|
|
Module m = new Module(mod);
|
|
|
|
if (m.isValid()) {
|
|
|
|
listModules.add(m);
|
|
|
|
}
|
2016-08-17 11:00:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (magiskCache != null) {
|
|
|
|
for (File mod : magiskCache) {
|
2016-08-18 09:27:26 +00:00
|
|
|
Module m = new Module(mod);
|
|
|
|
if (m.isValid()) {
|
|
|
|
listModules.add(m);
|
|
|
|
}
|
2016-08-17 11:00:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//noinspection Convert2streamapi
|
|
|
|
for (Module module : listModules) {
|
2016-08-18 09:27:26 +00:00
|
|
|
try {
|
2016-08-17 11:00:55 +00:00
|
|
|
module.parse();
|
|
|
|
} catch (Exception ignored) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-08-18 09:27:26 +00:00
|
|
|
protected void onPostExecute(Boolean result) {
|
|
|
|
super.onPostExecute(result);
|
2016-08-17 11:00:55 +00:00
|
|
|
|
|
|
|
progress.dismiss();
|
|
|
|
|
2016-08-21 13:29:42 +00:00
|
|
|
recyclerView.setAdapter(new ModulesAdapter(listModules));
|
2016-08-17 11:00:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|