2016-09-02 08:32:34 -05:00
|
|
|
package com.topjohnwu.magisk.module;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.preference.PreferenceManager;
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
import com.topjohnwu.magisk.utils.WebRequest;
|
|
|
|
|
|
|
|
import org.json.JSONArray;
|
|
|
|
import org.json.JSONException;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
|
2016-09-02 13:18:37 -05:00
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
import java.util.Date;
|
2016-09-02 08:32:34 -05:00
|
|
|
|
|
|
|
public class Repo {
|
|
|
|
public String name;
|
2016-09-02 13:18:37 -05:00
|
|
|
public String baseUrl, zipUrl, manifestUrl, logUrl, manifest, version, moduleName, moduleDescription, moduleAuthor, moduleAuthorUrl;
|
|
|
|
public Date lastUpdate;
|
|
|
|
public Boolean usesRoot, usesXposed;
|
2016-09-02 08:32:34 -05:00
|
|
|
private Context appContext;
|
|
|
|
private SharedPreferences prefs;
|
|
|
|
|
|
|
|
|
2016-09-02 13:18:37 -05:00
|
|
|
public Repo(String name, String url, Date updated, Context context) {
|
2016-09-02 08:32:34 -05:00
|
|
|
appContext = context;
|
|
|
|
this.name = name;
|
|
|
|
this.baseUrl = url;
|
2016-09-02 13:18:37 -05:00
|
|
|
this.lastUpdate = updated;
|
|
|
|
this.fetch();
|
2016-09-02 08:32:34 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-09-02 13:18:37 -05:00
|
|
|
public Repo(String moduleName, String moduleDescription, String zipUrl, Date lastUpdated, Context context) {
|
|
|
|
Log.d("Magisk", "Hey, I'm a repo! My name is " + moduleName);
|
|
|
|
appContext = context;
|
2016-09-02 08:32:34 -05:00
|
|
|
this.zipUrl = zipUrl;
|
|
|
|
this.moduleDescription = moduleDescription;
|
|
|
|
this.moduleName = moduleName;
|
2016-09-02 13:18:37 -05:00
|
|
|
this.lastUpdate = lastUpdated;
|
|
|
|
|
|
|
|
|
2016-09-02 08:32:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public void fetch() {
|
2016-09-02 13:18:37 -05:00
|
|
|
prefs = PreferenceManager.getDefaultSharedPreferences(appContext);
|
2016-09-02 08:32:34 -05:00
|
|
|
WebRequest webreq = new WebRequest();
|
|
|
|
// Construct initial url for contents
|
2016-09-02 13:18:37 -05:00
|
|
|
Log.d("Magisk", "Manifest string is: " + baseUrl + "/contents/");
|
2016-09-02 08:32:34 -05:00
|
|
|
String repoString = webreq.makeWebServiceCall(baseUrl + "/contents/", WebRequest.GET);
|
|
|
|
|
|
|
|
try {
|
|
|
|
JSONArray repoArray = new JSONArray(repoString);
|
|
|
|
|
|
|
|
for (int f = 0; f < repoArray.length(); f++) {
|
|
|
|
JSONObject jsonobject = repoArray.getJSONObject(f);
|
|
|
|
String name = jsonobject.getString("name");
|
|
|
|
if (name.contains(".zip")) {
|
|
|
|
this.zipUrl = jsonobject.getString("download_url");
|
|
|
|
} else if (name.equals("module.json")) {
|
|
|
|
this.manifestUrl = jsonobject.getString("download_url");
|
|
|
|
} else if (name.equals("Changelog.txt")) {
|
|
|
|
this.logUrl = jsonobject.getString("download_url");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (JSONException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
|
2016-09-02 13:18:37 -05:00
|
|
|
Log.d("Magisk", "Inner fetch: " + repoString);
|
2016-09-02 08:32:34 -05:00
|
|
|
try {
|
|
|
|
WebRequest jsonReq = new WebRequest();
|
|
|
|
// Construct initial url for contents
|
|
|
|
String manifestString = webreq.makeWebServiceCall(this.manifestUrl, WebRequest.GET);
|
|
|
|
JSONObject manifestObject = new JSONObject(manifestString);
|
2016-09-02 13:18:37 -05:00
|
|
|
Log.d("Magisk", "Object: " + manifestObject.toString());
|
2016-09-02 08:32:34 -05:00
|
|
|
version = manifestObject.getString("versionCode");
|
|
|
|
moduleName = manifestObject.getString("moduleName");
|
|
|
|
moduleDescription = manifestObject.getString("moduleDescription");
|
|
|
|
moduleAuthor = manifestObject.getString("moduleAuthor");
|
|
|
|
usesRoot = Boolean.getBoolean(manifestObject.getString("usesRoot"));
|
|
|
|
usesXposed = Boolean.getBoolean(manifestObject.getString("usesXposed"));
|
|
|
|
SharedPreferences.Editor editor = prefs.edit();
|
|
|
|
String prefsString = "[{\"moduleDescription\":\"" + moduleDescription + "\","
|
|
|
|
+ "\"moduleName\":\"" + moduleName + "\","
|
|
|
|
+ "\"moduleAuthor\":\"" + moduleAuthor + "\","
|
|
|
|
+ "\"moduleAuthorUrl\":\"" + moduleAuthorUrl + "\","
|
|
|
|
+ "\"usesRoot\":\"" + usesRoot + "\","
|
|
|
|
+ "\"usesXposed\":\"" + usesXposed + "\","
|
|
|
|
+ "\"zipUrl\":\"" + zipUrl + "\","
|
2016-09-02 13:18:37 -05:00
|
|
|
+ "\"lastUpdate\":\"" + lastUpdate + "\","
|
2016-09-02 08:32:34 -05:00
|
|
|
+ "\"logUrl\":\"" + logUrl + "\"}]";
|
2016-09-02 13:18:37 -05:00
|
|
|
editor.putString("module_" + moduleName, prefsString);
|
|
|
|
editor.putBoolean("hasCachedRepos", true);
|
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd_HHmmss");
|
|
|
|
editor.putString("updated", sdf.toString());
|
|
|
|
Log.d("Magisk", "Storing Preferences: " + prefsString);
|
2016-09-02 08:32:34 -05:00
|
|
|
editor.apply();
|
|
|
|
|
|
|
|
} catch (JSONException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
return moduleName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getVersion() {
|
|
|
|
return version;
|
2016-09-02 08:36:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getDescription() {
|
|
|
|
return moduleDescription;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getZipUrl() {
|
|
|
|
return zipUrl;
|
|
|
|
}
|
|
|
|
|
2016-09-02 08:32:34 -05:00
|
|
|
public String getLogUrl() {
|
|
|
|
return logUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|