OperationsService.java 35 KB

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