CreateShareOperation.java 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author masensio
  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. */
  20. package com.owncloud.android.operations;
  21. /**
  22. * Creates a new share from a given file
  23. */
  24. import android.content.Context;
  25. import android.content.Intent;
  26. import com.owncloud.android.MainApp;
  27. import com.owncloud.android.R;
  28. import com.owncloud.android.datamodel.FileDataStorageManager;
  29. import com.owncloud.android.datamodel.OCFile;
  30. import com.owncloud.android.lib.common.OwnCloudClient;
  31. import com.owncloud.android.lib.resources.shares.OCShare;
  32. import com.owncloud.android.lib.common.operations.RemoteOperation;
  33. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  34. import com.owncloud.android.lib.common.utils.Log_OC;
  35. import com.owncloud.android.lib.resources.shares.GetRemoteSharesForFileOperation;
  36. import com.owncloud.android.lib.resources.shares.ShareType;
  37. import com.owncloud.android.lib.resources.shares.CreateRemoteShareOperation;
  38. import com.owncloud.android.lib.resources.files.FileUtils;
  39. import com.owncloud.android.operations.common.SyncOperation;
  40. public class CreateShareOperation extends SyncOperation {
  41. private static final String TAG = CreateShareOperation.class.getSimpleName();
  42. protected FileDataStorageManager mStorageManager;
  43. private Context mContext;
  44. private String mPath;
  45. private ShareType mShareType;
  46. private String mShareWith;
  47. private boolean mPublicUpload;
  48. private String mPassword;
  49. private int mPermissions;
  50. private Intent mSendIntent;
  51. /**
  52. * Constructor
  53. * @param context The context that the share is coming from.
  54. * @param path Full path of the file/folder being shared. Mandatory argument
  55. * @param shareType 0 = user, 1 = group, 3 = Public link. Mandatory argument
  56. * @param shareWith User/group ID with who the file should be shared.
  57. * This is mandatory for shareType of 0 or 1
  58. * @param publicUpload If false (default) public cannot upload to a public shared folder.
  59. * If true public can upload to a shared folder.
  60. * Only available for public link shares
  61. * @param password Password to protect a public link share.
  62. * Only available for public link shares
  63. * @param permissions 1 - Read only - Default for public shares
  64. * 2 - Update
  65. * 4 - Create
  66. * 8 - Delete
  67. * 16- Re-share
  68. * 31- All above - Default for private shares
  69. * For user or group shares.
  70. * To obtain combinations, add the desired values together.
  71. * For instance, for Re-Share, delete, read, update, add 16+8+2+1 = 27.
  72. */
  73. public CreateShareOperation(Context context, String path, ShareType shareType, String shareWith,
  74. boolean publicUpload, String password, int permissions,
  75. Intent sendIntent) {
  76. mContext = context;
  77. mPath = path;
  78. mShareType = shareType;
  79. mShareWith = shareWith;
  80. mPublicUpload = publicUpload;
  81. mPassword = password;
  82. mPermissions = permissions;
  83. mSendIntent = sendIntent;
  84. }
  85. @Override
  86. protected RemoteOperationResult run(OwnCloudClient client) {
  87. RemoteOperation operation = null;
  88. // Check if the share link already exists
  89. operation = new GetRemoteSharesForFileOperation(mPath, false, false);
  90. RemoteOperationResult result =
  91. ((GetRemoteSharesForFileOperation)operation).execute(client);
  92. if (!result.isSuccess() || result.getData().size() <= 0) {
  93. operation = new CreateRemoteShareOperation(mPath, mShareType, mShareWith, mPublicUpload,
  94. mPassword, mPermissions);
  95. result = ((CreateRemoteShareOperation)operation).execute(client);
  96. }
  97. if (result.isSuccess()) {
  98. if (result.getData().size() > 0) {
  99. OCShare share = (OCShare) result.getData().get(0);
  100. updateData(share);
  101. }
  102. }
  103. return result;
  104. }
  105. public String getPath() {
  106. return mPath;
  107. }
  108. public ShareType getShareType() {
  109. return mShareType;
  110. }
  111. public String getShareWith() {
  112. return mShareWith;
  113. }
  114. public boolean getPublicUpload() {
  115. return mPublicUpload;
  116. }
  117. public String getPassword() {
  118. return mPassword;
  119. }
  120. public int getPermissions() {
  121. return mPermissions;
  122. }
  123. public Intent getSendIntent() {
  124. return mSendIntent;
  125. }
  126. private void updateData(OCShare share) {
  127. // Update DB with the response
  128. share.setPath(mPath);
  129. if (mPath.endsWith(FileUtils.PATH_SEPARATOR)) {
  130. share.setIsFolder(true);
  131. } else {
  132. share.setIsFolder(false);
  133. }
  134. share.setPermissions(mPermissions);
  135. getStorageManager().saveShare(share);
  136. // Update OCFile with data from share: ShareByLink and publicLink
  137. OCFile file = getStorageManager().getFileByPath(mPath);
  138. if (file!=null) {
  139. mSendIntent.putExtra(Intent.EXTRA_TEXT, share.getShareLink());
  140. mSendIntent.putExtra(Intent.EXTRA_SUBJECT, String.format(mContext.getString(R.string.subject_token),
  141. getClient().getCredentials().getUsername(), file.getFileName()));
  142. file.setPublicLink(share.getShareLink());
  143. file.setShareByLink(true);
  144. getStorageManager().saveFile(file);
  145. Log_OC.d(TAG, "Public Link = " + file.getPublicLink());
  146. }
  147. }
  148. }