OperationsService.java 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747
  1. /*
  2. * ownCloud Android client application
  3. *
  4. * @author masensio
  5. * @author David A. Velasco
  6. * @author Andy Scherzinger
  7. * Copyright (C) 2015 ownCloud Inc.
  8. * Copyright (C) 2018 Andy Scherzinger
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2,
  12. * as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. */
  22. package com.owncloud.android.services;
  23. import android.accounts.Account;
  24. import android.accounts.AccountsException;
  25. import android.accounts.AuthenticatorException;
  26. import android.accounts.OperationCanceledException;
  27. import android.app.Service;
  28. import android.content.Intent;
  29. import android.net.Uri;
  30. import android.os.Binder;
  31. import android.os.Handler;
  32. import android.os.HandlerThread;
  33. import android.os.IBinder;
  34. import android.os.Looper;
  35. import android.os.Message;
  36. import android.os.Process;
  37. import android.text.TextUtils;
  38. import android.util.Pair;
  39. import com.owncloud.android.MainApp;
  40. import com.owncloud.android.datamodel.FileDataStorageManager;
  41. import com.owncloud.android.datamodel.OCFile;
  42. import com.owncloud.android.lib.common.OwnCloudAccount;
  43. import com.owncloud.android.lib.common.OwnCloudClient;
  44. import com.owncloud.android.lib.common.OwnCloudClientManagerFactory;
  45. import com.owncloud.android.lib.common.OwnCloudCredentials;
  46. import com.owncloud.android.lib.common.OwnCloudCredentialsFactory;
  47. import com.owncloud.android.lib.common.accounts.AccountUtils.AccountNotFoundException;
  48. import com.owncloud.android.lib.common.operations.OnRemoteOperationListener;
  49. import com.owncloud.android.lib.common.operations.RemoteOperation;
  50. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  51. import com.owncloud.android.lib.common.utils.Log_OC;
  52. import com.owncloud.android.lib.resources.files.RestoreFileVersionRemoteOperation;
  53. import com.owncloud.android.lib.resources.files.model.FileVersion;
  54. import com.owncloud.android.lib.resources.shares.ShareType;
  55. import com.owncloud.android.lib.resources.status.OwnCloudVersion;
  56. import com.owncloud.android.lib.resources.users.GetRemoteUserInfoOperation;
  57. import com.owncloud.android.operations.CheckCurrentCredentialsOperation;
  58. import com.owncloud.android.operations.CopyFileOperation;
  59. import com.owncloud.android.operations.CreateFolderOperation;
  60. import com.owncloud.android.operations.CreateShareViaLinkOperation;
  61. import com.owncloud.android.operations.CreateShareWithShareeOperation;
  62. import com.owncloud.android.operations.GetServerInfoOperation;
  63. import com.owncloud.android.operations.MoveFileOperation;
  64. import com.owncloud.android.operations.RemoveFileOperation;
  65. import com.owncloud.android.operations.RenameFileOperation;
  66. import com.owncloud.android.operations.SynchronizeFileOperation;
  67. import com.owncloud.android.operations.SynchronizeFolderOperation;
  68. import com.owncloud.android.operations.UnshareOperation;
  69. import com.owncloud.android.operations.UpdateNoteForShareOperation;
  70. import com.owncloud.android.operations.UpdateSharePermissionsOperation;
  71. import com.owncloud.android.operations.UpdateShareViaLinkOperation;
  72. import com.owncloud.android.operations.common.SyncOperation;
  73. import java.io.IOException;
  74. import java.util.Iterator;
  75. import java.util.concurrent.ConcurrentHashMap;
  76. import java.util.concurrent.ConcurrentLinkedQueue;
  77. import java.util.concurrent.ConcurrentMap;
  78. public class OperationsService extends Service {
  79. private static final String TAG = OperationsService.class.getSimpleName();
  80. public static final String EXTRA_ACCOUNT = "ACCOUNT";
  81. public static final String EXTRA_SERVER_URL = "SERVER_URL";
  82. public static final String EXTRA_OAUTH2_QUERY_PARAMETERS = "OAUTH2_QUERY_PARAMETERS";
  83. public static final String EXTRA_REMOTE_PATH = "REMOTE_PATH";
  84. public static final String EXTRA_NEWNAME = "NEWNAME";
  85. public static final String EXTRA_REMOVE_ONLY_LOCAL = "REMOVE_LOCAL_COPY";
  86. public static final String EXTRA_CREATE_FULL_PATH = "CREATE_FULL_PATH";
  87. public static final String EXTRA_SYNC_FILE_CONTENTS = "SYNC_FILE_CONTENTS";
  88. public static final String EXTRA_RESULT = "RESULT";
  89. public static final String EXTRA_NEW_PARENT_PATH = "NEW_PARENT_PATH";
  90. public static final String EXTRA_FILE = "FILE";
  91. public static final String EXTRA_FILE_VERSION = "FILE_VERSION";
  92. public static final String EXTRA_SHARE_PASSWORD = "SHARE_PASSWORD";
  93. public static final String EXTRA_SHARE_TYPE = "SHARE_TYPE";
  94. public static final String EXTRA_SHARE_WITH = "SHARE_WITH";
  95. public static final String EXTRA_SHARE_EXPIRATION_DATE_IN_MILLIS = "SHARE_EXPIRATION_YEAR";
  96. public static final String EXTRA_SHARE_PERMISSIONS = "SHARE_PERMISSIONS";
  97. public static final String EXTRA_SHARE_PUBLIC_UPLOAD = "SHARE_PUBLIC_UPLOAD";
  98. public static final String EXTRA_SHARE_HIDE_FILE_DOWNLOAD = "HIDE_FILE_DOWNLOAD";
  99. public static final String EXTRA_SHARE_ID = "SHARE_ID";
  100. public static final String EXTRA_SHARE_NOTE = "SHARE_NOTE";
  101. public static final String EXTRA_USER_ID = "USER_ID";
  102. public static final String EXTRA_IN_BACKGROUND = "IN_BACKGROUND";
  103. public static final String EXTRA_COOKIE = "COOKIE";
  104. public static final String ACTION_CREATE_SHARE_VIA_LINK = "CREATE_SHARE_VIA_LINK";
  105. public static final String ACTION_CREATE_SHARE_WITH_SHAREE = "CREATE_SHARE_WITH_SHAREE";
  106. public static final String ACTION_UNSHARE = "UNSHARE";
  107. public static final String ACTION_UPDATE_SHARE = "UPDATE_SHARE";
  108. public static final String ACTION_UPDATE_SHARE_NOTE = "UPDATE_SHARE_NOTE";
  109. public static final String ACTION_GET_SERVER_INFO = "GET_SERVER_INFO";
  110. public static final String ACTION_GET_USER_NAME = "GET_USER_NAME";
  111. public static final String ACTION_RENAME = "RENAME";
  112. public static final String ACTION_REMOVE = "REMOVE";
  113. public static final String ACTION_CREATE_FOLDER = "CREATE_FOLDER";
  114. public static final String ACTION_SYNC_FILE = "SYNC_FILE";
  115. public static final String ACTION_SYNC_FOLDER = "SYNC_FOLDER";
  116. public static final String ACTION_MOVE_FILE = "MOVE_FILE";
  117. public static final String ACTION_COPY_FILE = "COPY_FILE";
  118. public static final String ACTION_CHECK_CURRENT_CREDENTIALS = "CHECK_CURRENT_CREDENTIALS";
  119. public static final String ACTION_RESTORE_VERSION = "RESTORE_VERSION";
  120. public static final String ACTION_OPERATION_ADDED = OperationsService.class.getName() + ".OPERATION_ADDED";
  121. public static final String ACTION_OPERATION_FINISHED = OperationsService.class.getName() + ".OPERATION_FINISHED";
  122. private ServiceHandler mOperationsHandler;
  123. private OperationsServiceBinder mOperationsBinder;
  124. private SyncFolderHandler mSyncFolderHandler;
  125. private ConcurrentMap<Integer, Pair<RemoteOperation, RemoteOperationResult>>
  126. mUndispatchedFinishedOperations = new ConcurrentHashMap<>();
  127. private static class Target {
  128. public Uri mServerUrl;
  129. public Account mAccount;
  130. public String mCookie;
  131. public Target(Account account, Uri serverUrl, String cookie) {
  132. mAccount = account;
  133. mServerUrl = serverUrl;
  134. mCookie = cookie;
  135. }
  136. }
  137. /**
  138. * Service initialization
  139. */
  140. @Override
  141. public void onCreate() {
  142. super.onCreate();
  143. Log_OC.d(TAG, "Creating service");
  144. // First worker thread for most of operations
  145. HandlerThread thread = new HandlerThread("Operations thread",
  146. Process.THREAD_PRIORITY_BACKGROUND);
  147. thread.start();
  148. mOperationsHandler = new ServiceHandler(thread.getLooper(), this);
  149. mOperationsBinder = new OperationsServiceBinder(mOperationsHandler);
  150. // Separated worker thread for download of folders (WIP)
  151. thread = new HandlerThread("Syncfolder thread", Process.THREAD_PRIORITY_BACKGROUND);
  152. thread.start();
  153. mSyncFolderHandler = new SyncFolderHandler(thread.getLooper(), this);
  154. }
  155. /**
  156. * Entry point to add a new operation to the queue of operations.
  157. * <p/>
  158. * New operations are added calling to startService(), resulting in a call to this method.
  159. * This ensures the service will keep on working although the caller activity goes away.
  160. */
  161. @Override
  162. public int onStartCommand(Intent intent, int flags, int startId) {
  163. Log_OC.d(TAG, "Starting command with id " + startId);
  164. // WIP: for the moment, only SYNC_FOLDER is expected here;
  165. // the rest of the operations are requested through the Binder
  166. if (intent != null && ACTION_SYNC_FOLDER.equals(intent.getAction())) {
  167. if (!intent.hasExtra(EXTRA_ACCOUNT) || !intent.hasExtra(EXTRA_REMOTE_PATH)) {
  168. Log_OC.e(TAG, "Not enough information provided in intent");
  169. return START_NOT_STICKY;
  170. }
  171. Account account = intent.getParcelableExtra(EXTRA_ACCOUNT);
  172. String remotePath = intent.getStringExtra(EXTRA_REMOTE_PATH);
  173. Pair<Account, String> itemSyncKey = new Pair<>(account, remotePath);
  174. Pair<Target, RemoteOperation> itemToQueue = newOperation(intent);
  175. if (itemToQueue != null) {
  176. mSyncFolderHandler.add(account, remotePath,
  177. (SynchronizeFolderOperation)itemToQueue.second);
  178. Message msg = mSyncFolderHandler.obtainMessage();
  179. msg.arg1 = startId;
  180. msg.obj = itemSyncKey;
  181. mSyncFolderHandler.sendMessage(msg);
  182. }
  183. } else {
  184. Message msg = mOperationsHandler.obtainMessage();
  185. msg.arg1 = startId;
  186. mOperationsHandler.sendMessage(msg);
  187. }
  188. return START_NOT_STICKY;
  189. }
  190. @Override
  191. public void onDestroy() {
  192. Log_OC.v(TAG, "Destroying service" );
  193. // Saving cookies
  194. try {
  195. OwnCloudClientManagerFactory.getDefaultSingleton().
  196. saveAllClients(this, MainApp.getAccountType(getApplicationContext()));
  197. // TODO - get rid of these exceptions
  198. } catch (AccountNotFoundException | IOException | OperationCanceledException | AuthenticatorException e) {
  199. Log_OC.d(TAG, e.getMessage(), e);
  200. }
  201. mUndispatchedFinishedOperations.clear();
  202. mOperationsBinder = null;
  203. mOperationsHandler.getLooper().quit();
  204. mOperationsHandler = null;
  205. mSyncFolderHandler.getLooper().quit();
  206. mSyncFolderHandler = null;
  207. super.onDestroy();
  208. }
  209. /**
  210. * Provides a binder object that clients can use to perform actions on the queue of operations,
  211. * except the addition of new operations.
  212. */
  213. @Override
  214. public IBinder onBind(Intent intent) {
  215. return mOperationsBinder;
  216. }
  217. /**
  218. * Called when ALL the bound clients were unbound.
  219. */
  220. @Override
  221. public boolean onUnbind(Intent intent) {
  222. mOperationsBinder.clearListeners();
  223. return false; // not accepting rebinding (default behaviour)
  224. }
  225. /**
  226. * Binder to let client components to perform actions on the queue of operations.
  227. * <p/>
  228. * It provides by itself the available operations.
  229. */
  230. public class OperationsServiceBinder extends Binder /* implements OnRemoteOperationListener */ {
  231. /**
  232. * Map of listeners that will be reported about the end of operations from a
  233. * {@link OperationsServiceBinder} instance
  234. */
  235. private final ConcurrentMap<OnRemoteOperationListener, Handler> mBoundListeners = new ConcurrentHashMap<>();
  236. private ServiceHandler mServiceHandler;
  237. public OperationsServiceBinder(ServiceHandler serviceHandler) {
  238. mServiceHandler = serviceHandler;
  239. }
  240. /**
  241. * Cancels a pending or current synchronization.
  242. *
  243. * @param account ownCloud account where the remote folder is stored.
  244. * @param file A folder in the queue of pending synchronizations
  245. */
  246. public void cancel(Account account, OCFile file) {
  247. mSyncFolderHandler.cancel(account, file);
  248. }
  249. public void clearListeners() {
  250. mBoundListeners.clear();
  251. }
  252. /**
  253. * Adds a listener interested in being reported about the end of operations.
  254. *
  255. * @param listener Object to notify about the end of operations.
  256. * @param callbackHandler {@link Handler} to access the listener without
  257. * breaking Android threading protection.
  258. */
  259. public void addOperationListener (OnRemoteOperationListener listener,
  260. Handler callbackHandler) {
  261. synchronized (mBoundListeners) {
  262. mBoundListeners.put(listener, callbackHandler);
  263. }
  264. }
  265. /**
  266. * Removes a listener from the list of objects interested in the being reported about
  267. * the end of operations.
  268. *
  269. * @param listener Object to notify about progress of transfer.
  270. */
  271. public void removeOperationListener(OnRemoteOperationListener listener) {
  272. synchronized (mBoundListeners) {
  273. mBoundListeners.remove(listener);
  274. }
  275. }
  276. /**
  277. * TODO - IMPORTANT: update implementation when more operations are moved into the service
  278. *
  279. * @return 'True' when an operation that enforces the user to wait for completion is
  280. * in process.
  281. */
  282. public boolean isPerformingBlockingOperation() {
  283. return !mServiceHandler.mPendingOperations.isEmpty();
  284. }
  285. /**
  286. * Creates and adds to the queue a new operation, as described by operationIntent.
  287. *
  288. * Calls startService to make the operation is processed by the ServiceHandler.
  289. *
  290. * @param operationIntent Intent describing a new operation to queue and execute.
  291. * @return Identifier of the operation created, or null if failed.
  292. */
  293. public long queueNewOperation(Intent operationIntent) {
  294. Pair<Target, RemoteOperation> itemToQueue = newOperation(operationIntent);
  295. if (itemToQueue != null) {
  296. mServiceHandler.mPendingOperations.add(itemToQueue);
  297. startService(new Intent(OperationsService.this, OperationsService.class));
  298. return itemToQueue.second.hashCode();
  299. } else {
  300. return Long.MAX_VALUE;
  301. }
  302. }
  303. public boolean dispatchResultIfFinished(int operationId,
  304. OnRemoteOperationListener listener) {
  305. Pair<RemoteOperation, RemoteOperationResult> undispatched =
  306. mUndispatchedFinishedOperations.remove(operationId);
  307. if (undispatched != null) {
  308. listener.onRemoteOperationFinish(undispatched.first, undispatched.second);
  309. return true;
  310. } else {
  311. return !mServiceHandler.mPendingOperations.isEmpty();
  312. }
  313. }
  314. /**
  315. * Returns True when the file described by 'file' in the ownCloud account 'account' is
  316. * downloading or waiting to download.
  317. *
  318. * If 'file' is a directory, returns 'true' if some of its descendant files is downloading
  319. * or waiting to download.
  320. *
  321. * @param account ownCloud account where the remote file is stored.
  322. * @param file File to check if something is synchronizing
  323. * / downloading / uploading inside.
  324. */
  325. public boolean isSynchronizing(Account account, OCFile file) {
  326. return mSyncFolderHandler.isSynchronizing(account, file.getRemotePath());
  327. }
  328. }
  329. /**
  330. * Operations worker. Performs the pending operations in the order they were requested.
  331. *
  332. * Created with the Looper of a new thread, started in {@link OperationsService#onCreate()}.
  333. */
  334. private static class ServiceHandler extends Handler {
  335. // don't make it a final class, and don't remove the static ; lint will warn about a p
  336. // ossible memory leak
  337. OperationsService mService;
  338. private ConcurrentLinkedQueue<Pair<Target, RemoteOperation>> mPendingOperations =
  339. new ConcurrentLinkedQueue<>();
  340. private RemoteOperation mCurrentOperation;
  341. private Target mLastTarget;
  342. private OwnCloudClient mOwnCloudClient;
  343. private FileDataStorageManager mStorageManager;
  344. public ServiceHandler(Looper looper, OperationsService service) {
  345. super(looper);
  346. if (service == null) {
  347. throw new IllegalArgumentException("Received invalid NULL in parameter 'service'");
  348. }
  349. mService = service;
  350. }
  351. @Override
  352. public void handleMessage(Message msg) {
  353. nextOperation();
  354. Log_OC.d(TAG, "Stopping after command with id " + msg.arg1);
  355. mService.stopSelf(msg.arg1);
  356. }
  357. /**
  358. * Performs the next operation in the queue
  359. */
  360. private void nextOperation() {
  361. //Log_OC.e(TAG, "nextOperation init" );
  362. Pair<Target, RemoteOperation> next;
  363. synchronized(mPendingOperations) {
  364. next = mPendingOperations.peek();
  365. }
  366. if (next != null) {
  367. mCurrentOperation = next.second;
  368. RemoteOperationResult result = null;
  369. try {
  370. /// prepare client object to send the request to the ownCloud server
  371. if (mLastTarget == null || !mLastTarget.equals(next.first)) {
  372. mLastTarget = next.first;
  373. if (mLastTarget.mAccount != null) {
  374. OwnCloudAccount ocAccount = new OwnCloudAccount(mLastTarget.mAccount, mService);
  375. mOwnCloudClient = OwnCloudClientManagerFactory.getDefaultSingleton().
  376. getClientFor(ocAccount, mService);
  377. OwnCloudVersion version = com.owncloud.android.authentication.AccountUtils.getServerVersion(
  378. mLastTarget.mAccount);
  379. mOwnCloudClient.setOwnCloudVersion(version);
  380. mStorageManager = new FileDataStorageManager(
  381. mLastTarget.mAccount,
  382. mService.getContentResolver()
  383. );
  384. } else {
  385. OwnCloudCredentials credentials = null;
  386. if (!TextUtils.isEmpty(mLastTarget.mCookie)) {
  387. // just used for GetUserName
  388. // TODO refactor to run GetUserName as AsyncTask in the context of
  389. // AuthenticatorActivity
  390. credentials = OwnCloudCredentialsFactory.newSamlSsoCredentials(
  391. null, // unknown
  392. mLastTarget.mCookie); // SAML SSO
  393. }
  394. OwnCloudAccount ocAccount = new OwnCloudAccount(
  395. mLastTarget.mServerUrl, credentials);
  396. mOwnCloudClient = OwnCloudClientManagerFactory.getDefaultSingleton().
  397. getClientFor(ocAccount, mService);
  398. mStorageManager = null;
  399. }
  400. }
  401. /// perform the operation
  402. if (mCurrentOperation instanceof SyncOperation) {
  403. result = ((SyncOperation)mCurrentOperation).execute(mOwnCloudClient,
  404. mStorageManager);
  405. } else {
  406. result = mCurrentOperation.execute(mOwnCloudClient);
  407. }
  408. } catch (AccountsException e) {
  409. if (mLastTarget.mAccount == null) {
  410. Log_OC.e(TAG, "Error while trying to get authorization for a NULL account",
  411. e);
  412. } else {
  413. Log_OC.e(TAG, "Error while trying to get authorization for " +
  414. mLastTarget.mAccount.name, e);
  415. }
  416. result = new RemoteOperationResult(e);
  417. } catch (IOException e) {
  418. if (mLastTarget.mAccount == null) {
  419. Log_OC.e(TAG, "Error while trying to get authorization for a NULL account",
  420. e);
  421. } else {
  422. Log_OC.e(TAG, "Error while trying to get authorization for " +
  423. mLastTarget.mAccount.name, e);
  424. }
  425. result = new RemoteOperationResult(e);
  426. } catch (Exception e) {
  427. if (mLastTarget.mAccount == null) {
  428. Log_OC.e(TAG, "Unexpected error for a NULL account", e);
  429. } else {
  430. Log_OC.e(TAG, "Unexpected error for " + mLastTarget.mAccount.name, e);
  431. }
  432. result = new RemoteOperationResult(e);
  433. } finally {
  434. synchronized(mPendingOperations) {
  435. mPendingOperations.poll();
  436. }
  437. }
  438. //sendBroadcastOperationFinished(mLastTarget, mCurrentOperation, result);
  439. mService.dispatchResultToOperationListeners(mCurrentOperation, result);
  440. }
  441. }
  442. }
  443. /**
  444. * Creates a new operation, as described by operationIntent.
  445. *
  446. * TODO - move to ServiceHandler (probably)
  447. *
  448. * @param operationIntent Intent describing a new operation to queue and execute.
  449. * @return Pair with the new operation object and the information about its
  450. * target server.
  451. */
  452. private Pair<Target, RemoteOperation> newOperation(Intent operationIntent) {
  453. RemoteOperation operation = null;
  454. Target target = null;
  455. try {
  456. if (!operationIntent.hasExtra(EXTRA_ACCOUNT) &&
  457. !operationIntent.hasExtra(EXTRA_SERVER_URL)) {
  458. Log_OC.e(TAG, "Not enough information provided in intent");
  459. } else {
  460. Account account = operationIntent.getParcelableExtra(EXTRA_ACCOUNT);
  461. String serverUrl = operationIntent.getStringExtra(EXTRA_SERVER_URL);
  462. String cookie = operationIntent.getStringExtra(EXTRA_COOKIE);
  463. target = new Target(
  464. account,
  465. (serverUrl == null) ? null : Uri.parse(serverUrl),
  466. cookie
  467. );
  468. String action = operationIntent.getAction();
  469. String remotePath;
  470. String password;
  471. ShareType shareType;
  472. String newParentPath;
  473. long shareId;
  474. switch (action) {
  475. case ACTION_CREATE_SHARE_VIA_LINK:
  476. remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  477. password = operationIntent.getStringExtra(EXTRA_SHARE_PASSWORD);
  478. if (!TextUtils.isEmpty(remotePath)) {
  479. operation = new CreateShareViaLinkOperation(remotePath, password);
  480. }
  481. break;
  482. case ACTION_UPDATE_SHARE:
  483. remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  484. shareId = operationIntent.getLongExtra(EXTRA_SHARE_ID, -1);
  485. if (!TextUtils.isEmpty(remotePath)) {
  486. UpdateShareViaLinkOperation updateLinkOperation = new UpdateShareViaLinkOperation(remotePath);
  487. password = operationIntent.getStringExtra(EXTRA_SHARE_PASSWORD);
  488. updateLinkOperation.setPassword(password);
  489. long expirationDate = operationIntent.getLongExtra(EXTRA_SHARE_EXPIRATION_DATE_IN_MILLIS, 0);
  490. updateLinkOperation.setExpirationDateInMillis(expirationDate);
  491. boolean hideFileDownload = operationIntent.getBooleanExtra(EXTRA_SHARE_HIDE_FILE_DOWNLOAD,
  492. false);
  493. updateLinkOperation.setHideFileDownload(hideFileDownload);
  494. if (operationIntent.hasExtra(EXTRA_SHARE_PUBLIC_UPLOAD)) {
  495. updateLinkOperation.setPublicUpload(
  496. operationIntent.getBooleanExtra(EXTRA_SHARE_PUBLIC_UPLOAD, false));
  497. }
  498. operation = updateLinkOperation;
  499. } else if (shareId > 0) {
  500. UpdateSharePermissionsOperation updateShare = new UpdateSharePermissionsOperation(shareId);
  501. int permissions = operationIntent.getIntExtra(EXTRA_SHARE_PERMISSIONS, -1);
  502. updateShare.setPermissions(permissions);
  503. long expirationDateInMillis = operationIntent
  504. .getLongExtra(EXTRA_SHARE_EXPIRATION_DATE_IN_MILLIS, 0L);
  505. updateShare.setExpirationDateInMillis(expirationDateInMillis);
  506. password = operationIntent.getStringExtra(EXTRA_SHARE_PASSWORD);
  507. updateShare.setPassword(password);
  508. operation = updateShare;
  509. }
  510. break;
  511. case ACTION_UPDATE_SHARE_NOTE:
  512. shareId = operationIntent.getLongExtra(EXTRA_SHARE_ID, -1);
  513. String note = operationIntent.getStringExtra(EXTRA_SHARE_NOTE);
  514. if (shareId > 0) {
  515. operation = new UpdateNoteForShareOperation(shareId, note);
  516. }
  517. break;
  518. case ACTION_CREATE_SHARE_WITH_SHAREE:
  519. remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  520. String shareeName = operationIntent.getStringExtra(EXTRA_SHARE_WITH);
  521. shareType = (ShareType) operationIntent.getSerializableExtra(EXTRA_SHARE_TYPE);
  522. int permissions = operationIntent.getIntExtra(EXTRA_SHARE_PERMISSIONS, -1);
  523. if (!TextUtils.isEmpty(remotePath)) {
  524. operation = new CreateShareWithShareeOperation(remotePath, shareeName, shareType,
  525. permissions);
  526. }
  527. break;
  528. case ACTION_UNSHARE:
  529. remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  530. shareType = (ShareType) operationIntent.getSerializableExtra(EXTRA_SHARE_TYPE);
  531. String shareWith = operationIntent.getStringExtra(EXTRA_SHARE_WITH);
  532. if (!TextUtils.isEmpty(remotePath)) {
  533. operation = new UnshareOperation(remotePath, shareType, shareWith, this);
  534. }
  535. break;
  536. case ACTION_GET_SERVER_INFO:
  537. operation = new GetServerInfoOperation(serverUrl, this);
  538. break;
  539. case ACTION_GET_USER_NAME:
  540. operation = new GetRemoteUserInfoOperation();
  541. break;
  542. case ACTION_RENAME:
  543. remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  544. String newName = operationIntent.getStringExtra(EXTRA_NEWNAME);
  545. operation = new RenameFileOperation(remotePath, newName);
  546. break;
  547. case ACTION_REMOVE:
  548. // Remove file or folder
  549. remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  550. boolean onlyLocalCopy = operationIntent.getBooleanExtra(EXTRA_REMOVE_ONLY_LOCAL, false);
  551. boolean inBackground = operationIntent.getBooleanExtra(EXTRA_IN_BACKGROUND, false);
  552. operation = new RemoveFileOperation(remotePath, onlyLocalCopy, account, inBackground,
  553. getApplicationContext());
  554. break;
  555. case ACTION_CREATE_FOLDER:
  556. remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  557. boolean createFullPath = operationIntent.getBooleanExtra(EXTRA_CREATE_FULL_PATH, true);
  558. operation = new CreateFolderOperation(remotePath, createFullPath);
  559. break;
  560. case ACTION_SYNC_FILE:
  561. remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  562. boolean syncFileContents = operationIntent.getBooleanExtra(EXTRA_SYNC_FILE_CONTENTS, true);
  563. operation = new SynchronizeFileOperation(remotePath, account, syncFileContents,
  564. getApplicationContext());
  565. break;
  566. case ACTION_SYNC_FOLDER:
  567. remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  568. operation = new SynchronizeFolderOperation(
  569. this, // TODO remove this dependency from construction time
  570. remotePath,
  571. account,
  572. System.currentTimeMillis() // TODO remove this dependency from construction time
  573. );
  574. break;
  575. case ACTION_MOVE_FILE:
  576. remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  577. newParentPath = operationIntent.getStringExtra(EXTRA_NEW_PARENT_PATH);
  578. operation = new MoveFileOperation(remotePath, newParentPath);
  579. break;
  580. case ACTION_COPY_FILE:
  581. remotePath = operationIntent.getStringExtra(EXTRA_REMOTE_PATH);
  582. newParentPath = operationIntent.getStringExtra(EXTRA_NEW_PARENT_PATH);
  583. operation = new CopyFileOperation(remotePath, newParentPath);
  584. break;
  585. case ACTION_CHECK_CURRENT_CREDENTIALS:
  586. operation = new CheckCurrentCredentialsOperation(account);
  587. break;
  588. case ACTION_RESTORE_VERSION:
  589. FileVersion fileVersion = operationIntent.getParcelableExtra(EXTRA_FILE_VERSION);
  590. String userId = operationIntent.getStringExtra(EXTRA_USER_ID);
  591. operation = new RestoreFileVersionRemoteOperation(fileVersion.getRemoteId(),
  592. fileVersion.getFileName(), userId);
  593. break;
  594. default:
  595. // do nothing
  596. break;
  597. }
  598. }
  599. } catch (IllegalArgumentException e) {
  600. Log_OC.e(TAG, "Bad information provided in intent: " + e.getMessage());
  601. operation = null;
  602. }
  603. if (operation != null) {
  604. return new Pair<Target, RemoteOperation>(target, operation);
  605. } else {
  606. return null;
  607. }
  608. }
  609. /**
  610. * Notifies the currently subscribed listeners about the end of an operation.
  611. *
  612. * @param operation Finished operation.
  613. * @param result Result of the operation.
  614. */
  615. protected void dispatchResultToOperationListeners(
  616. final RemoteOperation operation, final RemoteOperationResult result
  617. ) {
  618. int count = 0;
  619. Iterator<OnRemoteOperationListener> listeners = mOperationsBinder.mBoundListeners.keySet().iterator();
  620. while (listeners.hasNext()) {
  621. final OnRemoteOperationListener listener = listeners.next();
  622. final Handler handler = mOperationsBinder.mBoundListeners.get(listener);
  623. if (handler != null) {
  624. handler.post(() -> listener.onRemoteOperationFinish(operation, result));
  625. count += 1;
  626. }
  627. }
  628. if (count == 0) {
  629. Pair<RemoteOperation, RemoteOperationResult> undispatched = new Pair<>(operation, result);
  630. mUndispatchedFinishedOperations.put(operation.hashCode(), undispatched);
  631. }
  632. Log_OC.d(TAG, "Called " + count + " listeners");
  633. }
  634. }