2016-12-25 03:05:22 +08:00
|
|
|
package com.topjohnwu.magisk;
|
|
|
|
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.support.annotation.Nullable;
|
|
|
|
import android.support.v4.widget.SwipeRefreshLayout;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.ProgressBar;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
2017-02-12 19:49:46 +08:00
|
|
|
import com.topjohnwu.magisk.asyncs.CheckUpdates;
|
2017-02-15 05:24:02 +08:00
|
|
|
import com.topjohnwu.magisk.components.AlertDialogBuilder;
|
2017-02-07 02:01:32 +08:00
|
|
|
import com.topjohnwu.magisk.components.Fragment;
|
2017-02-07 04:09:49 +08:00
|
|
|
import com.topjohnwu.magisk.utils.CallbackEvent;
|
2016-12-25 03:05:22 +08:00
|
|
|
import com.topjohnwu.magisk.utils.Logger;
|
|
|
|
import com.topjohnwu.magisk.utils.Shell;
|
2017-01-10 22:30:05 +08:00
|
|
|
import com.topjohnwu.magisk.utils.Utils;
|
2016-12-25 03:05:22 +08:00
|
|
|
|
|
|
|
import butterknife.BindColor;
|
|
|
|
import butterknife.BindView;
|
|
|
|
import butterknife.ButterKnife;
|
2017-02-21 03:30:37 +08:00
|
|
|
import butterknife.OnClick;
|
2017-01-12 01:46:07 +01:00
|
|
|
import butterknife.Unbinder;
|
2016-12-25 03:05:22 +08:00
|
|
|
|
2017-02-07 04:09:49 +08:00
|
|
|
public class StatusFragment extends Fragment implements CallbackEvent.Listener<Void> {
|
2016-12-25 03:05:22 +08:00
|
|
|
|
2017-01-07 02:46:50 +08:00
|
|
|
private static boolean noDialog = false;
|
|
|
|
|
2017-01-12 01:46:07 +01:00
|
|
|
private Unbinder unbinder;
|
2016-12-25 03:05:22 +08:00
|
|
|
@BindView(R.id.swipeRefreshLayout) SwipeRefreshLayout mSwipeRefreshLayout;
|
|
|
|
|
2017-05-19 08:37:57 -07:00
|
|
|
@BindView(R.id.magisk_update_icon) ImageView magiskUpdateIcon;
|
2016-12-25 03:05:22 +08:00
|
|
|
@BindView(R.id.magisk_update_status) TextView magiskUpdateText;
|
|
|
|
@BindView(R.id.magisk_check_updates_progress) ProgressBar magiskCheckUpdatesProgress;
|
|
|
|
|
2017-05-19 08:37:57 -07:00
|
|
|
@BindView(R.id.magisk_status_icon) ImageView magiskStatusIcon;
|
|
|
|
@BindView(R.id.magisk_version) TextView magiskVersionText;
|
|
|
|
|
2016-12-25 03:05:22 +08:00
|
|
|
@BindView(R.id.root_status_icon) ImageView rootStatusIcon;
|
|
|
|
@BindView(R.id.root_status) TextView rootStatusText;
|
|
|
|
|
|
|
|
@BindView(R.id.safetyNet_container) View safetyNetContainer;
|
|
|
|
@BindView(R.id.safetyNet_icon) ImageView safetyNetIcon;
|
|
|
|
@BindView(R.id.safetyNet_status) TextView safetyNetStatusText;
|
|
|
|
@BindView(R.id.safetyNet_check_progress) ProgressBar safetyNetProgress;
|
|
|
|
|
|
|
|
@BindColor(R.color.red500) int colorBad;
|
|
|
|
@BindColor(R.color.green500) int colorOK;
|
|
|
|
@BindColor(R.color.yellow500) int colorWarn;
|
|
|
|
@BindColor(R.color.grey500) int colorNeutral;
|
|
|
|
@BindColor(R.color.blue500) int colorInfo;
|
|
|
|
@BindColor(android.R.color.transparent) int trans;
|
2017-02-21 03:30:37 +08:00
|
|
|
|
|
|
|
@OnClick(R.id.safetyNet_container)
|
|
|
|
public void safetyNet() {
|
|
|
|
safetyNetProgress.setVisibility(View.VISIBLE);
|
|
|
|
safetyNetContainer.setBackgroundColor(trans);
|
|
|
|
safetyNetIcon.setImageResource(0);
|
|
|
|
safetyNetStatusText.setText(R.string.checking_safetyNet_status);
|
2017-05-19 08:37:57 -07:00
|
|
|
Utils.checkSafetyNet(magiskManager);
|
2017-02-21 03:30:37 +08:00
|
|
|
}
|
|
|
|
|
2017-02-22 04:58:03 +08:00
|
|
|
public void gotoInstall() {
|
2017-05-19 08:37:57 -07:00
|
|
|
if (magiskManager.remoteMagiskVersionCode > 0) {
|
2017-03-30 05:16:50 +08:00
|
|
|
((MainActivity) getActivity()).navigate(R.id.install);
|
|
|
|
}
|
2017-02-21 03:30:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private int defaultColor;
|
2017-05-19 08:37:57 -07:00
|
|
|
private MagiskManager magiskManager;
|
2016-12-25 03:05:22 +08:00
|
|
|
|
|
|
|
@Nullable
|
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
2017-01-25 17:07:23 +08:00
|
|
|
View v = inflater.inflate(R.layout.fragment_status, container, false);
|
2017-01-12 01:46:07 +01:00
|
|
|
unbinder = ButterKnife.bind(this, v);
|
2017-05-19 08:37:57 -07:00
|
|
|
magiskManager = getApplication();
|
2016-12-25 03:05:22 +08:00
|
|
|
|
2017-01-07 01:19:18 +08:00
|
|
|
defaultColor = magiskUpdateText.getCurrentTextColor();
|
|
|
|
|
2016-12-25 03:05:22 +08:00
|
|
|
mSwipeRefreshLayout.setOnRefreshListener(() -> {
|
|
|
|
magiskUpdateText.setText(R.string.checking_for_updates);
|
|
|
|
magiskCheckUpdatesProgress.setVisibility(View.VISIBLE);
|
2017-05-19 08:37:57 -07:00
|
|
|
magiskUpdateIcon.setVisibility(View.GONE);
|
2016-12-25 03:05:22 +08:00
|
|
|
|
2017-01-07 01:19:18 +08:00
|
|
|
safetyNetProgress.setVisibility(View.GONE);
|
|
|
|
safetyNetContainer.setBackgroundColor(colorNeutral);
|
|
|
|
safetyNetIcon.setImageResource(R.drawable.ic_safetynet);
|
|
|
|
safetyNetStatusText.setText(R.string.safetyNet_check_text);
|
|
|
|
safetyNetStatusText.setTextColor(defaultColor);
|
|
|
|
|
2017-05-19 08:37:57 -07:00
|
|
|
magiskManager.safetyNetDone.isTriggered = false;
|
2017-01-07 02:46:50 +08:00
|
|
|
noDialog = false;
|
2016-12-25 03:05:22 +08:00
|
|
|
|
2016-12-25 15:11:59 +08:00
|
|
|
updateUI();
|
2017-02-12 19:49:46 +08:00
|
|
|
new CheckUpdates(getActivity()).exec();
|
2016-12-25 15:11:59 +08:00
|
|
|
});
|
2016-12-25 03:05:22 +08:00
|
|
|
|
2017-05-19 08:37:57 -07:00
|
|
|
if (magiskManager.magiskVersionCode < 0 && Shell.rootAccess() && !noDialog) {
|
2017-01-10 22:30:05 +08:00
|
|
|
noDialog = true;
|
2017-02-15 05:24:02 +08:00
|
|
|
new AlertDialogBuilder(getActivity())
|
2016-12-25 03:05:22 +08:00
|
|
|
.setTitle(R.string.no_magisk_title)
|
|
|
|
.setMessage(R.string.no_magisk_msg)
|
|
|
|
.setCancelable(true)
|
2017-02-22 04:58:03 +08:00
|
|
|
.setPositiveButton(R.string.goto_install, (d, i) -> gotoInstall())
|
2017-01-10 22:30:05 +08:00
|
|
|
.setNegativeButton(R.string.no_thanks, null)
|
2016-12-25 03:05:22 +08:00
|
|
|
.show();
|
|
|
|
}
|
|
|
|
|
2017-01-07 02:46:50 +08:00
|
|
|
updateUI();
|
|
|
|
|
2017-05-19 08:37:57 -07:00
|
|
|
if (magiskManager.updateCheckDone.isTriggered)
|
2017-02-07 04:09:49 +08:00
|
|
|
updateCheckUI();
|
2017-05-19 08:37:57 -07:00
|
|
|
if (magiskManager.safetyNetDone.isTriggered)
|
2017-02-07 04:09:49 +08:00
|
|
|
updateSafetyNetUI();
|
|
|
|
|
2016-12-25 03:05:22 +08:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2016-12-25 15:11:59 +08:00
|
|
|
@Override
|
2017-02-07 04:09:49 +08:00
|
|
|
public void onTrigger(CallbackEvent<Void> event) {
|
2017-05-19 08:37:57 -07:00
|
|
|
if (event == magiskManager.updateCheckDone) {
|
2016-12-25 15:11:59 +08:00
|
|
|
Logger.dev("StatusFragment: Update Check UI refresh triggered");
|
|
|
|
updateCheckUI();
|
2017-05-19 08:37:57 -07:00
|
|
|
} else if (event == magiskManager.safetyNetDone) {
|
2016-12-25 15:11:59 +08:00
|
|
|
Logger.dev("StatusFragment: SafetyNet UI refresh triggered");
|
|
|
|
updateSafetyNetUI();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-25 03:05:22 +08:00
|
|
|
@Override
|
2017-01-12 00:13:23 +01:00
|
|
|
public void onStart() {
|
|
|
|
super.onStart();
|
2017-05-19 08:37:57 -07:00
|
|
|
magiskManager.updateCheckDone.register(this);
|
|
|
|
magiskManager.safetyNetDone.register(this);
|
2016-12-25 03:05:22 +08:00
|
|
|
getActivity().setTitle(R.string.status);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-01-12 00:13:23 +01:00
|
|
|
public void onStop() {
|
2017-05-19 08:37:57 -07:00
|
|
|
magiskManager.updateCheckDone.unRegister(this);
|
|
|
|
magiskManager.safetyNetDone.unRegister(this);
|
2017-01-12 00:13:23 +01:00
|
|
|
super.onStop();
|
2016-12-25 03:05:22 +08:00
|
|
|
}
|
|
|
|
|
2017-01-12 01:46:07 +01:00
|
|
|
@Override
|
|
|
|
public void onDestroyView() {
|
|
|
|
super.onDestroyView();
|
|
|
|
unbinder.unbind();
|
|
|
|
}
|
|
|
|
|
2016-12-25 22:36:51 +08:00
|
|
|
private void updateUI() {
|
|
|
|
int image, color;
|
|
|
|
|
2017-05-19 08:37:57 -07:00
|
|
|
magiskManager.updateMagiskInfo();
|
2016-12-25 22:36:51 +08:00
|
|
|
|
2017-05-19 08:37:57 -07:00
|
|
|
if (magiskManager.magiskVersionCode < 0) {
|
|
|
|
color = colorBad;
|
|
|
|
image = R.drawable.ic_cancel;
|
2016-12-25 22:36:51 +08:00
|
|
|
magiskVersionText.setText(R.string.magisk_version_error);
|
|
|
|
} else {
|
2017-05-19 08:37:57 -07:00
|
|
|
color = colorOK;
|
|
|
|
image = R.drawable.ic_check_circle;
|
|
|
|
magiskVersionText.setText(getString(R.string.current_magisk_title, "v" + magiskManager.magiskVersionString));
|
2016-12-25 03:05:22 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 08:37:57 -07:00
|
|
|
magiskStatusIcon.setImageResource(image);
|
|
|
|
magiskStatusIcon.setColorFilter(color);
|
|
|
|
|
2017-01-26 13:46:54 +08:00
|
|
|
switch (Shell.rootStatus) {
|
|
|
|
case 0:
|
2016-12-25 03:05:22 +08:00
|
|
|
color = colorBad;
|
|
|
|
image = R.drawable.ic_cancel;
|
|
|
|
rootStatusText.setText(R.string.not_rooted);
|
2017-01-26 13:46:54 +08:00
|
|
|
break;
|
|
|
|
case 1:
|
2017-05-19 08:37:57 -07:00
|
|
|
if (magiskManager.suVersion != null) {
|
2017-01-26 13:46:54 +08:00
|
|
|
color = colorOK;
|
|
|
|
image = R.drawable.ic_check_circle;
|
2017-05-19 08:37:57 -07:00
|
|
|
rootStatusText.setText(magiskManager.suVersion);
|
2017-01-26 13:46:54 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case -1:
|
|
|
|
default:
|
2016-12-25 03:05:22 +08:00
|
|
|
color = colorNeutral;
|
|
|
|
image = R.drawable.ic_help;
|
|
|
|
rootStatusText.setText(R.string.root_error);
|
|
|
|
}
|
2017-05-19 08:37:57 -07:00
|
|
|
|
2016-12-25 03:05:22 +08:00
|
|
|
rootStatusIcon.setImageResource(image);
|
2017-05-19 08:37:57 -07:00
|
|
|
rootStatusIcon.setColorFilter(color);
|
2016-12-25 03:05:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void updateCheckUI() {
|
|
|
|
int image, color;
|
|
|
|
|
2017-05-19 08:37:57 -07:00
|
|
|
if (magiskManager.remoteMagiskVersionCode < 0) {
|
2016-12-25 03:05:22 +08:00
|
|
|
color = colorNeutral;
|
|
|
|
image = R.drawable.ic_help;
|
|
|
|
magiskUpdateText.setText(R.string.cannot_check_updates);
|
|
|
|
} else {
|
|
|
|
color = colorOK;
|
|
|
|
image = R.drawable.ic_check_circle;
|
2017-05-19 08:37:57 -07:00
|
|
|
magiskUpdateText.setText(getString(R.string.install_magisk_title, "v" + magiskManager.remoteMagiskVersionString));
|
2016-12-25 03:05:22 +08:00
|
|
|
}
|
2017-02-05 04:40:52 +08:00
|
|
|
|
2017-05-19 08:37:57 -07:00
|
|
|
magiskUpdateIcon.setImageResource(image);
|
|
|
|
magiskUpdateIcon.setColorFilter(color);
|
|
|
|
magiskUpdateIcon.setVisibility(View.VISIBLE);
|
2016-12-25 03:05:22 +08:00
|
|
|
|
|
|
|
magiskCheckUpdatesProgress.setVisibility(View.GONE);
|
|
|
|
mSwipeRefreshLayout.setRefreshing(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateSafetyNetUI() {
|
|
|
|
int image, color;
|
|
|
|
safetyNetProgress.setVisibility(View.GONE);
|
2017-05-19 08:37:57 -07:00
|
|
|
switch (magiskManager.SNCheckResult) {
|
2017-01-03 18:01:57 +08:00
|
|
|
case -3:
|
|
|
|
color = colorNeutral;
|
|
|
|
image = R.drawable.ic_help;
|
|
|
|
safetyNetStatusText.setText(R.string.safetyNet_connection_suspended);
|
|
|
|
break;
|
|
|
|
case -2:
|
|
|
|
color = colorNeutral;
|
|
|
|
image = R.drawable.ic_help;
|
|
|
|
safetyNetStatusText.setText(R.string.safetyNet_connection_failed);
|
|
|
|
break;
|
2016-12-25 03:05:22 +08:00
|
|
|
case -1:
|
|
|
|
color = colorNeutral;
|
|
|
|
image = R.drawable.ic_help;
|
|
|
|
safetyNetStatusText.setText(R.string.safetyNet_error);
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
color = colorBad;
|
|
|
|
image = R.drawable.ic_cancel;
|
|
|
|
safetyNetStatusText.setText(R.string.safetyNet_fail);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
default:
|
|
|
|
color = colorOK;
|
|
|
|
image = R.drawable.ic_check_circle;
|
|
|
|
safetyNetStatusText.setText(R.string.safetyNet_pass);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
safetyNetContainer.setBackgroundColor(color);
|
|
|
|
safetyNetStatusText.setTextColor(color);
|
|
|
|
safetyNetIcon.setImageResource(image);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|