FileOperationsHelper.java 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877
  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. package com.owncloud.android.ui.helpers;
  22. import android.accounts.Account;
  23. import android.content.ActivityNotFoundException;
  24. import android.content.ComponentName;
  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.Build;
  31. import android.support.annotation.Nullable;
  32. import android.support.design.widget.Snackbar;
  33. import android.support.v4.app.FragmentManager;
  34. import android.support.v4.app.FragmentTransaction;
  35. import android.support.v4.content.FileProvider;
  36. import android.util.Log;
  37. import android.view.View;
  38. import android.webkit.MimeTypeMap;
  39. import com.owncloud.android.MainApp;
  40. import com.owncloud.android.R;
  41. import com.owncloud.android.authentication.AccountUtils;
  42. import com.owncloud.android.datamodel.FileDataStorageManager;
  43. import com.owncloud.android.datamodel.OCFile;
  44. import com.owncloud.android.files.services.FileDownloader.FileDownloaderBinder;
  45. import com.owncloud.android.files.services.FileUploader.FileUploaderBinder;
  46. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  47. import com.owncloud.android.lib.common.utils.Log_OC;
  48. import com.owncloud.android.lib.resources.shares.OCShare;
  49. import com.owncloud.android.lib.resources.shares.ShareType;
  50. import com.owncloud.android.lib.resources.status.OwnCloudVersion;
  51. import com.owncloud.android.operations.SynchronizeFileOperation;
  52. import com.owncloud.android.services.OperationsService;
  53. import com.owncloud.android.ui.activity.ConflictsResolveActivity;
  54. import com.owncloud.android.ui.activity.FileActivity;
  55. import com.owncloud.android.ui.activity.ShareActivity;
  56. import com.owncloud.android.ui.dialog.SendShareDialog;
  57. import com.owncloud.android.ui.events.EncryptionEvent;
  58. import com.owncloud.android.ui.events.FavoriteEvent;
  59. import com.owncloud.android.ui.events.SyncEventFinished;
  60. import com.owncloud.android.utils.DisplayUtils;
  61. import com.owncloud.android.utils.FileStorageUtils;
  62. import com.owncloud.android.utils.UriUtils;
  63. import org.greenrobot.eventbus.EventBus;
  64. import java.io.BufferedReader;
  65. import java.io.File;
  66. import java.io.FileInputStream;
  67. import java.io.IOException;
  68. import java.io.InputStreamReader;
  69. import java.util.ArrayList;
  70. import java.util.Arrays;
  71. import java.util.Collection;
  72. import java.util.List;
  73. import java.util.regex.Matcher;
  74. import java.util.regex.Pattern;
  75. /**
  76. *
  77. */
  78. public class FileOperationsHelper {
  79. private static final String TAG = FileOperationsHelper.class.getSimpleName();
  80. private static final Pattern mPatternUrl = Pattern.compile("^URL=(.+)$");
  81. private static final Pattern mPatternString = Pattern.compile("<string>(.+)</string>");
  82. private FileActivity mFileActivity = null;
  83. /// Identifier of operation in progress which result shouldn't be lost
  84. private long mWaitingForOpId = Long.MAX_VALUE;
  85. public FileOperationsHelper(FileActivity fileActivity) {
  86. mFileActivity = fileActivity;
  87. }
  88. @Nullable
  89. private String getUrlFromFile(String storagePath, Pattern pattern) {
  90. String url = null;
  91. InputStreamReader fr = null;
  92. BufferedReader br = null;
  93. try {
  94. fr = new InputStreamReader(new FileInputStream(storagePath), "UTF8");
  95. br = new BufferedReader(fr);
  96. String line;
  97. while ((line = br.readLine()) != null) {
  98. Matcher m = pattern.matcher(line);
  99. if (m.find()) {
  100. url = m.group(1);
  101. break;
  102. }
  103. }
  104. } catch (IOException e) {
  105. Log_OC.d(TAG, e.getMessage());
  106. } finally {
  107. if (br != null) {
  108. try {
  109. br.close();
  110. } catch (IOException e) {
  111. Log_OC.d(TAG, "Error closing buffered reader for URL file", e);
  112. }
  113. }
  114. if (fr != null) {
  115. try {
  116. fr.close();
  117. } catch (IOException e) {
  118. Log_OC.d(TAG, "Error closing file reader for URL file", e);
  119. }
  120. }
  121. }
  122. return url;
  123. }
  124. @Nullable
  125. private Intent createIntentFromFile(String storagePath) {
  126. String url = null;
  127. int lastIndexOfDot = storagePath.lastIndexOf('.');
  128. if (lastIndexOfDot >= 0) {
  129. String fileExt = storagePath.substring(lastIndexOfDot + 1);
  130. if (fileExt.equalsIgnoreCase("url") || fileExt.equalsIgnoreCase("desktop")) {
  131. // Windows internet shortcut file .url
  132. // Ubuntu internet shortcut file .desktop
  133. url = getUrlFromFile(storagePath, mPatternUrl);
  134. } else if (fileExt.equalsIgnoreCase("webloc")) {
  135. // mac internet shortcut file .webloc
  136. url = getUrlFromFile(storagePath, mPatternString);
  137. }
  138. }
  139. if (url == null) {
  140. return null;
  141. }
  142. return new Intent(Intent.ACTION_VIEW, Uri.parse(url));
  143. }
  144. public void startSyncForFileAndIntent(OCFile file, Intent intent) {
  145. mFileActivity.showLoadingDialog(mFileActivity.getResources().getString(R.string.sync_in_progress));
  146. new Thread(new Runnable() {
  147. @Override
  148. public void run() {
  149. Account account = AccountUtils.getCurrentOwnCloudAccount(mFileActivity);
  150. FileDataStorageManager storageManager =
  151. new FileDataStorageManager(account, mFileActivity.getContentResolver());
  152. SynchronizeFileOperation sfo =
  153. new SynchronizeFileOperation(file, null, account, true, mFileActivity);
  154. RemoteOperationResult result = sfo.execute(storageManager, mFileActivity);
  155. if (result.getCode() == RemoteOperationResult.ResultCode.SYNC_CONFLICT) {
  156. // ISSUE 5: if the user is not running the app (this is a service!),
  157. // this can be very intrusive; a notification should be preferred
  158. Intent i = new Intent(mFileActivity, ConflictsResolveActivity.class);
  159. i.setFlags(i.getFlags() | Intent.FLAG_ACTIVITY_NEW_TASK);
  160. i.putExtra(ConflictsResolveActivity.EXTRA_FILE, file);
  161. i.putExtra(ConflictsResolveActivity.EXTRA_ACCOUNT, account);
  162. mFileActivity.startActivity(i);
  163. } else {
  164. if (file.isDown()) {
  165. FileStorageUtils.checkIfFileFinishedSaving(file);
  166. if (!result.isSuccess()) {
  167. DisplayUtils.showSnackMessage(mFileActivity, R.string.file_not_synced);
  168. try {
  169. Thread.sleep(3000);
  170. } catch (InterruptedException e) {
  171. Log.e(TAG, "Failed to sleep for a bit");
  172. }
  173. }
  174. EventBus.getDefault().post(new SyncEventFinished(intent));
  175. }
  176. }
  177. mFileActivity.dismissLoadingDialog();
  178. }
  179. }).start();
  180. }
  181. public void openFile(OCFile file) {
  182. if (file != null) {
  183. String storagePath = file.getStoragePath();
  184. String[] officeExtensions = MainApp.getAppContext().getResources().getStringArray(R.array
  185. .ms_office_extensions);
  186. Uri fileUri;
  187. if (file.getFileName().contains(".") &&
  188. Arrays.asList(officeExtensions).contains(file.getFileName().substring(file.getFileName().
  189. lastIndexOf(".") + 1, file.getFileName().length())) &&
  190. !file.getStoragePath().startsWith(MainApp.getAppContext().getFilesDir().getAbsolutePath())) {
  191. fileUri = file.getLegacyExposedFileUri(mFileActivity);
  192. } else {
  193. fileUri = file.getExposedFileUri(mFileActivity);
  194. }
  195. Intent openFileWithIntent = null;
  196. int lastIndexOfDot = storagePath.lastIndexOf('.');
  197. if (lastIndexOfDot >= 0) {
  198. String fileExt = storagePath.substring(lastIndexOfDot + 1);
  199. String guessedMimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(fileExt);
  200. if (guessedMimeType != null) {
  201. openFileWithIntent = new Intent(Intent.ACTION_VIEW);
  202. openFileWithIntent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
  203. openFileWithIntent.setDataAndType(
  204. fileUri,
  205. guessedMimeType
  206. );
  207. }
  208. }
  209. if (openFileWithIntent == null) {
  210. openFileWithIntent = createIntentFromFile(storagePath);
  211. }
  212. if (openFileWithIntent == null) {
  213. openFileWithIntent = new Intent(Intent.ACTION_VIEW);
  214. openFileWithIntent.setDataAndType(
  215. fileUri,
  216. file.getMimetype()
  217. );
  218. }
  219. openFileWithIntent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
  220. List<ResolveInfo> launchables = mFileActivity.getPackageManager().
  221. queryIntentActivities(openFileWithIntent, PackageManager.GET_RESOLVED_FILTER);
  222. mFileActivity.showLoadingDialog(mFileActivity.getResources().getString(R.string.sync_in_progress));
  223. Intent finalOpenFileWithIntent = openFileWithIntent;
  224. new Thread(new Runnable() {
  225. @Override
  226. public void run() {
  227. Account account = AccountUtils.getCurrentOwnCloudAccount(mFileActivity);
  228. FileDataStorageManager storageManager =
  229. new FileDataStorageManager(account, mFileActivity.getContentResolver());
  230. // a fresh object is needed; many things could have occurred to the file
  231. // since it was registered to observe again, assuming that local files
  232. // are linked to a remote file AT MOST, SOMETHING TO BE DONE;
  233. SynchronizeFileOperation sfo =
  234. new SynchronizeFileOperation(file, null, account, true, mFileActivity);
  235. RemoteOperationResult result = sfo.execute(storageManager, mFileActivity);
  236. mFileActivity.dismissLoadingDialog();
  237. if (result.getCode() == RemoteOperationResult.ResultCode.SYNC_CONFLICT) {
  238. // ISSUE 5: if the user is not running the app (this is a service!),
  239. // this can be very intrusive; a notification should be preferred
  240. Intent i = new Intent(mFileActivity, ConflictsResolveActivity.class);
  241. i.setFlags(i.getFlags() | Intent.FLAG_ACTIVITY_NEW_TASK);
  242. i.putExtra(ConflictsResolveActivity.EXTRA_FILE, file);
  243. i.putExtra(ConflictsResolveActivity.EXTRA_ACCOUNT, account);
  244. mFileActivity.startActivity(i);
  245. } else {
  246. if (launchables != null && launchables.size() > 0) {
  247. try {
  248. if (!result.isSuccess()) {
  249. DisplayUtils.showSnackMessage(mFileActivity, R.string.file_not_synced);
  250. try {
  251. Thread.sleep(3000);
  252. } catch (InterruptedException e) {
  253. Log.e(TAG, "Failed to sleep");
  254. }
  255. }
  256. mFileActivity.startActivity(
  257. Intent.createChooser(
  258. finalOpenFileWithIntent,
  259. mFileActivity.getString(R.string.actionbar_open_with)
  260. )
  261. );
  262. } catch (ActivityNotFoundException exception) {
  263. DisplayUtils.showSnackMessage(mFileActivity, R.string.file_list_no_app_for_file_type);
  264. }
  265. } else {
  266. DisplayUtils.showSnackMessage(mFileActivity, R.string.file_list_no_app_for_file_type);
  267. }
  268. }
  269. }
  270. }).start();
  271. } else {
  272. Log_OC.e(TAG, "Trying to open a NULL OCFile");
  273. }
  274. }
  275. /**
  276. * Helper method to share a file via a public link. Starts a request to do it in {@link OperationsService}
  277. *
  278. * @param file The file to share.
  279. * @param password Optional password to protect the public share.
  280. */
  281. public void shareFileViaLink(OCFile file, String password) {
  282. if (isSharedSupported()) {
  283. if (file != null) {
  284. mFileActivity.showLoadingDialog(mFileActivity.getString(R.string.wait_a_moment));
  285. Intent service = new Intent(mFileActivity, OperationsService.class);
  286. service.setAction(OperationsService.ACTION_CREATE_SHARE_VIA_LINK);
  287. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  288. if (password != null && password.length() > 0) {
  289. service.putExtra(OperationsService.EXTRA_SHARE_PASSWORD, password);
  290. }
  291. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  292. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  293. } else {
  294. Log_OC.e(TAG, "Trying to share a NULL OCFile");
  295. // TODO user-level error?
  296. }
  297. } else {
  298. // Show a Message
  299. DisplayUtils.showSnackMessage(mFileActivity, R.string.share_link_no_support_share_api);
  300. }
  301. }
  302. public void getFileWithLink(OCFile file) {
  303. if (isSharedSupported()) {
  304. if (file != null) {
  305. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  306. getString(R.string.wait_a_moment));
  307. Intent service = new Intent(mFileActivity, OperationsService.class);
  308. service.setAction(OperationsService.ACTION_CREATE_SHARE_VIA_LINK);
  309. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  310. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  311. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  312. } else {
  313. Log_OC.e(TAG, "Trying to share a NULL OCFile");
  314. }
  315. } else {
  316. // Show a Message
  317. DisplayUtils.showSnackMessage(mFileActivity, R.string.share_link_no_support_share_api);
  318. }
  319. }
  320. /**
  321. * Helper method to share a file with a known sharee. Starts a request to do it in {@link OperationsService}
  322. *
  323. * @param file The file to share.
  324. * @param shareeName Name (user name or group name) of the target sharee.
  325. * @param shareType The share type determines the sharee type.
  326. * @param permissions Permissions to grant to sharee on the shared file.
  327. */
  328. public void shareFileWithSharee(OCFile file, String shareeName, ShareType shareType, int permissions) {
  329. if (file != null) {
  330. // TODO check capability?
  331. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  332. getString(R.string.wait_a_moment));
  333. Intent service = new Intent(mFileActivity, OperationsService.class);
  334. service.setAction(OperationsService.ACTION_CREATE_SHARE_WITH_SHAREE);
  335. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  336. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  337. service.putExtra(OperationsService.EXTRA_SHARE_WITH, shareeName);
  338. service.putExtra(OperationsService.EXTRA_SHARE_TYPE, shareType);
  339. service.putExtra(OperationsService.EXTRA_SHARE_PERMISSIONS, permissions);
  340. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  341. } else {
  342. Log_OC.e(TAG, "Trying to share a NULL OCFile");
  343. }
  344. }
  345. /**
  346. * @return 'True' if the server supports the Share API
  347. */
  348. public boolean isSharedSupported() {
  349. if (mFileActivity.getAccount() != null) {
  350. OwnCloudVersion serverVersion = AccountUtils.getServerVersion(mFileActivity.getAccount());
  351. return (serverVersion != null && serverVersion.isSharedSupported());
  352. }
  353. return false;
  354. }
  355. /**
  356. * Helper method to unshare a file publicly shared via link.
  357. * Starts a request to do it in {@link OperationsService}
  358. *
  359. * @param file The file to unshare.
  360. */
  361. public void unshareFileViaLink(OCFile file) {
  362. // Unshare the file: Create the intent
  363. Intent unshareService = new Intent(mFileActivity, OperationsService.class);
  364. unshareService.setAction(OperationsService.ACTION_UNSHARE);
  365. unshareService.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  366. unshareService.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  367. unshareService.putExtra(OperationsService.EXTRA_SHARE_TYPE, ShareType.PUBLIC_LINK);
  368. unshareService.putExtra(OperationsService.EXTRA_SHARE_WITH, "");
  369. queueShareIntent(unshareService);
  370. }
  371. public void unshareFileWithUserOrGroup(OCFile file, ShareType shareType, String userOrGroup) {
  372. // Unshare the file: Create the intent
  373. Intent unshareService = new Intent(mFileActivity, OperationsService.class);
  374. unshareService.setAction(OperationsService.ACTION_UNSHARE);
  375. unshareService.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  376. unshareService.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  377. unshareService.putExtra(OperationsService.EXTRA_SHARE_TYPE, shareType);
  378. unshareService.putExtra(OperationsService.EXTRA_SHARE_WITH, userOrGroup);
  379. queueShareIntent(unshareService);
  380. }
  381. private void queueShareIntent(Intent shareIntent) {
  382. if (isSharedSupported()) {
  383. // Unshare the file
  384. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().
  385. queueNewOperation(shareIntent);
  386. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  387. getString(R.string.wait_a_moment));
  388. } else {
  389. // Show a Message
  390. DisplayUtils.showSnackMessage(mFileActivity, R.string.share_link_no_support_share_api);
  391. }
  392. }
  393. /**
  394. * Show an instance of {@link ShareType} for sharing or unsharing the {@link OCFile} received as parameter.
  395. *
  396. * @param file File to share or unshare.
  397. */
  398. public void showShareFile(OCFile file) {
  399. Intent intent = new Intent(mFileActivity, ShareActivity.class);
  400. intent.putExtra(FileActivity.EXTRA_FILE, file);
  401. intent.putExtra(FileActivity.EXTRA_ACCOUNT, mFileActivity.getAccount());
  402. mFileActivity.startActivity(intent);
  403. }
  404. /**
  405. * Updates a public share on a file to set its password.
  406. * Starts a request to do it in {@link OperationsService}
  407. *
  408. * @param file File which public share will be protected with a password.
  409. * @param password Password to set for the public link; null or empty string to clear
  410. * the current password
  411. */
  412. public void setPasswordToShareViaLink(OCFile file, String password) {
  413. // Set password updating share
  414. Intent updateShareIntent = new Intent(mFileActivity, OperationsService.class);
  415. updateShareIntent.setAction(OperationsService.ACTION_UPDATE_SHARE);
  416. updateShareIntent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  417. updateShareIntent.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  418. updateShareIntent.putExtra(
  419. OperationsService.EXTRA_SHARE_PASSWORD,
  420. (password == null) ? "" : password
  421. );
  422. queueShareIntent(updateShareIntent);
  423. }
  424. /**
  425. * Updates a public share on a file to set its expiration date.
  426. * Starts a request to do it in {@link OperationsService}
  427. *
  428. * @param file File which public share will be constrained with an expiration date.
  429. * @param expirationTimeInMillis Expiration date to set. A negative value clears the current expiration
  430. * date, leaving the link unrestricted. Zero makes no change.
  431. */
  432. public void setExpirationDateToShareViaLink(OCFile file, long expirationTimeInMillis) {
  433. Intent updateShareIntent = new Intent(mFileActivity, OperationsService.class);
  434. updateShareIntent.setAction(OperationsService.ACTION_UPDATE_SHARE);
  435. updateShareIntent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  436. updateShareIntent.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  437. updateShareIntent.putExtra(
  438. OperationsService.EXTRA_SHARE_EXPIRATION_DATE_IN_MILLIS,
  439. expirationTimeInMillis
  440. );
  441. queueShareIntent(updateShareIntent);
  442. }
  443. /**
  444. * Updates a share on a file to set its access permissions.
  445. * Starts a request to do it in {@link OperationsService}
  446. *
  447. * @param share {@link OCShare} instance which permissions will be updated.
  448. * @param permissions New permissions to set. A value <= 0 makes no update.
  449. */
  450. public void setPermissionsToShare(OCShare share, int permissions) {
  451. Intent updateShareIntent = new Intent(mFileActivity, OperationsService.class);
  452. updateShareIntent.setAction(OperationsService.ACTION_UPDATE_SHARE);
  453. updateShareIntent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  454. updateShareIntent.putExtra(OperationsService.EXTRA_SHARE_ID, share.getId());
  455. updateShareIntent.putExtra(
  456. OperationsService.EXTRA_SHARE_PERMISSIONS,
  457. permissions
  458. );
  459. queueShareIntent(updateShareIntent);
  460. }
  461. /**
  462. * Updates a public share on a folder to set its editing permission.
  463. * Starts a request to do it in {@link OperationsService}
  464. *
  465. * @param folder Folder which editing permission of his public share will be modified.
  466. * @param uploadPermission New state of the permission for editing the folder shared via link.
  467. */
  468. public void setUploadPermissionsToShare(OCFile folder, boolean uploadPermission) {
  469. Intent updateShareIntent = new Intent(mFileActivity, OperationsService.class);
  470. updateShareIntent.setAction(OperationsService.ACTION_UPDATE_SHARE);
  471. updateShareIntent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  472. updateShareIntent.putExtra(OperationsService.EXTRA_REMOTE_PATH, folder.getRemotePath());
  473. updateShareIntent.putExtra(
  474. OperationsService.EXTRA_SHARE_PUBLIC_UPLOAD,
  475. uploadPermission
  476. );
  477. queueShareIntent(updateShareIntent);
  478. }
  479. /**
  480. * Updates a public share on a folder to set its hide file listing permission.
  481. * Starts a request to do it in {@link OperationsService}
  482. *
  483. * @param share {@link OCShare} instance which permissions will be updated.
  484. * @param hideFileListing New state of the permission for editing the folder shared via link.
  485. */
  486. public void setHideFileListingPermissionsToShare(OCShare share, boolean hideFileListing) {
  487. Intent updateShareIntent = new Intent(mFileActivity, OperationsService.class);
  488. updateShareIntent.setAction(OperationsService.ACTION_UPDATE_SHARE);
  489. updateShareIntent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  490. updateShareIntent.putExtra(OperationsService.EXTRA_SHARE_ID, share.getId());
  491. if (hideFileListing) {
  492. updateShareIntent.putExtra(OperationsService.EXTRA_SHARE_PERMISSIONS, OCShare.CREATE_PERMISSION_FLAG);
  493. } else {
  494. OwnCloudVersion serverVersion = AccountUtils.getServerVersion(mFileActivity.getAccount());
  495. if (serverVersion != null && serverVersion.isNotReshareableFederatedSupported()) {
  496. updateShareIntent.putExtra(OperationsService.EXTRA_SHARE_PERMISSIONS,
  497. OCShare.FEDERATED_PERMISSIONS_FOR_FOLDER_AFTER_OC9);
  498. } else {
  499. updateShareIntent.putExtra(OperationsService.EXTRA_SHARE_PERMISSIONS,
  500. OCShare.FEDERATED_PERMISSIONS_FOR_FOLDER_UP_TO_OC9);
  501. }
  502. }
  503. queueShareIntent(updateShareIntent);
  504. }
  505. /**
  506. * @return 'True' if the server supports the Search Users API
  507. */
  508. public boolean isSearchUserSupportedSupported() {
  509. if (mFileActivity.getAccount() != null) {
  510. OwnCloudVersion serverVersion = AccountUtils.getServerVersion(mFileActivity.getAccount());
  511. return (serverVersion != null && serverVersion.isSearchUsersSupported());
  512. }
  513. return false;
  514. }
  515. public void sendShareFile(OCFile file) {
  516. // Show dialog
  517. FragmentManager fm = mFileActivity.getSupportFragmentManager();
  518. FragmentTransaction ft = fm.beginTransaction();
  519. ft.addToBackStack(null);
  520. SendShareDialog mSendShareDialog = SendShareDialog.newInstance(file);
  521. mSendShareDialog.setFileOperationsHelper(this);
  522. mSendShareDialog.show(ft, "TAG_SEND_SHARE_DIALOG");
  523. }
  524. public void syncFiles(Collection<OCFile> files) {
  525. for (OCFile file : files) {
  526. syncFile(file);
  527. }
  528. }
  529. public void sendCachedImage(OCFile file, String packageName, String activityName) {
  530. if (file != null) {
  531. Context context = MainApp.getAppContext();
  532. Intent sendIntent = new Intent(Intent.ACTION_SEND);
  533. // set MimeType
  534. sendIntent.setType(file.getMimetype());
  535. sendIntent.setComponent(new ComponentName(packageName, activityName));
  536. sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("content://" +
  537. context.getResources().getString(R.string.image_cache_provider_authority) +
  538. file.getRemotePath()));
  539. sendIntent.putExtra(Intent.ACTION_SEND, true); // Send Action
  540. mFileActivity.startActivity(Intent.createChooser(sendIntent,
  541. context.getString(R.string.actionbar_send_file)));
  542. } else {
  543. Log_OC.wtf(TAG, "Trying to send a NULL OCFile");
  544. }
  545. }
  546. public void setPictureAs(OCFile file, View view) {
  547. if (file != null) {
  548. Context context = MainApp.getAppContext();
  549. Intent intent = new Intent(Intent.ACTION_ATTACH_DATA);
  550. Uri uri;
  551. try {
  552. if (file.isDown()) {
  553. File externalFile = new File(file.getStoragePath());
  554. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
  555. intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
  556. uri = FileProvider.getUriForFile(context,
  557. context.getResources().getString(R.string.file_provider_authority), externalFile);
  558. } else {
  559. uri = Uri.fromFile(externalFile);
  560. }
  561. } else {
  562. uri = Uri.parse(UriUtils.URI_CONTENT_SCHEME +
  563. context.getResources().getString(R.string.image_cache_provider_authority) +
  564. file.getRemotePath());
  565. }
  566. intent.setDataAndType(uri, file.getMimetype());
  567. mFileActivity.startActivityForResult(Intent.createChooser(intent,
  568. mFileActivity.getString(R.string.set_as)), 200);
  569. intent.setDataAndType(uri, file.getMimetype());
  570. } catch (ActivityNotFoundException exception) {
  571. Snackbar.make(view, R.string.picture_set_as_no_app, Snackbar.LENGTH_LONG).show();
  572. }
  573. } else {
  574. Log_OC.wtf(TAG, "Trying to send a NULL OCFile");
  575. }
  576. }
  577. /**
  578. * Request the synchronization of a file or folder with the OC server, including its contents.
  579. *
  580. * @param file The file or folder to synchronize
  581. */
  582. public void syncFile(OCFile file) {
  583. if (!file.isFolder()) {
  584. Intent intent = new Intent(mFileActivity, OperationsService.class);
  585. intent.setAction(OperationsService.ACTION_SYNC_FILE);
  586. intent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  587. intent.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  588. intent.putExtra(OperationsService.EXTRA_SYNC_FILE_CONTENTS, true);
  589. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(intent);
  590. mFileActivity.showLoadingDialog(mFileActivity.getApplicationContext().
  591. getString(R.string.wait_a_moment));
  592. } else {
  593. Intent intent = new Intent(mFileActivity, OperationsService.class);
  594. intent.setAction(OperationsService.ACTION_SYNC_FOLDER);
  595. intent.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  596. intent.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  597. mFileActivity.startService(intent);
  598. }
  599. }
  600. public void toggleFavoriteFiles(Collection<OCFile> files, boolean shouldBeFavorite) {
  601. List<OCFile> alreadyRightStateList = new ArrayList<>();
  602. for (OCFile file : files) {
  603. if (file.getIsFavorite() == shouldBeFavorite) {
  604. alreadyRightStateList.add(file);
  605. }
  606. }
  607. files.removeAll(alreadyRightStateList);
  608. for (OCFile file : files) {
  609. toggleFavoriteFile(file, shouldBeFavorite);
  610. }
  611. }
  612. private void toggleFavoriteFile(OCFile file, boolean shouldBeFavorite) {
  613. if (file.getIsFavorite() != shouldBeFavorite) {
  614. EventBus.getDefault().post(new FavoriteEvent(file.getRemotePath(), shouldBeFavorite, file.getRemoteId()));
  615. }
  616. }
  617. public void toggleEncryption(OCFile file, boolean shouldBeEncrypted) {
  618. if (file.isEncrypted() != shouldBeEncrypted) {
  619. EventBus.getDefault().post(new EncryptionEvent(file.getLocalId(), file.getRemoteId(), file.getRemotePath(),
  620. shouldBeEncrypted));
  621. }
  622. }
  623. public void toggleOfflineFiles(Collection<OCFile> files, boolean isAvailableOffline) {
  624. List<OCFile> alreadyRightStateList = new ArrayList<>();
  625. for (OCFile file : files) {
  626. if (file.isAvailableOffline() == isAvailableOffline) {
  627. alreadyRightStateList.add(file);
  628. }
  629. }
  630. files.removeAll(alreadyRightStateList);
  631. for (OCFile file : files) {
  632. toggleOfflineFile(file, isAvailableOffline);
  633. }
  634. }
  635. public void toggleOfflineFile(OCFile file, boolean isAvailableOffline) {
  636. if (file.isAvailableOffline() != isAvailableOffline) {
  637. file.setAvailableOffline(isAvailableOffline);
  638. mFileActivity.getStorageManager().saveFile(file);
  639. /// immediate content synchronization
  640. if (file.isAvailableOffline()) {
  641. syncFile(file);
  642. }
  643. }
  644. }
  645. public void renameFile(OCFile file, String newFilename) {
  646. // RenameFile
  647. Intent service = new Intent(mFileActivity, OperationsService.class);
  648. service.setAction(OperationsService.ACTION_RENAME);
  649. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  650. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  651. service.putExtra(OperationsService.EXTRA_NEWNAME, newFilename);
  652. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  653. mFileActivity.showLoadingDialog(mFileActivity.getString(R.string.wait_a_moment));
  654. }
  655. /**
  656. * Start operations to delete one or several files
  657. *
  658. * @param files Files to delete
  659. * @param onlyLocalCopy When 'true' only local copy of the files is removed; otherwise files are also deleted
  660. * in the server.
  661. */
  662. public void removeFiles(Collection<OCFile> files, boolean onlyLocalCopy) {
  663. for (OCFile file : files) {
  664. // RemoveFile
  665. Intent service = new Intent(mFileActivity, OperationsService.class);
  666. service.setAction(OperationsService.ACTION_REMOVE);
  667. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  668. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  669. service.putExtra(OperationsService.EXTRA_REMOVE_ONLY_LOCAL, onlyLocalCopy);
  670. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  671. }
  672. mFileActivity.showLoadingDialog(mFileActivity.getString(R.string.wait_a_moment));
  673. }
  674. public void createFolder(String remotePath, boolean createFullPath) {
  675. // Create Folder
  676. Intent service = new Intent(mFileActivity, OperationsService.class);
  677. service.setAction(OperationsService.ACTION_CREATE_FOLDER);
  678. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  679. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, remotePath);
  680. service.putExtra(OperationsService.EXTRA_CREATE_FULL_PATH, createFullPath);
  681. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  682. mFileActivity.showLoadingDialog(mFileActivity.getString(R.string.wait_a_moment));
  683. }
  684. /**
  685. * Cancel the transference in downloads (files/folders) and file uploads
  686. *
  687. * @param file OCFile
  688. */
  689. public void cancelTransference(OCFile file) {
  690. Account account = mFileActivity.getAccount();
  691. if (file.isFolder()) {
  692. OperationsService.OperationsServiceBinder opsBinder =
  693. mFileActivity.getOperationsServiceBinder();
  694. if (opsBinder != null) {
  695. opsBinder.cancel(account, file);
  696. }
  697. }
  698. // for both files and folders
  699. FileDownloaderBinder downloaderBinder = mFileActivity.getFileDownloaderBinder();
  700. if (downloaderBinder != null && downloaderBinder.isDownloading(account, file)) {
  701. downloaderBinder.cancel(account, file);
  702. }
  703. FileUploaderBinder uploaderBinder = mFileActivity.getFileUploaderBinder();
  704. if (uploaderBinder != null && uploaderBinder.isUploading(account, file)) {
  705. uploaderBinder.cancel(account, file);
  706. }
  707. }
  708. /**
  709. * Start operations to move one or several files
  710. *
  711. * @param files Files to move
  712. * @param targetFolder Folder where the files while be moved into
  713. */
  714. public void moveFiles(Collection<OCFile> files, OCFile targetFolder) {
  715. for (OCFile file : files) {
  716. Intent service = new Intent(mFileActivity, OperationsService.class);
  717. service.setAction(OperationsService.ACTION_MOVE_FILE);
  718. service.putExtra(OperationsService.EXTRA_NEW_PARENT_PATH, targetFolder.getRemotePath());
  719. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  720. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  721. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  722. }
  723. mFileActivity.showLoadingDialog(mFileActivity.getString(R.string.wait_a_moment));
  724. }
  725. /**
  726. * Start operations to copy one or several files
  727. *
  728. * @param files Files to copy
  729. * @param targetFolder Folder where the files while be copied into
  730. */
  731. public void copyFiles(Collection<OCFile> files, OCFile targetFolder) {
  732. for (OCFile file : files) {
  733. Intent service = new Intent(mFileActivity, OperationsService.class);
  734. service.setAction(OperationsService.ACTION_COPY_FILE);
  735. service.putExtra(OperationsService.EXTRA_NEW_PARENT_PATH, targetFolder.getRemotePath());
  736. service.putExtra(OperationsService.EXTRA_REMOTE_PATH, file.getRemotePath());
  737. service.putExtra(OperationsService.EXTRA_ACCOUNT, mFileActivity.getAccount());
  738. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  739. }
  740. mFileActivity.showLoadingDialog(mFileActivity.getString(R.string.wait_a_moment));
  741. }
  742. public long getOpIdWaitingFor() {
  743. return mWaitingForOpId;
  744. }
  745. public void setOpIdWaitingFor(long waitingForOpId) {
  746. mWaitingForOpId = waitingForOpId;
  747. }
  748. /**
  749. * @return 'True' if the server doesn't need to check forbidden characters
  750. */
  751. public boolean isVersionWithForbiddenCharacters() {
  752. if (mFileActivity.getAccount() != null) {
  753. OwnCloudVersion serverVersion =
  754. AccountUtils.getServerVersion(mFileActivity.getAccount());
  755. return (serverVersion != null && serverVersion.isVersionWithForbiddenCharacters());
  756. }
  757. return false;
  758. }
  759. /**
  760. * Starts a check of the currently stored credentials for the given account.
  761. *
  762. * @param account OC account which credentials will be checked.
  763. */
  764. public void checkCurrentCredentials(Account account) {
  765. Intent service = new Intent(mFileActivity, OperationsService.class);
  766. service.setAction(OperationsService.ACTION_CHECK_CURRENT_CREDENTIALS);
  767. service.putExtra(OperationsService.EXTRA_ACCOUNT, account);
  768. mWaitingForOpId = mFileActivity.getOperationsServiceBinder().queueNewOperation(service);
  769. mFileActivity.showLoadingDialog(mFileActivity.getString(R.string.wait_checking_credentials));
  770. }
  771. }