FileOperationsHelper.java 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author masensio
  5. * @author David A. Velasco
  6. * @author Juan Carlos González Cabrero
  7. * Copyright (C) 2015 ownCloud Inc.
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2,
  11. * as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. package com.owncloud.android.files;
  23. import android.accounts.Account;
  24. import android.content.ActivityNotFoundException;
  25. import android.content.Context;
  26. import android.content.Intent;
  27. import android.content.pm.PackageManager;
  28. import android.content.pm.ResolveInfo;
  29. import android.net.Uri;
  30. import android.os.Parcelable;
  31. import android.support.v4.app.DialogFragment;
  32. import android.webkit.MimeTypeMap;
  33. import android.widget.Toast;
  34. import com.owncloud.android.R;
  35. import com.owncloud.android.authentication.AccountUtils;
  36. import com.owncloud.android.datamodel.OCFile;
  37. import com.owncloud.android.db.OCUpload;
  38. import com.owncloud.android.files.services.FileDownloader.FileDownloaderBinder;
  39. import com.owncloud.android.files.services.FileUploader;
  40. import com.owncloud.android.files.services.FileUploader.FileUploaderBinder;
  41. import com.owncloud.android.lib.common.network.WebdavUtils;
  42. import com.owncloud.android.lib.common.utils.Log_OC;
  43. import com.owncloud.android.lib.resources.shares.OCShare;
  44. import com.owncloud.android.lib.resources.shares.ShareType;
  45. import com.owncloud.android.lib.resources.status.OwnCloudVersion;
  46. import com.owncloud.android.services.OperationsService;
  47. import com.owncloud.android.services.observer.FileObserverService;
  48. import com.owncloud.android.ui.activity.FileActivity;
  49. import com.owncloud.android.ui.activity.ShareActivity;
  50. import com.owncloud.android.ui.dialog.ShareLinkToDialog;
  51. import com.owncloud.android.ui.dialog.SharePasswordDialogFragment;
  52. import java.util.List;
  53. /**
  54. *
  55. */
  56. public class FileOperationsHelper {
  57. private static final String TAG = FileOperationsHelper.class.getSimpleName();
  58. private static final String FTAG_CHOOSER_DIALOG = "CHOOSER_DIALOG";
  59. protected FileActivity mFileActivity = null;
  60. /// Identifier of operation in progress which result shouldn't be lost
  61. private long mWaitingForOpId = Long.MAX_VALUE;
  62. public FileOperationsHelper(FileActivity fileActivity) {
  63. mFileActivity = fileActivity;
  64. }
  65. public void openFile(OCFile file) {
  66. if (file != null) {
  67. String storagePath = file.getStoragePath();
  68. String encodedStoragePath = WebdavUtils.encodePath(storagePath);
  69. Intent intentForSavedMimeType = new Intent(Intent.ACTION_VIEW);
  70. intentForSavedMimeType.setDataAndType(Uri.parse("file://"+ encodedStoragePath),
  71. file.getMimetype());
  72. intentForSavedMimeType.setFlags(
  73. Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION
  74. );
  75. Intent intentForGuessedMimeType = null;
  76. if (storagePath.lastIndexOf('.') >= 0) {
  77. String guessedMimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(
  78. storagePath.substring(storagePath.lastIndexOf('.') + 1)
  79. );
  80. if (guessedMimeType != null && !guessedMimeType.equals(file.getMimetype())) {
  81. intentForGuessedMimeType = new Intent(Intent.ACTION_VIEW);
  82. intentForGuessedMimeType.setDataAndType(Uri.parse("file://" +
  83. encodedStoragePath), guessedMimeType);
  84. intentForGuessedMimeType.setFlags(
  85. Intent.FLAG_GRANT_READ_URI_PERMISSION |
  86. Intent.FLAG_GRANT_WRITE_URI_PERMISSION
  87. );
  88. }
  89. }
  90. Intent openFileWithIntent;
  91. if (intentForGuessedMimeType != null) {
  92. openFileWithIntent = intentForGuessedMimeType;
  93. } else {
  94. openFileWithIntent = intentForSavedMimeType;
  95. }
  96. List<ResolveInfo> launchables = mFileActivity.getPackageManager().
  97. queryIntentActivities(openFileWithIntent, PackageManager.GET_INTENT_FILTERS);
  98. if(launchables != null && launchables.size() > 0) {
  99. try {
  100. mFileActivity.startActivity(
  101. Intent.createChooser(
  102. openFileWithIntent, mFileActivity.getString(R.string.actionbar_open_with)
  103. )
  104. );
  105. } catch (ActivityNotFoundException anfe) {
  106. showNoAppForFileTypeToast(mFileActivity.getApplicationContext());
  107. }
  108. } else {
  109. showNoAppForFileTypeToast(mFileActivity.getApplicationContext());
  110. }
  111. } else {
  112. Log_OC.e(TAG, "Trying to open a NULL OCFile");
  113. }
  114. }
  115. /**
  116. * Displays a toast stating that no application could be found to open the file.
  117. *
  118. * @param context the context to be able to show a toast.
  119. */
  120. private void showNoAppForFileTypeToast(Context context) {
  121. Toast.makeText(context,
  122. R.string.file_list_no_app_for_file_type, Toast.LENGTH_SHORT)
  123. .show();
  124. }
  125. /**
  126. * Helper method to share a file via a public link. Starts a request to do it in {@link OperationsService}
  127. *
  128. * @param file The file to share.
  129. * @param password Optional password to protect the public share.
  130. */
  131. public void shareFileViaLink(OCFile file, String password) {
  132. if (isSharedSupported()) {
  133. if (file != null) {
  134. mFileActivity.showLoadingDialog(
  135. mFileActivity.getApplicationContext().
  136. getString(R.string.wait_a_moment)
  137. );
  138. Intent service = new Intent(mFileActivity, OperationsService.class);
  139. service.setAction(OperationsService.ACTION_CREATE_SHARE_VIA_LINK);
  140. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  141. if (password != null && password.length() > 0) {
  142. service.putExtra(OperationsService.EXTRA_SHARE_PASSWORD, password);
  143. }
  144. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  145. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  146. } else {
  147. Log_OC.e(TAG, "Trying to share a NULL OCFile");
  148. // TODO user-level error?
  149. }
  150. } else {
  151. // Show a Message
  152. Toast t = Toast.makeText(
  153. mFileActivity, mFileActivity.getString(R.string.share_link_no_support_share_api),
  154. Toast.LENGTH_LONG
  155. );
  156. t.show();
  157. }
  158. }
  159. public void getFileWithLink(OCFile file){
  160. if (isSharedSupported()) {
  161. if (file != null) {
  162. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  163. getString(R.string.wait_a_moment));
  164. Intent service = new Intent(mFileActivity, OperationsService.class);
  165. service.setAction(OperationsService.ACTION_CREATE_SHARE_VIA_LINK);
  166. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  167. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  168. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  169. } else {
  170. Log_OC.e(TAG, "Trying to share a NULL OCFile");
  171. }
  172. } else {
  173. // Show a Message
  174. Toast t = Toast.makeText(
  175. mFileActivity, mFileActivity.getString(R.string.share_link_no_support_share_api),
  176. Toast.LENGTH_LONG
  177. );
  178. t.show();
  179. }
  180. }
  181. /**
  182. * Helper method to share a file with a known sharee. Starts a request to do it in {@link OperationsService}
  183. *
  184. * @param file The file to share.
  185. * @param shareeName Name (user name or group name) of the target sharee.
  186. * @param shareType The share type determines the sharee type.
  187. * @param permissions Permissions to grant to sharee on the shared file.
  188. */
  189. public void shareFileWithSharee(OCFile file, String shareeName, ShareType shareType, int permissions) {
  190. if (file != null) {
  191. // TODO check capability?
  192. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  193. getString(R.string.wait_a_moment));
  194. Intent service = new Intent(mFileActivity, OperationsService.class);
  195. service.setAction(OperationsService.ACTION_CREATE_SHARE_WITH_SHAREE);
  196. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  197. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  198. service.putExtra(OperationsService.EXTRA_SHARE_WITH, shareeName);
  199. service.putExtra(OperationsService.EXTRA_SHARE_TYPE, shareType);
  200. service.putExtra(OperationsService.EXTRA_SHARE_PERMISSIONS, permissions);
  201. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  202. } else {
  203. Log_OC.e(TAG, "Trying to share a NULL OCFile");
  204. }
  205. }
  206. /**
  207. * @return 'True' if the server supports the Share API
  208. */
  209. public boolean isSharedSupported() {
  210. if (mFileActivity.getAccount() != null) {
  211. OwnCloudVersion serverVersion = AccountUtils.getServerVersion(mFileActivity.getAccount());
  212. return (serverVersion != null && serverVersion.isSharedSupported());
  213. }
  214. return false;
  215. }
  216. /**
  217. * Helper method to unshare a file publicly shared via link.
  218. * Starts a request to do it in {@link OperationsService}
  219. *
  220. * @param file The file to unshare.
  221. */
  222. public void unshareFileViaLink(OCFile file) {
  223. // Unshare the file: Create the intent
  224. Intent unshareService = new Intent(mFileActivity, OperationsService.class);
  225. unshareService.setAction(OperationsService.ACTION_UNSHARE);
  226. unshareService.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  227. unshareService.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  228. unshareService.putExtra(OperationsService.EXTRA_SHARE_TYPE, ShareType.PUBLIC_LINK);
  229. unshareService.putExtra(OperationsService.EXTRA_SHARE_WITH, "");
  230. queueShareIntent(unshareService);
  231. }
  232. public void unshareFileWithUserOrGroup(OCFile file, ShareType shareType, String userOrGroup){
  233. // Unshare the file: Create the intent
  234. Intent unshareService = new Intent(mFileActivity, OperationsService.class);
  235. unshareService.setAction(OperationsService.ACTION_UNSHARE);
  236. unshareService.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  237. unshareService.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  238. unshareService.putExtra(OperationsService.EXTRA_SHARE_TYPE, shareType);
  239. unshareService.putExtra(OperationsService.EXTRA_SHARE_WITH, userOrGroup);
  240. queueShareIntent(unshareService);
  241. }
  242. private void queueShareIntent(Intent shareIntent){
  243. if (isSharedSupported()) {
  244. // Unshare the file
  245. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().
  246. queueNewOperation(shareIntent);
  247. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  248. getString(R.string.wait_a_moment));
  249. } else {
  250. // Show a Message
  251. Toast t = Toast.makeText(mFileActivity,
  252. mFileActivity.getString(R.string.share_link_no_support_share_api),
  253. Toast.LENGTH_LONG);
  254. t.show();
  255. }
  256. }
  257. /**
  258. * Show an instance of {@link ShareType} for sharing or unsharing the {@OCFile} received as parameter.
  259. *
  260. * @param file File to share or unshare.
  261. */
  262. public void showShareFile(OCFile file){
  263. Intent intent = new Intent(mFileActivity, ShareActivity.class);
  264. intent.putExtra(mFileActivity.EXTRA_FILE, (Parcelable) file);
  265. intent.putExtra(mFileActivity.EXTRA_ACCOUNT, mFileActivity.getAccount());
  266. mFileActivity.startActivity(intent);
  267. }
  268. /**
  269. * Updates a public share on a file to set its password.
  270. * Starts a request to do it in {@link OperationsService}
  271. *
  272. * @param file File which public share will be protected with a password.
  273. * @param password Password to set for the public link; null or empty string to clear
  274. * the current password
  275. */
  276. public void setPasswordToShareViaLink(OCFile file, String password) {
  277. // Set password updating share
  278. Intent updateShareIntent = new Intent(mFileActivity, OperationsService.class);
  279. updateShareIntent.setAction(OperationsService.ACTION_UPDATE_SHARE);
  280. updateShareIntent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  281. updateShareIntent.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  282. updateShareIntent.putExtra(
  283. OperationsService.EXTRA_SHARE_PASSWORD,
  284. (password == null) ? "" : password
  285. );
  286. queueShareIntent(updateShareIntent);
  287. }
  288. /**
  289. * Updates a public share on a file to set its expiration date.
  290. * Starts a request to do it in {@link OperationsService}
  291. *
  292. * @param file File which public share will be constrained with an expiration date.
  293. * @param expirationTimeInMillis Expiration date to set. A negative value clears the current expiration
  294. * date, leaving the link unrestricted. Zero makes no change.
  295. */
  296. public void setExpirationDateToShareViaLink(OCFile file, long expirationTimeInMillis) {
  297. Intent updateShareIntent = new Intent(mFileActivity, OperationsService.class);
  298. updateShareIntent.setAction(OperationsService.ACTION_UPDATE_SHARE);
  299. updateShareIntent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  300. updateShareIntent.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  301. updateShareIntent.putExtra(
  302. OperationsService.EXTRA_SHARE_EXPIRATION_DATE_IN_MILLIS,
  303. expirationTimeInMillis
  304. );
  305. queueShareIntent(updateShareIntent);
  306. }
  307. /**
  308. * Updates a share on a file to set its access permissions.
  309. * Starts a request to do it in {@link OperationsService}
  310. *
  311. * @param share {@link OCShare} instance which permissions will be updated.
  312. * @param permissions New permissions to set. A value <= 0 makes no update.
  313. */
  314. public void setPermissionsToShare(OCShare share, int permissions) {
  315. Intent updateShareIntent = new Intent(mFileActivity, OperationsService.class);
  316. updateShareIntent.setAction(OperationsService.ACTION_UPDATE_SHARE);
  317. updateShareIntent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  318. updateShareIntent.putExtra(OperationsService.EXTRA_SHARE_ID, share.getId());
  319. updateShareIntent.putExtra(
  320. OperationsService.EXTRA_SHARE_PERMISSIONS,
  321. permissions
  322. );
  323. queueShareIntent(updateShareIntent);
  324. }
  325. /**
  326. * Updates a public share on a folder to set its editing permission.
  327. * Starts a request to do it in {@link OperationsService}
  328. *
  329. * @param folder Folder which editing permission of his public share will be modified.
  330. * @param uploadPermission New state of the permission for editing the folder shared via link.
  331. */
  332. public void setUploadPermissionsToShare(OCFile folder, boolean uploadPermission) {
  333. Intent updateShareIntent = new Intent(mFileActivity, OperationsService.class);
  334. updateShareIntent.setAction(OperationsService.ACTION_UPDATE_SHARE);
  335. updateShareIntent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  336. updateShareIntent.putExtra(OperationsService.EXTRA_REMOTE_PATH, folder.getRemotePath());
  337. updateShareIntent.putExtra(
  338. OperationsService.EXTRA_SHARE_PUBLIC_UPLOAD,
  339. uploadPermission
  340. );
  341. queueShareIntent(updateShareIntent);
  342. }
  343. /**
  344. * @return 'True' if the server supports the Search Users API
  345. */
  346. public boolean isSearchUsersSupportedSupported() {
  347. if (mFileActivity.getAccount() != null) {
  348. OwnCloudVersion serverVersion = AccountUtils.getServerVersion(mFileActivity.getAccount());
  349. return (serverVersion != null && serverVersion.isSearchUsersSupported());
  350. }
  351. return false;
  352. }
  353. public void sendDownloadedFile(OCFile file) {
  354. if (file != null) {
  355. String storagePath = file.getStoragePath();
  356. String encodedStoragePath = WebdavUtils.encodePath(storagePath);
  357. Intent sendIntent = new Intent(android.content.Intent.ACTION_SEND);
  358. // set MimeType
  359. sendIntent.setType(file.getMimetype());
  360. sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + encodedStoragePath));
  361. sendIntent.putExtra(Intent.ACTION_SEND, true); // Send Action
  362. // Show dialog, without the own app
  363. String[] packagesToExclude = new String[]{mFileActivity.getPackageName()};
  364. DialogFragment chooserDialog = ShareLinkToDialog.newInstance(sendIntent, packagesToExclude);
  365. chooserDialog.show(mFileActivity.getSupportFragmentManager(), FTAG_CHOOSER_DIALOG);
  366. } else {
  367. Log_OC.e(TAG, "Trying to send a NULL OCFile");
  368. }
  369. }
  370. /**
  371. * Request the synchronization of a file or folder with the OC server, including its contents.
  372. *
  373. * @param file The file or folder to synchronize
  374. */
  375. public void syncFile(OCFile file) {
  376. if (!file.isFolder()){
  377. Intent intent = new Intent(mFileActivity, OperationsService.class);
  378. intent.setAction(OperationsService.ACTION_SYNC_FILE);
  379. intent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  380. intent.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  381. intent.putExtra(OperationsService.EXTRA_SYNC_FILE_CONTENTS, true);
  382. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(intent);
  383. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  384. getString(R.string.wait_a_moment));
  385. } else {
  386. Intent intent = new Intent(mFileActivity, OperationsService.class);
  387. intent.setAction(OperationsService.ACTION_SYNC_FOLDER);
  388. intent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  389. intent.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  390. mFileActivity.startService(intent);
  391. }
  392. }
  393. public void toggleFavorite(OCFile file, boolean isFavorite) {
  394. file.setFavorite(isFavorite);
  395. mFileActivity.getStorageManager().saveFile(file);
  396. /// register the OCFile instance in the observer service to monitor local updates
  397. Intent observedFileIntent = FileObserverService.makeObservedFileIntent(
  398. mFileActivity,
  399. file,
  400. mFileActivity.getAccount(),
  401. isFavorite);
  402. mFileActivity.startService(observedFileIntent);
  403. /// immediate content synchronization
  404. if (file.isFavorite()) {
  405. syncFile(file);
  406. }
  407. }
  408. public void renameFile(OCFile file, String newFilename) {
  409. // RenameFile
  410. Intent service = new Intent(mFileActivity, OperationsService.class);
  411. service.setAction(OperationsService.ACTION_RENAME);
  412. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  413. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  414. service.putExtra(OperationsService.EXTRA_NEWNAME, newFilename);
  415. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  416. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  417. getString(R.string.wait_a_moment));
  418. }
  419. public void removeFile(OCFile file, boolean onlyLocalCopy) {
  420. // RemoveFile
  421. Intent service = new Intent(mFileActivity, OperationsService.class);
  422. service.setAction(OperationsService.ACTION_REMOVE);
  423. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  424. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  425. service.putExtra(OperationsService.EXTRA_REMOVE_ONLY_LOCAL, onlyLocalCopy);
  426. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  427. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  428. getString(R.string.wait_a_moment));
  429. }
  430. public void createFolder(String remotePath, boolean createFullPath) {
  431. // Create Folder
  432. Intent service = new Intent(mFileActivity, OperationsService.class);
  433. service.setAction(OperationsService.ACTION_CREATE_FOLDER);
  434. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  435. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, remotePath);
  436. service.putExtra(OperationsService.EXTRA_CREATE_FULL_PATH, createFullPath);
  437. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  438. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  439. getString(R.string.wait_a_moment));
  440. }
  441. /**
  442. * Cancel the transference in downloads (files/folders) and file uploads
  443. * @param file OCFile
  444. */
  445. public void cancelTransference(OCFile file) {
  446. Account account = mFileActivity.getAccount();
  447. if (file.isFolder()) {
  448. OperationsService.OperationsServiceBinder opsBinder =
  449. mFileActivity.getOperationsServiceBinder();
  450. if (opsBinder != null) {
  451. opsBinder.cancel(account, file);
  452. }
  453. }
  454. // for both files and folders
  455. FileDownloaderBinder downloaderBinder = mFileActivity.getFileDownloaderBinder();
  456. if (downloaderBinder != null && downloaderBinder.isDownloading(account, file)) {
  457. downloaderBinder.cancel(account, file);
  458. }
  459. FileUploaderBinder uploaderBinder = mFileActivity.getFileUploaderBinder();
  460. if (uploaderBinder != null && uploaderBinder.isUploading(account, file)) {
  461. uploaderBinder.cancel(account, file);
  462. }
  463. }
  464. /**
  465. * Start move file operation
  466. *
  467. * @param newfile File where it is going to be moved
  468. * @param currentFile File with the previous info
  469. */
  470. public void moveFile(OCFile newfile, OCFile currentFile) {
  471. // Move files
  472. Intent service = new Intent(mFileActivity, OperationsService.class);
  473. service.setAction(OperationsService.ACTION_MOVE_FILE);
  474. service.putExtra(OperationsService.EXTRA_NEW_PARENT_PATH, newfile.getRemotePath());
  475. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, currentFile.getRemotePath());
  476. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  477. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  478. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  479. getString(R.string.wait_a_moment));
  480. }
  481. /**
  482. * Start copy file operation
  483. *
  484. * @param newfile File where it is going to be moved
  485. * @param currentFile File with the previous info
  486. */
  487. public void copyFile(OCFile newfile, OCFile currentFile) {
  488. // Copy files
  489. Intent service = new Intent(mFileActivity, OperationsService.class);
  490. service.setAction(OperationsService.ACTION_COPY_FILE);
  491. service.putExtra(OperationsService.EXTRA_NEW_PARENT_PATH, newfile.getRemotePath());
  492. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, currentFile.getRemotePath());
  493. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  494. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  495. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  496. getString(R.string.wait_a_moment));
  497. }
  498. public long getOpIdWaitingFor() {
  499. return mWaitingForOpId;
  500. }
  501. public void setOpIdWaitingFor(long waitingForOpId) {
  502. mWaitingForOpId = waitingForOpId;
  503. }
  504. /**
  505. * @return 'True' if the server doesn't need to check forbidden characters
  506. */
  507. public boolean isVersionWithForbiddenCharacters() {
  508. if (mFileActivity.getAccount() != null) {
  509. OwnCloudVersion serverVersion =
  510. AccountUtils.getServerVersion(mFileActivity.getAccount());
  511. return (serverVersion != null && serverVersion.isVersionWithForbiddenCharacters());
  512. }
  513. return false;
  514. }
  515. /**
  516. * Starts a check of the currenlty stored credentials for the given account.
  517. *
  518. * @param account OC account which credentials will be checked.
  519. */
  520. public void checkCurrentCredentials(Account account) {
  521. Intent service = new Intent(mFileActivity, OperationsService.class);
  522. service.setAction(OperationsService.ACTION_CHECK_CURRENT_CREDENTIALS);
  523. service.putExtra(OperationsService.EXTRA_ACCOUNT, account);
  524. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  525. mFileActivity.showLoadingDialog(
  526. mFileActivity.getApplicationContext().getString(R.string.wait_checking_credentials)
  527. );
  528. }
  529. }