2016-08-23 05:18:28 +08:00
|
|
|
package com.topjohnwu.magisk.module;
|
2016-08-17 13:00:55 +02:00
|
|
|
|
2016-09-02 13:18:37 -05:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.preference.PreferenceManager;
|
|
|
|
import android.util.Log;
|
|
|
|
|
2016-08-23 05:18:28 +08:00
|
|
|
import com.topjohnwu.magisk.utils.Utils;
|
2016-08-21 16:08:45 +02:00
|
|
|
|
2016-09-02 13:18:37 -05:00
|
|
|
import java.util.Map;
|
|
|
|
|
2016-08-17 13:00:55 +02:00
|
|
|
public class Module {
|
|
|
|
|
2016-08-25 05:58:15 +08:00
|
|
|
private String mRemoveFile;
|
|
|
|
private String mDisableFile;
|
2016-08-17 13:00:55 +02:00
|
|
|
|
2016-08-29 06:35:07 +08:00
|
|
|
private String mName = null;
|
|
|
|
private String mVersion = "(No version provided)";
|
|
|
|
private String mDescription = "(No description provided)";
|
2016-09-02 08:32:34 -05:00
|
|
|
private String mUrl = null;
|
2016-08-17 13:00:55 +02:00
|
|
|
|
2016-08-25 05:58:15 +08:00
|
|
|
private boolean mEnable;
|
|
|
|
private boolean mRemove;
|
2016-08-17 13:00:55 +02:00
|
|
|
|
2016-08-29 06:35:07 +08:00
|
|
|
private String mId;
|
|
|
|
private int mVersionCode;
|
|
|
|
|
2016-09-02 13:18:37 -05:00
|
|
|
public Module(String path, Context context) {
|
|
|
|
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
|
|
|
Map<String,?> keys = prefs.getAll();
|
|
|
|
|
|
|
|
for(Map.Entry<String,?> entry : keys.entrySet()){
|
|
|
|
|
|
|
|
if(entry.getValue().toString().contains(path)) {
|
|
|
|
Log.d("Magisk", "Hey, look a matching path, this guy's name is " + entry.getKey().replace("path_",""));
|
|
|
|
}
|
|
|
|
}
|
2016-08-25 05:58:15 +08:00
|
|
|
mRemoveFile = path + "/remove";
|
|
|
|
mDisableFile = path + "/disable";
|
|
|
|
for (String line : Utils.readFile(path + "/module.prop")) {
|
|
|
|
String[] parts = line.split("=", 2);
|
|
|
|
if (parts.length != 2) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
String key = parts[0].trim();
|
|
|
|
if (key.charAt(0) == '#') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
String value = parts[1].trim();
|
|
|
|
switch (key) {
|
|
|
|
case "name":
|
|
|
|
mName = value;
|
|
|
|
break;
|
|
|
|
case "version":
|
|
|
|
mVersion = value;
|
|
|
|
break;
|
|
|
|
case "description":
|
|
|
|
mDescription = value;
|
|
|
|
break;
|
2016-08-29 06:35:07 +08:00
|
|
|
case "id":
|
|
|
|
mId = value;
|
|
|
|
break;
|
|
|
|
case "versionCode":
|
|
|
|
try {
|
|
|
|
mVersionCode = Integer.parseInt(value);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
mVersionCode = 0;
|
|
|
|
}
|
|
|
|
break;
|
2016-08-25 05:58:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-29 06:35:07 +08:00
|
|
|
if (mName == null) {
|
|
|
|
int sep = path.lastIndexOf('/');
|
|
|
|
mName = path.substring(sep + 1);
|
|
|
|
mId = mName;
|
|
|
|
}
|
|
|
|
|
2016-08-25 05:58:15 +08:00
|
|
|
mEnable = !Utils.fileExist(mDisableFile);
|
|
|
|
mRemove = Utils.fileExist(mRemoveFile);
|
2016-08-17 13:00:55 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-09-02 08:32:34 -05:00
|
|
|
public Module(Repo repo) {
|
2016-09-01 16:58:26 -05:00
|
|
|
|
2016-09-02 08:32:34 -05:00
|
|
|
mName = repo.getName();
|
|
|
|
mVersion = repo.getVersion();
|
|
|
|
mDescription = repo.getDescription();
|
|
|
|
mId = "foo";
|
|
|
|
mVersionCode = 111;
|
|
|
|
mUrl = repo.getZipUrl();
|
2016-09-01 16:58:26 -05:00
|
|
|
mEnable = true;
|
|
|
|
mRemove = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-09-02 08:32:34 -05:00
|
|
|
|
|
|
|
|
2016-08-17 13:00:55 +02:00
|
|
|
public String getName() {
|
|
|
|
return mName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getVersion() {
|
|
|
|
return mVersion;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDescription() {
|
|
|
|
return mDescription;
|
|
|
|
}
|
|
|
|
|
2016-08-22 12:30:13 +02:00
|
|
|
public void createDisableFile() {
|
2016-08-25 05:58:15 +08:00
|
|
|
mEnable = !Utils.createFile(mDisableFile);
|
2016-08-22 12:30:13 +02:00
|
|
|
}
|
|
|
|
|
2016-08-23 01:44:34 +08:00
|
|
|
public void removeDisableFile() {
|
2016-08-25 05:58:15 +08:00
|
|
|
mEnable = Utils.removeFile(mDisableFile);
|
2016-08-22 12:30:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isEnabled() {
|
2016-08-25 05:58:15 +08:00
|
|
|
return mEnable;
|
2016-08-22 12:30:13 +02:00
|
|
|
}
|
|
|
|
|
2016-08-21 16:08:45 +02:00
|
|
|
public void createRemoveFile() {
|
2016-08-25 05:58:15 +08:00
|
|
|
mRemove = Utils.createFile(mRemoveFile);
|
2016-08-21 16:08:45 +02:00
|
|
|
}
|
|
|
|
|
2016-08-23 01:44:34 +08:00
|
|
|
public void deleteRemoveFile() {
|
2016-08-25 05:58:15 +08:00
|
|
|
mRemove = !Utils.removeFile(mRemoveFile);
|
2016-08-22 12:30:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean willBeRemoved() {
|
2016-08-25 05:58:15 +08:00
|
|
|
return mRemove;
|
2016-08-21 16:08:45 +02:00
|
|
|
}
|
|
|
|
|
2016-08-17 13:00:55 +02:00
|
|
|
}
|