|
@@ -154,12 +154,12 @@ public class FileDataStorageManager {
|
|
|
|
|
|
|
|
|
public Vector<OCFile> getFolderImages(OCFile folder/*, boolean onlyOnDevice*/) {
|
|
|
- Vector<OCFile> ret = new Vector<OCFile>();
|
|
|
+ Vector<OCFile> ret = new Vector<OCFile>();
|
|
|
if (folder != null) {
|
|
|
// TODO better implementation, filtering in the access to database instead of here
|
|
|
// TODO Enable when "On Device" is recovered ?
|
|
|
Vector<OCFile> tmp = getFolderContent(folder/*, onlyOnDevice*/);
|
|
|
- OCFile current = null;
|
|
|
+ OCFile current = null;
|
|
|
for (int i=0; i<tmp.size(); i++) {
|
|
|
current = tmp.get(i);
|
|
|
if (current.isImage()) {
|
|
@@ -174,9 +174,9 @@ public class FileDataStorageManager {
|
|
|
boolean overriden = false;
|
|
|
ContentValues cv = new ContentValues();
|
|
|
cv.put(ProviderTableMeta.FILE_MODIFIED, file.getModificationTimestamp());
|
|
|
- cv.put(
|
|
|
- ProviderTableMeta.FILE_MODIFIED_AT_LAST_SYNC_FOR_DATA,
|
|
|
- file.getModificationTimestampAtLastSyncForData()
|
|
|
+ cv.put(
|
|
|
+ ProviderTableMeta.FILE_MODIFIED_AT_LAST_SYNC_FOR_DATA,
|
|
|
+ file.getModificationTimestampAtLastSyncForData()
|
|
|
);
|
|
|
cv.put(ProviderTableMeta.FILE_CREATION, file.getCreationTimestamp());
|
|
|
cv.put(ProviderTableMeta.FILE_CONTENT_LENGTH, file.getFileLength());
|
|
@@ -191,7 +191,8 @@ public class FileDataStorageManager {
|
|
|
cv.put(ProviderTableMeta.FILE_LAST_SYNC_DATE_FOR_DATA, file.getLastSyncDateForData());
|
|
|
cv.put(ProviderTableMeta.FILE_KEEP_IN_SYNC, file.isFavorite() ? 1 : 0);
|
|
|
cv.put(ProviderTableMeta.FILE_ETAG, file.getEtag());
|
|
|
- cv.put(ProviderTableMeta.FILE_SHARE_BY_LINK, file.isShareByLink() ? 1 : 0);
|
|
|
+ cv.put(ProviderTableMeta.FILE_SHARED_VIA_LINK, file.isSharedViaLink() ? 1 : 0);
|
|
|
+ cv.put(ProviderTableMeta.FILE_SHARED_WITH_SHAREE, file.isSharedWithSharee() ? 1 : 0);
|
|
|
cv.put(ProviderTableMeta.FILE_PUBLIC_LINK, file.getPublicLink());
|
|
|
cv.put(ProviderTableMeta.FILE_PERMISSIONS, file.getPermissions());
|
|
|
cv.put(ProviderTableMeta.FILE_REMOTE_ID, file.getRemoteId());
|
|
@@ -200,7 +201,8 @@ public class FileDataStorageManager {
|
|
|
cv.put(ProviderTableMeta.FILE_ETAG_IN_CONFLICT, file.getEtagInConflict());
|
|
|
|
|
|
boolean sameRemotePath = fileExists(file.getRemotePath());
|
|
|
- if (sameRemotePath || fileExists(file.getFileId())) { // for renamed files; no more delete and create
|
|
|
+ if (sameRemotePath ||
|
|
|
+ fileExists(file.getFileId())) { // for renamed files; no more delete and create
|
|
|
|
|
|
OCFile oldFile;
|
|
|
if (sameRemotePath) {
|
|
@@ -264,12 +266,12 @@ public class FileDataStorageManager {
|
|
|
*/
|
|
|
public void saveFolder(
|
|
|
OCFile folder, Collection<OCFile> updatedFiles, Collection<OCFile> filesToRemove
|
|
|
- ) {
|
|
|
-
|
|
|
- Log_OC.d(TAG, "Saving folder " + folder.getRemotePath() + " with " + updatedFiles.size()
|
|
|
+ ) {
|
|
|
+
|
|
|
+ Log_OC.d(TAG, "Saving folder " + folder.getRemotePath() + " with " + updatedFiles.size()
|
|
|
+ " children and " + filesToRemove.size() + " files to remove");
|
|
|
|
|
|
- ArrayList<ContentProviderOperation> operations =
|
|
|
+ ArrayList<ContentProviderOperation> operations =
|
|
|
new ArrayList<ContentProviderOperation>(updatedFiles.size());
|
|
|
|
|
|
// prepare operations to insert or update files to save in the given folder
|
|
@@ -277,8 +279,8 @@ public class FileDataStorageManager {
|
|
|
ContentValues cv = new ContentValues();
|
|
|
cv.put(ProviderTableMeta.FILE_MODIFIED, file.getModificationTimestamp());
|
|
|
cv.put(
|
|
|
- ProviderTableMeta.FILE_MODIFIED_AT_LAST_SYNC_FOR_DATA,
|
|
|
- file.getModificationTimestampAtLastSyncForData()
|
|
|
+ ProviderTableMeta.FILE_MODIFIED_AT_LAST_SYNC_FOR_DATA,
|
|
|
+ file.getModificationTimestampAtLastSyncForData()
|
|
|
);
|
|
|
cv.put(ProviderTableMeta.FILE_CREATION, file.getCreationTimestamp());
|
|
|
cv.put(ProviderTableMeta.FILE_CONTENT_LENGTH, file.getFileLength());
|
|
@@ -295,7 +297,8 @@ public class FileDataStorageManager {
|
|
|
cv.put(ProviderTableMeta.FILE_LAST_SYNC_DATE_FOR_DATA, file.getLastSyncDateForData());
|
|
|
cv.put(ProviderTableMeta.FILE_KEEP_IN_SYNC, file.isFavorite() ? 1 : 0);
|
|
|
cv.put(ProviderTableMeta.FILE_ETAG, file.getEtag());
|
|
|
- cv.put(ProviderTableMeta.FILE_SHARE_BY_LINK, file.isShareByLink() ? 1 : 0);
|
|
|
+ cv.put(ProviderTableMeta.FILE_SHARED_VIA_LINK, file.isSharedViaLink() ? 1 : 0);
|
|
|
+ cv.put(ProviderTableMeta.FILE_SHARED_WITH_SHAREE, file.isSharedWithSharee() ? 1 : 0);
|
|
|
cv.put(ProviderTableMeta.FILE_PUBLIC_LINK, file.getPublicLink());
|
|
|
cv.put(ProviderTableMeta.FILE_PERMISSIONS, file.getPermissions());
|
|
|
cv.put(ProviderTableMeta.FILE_REMOTE_ID, file.getRemoteId());
|
|
@@ -332,8 +335,8 @@ public class FileDataStorageManager {
|
|
|
ProviderTableMeta.CONTENT_URI_DIR, file.getFileId()
|
|
|
)
|
|
|
).withSelection(where, whereArgs).build());
|
|
|
-
|
|
|
- File localFolder =
|
|
|
+
|
|
|
+ File localFolder =
|
|
|
new File(FileStorageUtils.getDefaultSavePathFor(mAccount.name, file));
|
|
|
if (localFolder.exists()) {
|
|
|
removeLocalFolder(localFolder);
|
|
@@ -358,8 +361,8 @@ public class FileDataStorageManager {
|
|
|
ContentValues cv = new ContentValues();
|
|
|
cv.put(ProviderTableMeta.FILE_MODIFIED, folder.getModificationTimestamp());
|
|
|
cv.put(
|
|
|
- ProviderTableMeta.FILE_MODIFIED_AT_LAST_SYNC_FOR_DATA,
|
|
|
- folder.getModificationTimestampAtLastSyncForData()
|
|
|
+ ProviderTableMeta.FILE_MODIFIED_AT_LAST_SYNC_FOR_DATA,
|
|
|
+ folder.getModificationTimestampAtLastSyncForData()
|
|
|
);
|
|
|
cv.put(ProviderTableMeta.FILE_CREATION, folder.getCreationTimestamp());
|
|
|
cv.put(ProviderTableMeta.FILE_CONTENT_LENGTH, 0);
|
|
@@ -372,7 +375,8 @@ public class FileDataStorageManager {
|
|
|
cv.put(ProviderTableMeta.FILE_LAST_SYNC_DATE_FOR_DATA, folder.getLastSyncDateForData());
|
|
|
cv.put(ProviderTableMeta.FILE_KEEP_IN_SYNC, folder.isFavorite() ? 1 : 0);
|
|
|
cv.put(ProviderTableMeta.FILE_ETAG, folder.getEtag());
|
|
|
- cv.put(ProviderTableMeta.FILE_SHARE_BY_LINK, folder.isShareByLink() ? 1 : 0);
|
|
|
+ cv.put(ProviderTableMeta.FILE_SHARED_VIA_LINK, folder.isSharedViaLink() ? 1 : 0);
|
|
|
+ cv.put(ProviderTableMeta.FILE_SHARED_WITH_SHAREE, folder.isSharedWithSharee() ? 1 : 0);
|
|
|
cv.put(ProviderTableMeta.FILE_PUBLIC_LINK, folder.getPublicLink());
|
|
|
cv.put(ProviderTableMeta.FILE_PERMISSIONS, folder.getPermissions());
|
|
|
cv.put(ProviderTableMeta.FILE_REMOTE_ID, folder.getRemoteId());
|
|
@@ -433,9 +437,12 @@ public class FileDataStorageManager {
|
|
|
|
|
|
} else {
|
|
|
if (removeDBData) {
|
|
|
- //Uri file_uri = Uri.withAppendedPath(ProviderTableMeta.CONTENT_URI_FILE, ""+file.getFileId());
|
|
|
- Uri file_uri = ContentUris.withAppendedId(ProviderTableMeta.CONTENT_URI_FILE, file.getFileId());
|
|
|
- String where = ProviderTableMeta.FILE_ACCOUNT_OWNER + "=?" + " AND " + ProviderTableMeta.FILE_PATH + "=?";
|
|
|
+ //Uri file_uri = Uri.withAppendedPath(ProviderTableMeta.CONTENT_URI_FILE,
|
|
|
+ // ""+file.getFileId());
|
|
|
+ Uri file_uri = ContentUris.withAppendedId(ProviderTableMeta.CONTENT_URI_FILE,
|
|
|
+ file.getFileId());
|
|
|
+ String where = ProviderTableMeta.FILE_ACCOUNT_OWNER + "=?" + " AND " +
|
|
|
+ ProviderTableMeta.FILE_PATH + "=?";
|
|
|
String[] whereArgs = new String[]{mAccount.name, file.getRemotePath()};
|
|
|
int deleted = 0;
|
|
|
if (getContentProviderClient() != null) {
|
|
@@ -484,7 +491,7 @@ public class FileDataStorageManager {
|
|
|
private boolean removeFolderInDb(OCFile folder) {
|
|
|
Uri folder_uri = Uri.withAppendedPath(ProviderTableMeta.CONTENT_URI_DIR, "" +
|
|
|
folder.getFileId()); // URI for recursive deletion
|
|
|
- String where = ProviderTableMeta.FILE_ACCOUNT_OWNER + "=?" + " AND " +
|
|
|
+ String where = ProviderTableMeta.FILE_ACCOUNT_OWNER + "=?" + " AND " +
|
|
|
ProviderTableMeta.FILE_PATH + "=?";
|
|
|
String [] whereArgs = new String[]{mAccount.name, folder.getRemotePath()};
|
|
|
int deleted = 0;
|
|
@@ -551,7 +558,7 @@ public class FileDataStorageManager {
|
|
|
return success;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* Updates database and file system for a file or folder that was moved to a different location.
|
|
|
*
|
|
@@ -564,7 +571,8 @@ public class FileDataStorageManager {
|
|
|
|
|
|
OCFile targetParent = getFileByPath(targetParentPath);
|
|
|
if (targetParent == null) {
|
|
|
- throw new IllegalStateException("Parent folder of the target path does not exist!!");
|
|
|
+ throw new IllegalStateException(
|
|
|
+ "Parent folder of the target path does not exist!!");
|
|
|
}
|
|
|
|
|
|
/// 1. get all the descendants of the moved element in a single QUERY
|
|
@@ -621,12 +629,12 @@ public class FileDataStorageManager {
|
|
|
// update link to downloaded content - but local move is not done here!
|
|
|
String targetLocalPath = defaultSavePath + targetPath +
|
|
|
child.getStoragePath().substring(lengthOfOldStoragePath);
|
|
|
-
|
|
|
+
|
|
|
cv.put(ProviderTableMeta.FILE_STORAGE_PATH, targetLocalPath);
|
|
|
-
|
|
|
+
|
|
|
originalPathsToTriggerMediaScan.add(child.getStoragePath());
|
|
|
newPathsToTriggerMediaScan.add(targetLocalPath);
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
if (child.getRemotePath().equals(file.getRemotePath())) {
|
|
|
cv.put(
|
|
@@ -657,7 +665,8 @@ public class FileDataStorageManager {
|
|
|
}
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
- Log_OC.e(TAG, "Fail to update " + file.getFileId() + " and descendants in database", e);
|
|
|
+ Log_OC.e(TAG, "Fail to update " + file.getFileId() + " and descendants in database",
|
|
|
+ e);
|
|
|
}
|
|
|
|
|
|
/// 4. move in local file system
|
|
@@ -741,7 +750,7 @@ public class FileDataStorageManager {
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+
|
|
|
private Vector<OCFile> getFolderContent(long parentId/*, boolean onlyOnDevice*/) {
|
|
|
|
|
|
Vector<OCFile> ret = new Vector<OCFile>();
|
|
@@ -771,7 +780,7 @@ public class FileDataStorageManager {
|
|
|
OCFile child = createFileInstance(c);
|
|
|
// TODO Enable when "On Device" is recovered ?
|
|
|
// if (child.isFolder() || !onlyOnDevice || onlyOnDevice && child.isDown()){
|
|
|
- ret.add(child);
|
|
|
+ ret.add(child);
|
|
|
// }
|
|
|
} while (c.moveToNext());
|
|
|
}
|
|
@@ -888,8 +897,10 @@ public class FileDataStorageManager {
|
|
|
file.setFavorite(c.getInt(
|
|
|
c.getColumnIndex(ProviderTableMeta.FILE_KEEP_IN_SYNC)) == 1 ? true : false);
|
|
|
file.setEtag(c.getString(c.getColumnIndex(ProviderTableMeta.FILE_ETAG)));
|
|
|
- file.setShareByLink(c.getInt(
|
|
|
- c.getColumnIndex(ProviderTableMeta.FILE_SHARE_BY_LINK)) == 1 ? true : false);
|
|
|
+ file.setShareViaLink(c.getInt(
|
|
|
+ c.getColumnIndex(ProviderTableMeta.FILE_SHARED_VIA_LINK)) == 1 ? true : false);
|
|
|
+ file.setShareWithSharee(c.getInt(
|
|
|
+ c.getColumnIndex(ProviderTableMeta.FILE_SHARED_WITH_SHAREE)) == 1 ? true : false);
|
|
|
file.setPublicLink(c.getString(c.getColumnIndex(ProviderTableMeta.FILE_PUBLIC_LINK)));
|
|
|
file.setPermissions(c.getString(c.getColumnIndex(ProviderTableMeta.FILE_PERMISSIONS)));
|
|
|
file.setRemoteId(c.getString(c.getColumnIndex(ProviderTableMeta.FILE_REMOTE_ID)));
|
|
@@ -917,15 +928,15 @@ public class FileDataStorageManager {
|
|
|
cv.put(ProviderTableMeta.OCSHARES_EXPIRATION_DATE, share.getExpirationDate());
|
|
|
cv.put(ProviderTableMeta.OCSHARES_TOKEN, share.getToken());
|
|
|
cv.put(
|
|
|
- ProviderTableMeta.OCSHARES_SHARE_WITH_DISPLAY_NAME,
|
|
|
- share.getSharedWithDisplayName()
|
|
|
+ ProviderTableMeta.OCSHARES_SHARE_WITH_DISPLAY_NAME,
|
|
|
+ share.getSharedWithDisplayName()
|
|
|
);
|
|
|
cv.put(ProviderTableMeta.OCSHARES_IS_DIRECTORY, share.isFolder() ? 1 : 0);
|
|
|
cv.put(ProviderTableMeta.OCSHARES_USER_ID, share.getUserId());
|
|
|
cv.put(ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED, share.getIdRemoteShared());
|
|
|
cv.put(ProviderTableMeta.OCSHARES_ACCOUNT_OWNER, mAccount.name);
|
|
|
|
|
|
- if (shareExists(share.getIdRemoteShared())) { // for renamed files; no more delete and create
|
|
|
+ if (shareExists(share.getIdRemoteShared())) {// for renamed files; no more delete and create
|
|
|
overriden = true;
|
|
|
if (getContentResolver() != null) {
|
|
|
getContentResolver().update(ProviderTableMeta.CONTENT_URI_SHARE, cv,
|
|
@@ -968,26 +979,29 @@ public class FileDataStorageManager {
|
|
|
}
|
|
|
|
|
|
|
|
|
- public OCShare getFirstShareByPathAndType(String path, ShareType type) {
|
|
|
+ public OCShare getFirstShareByPathAndType(String path, ShareType type, String shareWith) {
|
|
|
Cursor c = null;
|
|
|
+
|
|
|
+ String selection = ProviderTableMeta.OCSHARES_PATH + "=? AND "
|
|
|
+ + ProviderTableMeta.OCSHARES_SHARE_TYPE + "=? AND "
|
|
|
+ + ProviderTableMeta.OCSHARES_SHARE_WITH + "=? AND "
|
|
|
+ + ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + "=?" ;
|
|
|
+
|
|
|
+ String [] selectionArgs = new String[]{path, Integer.toString(type.getValue()),
|
|
|
+ shareWith, mAccount.name};
|
|
|
+
|
|
|
if (getContentResolver() != null) {
|
|
|
c = getContentResolver().query(
|
|
|
ProviderTableMeta.CONTENT_URI_SHARE,
|
|
|
null,
|
|
|
- ProviderTableMeta.OCSHARES_PATH + "=? AND "
|
|
|
- + ProviderTableMeta.OCSHARES_SHARE_TYPE + "=? AND "
|
|
|
- + ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + "=?",
|
|
|
- new String[]{path, Integer.toString(type.getValue()), mAccount.name},
|
|
|
+ selection, selectionArgs,
|
|
|
null);
|
|
|
} else {
|
|
|
try {
|
|
|
c = getContentProviderClient().query(
|
|
|
ProviderTableMeta.CONTENT_URI_SHARE,
|
|
|
null,
|
|
|
- ProviderTableMeta.OCSHARES_PATH + "=? AND "
|
|
|
- + ProviderTableMeta.OCSHARES_SHARE_TYPE + "=? AND "
|
|
|
- + ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + "=?",
|
|
|
- new String[]{path, Integer.toString(type.getValue()), mAccount.name},
|
|
|
+ selection, selectionArgs,
|
|
|
null);
|
|
|
|
|
|
} catch (RemoteException e) {
|
|
@@ -1013,6 +1027,8 @@ public class FileDataStorageManager {
|
|
|
.getColumnIndex(ProviderTableMeta.OCSHARES_ITEM_SOURCE)));
|
|
|
share.setShareType(ShareType.fromValue(c.getInt(c
|
|
|
.getColumnIndex(ProviderTableMeta.OCSHARES_SHARE_TYPE))));
|
|
|
+ share.setShareWith(c.getString(c
|
|
|
+ .getColumnIndex(ProviderTableMeta.OCSHARES_SHARE_WITH)));
|
|
|
share.setPermissions(c.getInt(c
|
|
|
.getColumnIndex(ProviderTableMeta.OCSHARES_PERMISSIONS)));
|
|
|
share.setSharedDate(c.getLong(c
|
|
@@ -1026,7 +1042,8 @@ public class FileDataStorageManager {
|
|
|
share.setIsFolder(c.getInt(
|
|
|
c.getColumnIndex(ProviderTableMeta.OCSHARES_IS_DIRECTORY)) == 1);
|
|
|
share.setUserId(c.getLong(c.getColumnIndex(ProviderTableMeta.OCSHARES_USER_ID)));
|
|
|
- share.setIdRemoteShared(c.getLong(c.getColumnIndex(ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED)));
|
|
|
+ share.setIdRemoteShared(c.getLong(
|
|
|
+ c.getColumnIndex(ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED)));
|
|
|
}
|
|
|
return share;
|
|
|
}
|
|
@@ -1065,9 +1082,10 @@ public class FileDataStorageManager {
|
|
|
return shareExists(ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED, String.valueOf(remoteId));
|
|
|
}
|
|
|
|
|
|
- private void cleanSharedFiles() {
|
|
|
+ private void resetShareFlagsInAllFiles() {
|
|
|
ContentValues cv = new ContentValues();
|
|
|
- cv.put(ProviderTableMeta.FILE_SHARE_BY_LINK, false);
|
|
|
+ cv.put(ProviderTableMeta.FILE_SHARED_VIA_LINK, false);
|
|
|
+ cv.put(ProviderTableMeta.FILE_SHARED_WITH_SHAREE, false);
|
|
|
cv.put(ProviderTableMeta.FILE_PUBLIC_LINK, "");
|
|
|
String where = ProviderTableMeta.FILE_ACCOUNT_OWNER + "=?";
|
|
|
String[] whereArgs = new String[]{mAccount.name};
|
|
@@ -1077,29 +1095,54 @@ public class FileDataStorageManager {
|
|
|
|
|
|
} else {
|
|
|
try {
|
|
|
- getContentProviderClient().update(ProviderTableMeta.CONTENT_URI, cv, where, whereArgs);
|
|
|
+ getContentProviderClient().update(ProviderTableMeta.CONTENT_URI, cv, where,
|
|
|
+ whereArgs);
|
|
|
} catch (RemoteException e) {
|
|
|
- Log_OC.e(TAG, "Exception in cleanSharedFiles" + e.getMessage());
|
|
|
+ Log_OC.e(TAG, "Exception in resetShareFlagsInAllFiles" + e.getMessage());
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- private void cleanSharedFilesInFolder(OCFile folder) {
|
|
|
+ private void resetShareFlagsInFolder(OCFile folder) {
|
|
|
ContentValues cv = new ContentValues();
|
|
|
- cv.put(ProviderTableMeta.FILE_SHARE_BY_LINK, false);
|
|
|
+ cv.put(ProviderTableMeta.FILE_SHARED_VIA_LINK, false);
|
|
|
+ cv.put(ProviderTableMeta.FILE_SHARED_WITH_SHAREE, false);
|
|
|
cv.put(ProviderTableMeta.FILE_PUBLIC_LINK, "");
|
|
|
String where = ProviderTableMeta.FILE_ACCOUNT_OWNER + "=? AND " +
|
|
|
ProviderTableMeta.FILE_PARENT + "=?";
|
|
|
String [] whereArgs = new String[] { mAccount.name , String.valueOf(folder.getFileId()) };
|
|
|
-
|
|
|
+
|
|
|
if (getContentResolver() != null) {
|
|
|
getContentResolver().update(ProviderTableMeta.CONTENT_URI, cv, where, whereArgs);
|
|
|
|
|
|
} else {
|
|
|
try {
|
|
|
- getContentProviderClient().update(ProviderTableMeta.CONTENT_URI, cv, where, whereArgs);
|
|
|
+ getContentProviderClient().update(ProviderTableMeta.CONTENT_URI, cv, where,
|
|
|
+ whereArgs);
|
|
|
} catch (RemoteException e) {
|
|
|
- Log_OC.e(TAG, "Exception in cleanSharedFilesInFolder " + e.getMessage());
|
|
|
+ Log_OC.e(TAG, "Exception in resetShareFlagsInFolder " + e.getMessage());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private void resetShareFlagInAFile(String filePath){
|
|
|
+ ContentValues cv = new ContentValues();
|
|
|
+ cv.put(ProviderTableMeta.FILE_SHARED_VIA_LINK, false);
|
|
|
+ cv.put(ProviderTableMeta.FILE_SHARED_WITH_SHAREE, false);
|
|
|
+ cv.put(ProviderTableMeta.FILE_PUBLIC_LINK, "");
|
|
|
+ String where = ProviderTableMeta.FILE_ACCOUNT_OWNER + "=? AND " +
|
|
|
+ ProviderTableMeta.FILE_PATH+ "=?";
|
|
|
+ String [] whereArgs = new String[] { mAccount.name , filePath };
|
|
|
+
|
|
|
+ if (getContentResolver() != null) {
|
|
|
+ getContentResolver().update(ProviderTableMeta.CONTENT_URI, cv, where, whereArgs);
|
|
|
+
|
|
|
+ } else {
|
|
|
+ try {
|
|
|
+ getContentProviderClient().update(ProviderTableMeta.CONTENT_URI, cv, where,
|
|
|
+ whereArgs);
|
|
|
+ } catch (RemoteException e) {
|
|
|
+ Log_OC.e(TAG, "Exception in resetShareFlagsInFolder " + e.getMessage());
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -1113,7 +1156,8 @@ public class FileDataStorageManager {
|
|
|
|
|
|
} else {
|
|
|
try {
|
|
|
- getContentProviderClient().delete(ProviderTableMeta.CONTENT_URI_SHARE, where, whereArgs);
|
|
|
+ getContentProviderClient().delete(ProviderTableMeta.CONTENT_URI_SHARE, where,
|
|
|
+ whereArgs);
|
|
|
} catch (RemoteException e) {
|
|
|
Log_OC.e(TAG, "Exception in cleanShares" + e.getMessage());
|
|
|
}
|
|
@@ -1123,7 +1167,7 @@ public class FileDataStorageManager {
|
|
|
public void saveShares(Collection<OCShare> shares) {
|
|
|
cleanShares();
|
|
|
if (shares != null) {
|
|
|
- ArrayList<ContentProviderOperation> operations =
|
|
|
+ ArrayList<ContentProviderOperation> operations =
|
|
|
new ArrayList<ContentProviderOperation>(shares.size());
|
|
|
|
|
|
// prepare operations to insert or update files to save in the given folder
|
|
@@ -1139,8 +1183,8 @@ public class FileDataStorageManager {
|
|
|
cv.put(ProviderTableMeta.OCSHARES_EXPIRATION_DATE, share.getExpirationDate());
|
|
|
cv.put(ProviderTableMeta.OCSHARES_TOKEN, share.getToken());
|
|
|
cv.put(
|
|
|
- ProviderTableMeta.OCSHARES_SHARE_WITH_DISPLAY_NAME,
|
|
|
- share.getSharedWithDisplayName()
|
|
|
+ ProviderTableMeta.OCSHARES_SHARE_WITH_DISPLAY_NAME,
|
|
|
+ share.getSharedWithDisplayName()
|
|
|
);
|
|
|
cv.put(ProviderTableMeta.OCSHARES_IS_DIRECTORY, share.isFolder() ? 1 : 0);
|
|
|
cv.put(ProviderTableMeta.OCSHARES_USER_ID, share.getUserId());
|
|
@@ -1151,16 +1195,16 @@ public class FileDataStorageManager {
|
|
|
// updating an existing file
|
|
|
operations.add(
|
|
|
ContentProviderOperation.newUpdate(ProviderTableMeta.CONTENT_URI_SHARE).
|
|
|
- withValues(cv).
|
|
|
- withSelection(ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED + "=?",
|
|
|
- new String[]{String.valueOf(share.getIdRemoteShared())})
|
|
|
- .build());
|
|
|
+ withValues(cv).
|
|
|
+ withSelection(ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED + "=?",
|
|
|
+ new String[]{String.valueOf(share.getIdRemoteShared())})
|
|
|
+ .build());
|
|
|
} else {
|
|
|
// adding a new file
|
|
|
operations.add(
|
|
|
ContentProviderOperation.newInsert(ProviderTableMeta.CONTENT_URI_SHARE).
|
|
|
- withValues(cv).
|
|
|
- build()
|
|
|
+ withValues(cv).
|
|
|
+ build()
|
|
|
);
|
|
|
}
|
|
|
}
|
|
@@ -1169,11 +1213,12 @@ public class FileDataStorageManager {
|
|
|
if (operations.size() > 0) {
|
|
|
@SuppressWarnings("unused")
|
|
|
ContentProviderResult[] results = null;
|
|
|
- Log_OC.d(TAG, "Sending " + operations.size() +
|
|
|
+ Log_OC.d(TAG, "Sending " + operations.size() +
|
|
|
" operations to FileContentProvider");
|
|
|
try {
|
|
|
if (getContentResolver() != null) {
|
|
|
- results = getContentResolver().applyBatch(MainApp.getAuthority(), operations);
|
|
|
+ results = getContentResolver().applyBatch(MainApp.getAuthority(),
|
|
|
+ operations);
|
|
|
} else {
|
|
|
results = getContentProviderClient().applyBatch(operations);
|
|
|
}
|
|
@@ -1190,10 +1235,10 @@ public class FileDataStorageManager {
|
|
|
}
|
|
|
|
|
|
public void updateSharedFiles(Collection<OCFile> sharedFiles) {
|
|
|
- cleanSharedFiles();
|
|
|
+ resetShareFlagsInAllFiles();
|
|
|
|
|
|
if (sharedFiles != null) {
|
|
|
- ArrayList<ContentProviderOperation> operations =
|
|
|
+ ArrayList<ContentProviderOperation> operations =
|
|
|
new ArrayList<ContentProviderOperation>(sharedFiles.size());
|
|
|
|
|
|
// prepare operations to insert or update files to save in the given folder
|
|
@@ -1201,8 +1246,8 @@ public class FileDataStorageManager {
|
|
|
ContentValues cv = new ContentValues();
|
|
|
cv.put(ProviderTableMeta.FILE_MODIFIED, file.getModificationTimestamp());
|
|
|
cv.put(
|
|
|
- ProviderTableMeta.FILE_MODIFIED_AT_LAST_SYNC_FOR_DATA,
|
|
|
- file.getModificationTimestampAtLastSyncForData()
|
|
|
+ ProviderTableMeta.FILE_MODIFIED_AT_LAST_SYNC_FOR_DATA,
|
|
|
+ file.getModificationTimestampAtLastSyncForData()
|
|
|
);
|
|
|
cv.put(ProviderTableMeta.FILE_CREATION, file.getCreationTimestamp());
|
|
|
cv.put(ProviderTableMeta.FILE_CONTENT_LENGTH, file.getFileLength());
|
|
@@ -1216,18 +1261,19 @@ public class FileDataStorageManager {
|
|
|
cv.put(ProviderTableMeta.FILE_ACCOUNT_OWNER, mAccount.name);
|
|
|
cv.put(ProviderTableMeta.FILE_LAST_SYNC_DATE, file.getLastSyncDateForProperties());
|
|
|
cv.put(
|
|
|
- ProviderTableMeta.FILE_LAST_SYNC_DATE_FOR_DATA,
|
|
|
- file.getLastSyncDateForData()
|
|
|
+ ProviderTableMeta.FILE_LAST_SYNC_DATE_FOR_DATA,
|
|
|
+ file.getLastSyncDateForData()
|
|
|
);
|
|
|
cv.put(ProviderTableMeta.FILE_KEEP_IN_SYNC, file.isFavorite() ? 1 : 0);
|
|
|
cv.put(ProviderTableMeta.FILE_ETAG, file.getEtag());
|
|
|
- cv.put(ProviderTableMeta.FILE_SHARE_BY_LINK, file.isShareByLink() ? 1 : 0);
|
|
|
+ cv.put(ProviderTableMeta.FILE_SHARED_VIA_LINK, file.isSharedViaLink() ? 1 : 0);
|
|
|
+ cv.put(ProviderTableMeta.FILE_SHARED_WITH_SHAREE, file.isSharedWithSharee() ? 1 : 0);
|
|
|
cv.put(ProviderTableMeta.FILE_PUBLIC_LINK, file.getPublicLink());
|
|
|
cv.put(ProviderTableMeta.FILE_PERMISSIONS, file.getPermissions());
|
|
|
cv.put(ProviderTableMeta.FILE_REMOTE_ID, file.getRemoteId());
|
|
|
cv.put(
|
|
|
- ProviderTableMeta.FILE_UPDATE_THUMBNAIL,
|
|
|
- file.needsUpdateThumbnail() ? 1 : 0
|
|
|
+ ProviderTableMeta.FILE_UPDATE_THUMBNAIL,
|
|
|
+ file.needsUpdateThumbnail() ? 1 : 0
|
|
|
);
|
|
|
cv.put(
|
|
|
ProviderTableMeta.FILE_IS_DOWNLOADING,
|
|
@@ -1240,17 +1286,17 @@ public class FileDataStorageManager {
|
|
|
// updating an existing file
|
|
|
operations.add(
|
|
|
ContentProviderOperation.newUpdate(ProviderTableMeta.CONTENT_URI).
|
|
|
- withValues(cv).
|
|
|
- withSelection(ProviderTableMeta._ID + "=?",
|
|
|
- new String[]{String.valueOf(file.getFileId())})
|
|
|
- .build());
|
|
|
+ withValues(cv).
|
|
|
+ withSelection(ProviderTableMeta._ID + "=?",
|
|
|
+ new String[]{String.valueOf(file.getFileId())})
|
|
|
+ .build());
|
|
|
|
|
|
} else {
|
|
|
// adding a new file
|
|
|
operations.add(
|
|
|
ContentProviderOperation.newInsert(ProviderTableMeta.CONTENT_URI).
|
|
|
- withValues(cv).
|
|
|
- build()
|
|
|
+ withValues(cv).
|
|
|
+ build()
|
|
|
);
|
|
|
}
|
|
|
}
|
|
@@ -1259,7 +1305,7 @@ public class FileDataStorageManager {
|
|
|
if (operations.size() > 0) {
|
|
|
@SuppressWarnings("unused")
|
|
|
ContentProviderResult[] results = null;
|
|
|
- Log_OC.d(TAG, "Sending " + operations.size() +
|
|
|
+ Log_OC.d(TAG, "Sending " + operations.size() +
|
|
|
" operations to FileContentProvider");
|
|
|
try {
|
|
|
if (getContentResolver() != null) {
|
|
@@ -1282,8 +1328,8 @@ public class FileDataStorageManager {
|
|
|
public void removeShare(OCShare share) {
|
|
|
Uri share_uri = ProviderTableMeta.CONTENT_URI_SHARE;
|
|
|
String where = ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + "=?" + " AND " +
|
|
|
- ProviderTableMeta.FILE_PATH + "=?";
|
|
|
- String [] whereArgs = new String[]{mAccount.name, share.getPath()};
|
|
|
+ ProviderTableMeta._ID + "=?";
|
|
|
+ String [] whereArgs = new String[]{mAccount.name, Long.toString(share.getId())};
|
|
|
if (getContentProviderClient() != null) {
|
|
|
try {
|
|
|
getContentProviderClient().delete(share_uri, where, whereArgs);
|
|
@@ -1296,36 +1342,106 @@ public class FileDataStorageManager {
|
|
|
}
|
|
|
|
|
|
public void saveSharesDB(ArrayList<OCShare> shares) {
|
|
|
- saveShares(shares);
|
|
|
-
|
|
|
- ArrayList<OCFile> sharedFiles = new ArrayList<OCFile>();
|
|
|
+ ArrayList<ContentProviderOperation> operations = new ArrayList<ContentProviderOperation>();
|
|
|
|
|
|
- for (OCShare share : shares) {
|
|
|
- // Get the path
|
|
|
- String path = share.getPath();
|
|
|
- if (share.isFolder()) {
|
|
|
- path = path + FileUtils.PATH_SEPARATOR;
|
|
|
+ // Reset flags & Remove shares for this files
|
|
|
+ String filePath = "";
|
|
|
+ for (OCShare share: shares) {
|
|
|
+ if (filePath != share.getPath()){
|
|
|
+ filePath = share.getPath();
|
|
|
+ resetShareFlagInAFile(filePath);
|
|
|
+ operations = prepareRemoveSharesInFile(filePath, operations);
|
|
|
}
|
|
|
+ }
|
|
|
+
|
|
|
+ // Add operations to insert shares
|
|
|
+ operations = prepareInsertShares(shares, operations);
|
|
|
|
|
|
- // Update OCFile with data from share: ShareByLink and publicLink
|
|
|
- OCFile file = getFileByPath(path);
|
|
|
- if (file != null) {
|
|
|
- if (share.getShareType().equals(ShareType.PUBLIC_LINK)) {
|
|
|
- file.setShareByLink(true);
|
|
|
- sharedFiles.add(file);
|
|
|
+ // apply operations in batch
|
|
|
+ if (operations.size() > 0) {
|
|
|
+ Log_OC.d(TAG, "Sending " + operations.size() + " operations to FileContentProvider");
|
|
|
+ try {
|
|
|
+ if (getContentResolver() != null) {
|
|
|
+ getContentResolver().applyBatch(MainApp.getAuthority(), operations);
|
|
|
+
|
|
|
+ } else {
|
|
|
+ getContentProviderClient().applyBatch(operations);
|
|
|
}
|
|
|
+
|
|
|
+ } catch (OperationApplicationException e) {
|
|
|
+ Log_OC.e(TAG, "Exception in batch of operations " + e.getMessage());
|
|
|
+
|
|
|
+ } catch (RemoteException e) {
|
|
|
+ Log_OC.e(TAG, "Exception in batch of operations " + e.getMessage());
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- updateSharedFiles(sharedFiles);
|
|
|
+// // TODO: review if it is needed
|
|
|
+// // Update shared files
|
|
|
+// ArrayList<OCFile> sharedFiles = new ArrayList<OCFile>();
|
|
|
+//
|
|
|
+// for (OCShare share : shares) {
|
|
|
+// // Get the path
|
|
|
+// String path = share.getPath();
|
|
|
+// if (share.isFolder()) {
|
|
|
+// path = path + FileUtils.PATH_SEPARATOR;
|
|
|
+// }
|
|
|
+//
|
|
|
+// // Update OCFile with data from share: ShareByLink, publicLink and
|
|
|
+// OCFile file = getFileByPath(path);
|
|
|
+// if (file != null) {
|
|
|
+// if (share.getShareType().equals(ShareType.PUBLIC_LINK)) {
|
|
|
+// file.setShareViaLink(true);
|
|
|
+// sharedFiles.add(file);
|
|
|
+// }
|
|
|
+// }
|
|
|
+// }
|
|
|
+//
|
|
|
+// // TODO: Review
|
|
|
+// updateSharedFiles(sharedFiles);
|
|
|
}
|
|
|
|
|
|
|
|
|
public void saveSharesInFolder(ArrayList<OCShare> shares, OCFile folder) {
|
|
|
- cleanSharedFilesInFolder(folder);
|
|
|
+ resetShareFlagsInFolder(folder);
|
|
|
ArrayList<ContentProviderOperation> operations = new ArrayList<ContentProviderOperation>();
|
|
|
operations = prepareRemoveSharesInFolder(folder, operations);
|
|
|
|
|
|
+ if (shares != null) {
|
|
|
+ // prepare operations to insert or update files to save in the given folder
|
|
|
+ operations = prepareInsertShares(shares, operations);
|
|
|
+ }
|
|
|
+
|
|
|
+ // apply operations in batch
|
|
|
+ if (operations.size() > 0) {
|
|
|
+ Log_OC.d(TAG, "Sending " + operations.size() + " operations to FileContentProvider");
|
|
|
+ try {
|
|
|
+ if (getContentResolver() != null) {
|
|
|
+ getContentResolver().applyBatch(MainApp.getAuthority(), operations);
|
|
|
+
|
|
|
+ } else {
|
|
|
+ getContentProviderClient().applyBatch(operations);
|
|
|
+ }
|
|
|
+
|
|
|
+ } catch (OperationApplicationException e) {
|
|
|
+ Log_OC.e(TAG, "Exception in batch of operations " + e.getMessage());
|
|
|
+
|
|
|
+ } catch (RemoteException e) {
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Prepare operations to insert or update files to save in the given folder
|
|
|
+ * @param shares List of shares to insert
|
|
|
+ * @param operations List of operations
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private ArrayList<ContentProviderOperation> prepareInsertShares(
|
|
|
+ ArrayList<OCShare> shares, ArrayList<ContentProviderOperation> operations) {
|
|
|
+
|
|
|
if (shares != null) {
|
|
|
// prepare operations to insert or update files to save in the given folder
|
|
|
for (OCShare share : shares) {
|
|
@@ -1340,58 +1456,23 @@ public class FileDataStorageManager {
|
|
|
cv.put(ProviderTableMeta.OCSHARES_EXPIRATION_DATE, share.getExpirationDate());
|
|
|
cv.put(ProviderTableMeta.OCSHARES_TOKEN, share.getToken());
|
|
|
cv.put(
|
|
|
- ProviderTableMeta.OCSHARES_SHARE_WITH_DISPLAY_NAME,
|
|
|
- share.getSharedWithDisplayName()
|
|
|
+ ProviderTableMeta.OCSHARES_SHARE_WITH_DISPLAY_NAME,
|
|
|
+ share.getSharedWithDisplayName()
|
|
|
);
|
|
|
cv.put(ProviderTableMeta.OCSHARES_IS_DIRECTORY, share.isFolder() ? 1 : 0);
|
|
|
cv.put(ProviderTableMeta.OCSHARES_USER_ID, share.getUserId());
|
|
|
cv.put(ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED, share.getIdRemoteShared());
|
|
|
cv.put(ProviderTableMeta.OCSHARES_ACCOUNT_OWNER, mAccount.name);
|
|
|
|
|
|
- /*
|
|
|
- if (shareExists(share.getIdRemoteShared())) {
|
|
|
- // updating an existing share resource
|
|
|
- operations.add(
|
|
|
- ContentProviderOperation.newUpdate(ProviderTableMeta.CONTENT_URI_SHARE).
|
|
|
- withValues(cv).
|
|
|
- withSelection( ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED + "=?",
|
|
|
- new String[] { String.valueOf(share.getIdRemoteShared()) })
|
|
|
- .build());
|
|
|
-
|
|
|
- } else {
|
|
|
- */
|
|
|
// adding a new share resource
|
|
|
operations.add(
|
|
|
ContentProviderOperation.newInsert(ProviderTableMeta.CONTENT_URI_SHARE).
|
|
|
- withValues(cv).
|
|
|
- build()
|
|
|
+ withValues(cv).
|
|
|
+ build()
|
|
|
);
|
|
|
- //}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- // apply operations in batch
|
|
|
- if (operations.size() > 0) {
|
|
|
- @SuppressWarnings("unused")
|
|
|
- ContentProviderResult[] results = null;
|
|
|
- Log_OC.d(TAG, "Sending " + operations.size() + " operations to FileContentProvider");
|
|
|
- try {
|
|
|
- if (getContentResolver() != null) {
|
|
|
- results = getContentResolver().applyBatch(MainApp.getAuthority(), operations);
|
|
|
-
|
|
|
- } else {
|
|
|
- results = getContentProviderClient().applyBatch(operations);
|
|
|
- }
|
|
|
-
|
|
|
- } catch (OperationApplicationException e) {
|
|
|
- Log_OC.e(TAG, "Exception in batch of operations " + e.getMessage());
|
|
|
-
|
|
|
- } catch (RemoteException e) {
|
|
|
- Log_OC.e(TAG, "Exception in batch of operations " + e.getMessage());
|
|
|
- }
|
|
|
- }
|
|
|
- //}
|
|
|
-
|
|
|
+ return operations;
|
|
|
}
|
|
|
|
|
|
private ArrayList<ContentProviderOperation> prepareRemoveSharesInFolder(
|
|
@@ -1403,17 +1484,75 @@ public class FileDataStorageManager {
|
|
|
|
|
|
// TODO Enable when "On Device" is recovered ?
|
|
|
Vector<OCFile> files = getFolderContent(folder /*, false*/);
|
|
|
-
|
|
|
+
|
|
|
for (OCFile file : files) {
|
|
|
whereArgs[0] = file.getRemotePath();
|
|
|
preparedOperations.add(
|
|
|
ContentProviderOperation.newDelete(ProviderTableMeta.CONTENT_URI_SHARE).
|
|
|
- withSelection(where, whereArgs).
|
|
|
- build()
|
|
|
+ withSelection(where, whereArgs).
|
|
|
+ build()
|
|
|
);
|
|
|
}
|
|
|
}
|
|
|
return preparedOperations;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private ArrayList<ContentProviderOperation> prepareRemoveSharesInFile(
|
|
|
+ String filePath, ArrayList<ContentProviderOperation> preparedOperations) {
|
|
|
+
|
|
|
+ String where = ProviderTableMeta.OCSHARES_PATH + "=?" + " AND "
|
|
|
+ + ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + "=?";
|
|
|
+ String[] whereArgs = new String[]{filePath, mAccount.name};
|
|
|
+
|
|
|
+ preparedOperations.add(
|
|
|
+ ContentProviderOperation.newDelete(ProviderTableMeta.CONTENT_URI_SHARE).
|
|
|
+ withSelection(where, whereArgs).
|
|
|
+ build()
|
|
|
+ );
|
|
|
+
|
|
|
+ return preparedOperations;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ public ArrayList<OCShare> getSharesWithForAFile(String filePath, String accountName){
|
|
|
+ // Condition
|
|
|
+ String where = ProviderTableMeta.OCSHARES_PATH + "=?" + " AND "
|
|
|
+ + ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + "=?"+ "AND"
|
|
|
+ + " (" + ProviderTableMeta.OCSHARES_SHARE_TYPE + "=? OR "
|
|
|
+ + ProviderTableMeta.OCSHARES_SHARE_TYPE + "=? ) ";
|
|
|
+ String [] whereArgs = new String[]{ filePath, accountName ,
|
|
|
+ Integer.toString(ShareType.USER.getValue()),
|
|
|
+ Integer.toString(ShareType.GROUP.getValue()) };
|
|
|
+
|
|
|
+ Cursor c = null;
|
|
|
+ if (getContentResolver() != null) {
|
|
|
+ c = getContentResolver().query(
|
|
|
+ ProviderTableMeta.CONTENT_URI_SHARE,
|
|
|
+ null, where, whereArgs, null);
|
|
|
+ } else {
|
|
|
+ try {
|
|
|
+ c = getContentProviderClient().query(
|
|
|
+ ProviderTableMeta.CONTENT_URI_SHARE,
|
|
|
+ null, where, whereArgs, null);
|
|
|
+
|
|
|
+ } catch (RemoteException e) {
|
|
|
+ Log_OC.e(TAG, "Could not get list of shares with: " + e.getMessage());
|
|
|
+ c = null;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ArrayList<OCShare> shares = new ArrayList<OCShare>();
|
|
|
+ OCShare share = null;
|
|
|
+ if (c.moveToFirst()) {
|
|
|
+ do {
|
|
|
+ share = createShareInstance(c);
|
|
|
+ shares.add(share);
|
|
|
+ // }
|
|
|
+ } while (c.moveToNext());
|
|
|
+ }
|
|
|
+ c.close();
|
|
|
+
|
|
|
+ return shares;
|
|
|
}
|
|
|
|
|
|
public void triggerMediaScan(String path) {
|