CreateShareViaLinkOperation.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * ownCloud Android client application
  3. *
  4. * @author masensio
  5. * @author David A. Velasco
  6. * Copyright (C) 2015 ownCloud Inc.
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2,
  10. * as published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. */
  21. package com.owncloud.android.operations;
  22. import com.owncloud.android.datamodel.OCFile;
  23. import com.owncloud.android.lib.common.OwnCloudClient;
  24. import com.owncloud.android.lib.common.operations.RemoteOperation;
  25. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  26. import com.owncloud.android.lib.resources.files.FileUtils;
  27. import com.owncloud.android.lib.resources.shares.CreateShareRemoteOperation;
  28. import com.owncloud.android.lib.resources.shares.GetSharesForFileRemoteOperation;
  29. import com.owncloud.android.lib.resources.shares.OCShare;
  30. import com.owncloud.android.lib.resources.shares.ShareType;
  31. import com.owncloud.android.operations.common.SyncOperation;
  32. import java.util.ArrayList;
  33. import lombok.AllArgsConstructor;
  34. import lombok.Getter;
  35. /**
  36. * Creates a new public share for a given file
  37. */
  38. @AllArgsConstructor
  39. @Getter
  40. public class CreateShareViaLinkOperation extends SyncOperation {
  41. private String path;
  42. private String password;
  43. @Override
  44. protected RemoteOperationResult run(OwnCloudClient client) {
  45. // Check if the share link already exists
  46. RemoteOperation operation = new GetSharesForFileRemoteOperation(path, false, false);
  47. RemoteOperationResult result = operation.execute(client);
  48. // Create public link if doesn't exist yet
  49. boolean publicShareExists = false;
  50. if (result.isSuccess()) {
  51. OCShare share;
  52. for (int i=0 ; i<result.getData().size(); i++) {
  53. share = (OCShare) result.getData().get(i);
  54. if (ShareType.PUBLIC_LINK.equals(share.getShareType())) {
  55. publicShareExists = true;
  56. break;
  57. }
  58. }
  59. }
  60. if (!publicShareExists) {
  61. CreateShareRemoteOperation createOp = new CreateShareRemoteOperation(
  62. path,
  63. ShareType.PUBLIC_LINK,
  64. "",
  65. false,
  66. password,
  67. OCShare.DEFAULT_PERMISSION
  68. );
  69. createOp.setGetShareDetails(true);
  70. result = createOp.execute(client);
  71. }
  72. if (result.isSuccess()) {
  73. if (result.getData().size() > 0) {
  74. Object item = result.getData().get(0);
  75. if (item instanceof OCShare) {
  76. updateData((OCShare) item);
  77. } else {
  78. ArrayList<Object> data = result.getData();
  79. result = new RemoteOperationResult(
  80. RemoteOperationResult.ResultCode.SHARE_NOT_FOUND
  81. );
  82. result.setData(data);
  83. }
  84. } else {
  85. result = new RemoteOperationResult(RemoteOperationResult.ResultCode.SHARE_NOT_FOUND);
  86. }
  87. }
  88. return result;
  89. }
  90. private void updateData(OCShare share) {
  91. // Update DB with the response
  92. share.setPath(path);
  93. if (path.endsWith(FileUtils.PATH_SEPARATOR)) {
  94. share.setFolder(true);
  95. } else {
  96. share.setFolder(false);
  97. }
  98. getStorageManager().saveShare(share);
  99. // Update OCFile with data from share: ShareByLink and publicLink
  100. OCFile file = getStorageManager().getFileByPath(path);
  101. if (file!=null) {
  102. file.setPublicLink(share.getShareLink());
  103. file.setSharedViaLink(true);
  104. getStorageManager().saveFile(file);
  105. }
  106. }
  107. }