Magisk/app/src/main/java/com/topjohnwu/magisk/ModulesFragment.java

217 lines
6.4 KiB
Java
Raw Normal View History

2016-08-22 21:18:28 +00:00
package com.topjohnwu.magisk;
2016-08-17 11:00:55 +00:00
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
2016-08-17 11:00:55 +00:00
import android.os.AsyncTask;
import android.os.Bundle;
2016-09-14 22:12:47 +00:00
import android.os.Environment;
import android.provider.DocumentsContract;
2016-08-21 13:29:42 +00:00
import android.support.annotation.Nullable;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.TabLayout;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
2016-09-01 21:58:26 +00:00
import android.util.Log;
2016-08-21 13:29:42 +00:00
import android.view.LayoutInflater;
2016-08-27 19:52:03 +00:00
import android.view.Menu;
import android.view.MenuInflater;
2016-08-21 13:29:42 +00:00
import android.view.View;
import android.view.ViewGroup;
import android.widget.ProgressBar;
2016-08-20 15:26:49 +00:00
2016-08-22 21:18:28 +00:00
import com.topjohnwu.magisk.module.Module;
import com.topjohnwu.magisk.module.RepoHelper;
import com.topjohnwu.magisk.utils.Utils;
2016-08-17 11:00:55 +00:00
2016-08-25 10:40:00 +00:00
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
2016-08-17 11:00:55 +00:00
import java.util.List;
2016-08-21 13:29:42 +00:00
import butterknife.BindView;
import butterknife.ButterKnife;
2016-08-21 15:21:37 +00:00
public class ModulesFragment extends Fragment {
2016-08-17 11:00:55 +00:00
2016-08-28 22:35:07 +00:00
public static List<Module> listModules = new ArrayList<>();
public static List<Module> listModulesCache = new ArrayList<>();
2016-09-09 21:49:25 +00:00
private int viewPagePosition;
2016-08-17 11:00:55 +00:00
@BindView(R.id.progressBar)
ProgressBar progressBar;
@BindView(R.id.fab)
FloatingActionButton fabio;
@BindView(R.id.pager)
ViewPager viewPager;
@BindView(R.id.tab_layout)
TabLayout tabLayout;
private RepoHelper.TaskDelegate mTaskDelegate;
2016-09-14 22:12:47 +00:00
private static final int RQS_OPEN_DOCUMENT_TREE = 2;
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 view = inflater.inflate(R.layout.modules_fragment, container, false);
2016-09-06 21:54:08 +00:00
ButterKnife.bind(this, view);
2016-09-14 22:12:47 +00:00
fabio.setOnClickListener(v -> {
Intent fileintent = new Intent(Intent.ACTION_GET_CONTENT);
fileintent.setType("application/zip");
startActivityForResult(fileintent, RQS_OPEN_DOCUMENT_TREE);
});
new Utils.LoadModules(getActivity(), false).execute();
mTaskDelegate = result -> {
if (result.equals("OK")) {
2016-09-14 22:12:47 +00:00
Log.d("Magisk", "ModulesFragment: We dun got the result, hur hur.");
RefreshUI();
}
};
2016-09-14 22:12:47 +00:00
2016-08-25 10:08:07 +00:00
new updateUI().execute();
return view;
2016-08-17 11:00:55 +00:00
}
2016-09-01 21:58:26 +00:00
2016-09-14 22:12:47 +00:00
public static boolean isExternalStorageDocument(Uri uri) {
return "com.android.externalstorage.documents".equals(uri.getAuthority());
2016-08-27 19:52:03 +00:00
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
2016-09-14 22:12:47 +00:00
String file = "";
2016-09-14 22:29:35 +00:00
if (resultCode == Activity.RESULT_OK && requestCode == RQS_OPEN_DOCUMENT_TREE) {
2016-09-14 22:12:47 +00:00
if (isExternalStorageDocument(data.getData())) {
final String docId = DocumentsContract.getDocumentId(data.getData());
final String[] split = docId.split(":");
final String type = split[0];
if ("primary".equalsIgnoreCase(type)) {
2016-09-14 22:29:35 +00:00
file = Environment.getExternalStorageDirectory() + "/" + split[1];
2016-09-14 22:12:47 +00:00
}
// TODO handle non-primary volumes
}
2016-09-14 22:12:47 +00:00
String shit = data.getDataString();
2016-09-14 22:29:35 +00:00
Log.d("Magisk", "ModulesFragment: Got a result, " + shit + " and " + data.getData().getAuthority() + " and " + file);
2016-09-14 22:12:47 +00:00
}
}
2016-09-14 22:12:47 +00:00
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
super.onCreateOptionsMenu(menu, inflater);
inflater.inflate(R.menu.menu_module, menu);
}
private void RefreshUI() {
viewPagePosition = tabLayout.getSelectedTabPosition();
listModules.clear();
listModulesCache.clear();
progressBar.setVisibility(View.VISIBLE);
viewPager.setAdapter(new TabsAdapter(getChildFragmentManager()));
tabLayout.setupWithViewPager(viewPager);
viewPager.setCurrentItem(viewPagePosition);
new Utils.LoadModules(getActivity(), true).execute();
2016-09-14 22:12:47 +00:00
Collections.sort(listModules, new CustomComparator());
Collections.sort(listModulesCache, new CustomComparator());
new updateUI().execute();
}
void selectPage(int pageIndex) {
tabLayout.setScrollPosition(pageIndex, 0f, true);
2016-09-09 21:49:25 +00:00
viewPager.setCurrentItem(pageIndex);
}
2016-08-22 21:18:28 +00:00
public static class NormalModuleFragment extends BaseModuleFragment {
@Override
protected List<Module> listModules() {
2016-08-25 10:08:07 +00:00
return listModules;
}
}
public static class CacheModuleFragment extends BaseModuleFragment {
@Override
protected List<Module> listModules() {
2016-08-25 10:08:07 +00:00
return listModulesCache;
}
}
2016-09-01 21:58:26 +00:00
2016-09-08 19:47:04 +00:00
private class updateUI extends AsyncTask<Void, Void, Void> {
2016-08-17 11:00:55 +00:00
@Override
2016-08-22 21:18:28 +00:00
protected Void doInBackground(Void... voids) {
return null;
2016-08-17 11:00:55 +00:00
}
@Override
2016-08-22 21:18:28 +00:00
protected void onPostExecute(Void v) {
super.onPostExecute(v);
progressBar.setVisibility(View.GONE);
2016-09-08 19:47:04 +00:00
viewPager.setAdapter(new TabsAdapter(getChildFragmentManager()));
tabLayout.setupWithViewPager(viewPager);
2016-09-09 21:49:25 +00:00
selectPage(viewPagePosition);
2016-08-17 11:00:55 +00:00
}
}
private class TabsAdapter extends FragmentPagerAdapter {
String[] tabTitles = new String[]{
getString(R.string.modules), getString(R.string.cache_modules)
};
public TabsAdapter(FragmentManager fm) {
super(fm);
}
@Override
public int getCount() {
return tabTitles.length;
}
@Override
public String getPageTitle(int position) {
return tabTitles[position];
}
@Override
public Fragment getItem(int position) {
if (position == 0) {
NormalModuleFragment nmf = new NormalModuleFragment();
nmf.SetDelegate(mTaskDelegate);
return nmf;
} else {
CacheModuleFragment cmf = new CacheModuleFragment();
cmf.SetDelegate(mTaskDelegate);
return cmf;
}
}
}
2016-09-14 22:12:47 +00:00
public class CustomComparator implements Comparator<Module> {
@Override
public int compare(Module o1, Module o2) {
return o1.getName().compareTo(o2.getName());
}
}
2016-09-01 21:58:26 +00:00
2016-08-17 11:00:55 +00:00
}