|
@@ -1,6 +1,6 @@
|
|
/* ownCloud Android client application
|
|
/* ownCloud Android client application
|
|
* Copyright (C) 2012 Bartek Przybylski
|
|
* Copyright (C) 2012 Bartek Przybylski
|
|
- * Copyright (C) 2012-2013 ownCloud Inc.
|
|
|
|
|
|
+ * Copyright (C) 2012-2015 ownCloud Inc.
|
|
*
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2,
|
|
* it under the terms of the GNU General Public License version 2,
|
|
@@ -31,6 +31,7 @@ import java.util.concurrent.ConcurrentMap;
|
|
import android.accounts.Account;
|
|
import android.accounts.Account;
|
|
import android.accounts.AccountManager;
|
|
import android.accounts.AccountManager;
|
|
import android.accounts.AccountsException;
|
|
import android.accounts.AccountsException;
|
|
|
|
+import android.accounts.OnAccountsUpdateListener;
|
|
import android.app.NotificationManager;
|
|
import android.app.NotificationManager;
|
|
import android.app.PendingIntent;
|
|
import android.app.PendingIntent;
|
|
import android.app.Service;
|
|
import android.app.Service;
|
|
@@ -76,8 +77,8 @@ import com.owncloud.android.utils.ErrorMessageAdapter;
|
|
import com.owncloud.android.utils.UriUtils;
|
|
import com.owncloud.android.utils.UriUtils;
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
-public class FileUploader extends Service implements OnDatatransferProgressListener {
|
|
|
|
|
|
+public class FileUploader extends Service
|
|
|
|
+ implements OnDatatransferProgressListener, OnAccountsUpdateListener {
|
|
|
|
|
|
private static final String UPLOAD_FINISH_MESSAGE = "UPLOAD_FINISH";
|
|
private static final String UPLOAD_FINISH_MESSAGE = "UPLOAD_FINISH";
|
|
public static final String EXTRA_UPLOAD_RESULT = "RESULT";
|
|
public static final String EXTRA_UPLOAD_RESULT = "RESULT";
|
|
@@ -124,14 +125,14 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
private static final String MIME_TYPE_PDF = "application/pdf";
|
|
private static final String MIME_TYPE_PDF = "application/pdf";
|
|
private static final String FILE_EXTENSION_PDF = ".pdf";
|
|
private static final String FILE_EXTENSION_PDF = ".pdf";
|
|
|
|
|
|
-
|
|
|
|
|
|
+
|
|
public static String getUploadFinishMessage() {
|
|
public static String getUploadFinishMessage() {
|
|
return FileUploader.class.getName().toString() + UPLOAD_FINISH_MESSAGE;
|
|
return FileUploader.class.getName().toString() + UPLOAD_FINISH_MESSAGE;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Builds a key for mPendingUploads from the account and file to upload
|
|
* Builds a key for mPendingUploads from the account and file to upload
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param account Account where the file to upload is stored
|
|
* @param account Account where the file to upload is stored
|
|
* @param file File to upload
|
|
* @param file File to upload
|
|
*/
|
|
*/
|
|
@@ -145,7 +146,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
|
|
|
|
/**
|
|
/**
|
|
* Checks if an ownCloud server version should support chunked uploads.
|
|
* Checks if an ownCloud server version should support chunked uploads.
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param version OwnCloud version instance corresponding to an ownCloud
|
|
* @param version OwnCloud version instance corresponding to an ownCloud
|
|
* server.
|
|
* server.
|
|
* @return 'True' if the ownCloud server with version supports chunked
|
|
* @return 'True' if the ownCloud server with version supports chunked
|
|
@@ -168,6 +169,10 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
mServiceLooper = thread.getLooper();
|
|
mServiceLooper = thread.getLooper();
|
|
mServiceHandler = new ServiceHandler(mServiceLooper, this);
|
|
mServiceHandler = new ServiceHandler(mServiceLooper, this);
|
|
mBinder = new FileUploaderBinder();
|
|
mBinder = new FileUploaderBinder();
|
|
|
|
+
|
|
|
|
+ // add AccountsUpdatedListener
|
|
|
|
+ AccountManager am = AccountManager.get(getApplicationContext());
|
|
|
|
+ am.addOnAccountsUpdatedListener(this, null, false);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -181,13 +186,18 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
mServiceLooper.quit();
|
|
mServiceLooper.quit();
|
|
mServiceLooper = null;
|
|
mServiceLooper = null;
|
|
mNotificationManager = null;
|
|
mNotificationManager = null;
|
|
|
|
+
|
|
|
|
+ // remove AccountsUpdatedListener
|
|
|
|
+ AccountManager am = AccountManager.get(getApplicationContext());
|
|
|
|
+ am.removeOnAccountsUpdatedListener(this);
|
|
|
|
+
|
|
super.onDestroy();
|
|
super.onDestroy();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
* Entry point to add one or several files to the queue of uploads.
|
|
* Entry point to add one or several files to the queue of uploads.
|
|
- *
|
|
|
|
|
|
+ *
|
|
* New uploads are added calling to startService(), resulting in a call to
|
|
* New uploads are added calling to startService(), resulting in a call to
|
|
* this method. This ensures the service will keep on working although the
|
|
* this method. This ensures the service will keep on working although the
|
|
* caller activity goes away.
|
|
* caller activity goes away.
|
|
@@ -246,7 +256,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
boolean forceOverwrite = intent.getBooleanExtra(KEY_FORCE_OVERWRITE, false);
|
|
boolean forceOverwrite = intent.getBooleanExtra(KEY_FORCE_OVERWRITE, false);
|
|
boolean isInstant = intent.getBooleanExtra(KEY_INSTANT_UPLOAD, false);
|
|
boolean isInstant = intent.getBooleanExtra(KEY_INSTANT_UPLOAD, false);
|
|
int localAction = intent.getIntExtra(KEY_LOCAL_BEHAVIOUR, LOCAL_BEHAVIOUR_COPY);
|
|
int localAction = intent.getIntExtra(KEY_LOCAL_BEHAVIOUR, LOCAL_BEHAVIOUR_COPY);
|
|
-
|
|
|
|
|
|
+
|
|
if (intent.hasExtra(KEY_FILE) && files == null) {
|
|
if (intent.hasExtra(KEY_FILE) && files == null) {
|
|
Log_OC.e(TAG, "Incorrect array for OCFiles provided in upload intent");
|
|
Log_OC.e(TAG, "Incorrect array for OCFiles provided in upload intent");
|
|
return Service.START_NOT_STICKY;
|
|
return Service.START_NOT_STICKY;
|
|
@@ -279,7 +289,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
AccountManager aMgr = AccountManager.get(this);
|
|
AccountManager aMgr = AccountManager.get(this);
|
|
String version = aMgr.getUserData(account, Constants.KEY_OC_VERSION);
|
|
String version = aMgr.getUserData(account, Constants.KEY_OC_VERSION);
|
|
OwnCloudVersion ocv = new OwnCloudVersion(version);
|
|
OwnCloudVersion ocv = new OwnCloudVersion(version);
|
|
-
|
|
|
|
|
|
+
|
|
boolean chunked = FileUploader.chunkedUploadIsSupported(ocv);
|
|
boolean chunked = FileUploader.chunkedUploadIsSupported(ocv);
|
|
AbstractList<String> requestedUploads = new Vector<String>();
|
|
AbstractList<String> requestedUploads = new Vector<String>();
|
|
String uploadKey = null;
|
|
String uploadKey = null;
|
|
@@ -287,7 +297,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
try {
|
|
try {
|
|
for (int i = 0; i < files.length; i++) {
|
|
for (int i = 0; i < files.length; i++) {
|
|
uploadKey = buildRemoteName(account, files[i].getRemotePath());
|
|
uploadKey = buildRemoteName(account, files[i].getRemotePath());
|
|
- newUpload = new UploadFileOperation(account, files[i], chunked, isInstant, forceOverwrite, localAction,
|
|
|
|
|
|
+ newUpload = new UploadFileOperation(account, files[i], chunked, isInstant, forceOverwrite, localAction,
|
|
getApplicationContext());
|
|
getApplicationContext());
|
|
if (isInstant) {
|
|
if (isInstant) {
|
|
newUpload.setRemoteFolderToBeCreated();
|
|
newUpload.setRemoteFolderToBeCreated();
|
|
@@ -326,7 +336,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
/**
|
|
/**
|
|
* Provides a binder object that clients can use to perform operations on
|
|
* Provides a binder object that clients can use to perform operations on
|
|
* the queue of uploads, excepting the addition of new files.
|
|
* the queue of uploads, excepting the addition of new files.
|
|
- *
|
|
|
|
|
|
+ *
|
|
* Implemented to perform cancellation, pause and resume of existing
|
|
* Implemented to perform cancellation, pause and resume of existing
|
|
* uploads.
|
|
* uploads.
|
|
*/
|
|
*/
|
|
@@ -334,7 +344,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
public IBinder onBind(Intent arg0) {
|
|
public IBinder onBind(Intent arg0) {
|
|
return mBinder;
|
|
return mBinder;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Called when ALL the bound clients were onbound.
|
|
* Called when ALL the bound clients were onbound.
|
|
*/
|
|
*/
|
|
@@ -343,24 +353,33 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
((FileUploaderBinder)mBinder).clearListeners();
|
|
((FileUploaderBinder)mBinder).clearListeners();
|
|
return false; // not accepting rebinding (default behaviour)
|
|
return false; // not accepting rebinding (default behaviour)
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void onAccountsUpdated(Account[] accounts) {
|
|
|
|
+ // Review current upload, and cancel it if its account doen't exist
|
|
|
|
+ if (mCurrentUpload != null &&
|
|
|
|
+ !AccountUtils.exists(mCurrentUpload.getAccount(), getApplicationContext())) {
|
|
|
|
+ mCurrentUpload.cancel();
|
|
|
|
+ }
|
|
|
|
+ // The rest of uploads are cancelled when they try to start
|
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
/**
|
|
* Binder to let client components to perform operations on the queue of
|
|
* Binder to let client components to perform operations on the queue of
|
|
* uploads.
|
|
* uploads.
|
|
- *
|
|
|
|
|
|
+ *
|
|
* It provides by itself the available operations.
|
|
* It provides by itself the available operations.
|
|
*/
|
|
*/
|
|
public class FileUploaderBinder extends Binder implements OnDatatransferProgressListener {
|
|
public class FileUploaderBinder extends Binder implements OnDatatransferProgressListener {
|
|
-
|
|
|
|
- /**
|
|
|
|
|
|
+
|
|
|
|
+ /**
|
|
* Map of listeners that will be reported about progress of uploads from a {@link FileUploaderBinder} instance
|
|
* Map of listeners that will be reported about progress of uploads from a {@link FileUploaderBinder} instance
|
|
*/
|
|
*/
|
|
private Map<String, OnDatatransferProgressListener> mBoundListeners = new HashMap<String, OnDatatransferProgressListener>();
|
|
private Map<String, OnDatatransferProgressListener> mBoundListeners = new HashMap<String, OnDatatransferProgressListener>();
|
|
-
|
|
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Cancels a pending or current upload of a remote file.
|
|
* Cancels a pending or current upload of a remote file.
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param account Owncloud account where the remote file will be stored.
|
|
* @param account Owncloud account where the remote file will be stored.
|
|
* @param file A file in the queue of pending uploads
|
|
* @param file A file in the queue of pending uploads
|
|
*/
|
|
*/
|
|
@@ -373,22 +392,35 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
upload.cancel();
|
|
upload.cancel();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Cancels a pending or current upload for an account
|
|
|
|
+ *
|
|
|
|
+ * @param account Owncloud accountName where the remote file will be stored.
|
|
|
|
+ */
|
|
|
|
+ public void cancel(Account account) {
|
|
|
|
+ Log_OC.d(TAG, "Account= " + account.name);
|
|
|
|
+
|
|
|
|
+ if (mCurrentUpload != null) {
|
|
|
|
+ Log_OC.d(TAG, "Current Upload Account= " + mCurrentUpload.getAccount().name);
|
|
|
|
+ if (mCurrentUpload.getAccount().name.equals(account.name)) {
|
|
|
|
+ mCurrentUpload.cancel();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // Cancel pending uploads
|
|
|
|
+ cancelUploadForAccount(account.name);
|
|
|
|
+ }
|
|
|
|
+
|
|
public void clearListeners() {
|
|
public void clearListeners() {
|
|
mBoundListeners.clear();
|
|
mBoundListeners.clear();
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* Returns True when the file described by 'file' is being uploaded to
|
|
* Returns True when the file described by 'file' is being uploaded to
|
|
* the ownCloud account 'account' or waiting for it
|
|
* the ownCloud account 'account' or waiting for it
|
|
- *
|
|
|
|
|
|
+ *
|
|
* If 'file' is a directory, returns 'true' if some of its descendant files is uploading or waiting to upload.
|
|
* If 'file' is a directory, returns 'true' if some of its descendant files is uploading or waiting to upload.
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param account ownCloud account where the remote file will be stored.
|
|
* @param account ownCloud account where the remote file will be stored.
|
|
* @param file A file that could be in the queue of pending uploads
|
|
* @param file A file that could be in the queue of pending uploads
|
|
*/
|
|
*/
|
|
@@ -414,7 +446,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
|
|
|
|
/**
|
|
/**
|
|
* Adds a listener interested in the progress of the upload for a concrete file.
|
|
* Adds a listener interested in the progress of the upload for a concrete file.
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param listener Object to notify about progress of transfer.
|
|
* @param listener Object to notify about progress of transfer.
|
|
* @param account ownCloud account holding the file of interest.
|
|
* @param account ownCloud account holding the file of interest.
|
|
* @param file {@link OCFile} of interest for listener.
|
|
* @param file {@link OCFile} of interest for listener.
|
|
@@ -424,12 +456,12 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
String targetKey = buildRemoteName(account, file);
|
|
String targetKey = buildRemoteName(account, file);
|
|
mBoundListeners.put(targetKey, listener);
|
|
mBoundListeners.put(targetKey, listener);
|
|
}
|
|
}
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Removes a listener interested in the progress of the upload for a concrete file.
|
|
* Removes a listener interested in the progress of the upload for a concrete file.
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param listener Object to notify about progress of transfer.
|
|
* @param listener Object to notify about progress of transfer.
|
|
* @param account ownCloud account holding the file of interest.
|
|
* @param account ownCloud account holding the file of interest.
|
|
* @param file {@link OCFile} of interest for listener.
|
|
* @param file {@link OCFile} of interest for listener.
|
|
@@ -445,20 +477,30 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public void onTransferProgress(long progressRate, long totalTransferredSoFar, long totalToTransfer,
|
|
public void onTransferProgress(long progressRate, long totalTransferredSoFar, long totalToTransfer,
|
|
- String fileName) {
|
|
|
|
|
|
+ String fileName) {
|
|
String key = buildRemoteName(mCurrentUpload.getAccount(), mCurrentUpload.getFile());
|
|
String key = buildRemoteName(mCurrentUpload.getAccount(), mCurrentUpload.getFile());
|
|
OnDatatransferProgressListener boundListener = mBoundListeners.get(key);
|
|
OnDatatransferProgressListener boundListener = mBoundListeners.get(key);
|
|
if (boundListener != null) {
|
|
if (boundListener != null) {
|
|
boundListener.onTransferProgress(progressRate, totalTransferredSoFar, totalToTransfer, fileName);
|
|
boundListener.onTransferProgress(progressRate, totalTransferredSoFar, totalToTransfer, fileName);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Review uploads and cancel it if its account doesn't exist
|
|
|
|
+ */
|
|
|
|
+ public void checkAccountOfCurrentUpload() {
|
|
|
|
+ if (mCurrentUpload != null &&
|
|
|
|
+ !AccountUtils.exists(mCurrentUpload.getAccount(), getApplicationContext())) {
|
|
|
|
+ mCurrentUpload.cancel();
|
|
|
|
+ }
|
|
|
|
+ // The rest of uploads are cancelled when they try to start
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
* Upload worker. Performs the pending uploads in the order they were
|
|
* Upload worker. Performs the pending uploads in the order they were
|
|
* requested.
|
|
* requested.
|
|
- *
|
|
|
|
|
|
+ *
|
|
* Created with the Looper of a new thread, started in
|
|
* Created with the Looper of a new thread, started in
|
|
* {@link FileUploader#onCreate()}.
|
|
* {@link FileUploader#onCreate()}.
|
|
*/
|
|
*/
|
|
@@ -491,7 +533,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
|
|
|
|
/**
|
|
/**
|
|
* Core upload method: sends the file(s) to upload
|
|
* Core upload method: sends the file(s) to upload
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param uploadKey Key to access the upload to perform, contained in
|
|
* @param uploadKey Key to access the upload to perform, contained in
|
|
* mPendingUploads
|
|
* mPendingUploads
|
|
*/
|
|
*/
|
|
@@ -503,63 +545,73 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
|
|
|
|
if (mCurrentUpload != null) {
|
|
if (mCurrentUpload != null) {
|
|
|
|
|
|
- notifyUploadStart(mCurrentUpload);
|
|
|
|
|
|
+ // Detect if the account exists
|
|
|
|
+ if (AccountUtils.exists(mCurrentUpload.getAccount(), getApplicationContext())) {
|
|
|
|
+ Log_OC.d(TAG, "Account " + mCurrentUpload.getAccount().name + " exists");
|
|
|
|
|
|
- RemoteOperationResult uploadResult = null, grantResult = null;
|
|
|
|
-
|
|
|
|
- try {
|
|
|
|
- /// prepare client object to send requests to the ownCloud server
|
|
|
|
- if (mUploadClient == null || !mLastAccount.equals(mCurrentUpload.getAccount())) {
|
|
|
|
- mLastAccount = mCurrentUpload.getAccount();
|
|
|
|
- mStorageManager =
|
|
|
|
- new FileDataStorageManager(mLastAccount, getContentResolver());
|
|
|
|
- OwnCloudAccount ocAccount = new OwnCloudAccount(mLastAccount, this);
|
|
|
|
- mUploadClient = OwnCloudClientManagerFactory.getDefaultSingleton().
|
|
|
|
- getClientFor(ocAccount, this);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /// check the existence of the parent folder for the file to upload
|
|
|
|
- String remoteParentPath = new File(mCurrentUpload.getRemotePath()).getParent();
|
|
|
|
- remoteParentPath = remoteParentPath.endsWith(OCFile.PATH_SEPARATOR) ? remoteParentPath : remoteParentPath + OCFile.PATH_SEPARATOR;
|
|
|
|
- grantResult = grantFolderExistence(remoteParentPath);
|
|
|
|
-
|
|
|
|
- /// perform the upload
|
|
|
|
- if (grantResult.isSuccess()) {
|
|
|
|
- OCFile parent = mStorageManager.getFileByPath(remoteParentPath);
|
|
|
|
- mCurrentUpload.getFile().setParentId(parent.getFileId());
|
|
|
|
- uploadResult = mCurrentUpload.execute(mUploadClient);
|
|
|
|
- if (uploadResult.isSuccess()) {
|
|
|
|
- saveUploadedFile();
|
|
|
|
|
|
+ notifyUploadStart(mCurrentUpload);
|
|
|
|
+
|
|
|
|
+ RemoteOperationResult uploadResult = null, grantResult = null;
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ /// prepare client object to send requests to the ownCloud server
|
|
|
|
+ if (mUploadClient == null || !mLastAccount.equals(mCurrentUpload.getAccount())) {
|
|
|
|
+ mLastAccount = mCurrentUpload.getAccount();
|
|
|
|
+ mStorageManager =
|
|
|
|
+ new FileDataStorageManager(mLastAccount, getContentResolver());
|
|
|
|
+ OwnCloudAccount ocAccount = new OwnCloudAccount(mLastAccount, this);
|
|
|
|
+ mUploadClient = OwnCloudClientManagerFactory.getDefaultSingleton().
|
|
|
|
+ getClientFor(ocAccount, this);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// check the existence of the parent folder for the file to upload
|
|
|
|
+ String remoteParentPath = new File(mCurrentUpload.getRemotePath()).getParent();
|
|
|
|
+ remoteParentPath = remoteParentPath.endsWith(OCFile.PATH_SEPARATOR) ?
|
|
|
|
+ remoteParentPath : remoteParentPath + OCFile.PATH_SEPARATOR;
|
|
|
|
+ grantResult = grantFolderExistence(remoteParentPath);
|
|
|
|
+
|
|
|
|
+ /// perform the upload
|
|
|
|
+ if (grantResult.isSuccess()) {
|
|
|
|
+ OCFile parent = mStorageManager.getFileByPath(remoteParentPath);
|
|
|
|
+ mCurrentUpload.getFile().setParentId(parent.getFileId());
|
|
|
|
+ uploadResult = mCurrentUpload.execute(mUploadClient);
|
|
|
|
+ if (uploadResult.isSuccess()) {
|
|
|
|
+ saveUploadedFile();
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ uploadResult = grantResult;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ } catch (AccountsException e) {
|
|
|
|
+ Log_OC.e(TAG, "Error while trying to get autorization for " + mLastAccount.name, e);
|
|
|
|
+ uploadResult = new RemoteOperationResult(e);
|
|
|
|
+
|
|
|
|
+ } catch (IOException e) {
|
|
|
|
+ Log_OC.e(TAG, "Error while trying to get autorization for " + mLastAccount.name, e);
|
|
|
|
+ uploadResult = new RemoteOperationResult(e);
|
|
|
|
+
|
|
|
|
+ } finally {
|
|
|
|
+ synchronized (mPendingUploads) {
|
|
|
|
+ mPendingUploads.remove(uploadKey);
|
|
|
|
+ Log_OC.i(TAG, "Remove CurrentUploadItem from pending upload Item Map.");
|
|
|
|
+ }
|
|
|
|
+ if (uploadResult.isException()) {
|
|
|
|
+ // enforce the creation of a new client object for next uploads; this grant that a new socket will
|
|
|
|
+ // be created in the future if the current exception is due to an abrupt lose of network connection
|
|
|
|
+ mUploadClient = null;
|
|
}
|
|
}
|
|
- } else {
|
|
|
|
- uploadResult = grantResult;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- } catch (AccountsException e) {
|
|
|
|
- Log_OC.e(TAG, "Error while trying to get autorization for " + mLastAccount.name, e);
|
|
|
|
- uploadResult = new RemoteOperationResult(e);
|
|
|
|
-
|
|
|
|
- } catch (IOException e) {
|
|
|
|
- Log_OC.e(TAG, "Error while trying to get autorization for " + mLastAccount.name, e);
|
|
|
|
- uploadResult = new RemoteOperationResult(e);
|
|
|
|
-
|
|
|
|
- } finally {
|
|
|
|
- synchronized (mPendingUploads) {
|
|
|
|
- mPendingUploads.remove(uploadKey);
|
|
|
|
- Log_OC.i(TAG, "Remove CurrentUploadItem from pending upload Item Map.");
|
|
|
|
- }
|
|
|
|
- if (uploadResult.isException()) {
|
|
|
|
- // enforce the creation of a new client object for next uploads; this grant that a new socket will
|
|
|
|
- // be created in the future if the current exception is due to an abrupt lose of network connection
|
|
|
|
- mUploadClient = null;
|
|
|
|
}
|
|
}
|
|
- }
|
|
|
|
-
|
|
|
|
- /// notify result
|
|
|
|
-
|
|
|
|
- notifyUploadResult(uploadResult, mCurrentUpload);
|
|
|
|
- sendFinalBroadcast(mCurrentUpload, uploadResult);
|
|
|
|
|
|
|
|
|
|
+ /// notify result
|
|
|
|
+ notifyUploadResult(uploadResult, mCurrentUpload);
|
|
|
|
+ sendFinalBroadcast(mCurrentUpload, uploadResult);
|
|
|
|
+
|
|
|
|
+ } else {
|
|
|
|
+ // Cancel the transfer
|
|
|
|
+ Log_OC.d(TAG, "Account " + mCurrentUpload.getAccount().toString() + " doesn't exist");
|
|
|
|
+ cancelUploadForAccount(mCurrentUpload.getAccount().name);
|
|
|
|
+
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
@@ -567,17 +619,18 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
/**
|
|
/**
|
|
* Checks the existence of the folder where the current file will be uploaded both in the remote server
|
|
* Checks the existence of the folder where the current file will be uploaded both in the remote server
|
|
* and in the local database.
|
|
* and in the local database.
|
|
- *
|
|
|
|
|
|
+ *
|
|
* If the upload is set to enforce the creation of the folder, the method tries to create it both remote
|
|
* If the upload is set to enforce the creation of the folder, the method tries to create it both remote
|
|
* and locally.
|
|
* and locally.
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param pathToGrant Full remote path whose existence will be granted.
|
|
* @param pathToGrant Full remote path whose existence will be granted.
|
|
* @return An {@link OCFile} instance corresponding to the folder where the file will be uploaded.
|
|
* @return An {@link OCFile} instance corresponding to the folder where the file will be uploaded.
|
|
*/
|
|
*/
|
|
private RemoteOperationResult grantFolderExistence(String pathToGrant) {
|
|
private RemoteOperationResult grantFolderExistence(String pathToGrant) {
|
|
RemoteOperation operation = new ExistenceCheckRemoteOperation(pathToGrant, this, false);
|
|
RemoteOperation operation = new ExistenceCheckRemoteOperation(pathToGrant, this, false);
|
|
RemoteOperationResult result = operation.execute(mUploadClient);
|
|
RemoteOperationResult result = operation.execute(mUploadClient);
|
|
- if (!result.isSuccess() && result.getCode() == ResultCode.FILE_NOT_FOUND && mCurrentUpload.isRemoteFolderToBeCreated()) {
|
|
|
|
|
|
+ if (!result.isSuccess() && result.getCode() == ResultCode.FILE_NOT_FOUND &&
|
|
|
|
+ mCurrentUpload.isRemoteFolderToBeCreated()) {
|
|
SyncOperation syncOp = new CreateFolderOperation( pathToGrant, true);
|
|
SyncOperation syncOp = new CreateFolderOperation( pathToGrant, true);
|
|
result = syncOp.execute(mUploadClient, mStorageManager);
|
|
result = syncOp.execute(mUploadClient, mStorageManager);
|
|
}
|
|
}
|
|
@@ -595,10 +648,11 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
|
|
+
|
|
private OCFile createLocalFolder(String remotePath) {
|
|
private OCFile createLocalFolder(String remotePath) {
|
|
String parentPath = new File(remotePath).getParent();
|
|
String parentPath = new File(remotePath).getParent();
|
|
- parentPath = parentPath.endsWith(OCFile.PATH_SEPARATOR) ? parentPath : parentPath + OCFile.PATH_SEPARATOR;
|
|
|
|
|
|
+ parentPath = parentPath.endsWith(OCFile.PATH_SEPARATOR) ?
|
|
|
|
+ parentPath : parentPath + OCFile.PATH_SEPARATOR;
|
|
OCFile parent = mStorageManager.getFileByPath(parentPath);
|
|
OCFile parent = mStorageManager.getFileByPath(parentPath);
|
|
if (parent == null) {
|
|
if (parent == null) {
|
|
parent = createLocalFolder(parentPath);
|
|
parent = createLocalFolder(parentPath);
|
|
@@ -612,15 +666,15 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
}
|
|
}
|
|
return null;
|
|
return null;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
|
|
|
|
/**
|
|
/**
|
|
* Saves a OC File after a successful upload.
|
|
* Saves a OC File after a successful upload.
|
|
- *
|
|
|
|
|
|
+ *
|
|
* A PROPFIND is necessary to keep the props in the local database
|
|
* A PROPFIND is necessary to keep the props in the local database
|
|
* synchronized with the server, specially the modification time and Etag
|
|
* synchronized with the server, specially the modification time and Etag
|
|
* (where available)
|
|
* (where available)
|
|
- *
|
|
|
|
|
|
+ *
|
|
* TODO refactor this ugly thing
|
|
* TODO refactor this ugly thing
|
|
*/
|
|
*/
|
|
private void saveUploadedFile() {
|
|
private void saveUploadedFile() {
|
|
@@ -639,7 +693,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
updateOCFile(file, (RemoteFile) result.getData().get(0));
|
|
updateOCFile(file, (RemoteFile) result.getData().get(0));
|
|
file.setLastSyncDateForProperties(syncDate);
|
|
file.setLastSyncDateForProperties(syncDate);
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
// / maybe this would be better as part of UploadFileOperation... or
|
|
// / maybe this would be better as part of UploadFileOperation... or
|
|
// maybe all this method
|
|
// maybe all this method
|
|
if (mCurrentUpload.wasRenamed()) {
|
|
if (mCurrentUpload.wasRenamed()) {
|
|
@@ -649,8 +703,8 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
mStorageManager.saveFile(oldFile);
|
|
mStorageManager.saveFile(oldFile);
|
|
|
|
|
|
} // else: it was just an automatic renaming due to a name
|
|
} // else: it was just an automatic renaming due to a name
|
|
- // coincidence; nothing else is needed, the storagePath is right
|
|
|
|
- // in the instance returned by mCurrentUpload.getFile()
|
|
|
|
|
|
+ // coincidence; nothing else is needed, the storagePath is right
|
|
|
|
+ // in the instance returned by mCurrentUpload.getFile()
|
|
}
|
|
}
|
|
file.setNeedsUpdateThumbnail(true);
|
|
file.setNeedsUpdateThumbnail(true);
|
|
mStorageManager.saveFile(file);
|
|
mStorageManager.saveFile(file);
|
|
@@ -667,7 +721,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
}
|
|
}
|
|
|
|
|
|
private OCFile obtainNewOCFileToUpload(String remotePath, String localPath, String mimeType,
|
|
private OCFile obtainNewOCFileToUpload(String remotePath, String localPath, String mimeType,
|
|
- FileDataStorageManager storageManager) {
|
|
|
|
|
|
+ FileDataStorageManager storageManager) {
|
|
|
|
|
|
// MIME type
|
|
// MIME type
|
|
if (mimeType == null || mimeType.length() <= 0) {
|
|
if (mimeType == null || mimeType.length() <= 0) {
|
|
@@ -697,7 +751,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
newFile.setFileLength(localFile.length());
|
|
newFile.setFileLength(localFile.length());
|
|
newFile.setLastSyncDateForData(localFile.lastModified());
|
|
newFile.setLastSyncDateForData(localFile.lastModified());
|
|
} // don't worry about not assigning size, the problems with localPath
|
|
} // don't worry about not assigning size, the problems with localPath
|
|
- // are checked when the UploadFileOperation instance is created
|
|
|
|
|
|
+ // are checked when the UploadFileOperation instance is created
|
|
|
|
|
|
|
|
|
|
newFile.setMimetype(mimeType);
|
|
newFile.setMimetype(mimeType);
|
|
@@ -707,13 +761,13 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
|
|
|
|
/**
|
|
/**
|
|
* Creates a status notification to show the upload progress
|
|
* Creates a status notification to show the upload progress
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param upload Upload operation starting.
|
|
* @param upload Upload operation starting.
|
|
*/
|
|
*/
|
|
private void notifyUploadStart(UploadFileOperation upload) {
|
|
private void notifyUploadStart(UploadFileOperation upload) {
|
|
// / create status notification with a progress bar
|
|
// / create status notification with a progress bar
|
|
mLastPercent = 0;
|
|
mLastPercent = 0;
|
|
- mNotificationBuilder =
|
|
|
|
|
|
+ mNotificationBuilder =
|
|
NotificationBuilderWithProgressBar.newNotificationBuilderWithProgressBar(this);
|
|
NotificationBuilderWithProgressBar.newNotificationBuilderWithProgressBar(this);
|
|
mNotificationBuilder
|
|
mNotificationBuilder
|
|
.setOngoing(true)
|
|
.setOngoing(true)
|
|
@@ -730,7 +784,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
showDetailsIntent.putExtra(FileActivity.EXTRA_ACCOUNT, upload.getAccount());
|
|
showDetailsIntent.putExtra(FileActivity.EXTRA_ACCOUNT, upload.getAccount());
|
|
showDetailsIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
|
showDetailsIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
|
mNotificationBuilder.setContentIntent(PendingIntent.getActivity(
|
|
mNotificationBuilder.setContentIntent(PendingIntent.getActivity(
|
|
- this, (int) System.currentTimeMillis(), showDetailsIntent, 0
|
|
|
|
|
|
+ this, (int) System.currentTimeMillis(), showDetailsIntent, 0
|
|
));
|
|
));
|
|
|
|
|
|
mNotificationManager.notify(R.string.uploader_upload_in_progress_ticker, mNotificationBuilder.build());
|
|
mNotificationManager.notify(R.string.uploader_upload_in_progress_ticker, mNotificationBuilder.build());
|
|
@@ -754,7 +808,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
|
|
|
|
/**
|
|
/**
|
|
* Updates the status notification with the result of an upload operation.
|
|
* Updates the status notification with the result of an upload operation.
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param uploadResult Result of the upload operation.
|
|
* @param uploadResult Result of the upload operation.
|
|
* @param upload Finished upload operation
|
|
* @param upload Finished upload operation
|
|
*/
|
|
*/
|
|
@@ -763,33 +817,33 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
Log_OC.d(TAG, "NotifyUploadResult with resultCode: " + uploadResult.getCode());
|
|
Log_OC.d(TAG, "NotifyUploadResult with resultCode: " + uploadResult.getCode());
|
|
// / cancelled operation or success -> silent removal of progress notification
|
|
// / cancelled operation or success -> silent removal of progress notification
|
|
mNotificationManager.cancel(R.string.uploader_upload_in_progress_ticker);
|
|
mNotificationManager.cancel(R.string.uploader_upload_in_progress_ticker);
|
|
-
|
|
|
|
|
|
+
|
|
// Show the result: success or fail notification
|
|
// Show the result: success or fail notification
|
|
if (!uploadResult.isCancelled()) {
|
|
if (!uploadResult.isCancelled()) {
|
|
- int tickerId = (uploadResult.isSuccess()) ? R.string.uploader_upload_succeeded_ticker :
|
|
|
|
- R.string.uploader_upload_failed_ticker;
|
|
|
|
-
|
|
|
|
|
|
+ int tickerId = (uploadResult.isSuccess()) ? R.string.uploader_upload_succeeded_ticker :
|
|
|
|
+ R.string.uploader_upload_failed_ticker;
|
|
|
|
+
|
|
String content = null;
|
|
String content = null;
|
|
|
|
|
|
// check credentials error
|
|
// check credentials error
|
|
boolean needsToUpdateCredentials = (
|
|
boolean needsToUpdateCredentials = (
|
|
- uploadResult.getCode() == ResultCode.UNAUTHORIZED ||
|
|
|
|
- uploadResult.isIdPRedirection()
|
|
|
|
|
|
+ uploadResult.getCode() == ResultCode.UNAUTHORIZED ||
|
|
|
|
+ uploadResult.isIdPRedirection()
|
|
);
|
|
);
|
|
- tickerId = (needsToUpdateCredentials) ?
|
|
|
|
|
|
+ tickerId = (needsToUpdateCredentials) ?
|
|
R.string.uploader_upload_failed_credentials_error : tickerId;
|
|
R.string.uploader_upload_failed_credentials_error : tickerId;
|
|
|
|
|
|
mNotificationBuilder
|
|
mNotificationBuilder
|
|
- .setTicker(getString(tickerId))
|
|
|
|
- .setContentTitle(getString(tickerId))
|
|
|
|
- .setAutoCancel(true)
|
|
|
|
- .setOngoing(false)
|
|
|
|
- .setProgress(0, 0, false);
|
|
|
|
-
|
|
|
|
|
|
+ .setTicker(getString(tickerId))
|
|
|
|
+ .setContentTitle(getString(tickerId))
|
|
|
|
+ .setAutoCancel(true)
|
|
|
|
+ .setOngoing(false)
|
|
|
|
+ .setProgress(0, 0, false);
|
|
|
|
+
|
|
content = ErrorMessageAdapter.getErrorCauseMessage(
|
|
content = ErrorMessageAdapter.getErrorCauseMessage(
|
|
uploadResult, upload, getResources()
|
|
uploadResult, upload, getResources()
|
|
);
|
|
);
|
|
-
|
|
|
|
|
|
+
|
|
if (needsToUpdateCredentials) {
|
|
if (needsToUpdateCredentials) {
|
|
// let the user update credentials with one click
|
|
// let the user update credentials with one click
|
|
Intent updateAccountCredentials = new Intent(this, AuthenticatorActivity.class);
|
|
Intent updateAccountCredentials = new Intent(this, AuthenticatorActivity.class);
|
|
@@ -797,24 +851,24 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
AuthenticatorActivity.EXTRA_ACCOUNT, upload.getAccount()
|
|
AuthenticatorActivity.EXTRA_ACCOUNT, upload.getAccount()
|
|
);
|
|
);
|
|
updateAccountCredentials.putExtra(
|
|
updateAccountCredentials.putExtra(
|
|
- AuthenticatorActivity.EXTRA_ACTION,
|
|
|
|
|
|
+ AuthenticatorActivity.EXTRA_ACTION,
|
|
AuthenticatorActivity.ACTION_UPDATE_EXPIRED_TOKEN
|
|
AuthenticatorActivity.ACTION_UPDATE_EXPIRED_TOKEN
|
|
);
|
|
);
|
|
updateAccountCredentials.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
updateAccountCredentials.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
updateAccountCredentials.addFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
|
|
updateAccountCredentials.addFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
|
|
updateAccountCredentials.addFlags(Intent.FLAG_FROM_BACKGROUND);
|
|
updateAccountCredentials.addFlags(Intent.FLAG_FROM_BACKGROUND);
|
|
mNotificationBuilder.setContentIntent(PendingIntent.getActivity(
|
|
mNotificationBuilder.setContentIntent(PendingIntent.getActivity(
|
|
- this,
|
|
|
|
- (int) System.currentTimeMillis(),
|
|
|
|
- updateAccountCredentials,
|
|
|
|
- PendingIntent.FLAG_ONE_SHOT
|
|
|
|
|
|
+ this,
|
|
|
|
+ (int) System.currentTimeMillis(),
|
|
|
|
+ updateAccountCredentials,
|
|
|
|
+ PendingIntent.FLAG_ONE_SHOT
|
|
));
|
|
));
|
|
-
|
|
|
|
- mUploadClient = null;
|
|
|
|
- // grant that future retries on the same account will get the fresh credentials
|
|
|
|
|
|
+
|
|
|
|
+ mUploadClient = null;
|
|
|
|
+ // grant that future retries on the same account will get the fresh credentials
|
|
} else {
|
|
} else {
|
|
mNotificationBuilder.setContentText(content);
|
|
mNotificationBuilder.setContentText(content);
|
|
-
|
|
|
|
|
|
+
|
|
if (upload.isInstant()) {
|
|
if (upload.isInstant()) {
|
|
DbHandler db = null;
|
|
DbHandler db = null;
|
|
try {
|
|
try {
|
|
@@ -825,12 +879,12 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
if (uploadResult.getCode() == ResultCode.QUOTA_EXCEEDED) {
|
|
if (uploadResult.getCode() == ResultCode.QUOTA_EXCEEDED) {
|
|
//message = getString(R.string.failed_upload_quota_exceeded_text);
|
|
//message = getString(R.string.failed_upload_quota_exceeded_text);
|
|
if (db.updateFileState(
|
|
if (db.updateFileState(
|
|
- upload.getOriginalStoragePath(),
|
|
|
|
|
|
+ upload.getOriginalStoragePath(),
|
|
DbHandler.UPLOAD_STATUS_UPLOAD_FAILED,
|
|
DbHandler.UPLOAD_STATUS_UPLOAD_FAILED,
|
|
message) == 0) {
|
|
message) == 0) {
|
|
db.putFileForLater(
|
|
db.putFileForLater(
|
|
- upload.getOriginalStoragePath(),
|
|
|
|
- upload.getAccount().name,
|
|
|
|
|
|
+ upload.getOriginalStoragePath(),
|
|
|
|
+ upload.getAccount().name,
|
|
message
|
|
message
|
|
);
|
|
);
|
|
}
|
|
}
|
|
@@ -842,22 +896,22 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
mNotificationBuilder.setContentText(content);
|
|
mNotificationBuilder.setContentText(content);
|
|
mNotificationManager.notify(tickerId, mNotificationBuilder.build());
|
|
mNotificationManager.notify(tickerId, mNotificationBuilder.build());
|
|
-
|
|
|
|
|
|
+
|
|
if (uploadResult.isSuccess()) {
|
|
if (uploadResult.isSuccess()) {
|
|
-
|
|
|
|
|
|
+
|
|
DbHandler db = new DbHandler(this.getBaseContext());
|
|
DbHandler db = new DbHandler(this.getBaseContext());
|
|
db.removeIUPendingFile(mCurrentUpload.getOriginalStoragePath());
|
|
db.removeIUPendingFile(mCurrentUpload.getOriginalStoragePath());
|
|
db.close();
|
|
db.close();
|
|
|
|
|
|
// remove success notification, with a delay of 2 seconds
|
|
// remove success notification, with a delay of 2 seconds
|
|
NotificationDelayer.cancelWithDelay(
|
|
NotificationDelayer.cancelWithDelay(
|
|
- mNotificationManager,
|
|
|
|
- R.string.uploader_upload_succeeded_ticker,
|
|
|
|
|
|
+ mNotificationManager,
|
|
|
|
+ R.string.uploader_upload_succeeded_ticker,
|
|
2000);
|
|
2000);
|
|
-
|
|
|
|
|
|
+
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -865,17 +919,17 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
/**
|
|
/**
|
|
* Sends a broadcast in order to the interested activities can update their
|
|
* Sends a broadcast in order to the interested activities can update their
|
|
* view
|
|
* view
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param upload Finished upload operation
|
|
* @param upload Finished upload operation
|
|
* @param uploadResult Result of the upload operation
|
|
* @param uploadResult Result of the upload operation
|
|
*/
|
|
*/
|
|
private void sendFinalBroadcast(UploadFileOperation upload, RemoteOperationResult uploadResult) {
|
|
private void sendFinalBroadcast(UploadFileOperation upload, RemoteOperationResult uploadResult) {
|
|
Intent end = new Intent(getUploadFinishMessage());
|
|
Intent end = new Intent(getUploadFinishMessage());
|
|
end.putExtra(EXTRA_REMOTE_PATH, upload.getRemotePath()); // real remote
|
|
end.putExtra(EXTRA_REMOTE_PATH, upload.getRemotePath()); // real remote
|
|
- // path, after
|
|
|
|
- // possible
|
|
|
|
- // automatic
|
|
|
|
- // renaming
|
|
|
|
|
|
+ // path, after
|
|
|
|
+ // possible
|
|
|
|
+ // automatic
|
|
|
|
+ // renaming
|
|
if (upload.wasRenamed()) {
|
|
if (upload.wasRenamed()) {
|
|
end.putExtra(EXTRA_OLD_REMOTE_PATH, upload.getOldFile().getRemotePath());
|
|
end.putExtra(EXTRA_OLD_REMOTE_PATH, upload.getOldFile().getRemotePath());
|
|
}
|
|
}
|
|
@@ -893,9 +947,27 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|
* @return true if is needed to add the pdf file extension to the file
|
|
* @return true if is needed to add the pdf file extension to the file
|
|
*/
|
|
*/
|
|
private boolean isPdfFileFromContentProviderWithoutExtension(String localPath, String mimeType) {
|
|
private boolean isPdfFileFromContentProviderWithoutExtension(String localPath, String mimeType) {
|
|
- return localPath.startsWith(UriUtils.URI_CONTENT_SCHEME) &&
|
|
|
|
- mimeType.equals(MIME_TYPE_PDF) &&
|
|
|
|
|
|
+ return localPath.startsWith(UriUtils.URI_CONTENT_SCHEME) &&
|
|
|
|
+ mimeType.equals(MIME_TYPE_PDF) &&
|
|
!localPath.endsWith(FILE_EXTENSION_PDF);
|
|
!localPath.endsWith(FILE_EXTENSION_PDF);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Remove uploads of an account
|
|
|
|
+ * @param accountName
|
|
|
|
+ */
|
|
|
|
+ private void cancelUploadForAccount(String accountName){
|
|
|
|
+ // this can be slow if there are many uploads :(
|
|
|
|
+ Iterator<String> it = mPendingUploads.keySet().iterator();
|
|
|
|
+ Log_OC.d(TAG, "Number of pending updloads= " + mPendingUploads.size());
|
|
|
|
+ while (it.hasNext()) {
|
|
|
|
+ String key = it.next();
|
|
|
|
+ Log_OC.d(TAG, "mPendingUploads CANCELLED " + key);
|
|
|
|
+ if (key.startsWith(accountName)) {
|
|
|
|
+ synchronized (mPendingUploads) {
|
|
|
|
+ mPendingUploads.remove(key);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|