inserting api apps redundantly is fine, as long as the signature matches
This commit is contained in:
@@ -19,6 +19,7 @@ package org.sufficientlysecure.keychain.provider;
|
|||||||
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
@@ -66,9 +67,16 @@ public class ApiAppDao extends AbstractDao {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void insertApiApp(ApiApp apiApp) {
|
public void insertApiApp(ApiApp apiApp) {
|
||||||
|
ApiApp existingApiApp = getApiApp(apiApp.package_name());
|
||||||
|
if (existingApiApp != null) {
|
||||||
|
if (!Arrays.equals(existingApiApp.package_signature(), apiApp.package_signature())) {
|
||||||
|
throw new IllegalStateException("Inserting existing api with different signature?!");
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
InsertApiApp statement = new ApiAppsModel.InsertApiApp(getWritableDb());
|
InsertApiApp statement = new ApiAppsModel.InsertApiApp(getWritableDb());
|
||||||
statement.bind(apiApp.package_name(), apiApp.package_signature());
|
statement.bind(apiApp.package_name(), apiApp.package_signature());
|
||||||
statement.execute();
|
statement.executeInsert();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void deleteApiApp(String packageName) {
|
public void deleteApiApp(String packageName) {
|
||||||
|
|||||||
Reference in New Issue
Block a user