|
@@ -83,12 +83,12 @@ import com.owncloud.android.services.observer.FileObserverService;
|
|
|
import com.owncloud.android.syncadapter.FileSyncAdapter;
|
|
|
import com.owncloud.android.ui.dialog.SortingOrderDialogFragment;
|
|
|
import com.owncloud.android.ui.events.TokenPushEvent;
|
|
|
-import com.owncloud.android.ui.fragment.contactsbackup.ContactListFragment;
|
|
|
import com.owncloud.android.ui.fragment.ExtendedListFragment;
|
|
|
import com.owncloud.android.ui.fragment.FileDetailFragment;
|
|
|
import com.owncloud.android.ui.fragment.FileFragment;
|
|
|
import com.owncloud.android.ui.fragment.OCFileListFragment;
|
|
|
import com.owncloud.android.ui.fragment.TaskRetainerFragment;
|
|
|
+import com.owncloud.android.ui.fragment.contactsbackup.ContactListFragment;
|
|
|
import com.owncloud.android.ui.helpers.UriUploader;
|
|
|
import com.owncloud.android.ui.preview.PreviewImageActivity;
|
|
|
import com.owncloud.android.ui.preview.PreviewImageFragment;
|
|
@@ -1373,28 +1373,35 @@ public class FileDisplayActivity extends HookActivity
|
|
|
public void onReceive(Context context, Intent intent) {
|
|
|
try {
|
|
|
boolean sameAccount = isSameAccount(intent);
|
|
|
- String downloadedRemotePath =
|
|
|
- intent.getStringExtra(FileDownloader.EXTRA_REMOTE_PATH);
|
|
|
+ String downloadedRemotePath = intent.getStringExtra(FileDownloader.EXTRA_REMOTE_PATH);
|
|
|
+ String downloadBehaviour = intent.getStringExtra(OCFileListFragment.DOWNLOAD_BEHAVIOUR);
|
|
|
boolean isDescendant = isDescendant(downloadedRemotePath);
|
|
|
|
|
|
if (sameAccount && isDescendant) {
|
|
|
- String linkedToRemotePath =
|
|
|
- intent.getStringExtra(FileDownloader.EXTRA_LINKED_TO_PATH);
|
|
|
+ String linkedToRemotePath = intent.getStringExtra(FileDownloader.EXTRA_LINKED_TO_PATH);
|
|
|
if (linkedToRemotePath == null || isAscendant(linkedToRemotePath)) {
|
|
|
refreshListOfFilesFragment(false);
|
|
|
}
|
|
|
refreshSecondFragment(
|
|
|
intent.getAction(),
|
|
|
downloadedRemotePath,
|
|
|
- intent.getBooleanExtra(FileDownloader.EXTRA_DOWNLOAD_RESULT, false)
|
|
|
- );
|
|
|
+ intent.getBooleanExtra(FileDownloader.EXTRA_DOWNLOAD_RESULT, false));
|
|
|
}
|
|
|
|
|
|
if (mWaitingToSend != null) {
|
|
|
- mWaitingToSend =
|
|
|
- getStorageManager().getFileByPath(mWaitingToSend.getRemotePath());
|
|
|
- if (mWaitingToSend.isDown()) {
|
|
|
- sendDownloadedFile();
|
|
|
+ mWaitingToSend = getStorageManager().getFileByPath(mWaitingToSend.getRemotePath());
|
|
|
+ if (mWaitingToSend.isDown() && downloadBehaviour != null) {
|
|
|
+ switch (downloadBehaviour) {
|
|
|
+ case OCFileListFragment.DOWNLOAD_SEND:
|
|
|
+ sendDownloadedFile();
|
|
|
+ break;
|
|
|
+ case OCFileListFragment.DOWNLOAD_SET_AS:
|
|
|
+ setPictureAs();
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ // do nothing
|
|
|
+ break;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1872,12 +1879,13 @@ public class FileDisplayActivity extends HookActivity
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- private void requestForDownload(OCFile file) {
|
|
|
+ private void requestForDownload(OCFile file, String downloadBehaviour) {
|
|
|
Account account = getAccount();
|
|
|
if (!mDownloaderBinder.isDownloading(account, mWaitingToPreview)) {
|
|
|
Intent i = new Intent(this, FileDownloader.class);
|
|
|
i.putExtra(FileDownloader.EXTRA_ACCOUNT, account);
|
|
|
i.putExtra(FileDownloader.EXTRA_FILE, file);
|
|
|
+ i.putExtra(OCFileListFragment.DOWNLOAD_BEHAVIOUR, downloadBehaviour);
|
|
|
startService(i);
|
|
|
}
|
|
|
}
|
|
@@ -1887,6 +1895,11 @@ public class FileDisplayActivity extends HookActivity
|
|
|
mWaitingToSend = null;
|
|
|
}
|
|
|
|
|
|
+ private void setPictureAs() {
|
|
|
+ getFileOperationsHelper().setPictureAs(mWaitingToSend);
|
|
|
+ mWaitingToSend = null;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* Requests the download of the received {@link OCFile} , updates the UI
|
|
@@ -1895,9 +1908,9 @@ public class FileDisplayActivity extends HookActivity
|
|
|
*
|
|
|
* @param file {@link OCFile} to download and preview.
|
|
|
*/
|
|
|
- public void startDownloadForSending(OCFile file) {
|
|
|
+ public void startDownloadForSending(OCFile file, String downloadBehaviour) {
|
|
|
mWaitingToSend = file;
|
|
|
- requestForDownload(mWaitingToSend);
|
|
|
+ requestForDownload(mWaitingToSend, downloadBehaviour);
|
|
|
boolean hasSecondFragment = (getSecondFragment() != null);
|
|
|
updateFragmentsVisibility(hasSecondFragment);
|
|
|
}
|