OperationsService.java 35 KB

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