FileOperationsHelper.java 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649
  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.wtf(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.wtf(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.wtf(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. public void shareFileWithLinkToApp(OCFile file, String password, Intent sendIntent) {
  182. if (file != null) {
  183. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  184. getString(R.string.wait_a_moment));
  185. Intent service = new Intent(mFileActivity, OperationsService.class);
  186. service.setAction(OperationsService.ACTION_CREATE_SHARE_VIA_LINK);
  187. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  188. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  189. service.putExtra(OperationsService.EXTRA_SHARE_PASSWORD, password);
  190. service.putExtra(OperationsService.EXTRA_SEND_INTENT, sendIntent);
  191. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  192. } else {
  193. Log_OC.wtf(TAG, "Trying to open a NULL OCFile");
  194. }
  195. }
  196. /**
  197. * Helper method to share a file with a known sharee. Starts a request to do it in {@link OperationsService}
  198. *
  199. * @param file The file to share.
  200. * @param shareeName Name (user name or group name) of the target sharee.
  201. * @param shareType The share type determines the sharee type.
  202. * @param permissions Permissions to grant to sharee on the shared file.
  203. */
  204. public void shareFileWithSharee(OCFile file, String shareeName, ShareType shareType, int permissions) {
  205. if (file != null) {
  206. // TODO check capability?
  207. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  208. getString(R.string.wait_a_moment));
  209. Intent service = new Intent(mFileActivity, OperationsService.class);
  210. service.setAction(OperationsService.ACTION_CREATE_SHARE_WITH_SHAREE);
  211. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  212. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  213. service.putExtra(OperationsService.EXTRA_SHARE_WITH, shareeName);
  214. service.putExtra(OperationsService.EXTRA_SHARE_TYPE, shareType);
  215. service.putExtra(OperationsService.EXTRA_SHARE_PERMISSIONS, permissions);
  216. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  217. } else {
  218. Log_OC.wtf(TAG, "Trying to share a NULL OCFile");
  219. }
  220. }
  221. /**
  222. * @return 'True' if the server supports the Share API
  223. */
  224. public boolean isSharedSupported() {
  225. if (mFileActivity.getAccount() != null) {
  226. OwnCloudVersion serverVersion = AccountUtils.getServerVersion(mFileActivity.getAccount());
  227. return (serverVersion != null && serverVersion.isSharedSupported());
  228. }
  229. return false;
  230. }
  231. /**
  232. * Helper method to unshare a file publicly shared via link.
  233. * Starts a request to do it in {@link OperationsService}
  234. *
  235. * @param file The file to unshare.
  236. */
  237. public void unshareFileViaLink(OCFile file) {
  238. // Unshare the file: Create the intent
  239. Intent unshareService = new Intent(mFileActivity, OperationsService.class);
  240. unshareService.setAction(OperationsService.ACTION_UNSHARE);
  241. unshareService.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  242. unshareService.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  243. unshareService.putExtra(OperationsService.EXTRA_SHARE_TYPE, ShareType.PUBLIC_LINK);
  244. unshareService.putExtra(OperationsService.EXTRA_SHARE_WITH, "");
  245. queueShareIntent(unshareService);
  246. }
  247. public void unshareFileWithUserOrGroup(OCFile file, ShareType shareType, String userOrGroup){
  248. // Unshare the file: Create the intent
  249. Intent unshareService = new Intent(mFileActivity, OperationsService.class);
  250. unshareService.setAction(OperationsService.ACTION_UNSHARE);
  251. unshareService.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  252. unshareService.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  253. unshareService.putExtra(OperationsService.EXTRA_SHARE_TYPE, shareType);
  254. unshareService.putExtra(OperationsService.EXTRA_SHARE_WITH, userOrGroup);
  255. queueShareIntent(unshareService);
  256. }
  257. private void queueShareIntent(Intent shareIntent){
  258. if (isSharedSupported()) {
  259. // Unshare the file
  260. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().
  261. queueNewOperation(shareIntent);
  262. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  263. getString(R.string.wait_a_moment));
  264. } else {
  265. // Show a Message
  266. Toast t = Toast.makeText(mFileActivity,
  267. mFileActivity.getString(R.string.share_link_no_support_share_api),
  268. Toast.LENGTH_LONG);
  269. t.show();
  270. }
  271. }
  272. /**
  273. * Show an instance of {@link ShareType} for sharing or unsharing the {@OCFile} received as parameter.
  274. *
  275. * @param file File to share or unshare.
  276. */
  277. public void showShareFile(OCFile file){
  278. Intent intent = new Intent(mFileActivity, ShareActivity.class);
  279. intent.putExtra(mFileActivity.EXTRA_FILE, (Parcelable) file);
  280. intent.putExtra(mFileActivity.EXTRA_ACCOUNT, mFileActivity.getAccount());
  281. mFileActivity.startActivity(intent);
  282. }
  283. /**
  284. * Starts a dialog that requests a password to the user to protect a share link.
  285. *
  286. * @param file File which public share will be protected by the requested password
  287. * @param createShare When 'true', the request for password will be followed by the creation of a new
  288. * public link; when 'false', a public share is assumed to exist, and the password
  289. * is bound to it.
  290. */
  291. public void requestPasswordForShareViaLink(OCFile file, boolean createShare) {
  292. SharePasswordDialogFragment dialog =
  293. SharePasswordDialogFragment.newInstance(file, createShare);
  294. dialog.show(
  295. mFileActivity.getSupportFragmentManager(),
  296. SharePasswordDialogFragment.PASSWORD_FRAGMENT
  297. );
  298. }
  299. /**
  300. * Updates a public share on a file to set its password.
  301. * Starts a request to do it in {@link OperationsService}
  302. *
  303. * @param file File which public share will be protected with a password.
  304. * @param password Password to set for the public link; null or empty string to clear
  305. * the current password
  306. */
  307. public void setPasswordToShareViaLink(OCFile file, String password) {
  308. // Set password updating share
  309. Intent updateShareIntent = new Intent(mFileActivity, OperationsService.class);
  310. updateShareIntent.setAction(OperationsService.ACTION_UPDATE_SHARE);
  311. updateShareIntent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  312. updateShareIntent.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  313. updateShareIntent.putExtra(
  314. OperationsService.EXTRA_SHARE_PASSWORD,
  315. (password == null) ? "" : password
  316. );
  317. queueShareIntent(updateShareIntent);
  318. }
  319. /**
  320. * Updates a public share on a file to set its expiration date.
  321. * Starts a request to do it in {@link OperationsService}
  322. *
  323. * @param file File which public share will be constrained with an expiration date.
  324. * @param expirationTimeInMillis Expiration date to set. A negative value clears the current expiration
  325. * date, leaving the link unrestricted. Zero makes no change.
  326. */
  327. public void setExpirationDateToShareViaLink(OCFile file, long expirationTimeInMillis) {
  328. Intent updateShareIntent = new Intent(mFileActivity, OperationsService.class);
  329. updateShareIntent.setAction(OperationsService.ACTION_UPDATE_SHARE);
  330. updateShareIntent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  331. updateShareIntent.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  332. updateShareIntent.putExtra(
  333. OperationsService.EXTRA_SHARE_EXPIRATION_DATE_IN_MILLIS,
  334. expirationTimeInMillis
  335. );
  336. queueShareIntent(updateShareIntent);
  337. }
  338. /**
  339. * Updates a share on a file to set its access permissions.
  340. * Starts a request to do it in {@link OperationsService}
  341. *
  342. * @param share {@link OCShare} instance which permissions will be updated.
  343. * @param permissions New permissions to set. A value <= 0 makes no update.
  344. */
  345. public void setPermissionsToShare(OCShare share, int permissions) {
  346. Intent updateShareIntent = new Intent(mFileActivity, OperationsService.class);
  347. updateShareIntent.setAction(OperationsService.ACTION_UPDATE_SHARE);
  348. updateShareIntent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  349. updateShareIntent.putExtra(OperationsService.EXTRA_SHARE_ID, share.getId());
  350. updateShareIntent.putExtra(
  351. OperationsService.EXTRA_SHARE_PERMISSIONS,
  352. permissions
  353. );
  354. queueShareIntent(updateShareIntent);
  355. }
  356. /**
  357. * Updates a public share on a folder to set its editing permission.
  358. * Starts a request to do it in {@link OperationsService}
  359. *
  360. * @param folder Folder which editing permission of his public share will be modified.
  361. * @param uploadPermission New state of the permission for editing the folder shared via link.
  362. */
  363. public void setUploadPermissionsToShare(OCFile folder, boolean uploadPermission) {
  364. Intent updateShareIntent = new Intent(mFileActivity, OperationsService.class);
  365. updateShareIntent.setAction(OperationsService.ACTION_UPDATE_SHARE);
  366. updateShareIntent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  367. updateShareIntent.putExtra(OperationsService.EXTRA_REMOTE_PATH, folder.getRemotePath());
  368. updateShareIntent.putExtra(
  369. OperationsService.EXTRA_SHARE_PUBLIC_UPLOAD,
  370. uploadPermission
  371. );
  372. queueShareIntent(updateShareIntent);
  373. }
  374. /**
  375. * @return 'True' if the server supports the Search Users API
  376. */
  377. public boolean isSearchUsersSupportedSupported() {
  378. if (mFileActivity.getAccount() != null) {
  379. OwnCloudVersion serverVersion = AccountUtils.getServerVersion(mFileActivity.getAccount());
  380. return (serverVersion != null && serverVersion.isSearchUsersSupported());
  381. }
  382. return false;
  383. }
  384. public void sendDownloadedFile(OCFile file) {
  385. if (file != null) {
  386. String storagePath = file.getStoragePath();
  387. String encodedStoragePath = WebdavUtils.encodePath(storagePath);
  388. Intent sendIntent = new Intent(android.content.Intent.ACTION_SEND);
  389. // set MimeType
  390. sendIntent.setType(file.getMimetype());
  391. sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + encodedStoragePath));
  392. sendIntent.putExtra(Intent.ACTION_SEND, true); // Send Action
  393. // Show dialog, without the own app
  394. String[] packagesToExclude = new String[]{mFileActivity.getPackageName()};
  395. DialogFragment chooserDialog = ShareLinkToDialog.newInstance(sendIntent, packagesToExclude);
  396. chooserDialog.show(mFileActivity.getSupportFragmentManager(), FTAG_CHOOSER_DIALOG);
  397. } else {
  398. Log_OC.wtf(TAG, "Trying to send a NULL OCFile");
  399. }
  400. }
  401. /**
  402. * Request the synchronization of a file or folder with the OC server, including its contents.
  403. *
  404. * @param file The file or folder to synchronize
  405. */
  406. public void syncFile(OCFile file) {
  407. if (!file.isFolder()){
  408. Intent intent = new Intent(mFileActivity, OperationsService.class);
  409. intent.setAction(OperationsService.ACTION_SYNC_FILE);
  410. intent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  411. intent.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  412. intent.putExtra(OperationsService.EXTRA_SYNC_FILE_CONTENTS, true);
  413. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(intent);
  414. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  415. getString(R.string.wait_a_moment));
  416. } else {
  417. Intent intent = new Intent(mFileActivity, OperationsService.class);
  418. intent.setAction(OperationsService.ACTION_SYNC_FOLDER);
  419. intent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  420. intent.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  421. mFileActivity.startService(intent);
  422. }
  423. }
  424. public void toggleFavorite(OCFile file, boolean isFavorite) {
  425. file.setFavorite(isFavorite);
  426. mFileActivity.getStorageManager().saveFile(file);
  427. /// register the OCFile instance in the observer service to monitor local updates
  428. Intent observedFileIntent = FileObserverService.makeObservedFileIntent(
  429. mFileActivity,
  430. file,
  431. mFileActivity.getAccount(),
  432. isFavorite);
  433. mFileActivity.startService(observedFileIntent);
  434. /// immediate content synchronization
  435. if (file.isFavorite()) {
  436. syncFile(file);
  437. }
  438. }
  439. public void renameFile(OCFile file, String newFilename) {
  440. // RenameFile
  441. Intent service = new Intent(mFileActivity, OperationsService.class);
  442. service.setAction(OperationsService.ACTION_RENAME);
  443. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  444. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  445. service.putExtra(OperationsService.EXTRA_NEWNAME, newFilename);
  446. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  447. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  448. getString(R.string.wait_a_moment));
  449. }
  450. public void removeFile(OCFile file, boolean onlyLocalCopy) {
  451. // RemoveFile
  452. Intent service = new Intent(mFileActivity, OperationsService.class);
  453. service.setAction(OperationsService.ACTION_REMOVE);
  454. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  455. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  456. service.putExtra(OperationsService.EXTRA_REMOVE_ONLY_LOCAL, onlyLocalCopy);
  457. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  458. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  459. getString(R.string.wait_a_moment));
  460. }
  461. public void createFolder(String remotePath, boolean createFullPath) {
  462. // Create Folder
  463. Intent service = new Intent(mFileActivity, OperationsService.class);
  464. service.setAction(OperationsService.ACTION_CREATE_FOLDER);
  465. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  466. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, remotePath);
  467. service.putExtra(OperationsService.EXTRA_CREATE_FULL_PATH, createFullPath);
  468. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  469. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  470. getString(R.string.wait_a_moment));
  471. }
  472. /**
  473. * Cancel the transference in downloads (files/folders) and file uploads
  474. * @param file OCFile
  475. */
  476. public void cancelTransference(OCFile file) {
  477. Account account = mFileActivity.getAccount();
  478. if (file.isFolder()) {
  479. OperationsService.OperationsServiceBinder opsBinder =
  480. mFileActivity.getOperationsServiceBinder();
  481. if (opsBinder != null) {
  482. opsBinder.cancel(account, file);
  483. }
  484. }
  485. // for both files and folders
  486. FileDownloaderBinder downloaderBinder = mFileActivity.getFileDownloaderBinder();
  487. if (downloaderBinder != null && downloaderBinder.isDownloading(account, file)) {
  488. downloaderBinder.cancel(account, file);
  489. }
  490. FileUploaderBinder uploaderBinder = mFileActivity.getFileUploaderBinder();
  491. if (uploaderBinder != null && uploaderBinder.isUploading(account, file)) {
  492. uploaderBinder.cancel(account, file);
  493. }
  494. }
  495. /**
  496. * Start move file operation
  497. *
  498. * @param newfile File where it is going to be moved
  499. * @param currentFile File with the previous info
  500. */
  501. public void moveFile(OCFile newfile, OCFile currentFile) {
  502. // Move files
  503. Intent service = new Intent(mFileActivity, OperationsService.class);
  504. service.setAction(OperationsService.ACTION_MOVE_FILE);
  505. service.putExtra(OperationsService.EXTRA_NEW_PARENT_PATH, newfile.getRemotePath());
  506. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, currentFile.getRemotePath());
  507. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  508. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  509. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  510. getString(R.string.wait_a_moment));
  511. }
  512. /**
  513. * Start copy file operation
  514. *
  515. * @param newfile File where it is going to be moved
  516. * @param currentFile File with the previous info
  517. */
  518. public void copyFile(OCFile newfile, OCFile currentFile) {
  519. // Copy files
  520. Intent service = new Intent(mFileActivity, OperationsService.class);
  521. service.setAction(OperationsService.ACTION_COPY_FILE);
  522. service.putExtra(OperationsService.EXTRA_NEW_PARENT_PATH, newfile.getRemotePath());
  523. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, currentFile.getRemotePath());
  524. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  525. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  526. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  527. getString(R.string.wait_a_moment));
  528. }
  529. public long getOpIdWaitingFor() {
  530. return mWaitingForOpId;
  531. }
  532. public void setOpIdWaitingFor(long waitingForOpId) {
  533. mWaitingForOpId = waitingForOpId;
  534. }
  535. /**
  536. * @return 'True' if the server doesn't need to check forbidden characters
  537. */
  538. public boolean isVersionWithForbiddenCharacters() {
  539. if (mFileActivity.getAccount() != null) {
  540. OwnCloudVersion serverVersion =
  541. AccountUtils.getServerVersion(mFileActivity.getAccount());
  542. return (serverVersion != null && serverVersion.isVersionWithForbiddenCharacters());
  543. }
  544. return false;
  545. }
  546. /**
  547. * Starts a check of the currenlty stored credentials for the given account.
  548. *
  549. * @param account OC account which credentials will be checked.
  550. */
  551. public void checkCurrentCredentials(Account account) {
  552. Intent service = new Intent(mFileActivity, OperationsService.class);
  553. service.setAction(OperationsService.ACTION_CHECK_CURRENT_CREDENTIALS);
  554. service.putExtra(OperationsService.EXTRA_ACCOUNT, account);
  555. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  556. mFileActivity.showLoadingDialog(
  557. mFileActivity.getApplicationContext().getString(R.string.wait_checking_credentials)
  558. );
  559. }
  560. }