|
@@ -72,6 +72,7 @@ public class FileContentProvider extends ContentProvider {
|
|
private static final int UPLOADS = 6;
|
|
private static final int UPLOADS = 6;
|
|
private static final int SYNCED_FOLDERS = 7;
|
|
private static final int SYNCED_FOLDERS = 7;
|
|
private static final int EXTERNAL_LINKS = 8;
|
|
private static final int EXTERNAL_LINKS = 8;
|
|
|
|
+ private static final int ARBITRARY_DATA = 9;
|
|
|
|
|
|
private static final String TAG = FileContentProvider.class.getSimpleName();
|
|
private static final String TAG = FileContentProvider.class.getSimpleName();
|
|
|
|
|
|
@@ -201,6 +202,9 @@ public class FileContentProvider extends ContentProvider {
|
|
case EXTERNAL_LINKS:
|
|
case EXTERNAL_LINKS:
|
|
count = db.delete(ProviderTableMeta.EXTERNAL_LINKS_TABLE_NAME, where, whereArgs);
|
|
count = db.delete(ProviderTableMeta.EXTERNAL_LINKS_TABLE_NAME, where, whereArgs);
|
|
break;
|
|
break;
|
|
|
|
+ case ARBITRARY_DATA:
|
|
|
|
+ count = db.delete(ProviderTableMeta.ARBITRARY_DATA_TABLE_NAME, where, whereArgs);
|
|
|
|
+ break;
|
|
default:
|
|
default:
|
|
//Log_OC.e(TAG, "Unknown uri " + uri);
|
|
//Log_OC.e(TAG, "Unknown uri " + uri);
|
|
throw new IllegalArgumentException("Unknown uri: " + uri.toString());
|
|
throw new IllegalArgumentException("Unknown uri: " + uri.toString());
|
|
@@ -335,6 +339,18 @@ public class FileContentProvider extends ContentProvider {
|
|
}
|
|
}
|
|
return insertedExternalLinkUri;
|
|
return insertedExternalLinkUri;
|
|
|
|
|
|
|
|
+ case ARBITRARY_DATA:
|
|
|
|
+ Uri insertedArbitraryDataUri = null;
|
|
|
|
+ long arbitraryDataId = db.insert(ProviderTableMeta.ARBITRARY_DATA_TABLE_NAME, null, values);
|
|
|
|
+ if (arbitraryDataId > 0) {
|
|
|
|
+ insertedArbitraryDataUri =
|
|
|
|
+ ContentUris.withAppendedId(ProviderTableMeta.CONTENT_URI_ARBITRARY_DATA, arbitraryDataId);
|
|
|
|
+ } else {
|
|
|
|
+ throw new SQLException("ERROR " + uri);
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ return insertedArbitraryDataUri;
|
|
|
|
+
|
|
default:
|
|
default:
|
|
throw new IllegalArgumentException("Unknown uri id: " + uri);
|
|
throw new IllegalArgumentException("Unknown uri id: " + uri);
|
|
}
|
|
}
|
|
@@ -385,6 +401,7 @@ public class FileContentProvider extends ContentProvider {
|
|
mUriMatcher.addURI(authority, "uploads/#", UPLOADS);
|
|
mUriMatcher.addURI(authority, "uploads/#", UPLOADS);
|
|
mUriMatcher.addURI(authority, "synced_folders", SYNCED_FOLDERS);
|
|
mUriMatcher.addURI(authority, "synced_folders", SYNCED_FOLDERS);
|
|
mUriMatcher.addURI(authority, "external_links", EXTERNAL_LINKS);
|
|
mUriMatcher.addURI(authority, "external_links", EXTERNAL_LINKS);
|
|
|
|
+ mUriMatcher.addURI(authority, "arbitrary_data", ARBITRARY_DATA);
|
|
|
|
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
@@ -473,6 +490,13 @@ public class FileContentProvider extends ContentProvider {
|
|
+ uri.getPathSegments().get(1));
|
|
+ uri.getPathSegments().get(1));
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
|
|
+ case ARBITRARY_DATA:
|
|
|
|
+ sqlQuery.setTables(ProviderTableMeta.ARBITRARY_DATA_TABLE_NAME);
|
|
|
|
+ if (uri.getPathSegments().size() > 1) {
|
|
|
|
+ sqlQuery.appendWhere(ProviderTableMeta._ID + "="
|
|
|
|
+ + uri.getPathSegments().get(1));
|
|
|
|
+ }
|
|
|
|
+ break;
|
|
default:
|
|
default:
|
|
throw new IllegalArgumentException("Unknown uri id: " + uri);
|
|
throw new IllegalArgumentException("Unknown uri id: " + uri);
|
|
}
|
|
}
|
|
@@ -495,6 +519,9 @@ public class FileContentProvider extends ContentProvider {
|
|
case EXTERNAL_LINKS:
|
|
case EXTERNAL_LINKS:
|
|
order = ProviderTableMeta.EXTERNAL_LINKS_NAME;
|
|
order = ProviderTableMeta.EXTERNAL_LINKS_NAME;
|
|
break;
|
|
break;
|
|
|
|
+ case ARBITRARY_DATA:
|
|
|
|
+ order = ProviderTableMeta.ARBITRARY_DATA_CLOUD_ID;
|
|
|
|
+ break;
|
|
default: // Files
|
|
default: // Files
|
|
order = ProviderTableMeta.FILE_DEFAULT_SORT_ORDER;
|
|
order = ProviderTableMeta.FILE_DEFAULT_SORT_ORDER;
|
|
break;
|
|
break;
|
|
@@ -538,25 +565,19 @@ public class FileContentProvider extends ContentProvider {
|
|
case DIRECTORY:
|
|
case DIRECTORY:
|
|
return 0; //updateFolderSize(db, selectionArgs[0]);
|
|
return 0; //updateFolderSize(db, selectionArgs[0]);
|
|
case SHARES:
|
|
case SHARES:
|
|
- return db.update(
|
|
|
|
- ProviderTableMeta.OCSHARES_TABLE_NAME, values, selection, selectionArgs
|
|
|
|
- );
|
|
|
|
|
|
+ return db.update(ProviderTableMeta.OCSHARES_TABLE_NAME, values, selection, selectionArgs);
|
|
case CAPABILITIES:
|
|
case CAPABILITIES:
|
|
- return db.update(
|
|
|
|
- ProviderTableMeta.CAPABILITIES_TABLE_NAME, values, selection, selectionArgs
|
|
|
|
- );
|
|
|
|
|
|
+ return db.update(ProviderTableMeta.CAPABILITIES_TABLE_NAME, values, selection, selectionArgs);
|
|
case UPLOADS:
|
|
case UPLOADS:
|
|
- int ret = db.update(
|
|
|
|
- ProviderTableMeta.UPLOADS_TABLE_NAME, values, selection, selectionArgs
|
|
|
|
- );
|
|
|
|
|
|
+ int ret = db.update(ProviderTableMeta.UPLOADS_TABLE_NAME, values, selection, selectionArgs);
|
|
trimSuccessfulUploads(db);
|
|
trimSuccessfulUploads(db);
|
|
return ret;
|
|
return ret;
|
|
case SYNCED_FOLDERS:
|
|
case SYNCED_FOLDERS:
|
|
return db.update(ProviderTableMeta.SYNCED_FOLDERS_TABLE_NAME, values, selection, selectionArgs);
|
|
return db.update(ProviderTableMeta.SYNCED_FOLDERS_TABLE_NAME, values, selection, selectionArgs);
|
|
|
|
+ case ARBITRARY_DATA:
|
|
|
|
+ return db.update(ProviderTableMeta.ARBITRARY_DATA_TABLE_NAME, values, selection, selectionArgs);
|
|
default:
|
|
default:
|
|
- return db.update(
|
|
|
|
- ProviderTableMeta.FILE_TABLE_NAME, values, selection, selectionArgs
|
|
|
|
- );
|
|
|
|
|
|
+ return db.update(ProviderTableMeta.FILE_TABLE_NAME, values, selection, selectionArgs);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -611,6 +632,9 @@ public class FileContentProvider extends ContentProvider {
|
|
|
|
|
|
// Create external links table
|
|
// Create external links table
|
|
createExternalLinksTable(db);
|
|
createExternalLinksTable(db);
|
|
|
|
+
|
|
|
|
+ // Create arbitrary data table
|
|
|
|
+ createArbitraryData(db);
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
@@ -927,6 +951,22 @@ public class FileContentProvider extends ContentProvider {
|
|
if (!upgraded) {
|
|
if (!upgraded) {
|
|
Log_OC.i(SQL, String.format(Locale.ENGLISH, UPGRADE_VERSION_MSG, oldVersion, newVersion));
|
|
Log_OC.i(SQL, String.format(Locale.ENGLISH, UPGRADE_VERSION_MSG, oldVersion, newVersion));
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ if (oldVersion < 20 && newVersion >= 20) {
|
|
|
|
+ Log_OC.i(SQL, "Adding arbitrary data table");
|
|
|
|
+ db.beginTransaction();
|
|
|
|
+ try {
|
|
|
|
+ createArbitraryData(db);
|
|
|
|
+ upgraded = true;
|
|
|
|
+ db.setTransactionSuccessful();
|
|
|
|
+ } finally {
|
|
|
|
+ db.endTransaction();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (!upgraded) {
|
|
|
|
+ Log_OC.i(SQL, String.format(Locale.ENGLISH, UPGRADE_VERSION_MSG, oldVersion, newVersion));
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1064,6 +1104,15 @@ public class FileContentProvider extends ContentProvider {
|
|
);
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ private void createArbitraryData(SQLiteDatabase db) {
|
|
|
|
+ db.execSQL("CREATE TABLE " + ProviderTableMeta.ARBITRARY_DATA_TABLE_NAME + "("
|
|
|
|
+ + ProviderTableMeta._ID + " INTEGER PRIMARY KEY, " // id
|
|
|
|
+ + ProviderTableMeta.ARBITRARY_DATA_CLOUD_ID + " TEXT, " // cloud id (account name + FQDN)
|
|
|
|
+ + ProviderTableMeta.ARBITRARY_DATA_KEY + " TEXT, " // key
|
|
|
|
+ + ProviderTableMeta.ARBITRARY_DATA_VALUE + " TEXT) " // value
|
|
|
|
+ );
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Version 10 of database does not modify its scheme. It coincides with the upgrade of the ownCloud account names
|
|
* Version 10 of database does not modify its scheme. It coincides with the upgrade of the ownCloud account names
|
|
* structure to include in it the path to the server instance. Updating the account names and path to local files
|
|
* structure to include in it the path to the server instance. Updating the account names and path to local files
|