parent
1bcdbca5e3
commit
edbce7aab8
|
@ -77,9 +77,9 @@ public class MainActivity extends AppCompatActivity {
|
||||||
if(updatable instanceof ReportFragment) {
|
if(updatable instanceof ReportFragment) {
|
||||||
ApplicationViewModel model = ((ReportFragment) updatable).getModel();
|
ApplicationViewModel model = ((ReportFragment) updatable).getModel();
|
||||||
if(model.versionName == null)
|
if(model.versionName == null)
|
||||||
model.report = DatabaseManager.getInstance(MainActivity.this).getReportFor(model.packageName, model.versionCode);
|
model.report = DatabaseManager.getInstance(MainActivity.this).getReportFor(model.packageName, model.versionCode, model.source);
|
||||||
else
|
else
|
||||||
model.report = DatabaseManager.getInstance(MainActivity.this).getReportFor(model.packageName,model.versionName);
|
model.report = DatabaseManager.getInstance(MainActivity.this).getReportFor(model.packageName,model.versionName,model.source);
|
||||||
model.trackers = DatabaseManager.getInstance(MainActivity.this).getTrackers(model.report.trackers);
|
model.trackers = DatabaseManager.getInstance(MainActivity.this).getTrackers(model.report.trackers);
|
||||||
}
|
}
|
||||||
updatable.onUpdateComplete();
|
updatable.onUpdateComplete();
|
||||||
|
|
|
@ -12,7 +12,6 @@ import org.eu.exodus_privacy.exodusprivacy.objects.ReportDisplay;
|
||||||
|
|
||||||
import java.text.DateFormat;
|
import java.text.DateFormat;
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
import java.util.Date;
|
|
||||||
|
|
||||||
|
|
||||||
public class ReportViewModel extends BaseObservable {
|
public class ReportViewModel extends BaseObservable {
|
||||||
|
@ -166,6 +165,11 @@ public class ReportViewModel extends BaseObservable {
|
||||||
return R.drawable.square_light_red;
|
return R.drawable.square_light_red;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Bindable
|
||||||
|
public String getSource() {
|
||||||
|
return reportDisplay.source;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -112,13 +112,13 @@ public class ApplicationListAdapter extends RecyclerView.Adapter {
|
||||||
return displayedApp;
|
return displayedApp;
|
||||||
}
|
}
|
||||||
|
|
||||||
class ApplicationEmptyViewHolder extends RecyclerView.ViewHolder{
|
static class ApplicationEmptyViewHolder extends RecyclerView.ViewHolder{
|
||||||
ApplicationEmptyViewHolder(View itemView) {
|
ApplicationEmptyViewHolder(View itemView) {
|
||||||
super(itemView);
|
super(itemView);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class ApplicationListViewHolder extends RecyclerView.ViewHolder {
|
static class ApplicationListViewHolder extends RecyclerView.ViewHolder {
|
||||||
|
|
||||||
ApplicationViewModel viewModel;
|
ApplicationViewModel viewModel;
|
||||||
AppItemBinding appItemBinding;
|
AppItemBinding appItemBinding;
|
||||||
|
@ -145,6 +145,7 @@ public class ApplicationListAdapter extends RecyclerView.Adapter {
|
||||||
appItemBinding.appLogo.setImageDrawable(viewModel.icon);
|
appItemBinding.appLogo.setImageDrawable(viewModel.icon);
|
||||||
|
|
||||||
appItemBinding.appName.setText(viewModel.label);
|
appItemBinding.appName.setText(viewModel.label);
|
||||||
|
appItemBinding.source.setText(context.getString(R.string.source,viewModel.source));
|
||||||
|
|
||||||
long size = viewModel.requestedPermissions != null ? viewModel.requestedPermissions.length : 0;
|
long size = viewModel.requestedPermissions != null ? viewModel.requestedPermissions.length : 0;
|
||||||
appItemBinding.appPermissionNb.setText(String.valueOf(size));
|
appItemBinding.appPermissionNb.setText(String.valueOf(size));
|
||||||
|
|
|
@ -25,4 +25,5 @@ public class ApplicationViewModel {
|
||||||
public CharSequence label;
|
public CharSequence label;
|
||||||
public String installerPackageName;
|
public String installerPackageName;
|
||||||
public boolean isVisible;
|
public boolean isVisible;
|
||||||
|
public String source;
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,7 @@ import org.eu.exodus_privacy.exodusprivacy.manager.DatabaseManager;
|
||||||
import java.lang.ref.WeakReference;
|
import java.lang.ref.WeakReference;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
class ComputeAppListTask extends AsyncTask<Void, Void, List<ApplicationViewModel>> {
|
class ComputeAppListTask extends AsyncTask<Void, Void, List<ApplicationViewModel>> {
|
||||||
|
|
||||||
|
@ -20,6 +21,7 @@ class ComputeAppListTask extends AsyncTask<Void, Void, List<ApplicationViewModel
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final String gStore = "com.android.vending";
|
private static final String gStore = "com.android.vending";
|
||||||
|
private static final String fdroid = "ord.fdroid.fdroid";
|
||||||
|
|
||||||
private WeakReference<PackageManager> packageManagerRef;
|
private WeakReference<PackageManager> packageManagerRef;
|
||||||
private WeakReference<DatabaseManager> databaseManagerRef;
|
private WeakReference<DatabaseManager> databaseManagerRef;
|
||||||
|
@ -39,9 +41,9 @@ class ComputeAppListTask extends AsyncTask<Void, Void, List<ApplicationViewModel
|
||||||
|
|
||||||
List<ApplicationViewModel> vms = new ArrayList<>();
|
List<ApplicationViewModel> vms = new ArrayList<>();
|
||||||
if(packageManager != null && databaseManager != null) {
|
if(packageManager != null && databaseManager != null) {
|
||||||
List<PackageInfo> installedPackages = packageManager.getInstalledPackages(PackageManager.GET_PERMISSIONS);
|
List<PackageInfo> installedPackages = packageManager.getInstalledPackages(PackageManager.GET_PERMISSIONS);
|
||||||
applyStoreFilter(installedPackages, databaseManager, packageManager);
|
vms = applyStoreFilter(installedPackages, databaseManager, packageManager);
|
||||||
vms = convertPackagesToViewModels(installedPackages, databaseManager, packageManager);
|
convertPackagesToViewModels(vms, databaseManager, packageManager);
|
||||||
}
|
}
|
||||||
return vms;
|
return vms;
|
||||||
}
|
}
|
||||||
|
@ -55,20 +57,22 @@ class ComputeAppListTask extends AsyncTask<Void, Void, List<ApplicationViewModel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<ApplicationViewModel> convertPackagesToViewModels(List<PackageInfo> infos,
|
private void convertPackagesToViewModels(List<ApplicationViewModel> appsToBuild,
|
||||||
DatabaseManager databaseManager,
|
DatabaseManager databaseManager,
|
||||||
PackageManager packageManager) {
|
PackageManager packageManager) {
|
||||||
ArrayList<ApplicationViewModel> appsToBuild = new ArrayList<>(infos.size());
|
for (ApplicationViewModel vm : appsToBuild) {
|
||||||
for (PackageInfo pi : infos) {
|
try {
|
||||||
appsToBuild.add(buildViewModelFromPackageInfo(pi, databaseManager, packageManager));
|
PackageInfo pi = packageManager.getPackageInfo(vm.packageName, PackageManager.GET_PERMISSIONS);
|
||||||
|
buildViewModelFromPackageInfo(vm, pi, databaseManager, packageManager);
|
||||||
|
} catch (PackageManager.NameNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return appsToBuild;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private ApplicationViewModel buildViewModelFromPackageInfo(PackageInfo pi,
|
private void buildViewModelFromPackageInfo(ApplicationViewModel vm, PackageInfo pi,
|
||||||
DatabaseManager databaseManager,
|
DatabaseManager databaseManager,
|
||||||
PackageManager packageManager) {
|
PackageManager packageManager) {
|
||||||
ApplicationViewModel vm = new ApplicationViewModel();
|
|
||||||
|
|
||||||
vm.versionName = pi.versionName;
|
vm.versionName = pi.versionName;
|
||||||
vm.packageName = pi.packageName;
|
vm.packageName = pi.packageName;
|
||||||
|
@ -76,9 +80,9 @@ class ComputeAppListTask extends AsyncTask<Void, Void, List<ApplicationViewModel
|
||||||
vm.requestedPermissions = pi.requestedPermissions;
|
vm.requestedPermissions = pi.requestedPermissions;
|
||||||
|
|
||||||
if (vm.versionName != null)
|
if (vm.versionName != null)
|
||||||
vm.report = databaseManager.getReportFor(vm.packageName, vm.versionName);
|
vm.report = databaseManager.getReportFor(vm.packageName, vm.versionName, vm.source);
|
||||||
else {
|
else {
|
||||||
vm.report = databaseManager.getReportFor(vm.packageName, vm.versionCode);
|
vm.report = databaseManager.getReportFor(vm.packageName, vm.versionCode, vm.source);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (vm.report != null) {
|
if (vm.report != null) {
|
||||||
|
@ -94,35 +98,41 @@ class ComputeAppListTask extends AsyncTask<Void, Void, List<ApplicationViewModel
|
||||||
vm.label = packageManager.getApplicationLabel(pi.applicationInfo);
|
vm.label = packageManager.getApplicationLabel(pi.applicationInfo);
|
||||||
vm.installerPackageName = packageManager.getInstallerPackageName(vm.packageName);
|
vm.installerPackageName = packageManager.getInstallerPackageName(vm.packageName);
|
||||||
vm.isVisible = true;
|
vm.isVisible = true;
|
||||||
|
|
||||||
return vm;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void applyStoreFilter(List<PackageInfo> packageInfos,
|
private List<ApplicationViewModel> applyStoreFilter(List<PackageInfo> packageInfos,
|
||||||
DatabaseManager databaseManager,
|
DatabaseManager databaseManager,
|
||||||
PackageManager packageManager) {
|
PackageManager packageManager) {
|
||||||
List<PackageInfo> toRemove = new ArrayList<>();
|
List<ApplicationViewModel> result = new ArrayList<>();
|
||||||
for (PackageInfo packageInfo : packageInfos) {
|
for (PackageInfo packageInfo : packageInfos) {
|
||||||
String packageName = packageInfo.packageName;
|
String packageName = packageInfo.packageName;
|
||||||
String installerPackageName = packageManager.getInstallerPackageName(packageName);
|
String installerPackageName = packageManager.getInstallerPackageName(packageName);
|
||||||
if (!gStore.equals(installerPackageName)) {
|
ApplicationViewModel vm = new ApplicationViewModel();
|
||||||
|
vm.packageName = packageName;
|
||||||
|
if (!gStore.equals(installerPackageName) && !fdroid.equals(installerPackageName)) {
|
||||||
String auid = Utils.getCertificateSHA1Fingerprint(packageManager, packageName);
|
String auid = Utils.getCertificateSHA1Fingerprint(packageManager, packageName);
|
||||||
String appuid = databaseManager.getAUID(packageName);
|
Map<String,String> sources = databaseManager.getSources(packageName);
|
||||||
if(!auid.equalsIgnoreCase(appuid)) {
|
for(Map.Entry<String,String> entry : sources.entrySet()) {
|
||||||
toRemove.add(packageInfo);
|
if(entry.getValue().equalsIgnoreCase(auid)) {
|
||||||
|
vm.source = entry.getKey();
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
} else if (gStore.equals(installerPackageName)) {
|
||||||
|
vm.source = "google";
|
||||||
|
} else {
|
||||||
|
vm.source = "fdroid";
|
||||||
}
|
}
|
||||||
|
ApplicationInfo appInfo = null;
|
||||||
try {
|
try {
|
||||||
ApplicationInfo appInfo = packageManager.getApplicationInfo(packageName,0);
|
appInfo = packageManager.getApplicationInfo(packageName,0);
|
||||||
if(!appInfo.enabled) {
|
|
||||||
toRemove.add(packageInfo);
|
|
||||||
}
|
|
||||||
} catch (PackageManager.NameNotFoundException e) {
|
} catch (PackageManager.NameNotFoundException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
if(vm.source != null && appInfo != null && appInfo.enabled)
|
||||||
|
result.add(vm);
|
||||||
}
|
}
|
||||||
packageInfos.removeAll(toRemove);
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,8 +29,10 @@ import org.eu.exodus_privacy.exodusprivacy.objects.Report;
|
||||||
import org.eu.exodus_privacy.exodusprivacy.objects.Tracker;
|
import org.eu.exodus_privacy.exodusprivacy.objects.Tracker;
|
||||||
|
|
||||||
import java.util.Calendar;
|
import java.util.Calendar;
|
||||||
|
import java.util.HashMap;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
public class DatabaseManager extends SQLiteOpenHelper {
|
public class DatabaseManager extends SQLiteOpenHelper {
|
||||||
|
@ -44,14 +46,14 @@ public class DatabaseManager extends SQLiteOpenHelper {
|
||||||
|
|
||||||
public static DatabaseManager getInstance(Context context) {
|
public static DatabaseManager getInstance(Context context) {
|
||||||
if(instance == null)
|
if(instance == null)
|
||||||
instance = new DatabaseManager(context,"Exodus.db",null,2);
|
instance = new DatabaseManager(context,"Exodus.db",null,3);
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCreate(SQLiteDatabase db) {
|
public void onCreate(SQLiteDatabase db) {
|
||||||
db.execSQL("Create Table if not exists applications (id INTEGER primary key autoincrement, package TEXT, name TEXT, creator TEXT, auid TEXT);");
|
db.execSQL("Create Table if not exists applications (id INTEGER primary key autoincrement, package TEXT, name TEXT, creator TEXT, sources TEXT);");
|
||||||
db.execSQL("Create Table if not exists reports (id INTEGER primary key, creation INTEGER, updateat INTEGER, downloads TEXT, version TEXT, version_code INTEGER, app_id INTEGER, foreign key(app_id) references applications(id));");
|
db.execSQL("Create Table if not exists reports (id INTEGER primary key, creation INTEGER, updateat INTEGER, downloads TEXT, version TEXT, version_code INTEGER, app_id INTEGER, source TEXT, foreign key(app_id) references applications(id));");
|
||||||
db.execSQL("Create Table if not exists trackers (id INTEGER primary key, name TEXT, creation_date INTEGER, code_signature TEXT, network_signature TEXT, website TEXT, description TEXT);");
|
db.execSQL("Create Table if not exists trackers (id INTEGER primary key, name TEXT, creation_date INTEGER, code_signature TEXT, network_signature TEXT, website TEXT, description TEXT);");
|
||||||
|
|
||||||
db.execSQL("Create Table if not exists trackers_reports (id INTEGER primary key autoincrement, tracker_id INTEGER, report_id INTEGER, foreign key(tracker_id) references trackers(id), foreign key(report_id) references reports(id));");
|
db.execSQL("Create Table if not exists trackers_reports (id INTEGER primary key autoincrement, tracker_id INTEGER, report_id INTEGER, foreign key(tracker_id) references trackers(id), foreign key(report_id) references reports(id));");
|
||||||
|
@ -59,10 +61,36 @@ public class DatabaseManager extends SQLiteOpenHelper {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
|
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
|
||||||
// do nothing
|
if(oldVersion <= 1) {
|
||||||
if(newVersion >= 2) {
|
|
||||||
db.execSQL("Alter Table applications add column auid TEXT");
|
db.execSQL("Alter Table applications add column auid TEXT");
|
||||||
}
|
}
|
||||||
|
if (oldVersion <= 2) {
|
||||||
|
try {
|
||||||
|
db.beginTransaction();
|
||||||
|
db.execSQL("Alter Table reports add column source TEXT");
|
||||||
|
db.execSQL("Alter Table applications rename to old_apps");
|
||||||
|
db.execSQL("Create Table if not exists applications (id INTEGER primary key autoincrement, package TEXT, name TEXT, creator TEXT, sources TEXT);");
|
||||||
|
|
||||||
|
Cursor cursor = db.query("old_apps",null,null,null,null,null,null);
|
||||||
|
while (cursor.moveToNext()){
|
||||||
|
ContentValues values = new ContentValues();
|
||||||
|
values.put("package",cursor.getString(1));
|
||||||
|
values.put("name",cursor.getString(2));
|
||||||
|
values.put("creator",cursor.getString(3));
|
||||||
|
String sources = "unknown:"+cursor.getString(4)+"|";
|
||||||
|
values.put("sources",sources);
|
||||||
|
db.insert("applications",null,values);
|
||||||
|
}
|
||||||
|
cursor.close();
|
||||||
|
db.execSQL("Drop Table old_apps");
|
||||||
|
db.setTransactionSuccessful();
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} finally {
|
||||||
|
db.endTransaction();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean existReport(SQLiteDatabase db, long reportId) {
|
private boolean existReport(SQLiteDatabase db, long reportId) {
|
||||||
|
@ -122,7 +150,7 @@ public class DatabaseManager extends SQLiteOpenHelper {
|
||||||
values.put("package", application.packageName);
|
values.put("package", application.packageName);
|
||||||
values.put("name",application.name);
|
values.put("name",application.name);
|
||||||
values.put("creator",application.creator);
|
values.put("creator",application.creator);
|
||||||
values.put("auid",application.auid);
|
values.put("sources",buildSourcesStr(application.sources));
|
||||||
|
|
||||||
if(!existApplication(db, application.packageName)) {
|
if(!existApplication(db, application.packageName)) {
|
||||||
db.insert("applications", null, values);
|
db.insert("applications", null, values);
|
||||||
|
@ -155,6 +183,7 @@ public class DatabaseManager extends SQLiteOpenHelper {
|
||||||
values.put("version",report.version);
|
values.put("version",report.version);
|
||||||
values.put("version_code",report.versionCode);
|
values.put("version_code",report.versionCode);
|
||||||
values.put("app_id",appId);
|
values.put("app_id",appId);
|
||||||
|
values.put("source",report.source);
|
||||||
|
|
||||||
if(!existReport(db,report.id)) {
|
if(!existReport(db,report.id)) {
|
||||||
values.put("id",report.id);
|
values.put("id",report.id);
|
||||||
|
@ -184,7 +213,7 @@ public class DatabaseManager extends SQLiteOpenHelper {
|
||||||
db.insert("trackers_reports",null,values);
|
db.insert("trackers_reports",null,values);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Report getReportFor(String packageName, String version) {
|
public Report getReportFor(String packageName, String version, String source) {
|
||||||
SQLiteDatabase db = getReadableDatabase();
|
SQLiteDatabase db = getReadableDatabase();
|
||||||
String[] columns = {"id"};
|
String[] columns = {"id"};
|
||||||
String where = "package = ?";
|
String where = "package = ?";
|
||||||
|
@ -193,10 +222,11 @@ public class DatabaseManager extends SQLiteOpenHelper {
|
||||||
if(cursor.moveToFirst()) {
|
if(cursor.moveToFirst()) {
|
||||||
long appId = cursor.getLong(0);
|
long appId = cursor.getLong(0);
|
||||||
cursor.close();
|
cursor.close();
|
||||||
where = "app_id = ? and version = ?";
|
where = "app_id = ? and version = ? and source = ?";
|
||||||
whereArgs = new String[2];
|
whereArgs = new String[3];
|
||||||
whereArgs[0] = String.valueOf(appId);
|
whereArgs[0] = String.valueOf(appId);
|
||||||
whereArgs[1] = version;
|
whereArgs[1] = version;
|
||||||
|
whereArgs[2] = source;
|
||||||
String order = "id ASC";
|
String order = "id ASC";
|
||||||
cursor = db.query("reports",columns,where,whereArgs,null,null,order);
|
cursor = db.query("reports",columns,where,whereArgs,null,null,order);
|
||||||
long reportId;
|
long reportId;
|
||||||
|
@ -208,9 +238,10 @@ public class DatabaseManager extends SQLiteOpenHelper {
|
||||||
columns = new String[2];
|
columns = new String[2];
|
||||||
columns[0] = "id";
|
columns[0] = "id";
|
||||||
columns[1] = "creation";
|
columns[1] = "creation";
|
||||||
where = "app_id = ?";
|
where = "app_id = ? and source = ?";
|
||||||
whereArgs = new String[1];
|
whereArgs = new String[2];
|
||||||
whereArgs[0] = String.valueOf(appId);
|
whereArgs[0] = String.valueOf(appId);
|
||||||
|
whereArgs[1] = source;
|
||||||
order = "creation DESC";
|
order = "creation DESC";
|
||||||
//search a recent reports
|
//search a recent reports
|
||||||
cursor = db.query("reports",columns,where,whereArgs,null,null,order);
|
cursor = db.query("reports",columns,where,whereArgs,null,null,order);
|
||||||
|
@ -230,7 +261,7 @@ public class DatabaseManager extends SQLiteOpenHelper {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public Report getReportFor(String packageName, long version) {
|
public Report getReportFor(String packageName, long version, String source) {
|
||||||
SQLiteDatabase db = getReadableDatabase();
|
SQLiteDatabase db = getReadableDatabase();
|
||||||
String[] columns = {"id"};
|
String[] columns = {"id"};
|
||||||
String where = "package = ?";
|
String where = "package = ?";
|
||||||
|
@ -239,10 +270,11 @@ public class DatabaseManager extends SQLiteOpenHelper {
|
||||||
if(cursor.moveToFirst()) {
|
if(cursor.moveToFirst()) {
|
||||||
long appId = cursor.getLong(0);
|
long appId = cursor.getLong(0);
|
||||||
cursor.close();
|
cursor.close();
|
||||||
where = "app_id = ? and version_code = ?";
|
where = "app_id = ? and version_code = ? and source = ?";
|
||||||
whereArgs = new String[2];
|
whereArgs = new String[3];
|
||||||
whereArgs[0] = String.valueOf(appId);
|
whereArgs[0] = String.valueOf(appId);
|
||||||
whereArgs[1] = String.valueOf(version);
|
whereArgs[1] = String.valueOf(version);
|
||||||
|
whereArgs[2] = source;
|
||||||
String order = "id ASC";
|
String order = "id ASC";
|
||||||
cursor = db.query("reports",columns,where,whereArgs,null,null,order);
|
cursor = db.query("reports",columns,where,whereArgs,null,null,order);
|
||||||
long reportId;
|
long reportId;
|
||||||
|
@ -254,9 +286,10 @@ public class DatabaseManager extends SQLiteOpenHelper {
|
||||||
columns = new String[2];
|
columns = new String[2];
|
||||||
columns[0] = "id";
|
columns[0] = "id";
|
||||||
columns[1] = "creation";
|
columns[1] = "creation";
|
||||||
where = "app_id = ?";
|
where = "app_id = ? and source = ?";
|
||||||
whereArgs = new String[1];
|
whereArgs = new String[2];
|
||||||
whereArgs[0] = String.valueOf(appId);
|
whereArgs[0] = String.valueOf(appId);
|
||||||
|
whereArgs[1] = source;
|
||||||
order = "creation DESC";
|
order = "creation DESC";
|
||||||
//search a recent reports
|
//search a recent reports
|
||||||
cursor = db.query("reports",columns,where,whereArgs,null,null,order);
|
cursor = db.query("reports",columns,where,whereArgs,null,null,order);
|
||||||
|
@ -301,7 +334,8 @@ public class DatabaseManager extends SQLiteOpenHelper {
|
||||||
report.downloads = cursor.getString(col++);
|
report.downloads = cursor.getString(col++);
|
||||||
report.version = cursor.getString(col++);
|
report.version = cursor.getString(col++);
|
||||||
report.versionCode = cursor.getLong(col++);
|
report.versionCode = cursor.getLong(col++);
|
||||||
report.appId = cursor.getLong(col);
|
report.appId = cursor.getLong(col++);
|
||||||
|
report.source = cursor.getString(col);
|
||||||
cursor.close();
|
cursor.close();
|
||||||
|
|
||||||
report.trackers = new HashSet<>();
|
report.trackers = new HashSet<>();
|
||||||
|
@ -372,17 +406,39 @@ public class DatabaseManager extends SQLiteOpenHelper {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getAUID(String packageName) {
|
public Map<String,String> getSources(String packageName) {
|
||||||
String where = "package = ?";
|
String where = "package = ?";
|
||||||
String[] whereArgs = {packageName};
|
String[] whereArgs = {packageName};
|
||||||
String[] columns = {"auid"};
|
String[] columns = {"sources"};
|
||||||
Cursor cursor = getReadableDatabase().query("applications",columns,where,whereArgs,null,null,null,null);
|
Cursor cursor = getReadableDatabase().query("applications",columns,where,whereArgs,null,null,null,null);
|
||||||
String uaid="";
|
String sourcesStr="";
|
||||||
if(cursor.moveToFirst())
|
if(cursor.moveToFirst())
|
||||||
{
|
{
|
||||||
uaid = cursor.getString(0);
|
sourcesStr = cursor.getString(0);
|
||||||
}
|
}
|
||||||
cursor.close();
|
cursor.close();
|
||||||
return uaid;
|
return extractSources(sourcesStr);
|
||||||
|
}
|
||||||
|
|
||||||
|
private String buildSourcesStr(Map<String,String> sources) {
|
||||||
|
StringBuilder sourceStr = new StringBuilder();
|
||||||
|
for(Map.Entry<String,String> entry : sources.entrySet()) {
|
||||||
|
sourceStr.append(entry.getKey()).append(":").append(entry.getValue()).append("|");
|
||||||
|
}
|
||||||
|
return sourceStr.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
private Map<String, String> extractSources(String sourcesStr) {
|
||||||
|
Map<String,String> sources = new HashMap<>();
|
||||||
|
String[] sourceList = sourcesStr.split("\\|");
|
||||||
|
for(String sourceItem : sourceList){
|
||||||
|
if(!sourceItem.isEmpty()) {
|
||||||
|
System.out.println(sourceItem);
|
||||||
|
String[] data = sourceItem.split(":");
|
||||||
|
sources.put(data[0], data[1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return sources;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -231,7 +231,7 @@ public class NetworkManager {
|
||||||
|
|
||||||
|
|
||||||
if(object != null) {
|
if(object != null) {
|
||||||
Map<String,String> handles = new HashMap<>();
|
Map<String,Map<String,String>> handles = new HashMap<>();
|
||||||
ArrayList<String> packages = mes.args.getStringArrayList("packages");
|
ArrayList<String> packages = mes.args.getStringArrayList("packages");
|
||||||
if (packages == null)
|
if (packages == null)
|
||||||
return;
|
return;
|
||||||
|
@ -244,9 +244,14 @@ public class NetworkManager {
|
||||||
JSONObject app = applications.getJSONObject(i);
|
JSONObject app = applications.getJSONObject(i);
|
||||||
String handle = app.getString("handle");
|
String handle = app.getString("handle");
|
||||||
String auid = app.getString("app_uid");
|
String auid = app.getString("app_uid");
|
||||||
|
String source = app.getString("source");
|
||||||
|
Map<String,String> sources = handles.get(handle);
|
||||||
|
if(sources == null)
|
||||||
|
sources = new HashMap<>();
|
||||||
|
|
||||||
|
sources.put(source,auid);
|
||||||
if (packages.contains(handle))
|
if (packages.contains(handle))
|
||||||
handles.put(handle,auid);
|
handles.put(handle,sources);
|
||||||
app.remove("app_uid");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//remove app not analyzed by Exodus
|
//remove app not analyzed by Exodus
|
||||||
|
@ -259,6 +264,7 @@ public class NetworkManager {
|
||||||
int val = rand.nextInt(applications.length());
|
int val = rand.nextInt(applications.length());
|
||||||
JSONObject app = applications.getJSONObject(val);
|
JSONObject app = applications.getJSONObject(val);
|
||||||
String handle = app.getString("handle");
|
String handle = app.getString("handle");
|
||||||
|
handles.put(handle,new HashMap<>());
|
||||||
packages.add(handle);
|
packages.add(handle);
|
||||||
}
|
}
|
||||||
//shuffle the list
|
//shuffle the list
|
||||||
|
@ -275,14 +281,14 @@ public class NetworkManager {
|
||||||
mes.listener.onSuccess();
|
mes.listener.onSuccess();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void getReports(Message mes, Map<String, String> handles, ArrayList<String> packages) {
|
private void getReports(Message mes, Map<String, Map<String,String>> handles, ArrayList<String> packages) {
|
||||||
for(int i = 0; i < packages.size(); i++) {
|
for(int i = 0; i < packages.size(); i++) {
|
||||||
mes.listener.onProgress(R.string.parse_application,i+1,packages.size());
|
mes.listener.onProgress(R.string.parse_application,i+1,packages.size());
|
||||||
getReport(mes,packages.get(i),handles.get(packages.get(i)));
|
getReport(mes,packages.get(i),handles.get(packages.get(i)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void getReport(Message mes, String handle, String auid) {
|
private void getReport(Message mes, String handle, Map<String,String> sources) {
|
||||||
URL url;
|
URL url;
|
||||||
try {
|
try {
|
||||||
url = new URL(apiUrl+"search/"+handle);
|
url = new URL(apiUrl+"search/"+handle);
|
||||||
|
@ -298,7 +304,7 @@ public class NetworkManager {
|
||||||
ArrayList<String> packages = mes.args.getStringArrayList("packages");
|
ArrayList<String> packages = mes.args.getStringArrayList("packages");
|
||||||
if(packages != null && packages.contains(handle)) {
|
if(packages != null && packages.contains(handle)) {
|
||||||
Application app = parseApplication(application, handle);
|
Application app = parseApplication(application, handle);
|
||||||
app.auid = auid;
|
app.sources = sources;
|
||||||
DatabaseManager.getInstance(mes.context).insertOrUpdateApplication(app);
|
DatabaseManager.getInstance(mes.context).insertOrUpdateApplication(app);
|
||||||
}
|
}
|
||||||
} catch (JSONException e) {
|
} catch (JSONException e) {
|
||||||
|
@ -328,6 +334,7 @@ public class NetworkManager {
|
||||||
report.id = object.getLong("id");
|
report.id = object.getLong("id");
|
||||||
report.downloads = object.getString("downloads");
|
report.downloads = object.getString("downloads");
|
||||||
report.version = object.getString("version");
|
report.version = object.getString("version");
|
||||||
|
report.source = object.getString("source");
|
||||||
if(!object.getString("version_code").isEmpty())
|
if(!object.getString("version_code").isEmpty())
|
||||||
report.versionCode = Long.parseLong(object.getString("version_code"));
|
report.versionCode = Long.parseLong(object.getString("version_code"));
|
||||||
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", Locale.getDefault());
|
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", Locale.getDefault());
|
||||||
|
|
|
@ -18,6 +18,8 @@
|
||||||
|
|
||||||
package org.eu.exodus_privacy.exodusprivacy.objects;
|
package org.eu.exodus_privacy.exodusprivacy.objects;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Objects;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
public class Application {
|
public class Application {
|
||||||
|
@ -26,7 +28,7 @@ public class Application {
|
||||||
public String name;
|
public String name;
|
||||||
public String creator;
|
public String creator;
|
||||||
public Set<Report> reports;
|
public Set<Report> reports;
|
||||||
public String auid;
|
public Map<String,String> sources;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(Object o) {
|
public boolean equals(Object o) {
|
||||||
|
@ -36,14 +38,13 @@ public class Application {
|
||||||
Application that = (Application) o;
|
Application that = (Application) o;
|
||||||
|
|
||||||
if (id != that.id) return false;
|
if (id != that.id) return false;
|
||||||
if (!auid.equals(that.auid)) return false;
|
return packageName != null ? packageName.equals(that.packageName) : that.packageName == null;
|
||||||
return packageName.equals(that.packageName);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
int result = (int) (id ^ (id >>> 32));
|
int result = (int) (id ^ (id >>> 32));
|
||||||
result = 31 * result + packageName.hashCode();
|
result = 31 * result + (packageName != null ? packageName.hashCode() : 0);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,6 +30,7 @@ public class Report {
|
||||||
public long versionCode;
|
public long versionCode;
|
||||||
public Set<Long> trackers;
|
public Set<Long> trackers;
|
||||||
public long appId;
|
public long appId;
|
||||||
|
public String source;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(Object o) {
|
public boolean equals(Object o) {
|
||||||
|
|
|
@ -9,6 +9,7 @@ import android.content.pm.PermissionInfo;
|
||||||
import android.graphics.drawable.Drawable;
|
import android.graphics.drawable.Drawable;
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
|
|
||||||
|
import org.eu.exodus_privacy.exodusprivacy.R;
|
||||||
import org.eu.exodus_privacy.exodusprivacy.adapters.ApplicationViewModel;
|
import org.eu.exodus_privacy.exodusprivacy.adapters.ApplicationViewModel;
|
||||||
import org.eu.exodus_privacy.exodusprivacy.manager.DatabaseManager;
|
import org.eu.exodus_privacy.exodusprivacy.manager.DatabaseManager;
|
||||||
|
|
||||||
|
@ -26,6 +27,7 @@ public class ReportDisplay {
|
||||||
public Drawable logo;
|
public Drawable logo;
|
||||||
public List<Permission> permissions;
|
public List<Permission> permissions;
|
||||||
public Set<Tracker> trackers;
|
public Set<Tracker> trackers;
|
||||||
|
public String source;
|
||||||
|
|
||||||
|
|
||||||
private ReportDisplay(){
|
private ReportDisplay(){
|
||||||
|
@ -40,6 +42,7 @@ public class ReportDisplay {
|
||||||
reportDisplay.displayName = model.label.toString();
|
reportDisplay.displayName = model.label.toString();
|
||||||
|
|
||||||
reportDisplay.report = model.report;
|
reportDisplay.report = model.report;
|
||||||
|
reportDisplay.source = context.getString(R.string.source,model.source);
|
||||||
|
|
||||||
reportDisplay.trackers = model.trackers;
|
reportDisplay.trackers = model.trackers;
|
||||||
|
|
||||||
|
|
|
@ -83,6 +83,12 @@
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_below="@+id/base_info"
|
android:layout_below="@+id/base_info"
|
||||||
|
android:id="@+id/source"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
/>
|
||||||
|
<TextView
|
||||||
|
android:layout_below="@+id/source"
|
||||||
android:id="@+id/other_version"
|
android:id="@+id/other_version"
|
||||||
android:text="@string/tested"
|
android:text="@string/tested"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
|
|
@ -168,6 +168,20 @@
|
||||||
android:textStyle="bold"
|
android:textStyle="bold"
|
||||||
android:textColor="@color/textColorDark"/>
|
android:textColor="@color/textColorDark"/>
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/source"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@{reportInfo.source}"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/report_version_value"
|
||||||
|
android:layout_marginTop="5dp"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_marginEnd="20dp"
|
||||||
|
android:textSize="16sp"
|
||||||
|
android:textColor="@color/textColorDark"/>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/creator"
|
android:id="@+id/creator"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
|
@ -175,7 +189,7 @@
|
||||||
android:text="@string/created_by"
|
android:text="@string/created_by"
|
||||||
android:visibility="@{reportInfo.creatorVisibility ? View.VISIBLE : View.GONE}"
|
android:visibility="@{reportInfo.creatorVisibility ? View.VISIBLE : View.GONE}"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/report_version_value"
|
app:layout_constraintTop_toBottomOf="@id/source"
|
||||||
android:layout_marginTop="5dp"
|
android:layout_marginTop="5dp"
|
||||||
android:layout_marginStart="20dp"
|
android:layout_marginStart="20dp"
|
||||||
android:layout_marginEnd="20dp"
|
android:layout_marginEnd="20dp"
|
||||||
|
@ -189,7 +203,7 @@
|
||||||
android:visibility="@{reportInfo.creatorVisibility ? View.VISIBLE : View.GONE}"
|
android:visibility="@{reportInfo.creatorVisibility ? View.VISIBLE : View.GONE}"
|
||||||
app:layout_constraintStart_toEndOf="@id/creator"
|
app:layout_constraintStart_toEndOf="@id/creator"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/report_version_value"
|
app:layout_constraintTop_toBottomOf="@id/source"
|
||||||
android:layout_marginTop="5dp"
|
android:layout_marginTop="5dp"
|
||||||
android:layout_marginStart="5dp"
|
android:layout_marginStart="5dp"
|
||||||
android:layout_marginEnd="20dp"
|
android:layout_marginEnd="20dp"
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<string name="tested">Il n\'y a pas de rapport pour la version installée (%1$s), les informations affichées sont basées sur une autre version (%2$s)</string>
|
<string name="tested">Il n\'y a pas de rapport pour la version installée (%1$s), les informations affichées sont basées sur une autre version (%2$s)</string>
|
||||||
<string name="analysed">Cette application n\'a pas encore été analysée par Exodus Privacy.</string>
|
<string name="analysed">Cette application n\'a pas encore été analysée par Exodus Privacy.</string>
|
||||||
<string name="no_package_manager">Votre système semble ne pas donner accès aux applications installées.</string>
|
<string name="no_package_manager">Votre système semble ne pas donner accès aux applications installées.</string>
|
||||||
<string name="no_app_found">Vous semblez n\'avoir aucune application installée par la source que nous recherchons (Google Play).</string>
|
<string name="no_app_found">Vous semblez n\'avoir aucune application installée par la source que nous recherchons (Google Play ou F-Droid).</string>
|
||||||
<string name="get_reports_connection">Récupération des applications : en attente de connexion au serveur</string>
|
<string name="get_reports_connection">Récupération des applications : en attente de connexion au serveur</string>
|
||||||
<string name="get_reports">Récupération des applications</string>
|
<string name="get_reports">Récupération des applications</string>
|
||||||
<string name="parse_application">Traitement des applications :</string>
|
<string name="parse_application">Traitement des applications :</string>
|
||||||
|
@ -44,6 +44,7 @@
|
||||||
<string name="tracker_presence">Présent dans %d de vos applications</string>
|
<string name="tracker_presence">Présent dans %d de vos applications</string>
|
||||||
<string name="tracker_presence_in">Présent dans:</string>
|
<string name="tracker_presence_in">Présent dans:</string>
|
||||||
<string name="no_app_found_tracker">Ce pisteur ne semble pas être présent dans vos applications</string>
|
<string name="no_app_found_tracker">Ce pisteur ne semble pas être présent dans vos applications</string>
|
||||||
|
<string name="source">Source: %s</string>
|
||||||
|
|
||||||
<!-- Menu -->
|
<!-- Menu -->
|
||||||
<string name="menu_action_filter">Filtrer</string>
|
<string name="menu_action_filter">Filtrer</string>
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<string name="tested">There\'s no report for the installed version (%1$s), the information displayed is based on another (%2$s) version</string>
|
<string name="tested">There\'s no report for the installed version (%1$s), the information displayed is based on another (%2$s) version</string>
|
||||||
<string name="analysed">This app hasn\'t been analysed by Exodus Privacy yet.</string>
|
<string name="analysed">This app hasn\'t been analysed by Exodus Privacy yet.</string>
|
||||||
<string name="no_package_manager">It appears that your system doesn\'t allow access to the list of installed apps.</string>
|
<string name="no_package_manager">It appears that your system doesn\'t allow access to the list of installed apps.</string>
|
||||||
<string name="no_app_found">It appears that you don\'t have any apps installed from the source we test (Google Play store).</string>
|
<string name="no_app_found">It appears that you don\'t have any apps installed from the source we test (Google Play store or F-Droid).</string>
|
||||||
<string name="get_reports_connection">Getting applications: Waiting for server connection</string>
|
<string name="get_reports_connection">Getting applications: Waiting for server connection</string>
|
||||||
<string name="get_reports">Getting applications</string>
|
<string name="get_reports">Getting applications</string>
|
||||||
<string name="parse_application">Processing Applications:</string>
|
<string name="parse_application">Processing Applications:</string>
|
||||||
|
@ -44,6 +44,7 @@
|
||||||
<string name="tracker_presence">Present in %d of your applications</string>
|
<string name="tracker_presence">Present in %d of your applications</string>
|
||||||
<string name="tracker_presence_in">Present in:</string>
|
<string name="tracker_presence_in">Present in:</string>
|
||||||
<string name="no_app_found_tracker">This tracker seems not be present in your applications</string>
|
<string name="no_app_found_tracker">This tracker seems not be present in your applications</string>
|
||||||
|
<string name="source">Source: %s</string>
|
||||||
|
|
||||||
<!-- Menu -->
|
<!-- Menu -->
|
||||||
<string name="menu_action_filter">Filter</string>
|
<string name="menu_action_filter">Filter</string>
|
||||||
|
|
Loading…
Reference in New Issue