2016-09-24 11:54:12 -05:00
|
|
|
package com.topjohnwu.magisk;
|
|
|
|
|
2017-11-06 04:47:24 +08:00
|
|
|
import android.app.NotificationChannel;
|
|
|
|
import android.app.NotificationManager;
|
|
|
|
import android.app.job.JobInfo;
|
|
|
|
import android.app.job.JobScheduler;
|
|
|
|
import android.content.ComponentName;
|
|
|
|
import android.content.Context;
|
2016-09-24 11:54:12 -05:00
|
|
|
import android.content.Intent;
|
2017-11-06 04:47:24 +08:00
|
|
|
import android.os.Build;
|
2016-09-24 11:54:12 -05:00
|
|
|
import android.os.Bundle;
|
|
|
|
|
2017-11-06 04:47:24 +08:00
|
|
|
import com.topjohnwu.magisk.asyncs.CheckUpdates;
|
|
|
|
import com.topjohnwu.magisk.asyncs.LoadModules;
|
|
|
|
import com.topjohnwu.magisk.asyncs.ParallelTask;
|
|
|
|
import com.topjohnwu.magisk.asyncs.UpdateRepos;
|
2017-02-07 02:01:32 +08:00
|
|
|
import com.topjohnwu.magisk.components.Activity;
|
2017-11-06 04:47:24 +08:00
|
|
|
import com.topjohnwu.magisk.database.SuDatabaseHelper;
|
|
|
|
import com.topjohnwu.magisk.services.UpdateCheckService;
|
2017-11-06 04:41:23 +08:00
|
|
|
import com.topjohnwu.magisk.utils.Const;
|
2017-11-06 04:47:24 +08:00
|
|
|
import com.topjohnwu.magisk.utils.Shell;
|
|
|
|
import com.topjohnwu.magisk.utils.Utils;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.util.List;
|
2017-02-07 07:32:40 +08:00
|
|
|
|
2017-08-30 02:28:24 +08:00
|
|
|
public class SplashActivity extends Activity {
|
2016-10-31 11:13:48 +08:00
|
|
|
|
2016-09-24 11:54:12 -05:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
2016-09-26 13:16:11 -05:00
|
|
|
super.onCreate(savedInstanceState);
|
2016-09-24 11:54:12 -05:00
|
|
|
|
2017-11-06 04:47:24 +08:00
|
|
|
MagiskManager mm = getMagiskManager();
|
|
|
|
|
|
|
|
// Dynamic detect all locales
|
|
|
|
new LoadLocale().exec();
|
|
|
|
|
|
|
|
// Create notification channel on Android O
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
|
|
|
NotificationChannel channel = new NotificationChannel(Const.ID.NOTIFICATION_CHANNEL,
|
|
|
|
getString(R.string.magisk_updates), NotificationManager.IMPORTANCE_DEFAULT);
|
|
|
|
getSystemService(NotificationManager.class).createNotificationChannel(channel);
|
|
|
|
}
|
|
|
|
|
|
|
|
mm.loadMagiskInfo();
|
|
|
|
LoadModules loadModuleTask = new LoadModules();
|
|
|
|
|
|
|
|
if (Utils.checkNetworkStatus()) {
|
|
|
|
|
|
|
|
// Fire update check
|
|
|
|
new CheckUpdates().exec();
|
|
|
|
|
|
|
|
// Add repo update check
|
|
|
|
loadModuleTask.setCallBack(() -> new UpdateRepos(false).exec());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Magisk working as expected
|
|
|
|
if (Shell.rootAccess() && mm.magiskVersionCode > 0) {
|
|
|
|
// Load utility shell scripts
|
|
|
|
try (InputStream in = getAssets().open(Const.UTIL_FUNCTIONS)) {
|
|
|
|
Shell.getShell().loadInputStream(in);
|
|
|
|
} catch (IOException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Root shell initialization
|
|
|
|
Shell.su_raw(
|
|
|
|
"export PATH=" + Const.BUSYBOXPATH + ":$PATH",
|
|
|
|
"mount_partitions",
|
|
|
|
"BOOTIMAGE=",
|
|
|
|
"find_boot_image",
|
|
|
|
"migrate_boot_backup"
|
|
|
|
);
|
|
|
|
|
|
|
|
List<String> ret = Shell.su("echo \"$BOOTIMAGE\"");
|
|
|
|
if (Utils.isValidShellResponse(ret)) {
|
|
|
|
mm.bootBlock = ret.get(0);
|
|
|
|
} else {
|
|
|
|
mm.blockList = Shell.su("find /dev/block -type b | grep -vE 'dm|ram|loop'");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup suDB
|
|
|
|
SuDatabaseHelper.setupSuDB();
|
|
|
|
|
|
|
|
// Check alternative Magisk Manager
|
|
|
|
String pkg;
|
|
|
|
if (getPackageName().equals(Const.ORIG_PKG_NAME) &&
|
|
|
|
(pkg = mm.suDB.getStrings(Const.Key.SU_REQUESTER, null)) != null) {
|
|
|
|
Shell.su_raw("pm uninstall " + pkg);
|
|
|
|
mm.suDB.setStrings(Const.Key.SU_REQUESTER, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add update checking service
|
|
|
|
if (Const.Value.UPDATE_SERVICE_VER > mm.updateServiceVersion) {
|
|
|
|
ComponentName service = new ComponentName(this, UpdateCheckService.class);
|
|
|
|
JobInfo info = new JobInfo.Builder(Const.ID.UPDATE_SERVICE_ID, service)
|
|
|
|
.setRequiredNetworkType(JobInfo.NETWORK_TYPE_ANY)
|
|
|
|
.setPersisted(true)
|
|
|
|
.setPeriodic(8 * 60 * 60 * 1000)
|
|
|
|
.build();
|
|
|
|
((JobScheduler) getSystemService(Context.JOB_SCHEDULER_SERVICE)).schedule(info);
|
|
|
|
mm.updateServiceVersion = Const.Value.UPDATE_SERVICE_VER;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fire asynctasks
|
|
|
|
loadModuleTask.exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write back default values
|
|
|
|
mm.prefs.edit()
|
|
|
|
.putBoolean(Const.Key.DARK_THEME, mm.isDarkTheme)
|
|
|
|
.putBoolean(Const.Key.MAGISKHIDE, mm.magiskHide)
|
|
|
|
.putBoolean(Const.Key.UPDATE_NOTIFICATION, mm.updateNotification)
|
2017-11-09 00:03:37 +08:00
|
|
|
.putBoolean(Const.Key.HOSTS, Utils.itemExist(Const.MAGISK_HOST_FILE()))
|
2017-11-06 04:47:24 +08:00
|
|
|
.putBoolean(Const.Key.DISABLE, Utils.itemExist(Const.MAGISK_DISABLE_FILE))
|
|
|
|
.putBoolean(Const.Key.SU_REAUTH, mm.suReauth)
|
|
|
|
.putString(Const.Key.SU_REQUEST_TIMEOUT, String.valueOf(mm.suRequestTimeout))
|
|
|
|
.putString(Const.Key.SU_AUTO_RESPONSE, String.valueOf(mm.suResponseType))
|
|
|
|
.putString(Const.Key.SU_NOTIFICATION, String.valueOf(mm.suNotificationType))
|
|
|
|
.putString(Const.Key.ROOT_ACCESS, String.valueOf(mm.suAccessState))
|
|
|
|
.putString(Const.Key.SU_MULTIUSER_MODE, String.valueOf(mm.multiuserMode))
|
|
|
|
.putString(Const.Key.SU_MNT_NS, String.valueOf(mm.suNamespaceMode))
|
|
|
|
.putString(Const.Key.UPDATE_CHANNEL, String.valueOf(mm.updateChannel))
|
|
|
|
.putString(Const.Key.LOCALE, mm.localeConfig)
|
|
|
|
.putString(Const.Key.BOOT_FORMAT, mm.bootFormat)
|
|
|
|
.putInt(Const.Key.UPDATE_SERVICE_VER, mm.updateServiceVersion)
|
|
|
|
.apply();
|
|
|
|
|
|
|
|
mm.hasInit = true;
|
2017-07-20 02:54:34 +08:00
|
|
|
|
2017-06-06 03:06:23 +08:00
|
|
|
Intent intent = new Intent(this, MainActivity.class);
|
2017-11-06 05:36:20 +08:00
|
|
|
intent.putExtra(Const.Key.OPEN_SECTION, getIntent().getStringExtra(Const.Key.OPEN_SECTION));
|
|
|
|
intent.putExtra(Const.Key.INTENT_PERM, getIntent().getStringExtra(Const.Key.INTENT_PERM));
|
2017-05-23 16:51:23 +08:00
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
2016-09-24 11:54:12 -05:00
|
|
|
}
|
2017-11-06 04:47:24 +08:00
|
|
|
|
|
|
|
static class LoadLocale extends ParallelTask<Void, Void, Void> {
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Void... voids) {
|
|
|
|
MagiskManager.get().locales = Utils.getAvailableLocale();
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Void aVoid) {
|
|
|
|
MagiskManager.get().localeDone.publish();
|
|
|
|
}
|
|
|
|
}
|
2016-09-24 11:54:12 -05:00
|
|
|
}
|