MoveFileOperation.java 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * ownCloud Android client application
  3. *
  4. * @author David A. Velasco
  5. * Copyright (C) 2015 ownCloud Inc.
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2,
  9. * as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package com.owncloud.android.operations;
  20. import com.owncloud.android.datamodel.OCFile;
  21. import com.owncloud.android.lib.common.OwnCloudClient;
  22. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  23. import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode;
  24. import com.owncloud.android.lib.resources.files.MoveFileRemoteOperation;
  25. import com.owncloud.android.operations.common.SyncOperation;
  26. /**
  27. * Operation moving an {@link OCFile} to a different folder.
  28. */
  29. public class MoveFileOperation extends SyncOperation {
  30. private String srcPath;
  31. private String targetParentPath;
  32. /**
  33. * Constructor
  34. *
  35. * @param srcPath Remote path of the {@link OCFile} to move.
  36. * @param targetParentPath Path to the folder where the file will be moved into.
  37. */
  38. public MoveFileOperation(String srcPath, String targetParentPath) {
  39. this.srcPath = srcPath;
  40. this.targetParentPath = targetParentPath;
  41. if (!this.targetParentPath.endsWith(OCFile.PATH_SEPARATOR)) {
  42. this.targetParentPath += OCFile.PATH_SEPARATOR;
  43. }
  44. }
  45. /**
  46. * Performs the operation.
  47. *
  48. * @param client Client object to communicate with the remote ownCloud server.
  49. */
  50. @Override
  51. protected RemoteOperationResult run(OwnCloudClient client) {
  52. /// 1. check move validity
  53. if (targetParentPath.startsWith(srcPath)) {
  54. return new RemoteOperationResult(ResultCode.INVALID_MOVE_INTO_DESCENDANT);
  55. }
  56. OCFile file = getStorageManager().getFileByPath(srcPath);
  57. if (file == null) {
  58. return new RemoteOperationResult(ResultCode.FILE_NOT_FOUND);
  59. }
  60. /// 2. remote move
  61. String targetPath = targetParentPath + file.getFileName();
  62. if (file.isFolder()) {
  63. targetPath += OCFile.PATH_SEPARATOR;
  64. }
  65. RemoteOperationResult result = new MoveFileRemoteOperation(srcPath, targetPath, false).execute(client);
  66. /// 3. local move
  67. if (result.isSuccess()) {
  68. getStorageManager().moveLocalFile(file, targetPath, targetParentPath);
  69. }
  70. // TODO handle ResultCode.PARTIAL_MOVE_DONE in client Activity, for the moment
  71. return result;
  72. }
  73. }