RemoteOperation.java 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. /* ownCloud Android client application
  2. * Copyright (C) 2012-2013 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.operations;
  18. import java.io.IOException;
  19. import org.apache.commons.httpclient.Credentials;
  20. import com.owncloud.android.Log_OC;
  21. import com.owncloud.android.authentication.AccountAuthenticator;
  22. import com.owncloud.android.network.BearerCredentials;
  23. import com.owncloud.android.network.OwnCloudClientUtils;
  24. import com.owncloud.android.operations.RemoteOperationResult.ResultCode;
  25. import android.accounts.Account;
  26. import android.accounts.AccountManager;
  27. import android.accounts.AccountsException;
  28. import android.app.Activity;
  29. import android.content.Context;
  30. import android.os.Handler;
  31. import eu.alefzero.webdav.WebdavClient;
  32. /**
  33. * Operation which execution involves one or several interactions with an ownCloud server.
  34. *
  35. * Provides methods to execute the operation both synchronously or asynchronously.
  36. *
  37. * @author David A. Velasco
  38. */
  39. public abstract class RemoteOperation implements Runnable {
  40. private static final String TAG = RemoteOperation.class.getSimpleName();
  41. /** ownCloud account in the remote ownCloud server to operate */
  42. private Account mAccount = null;
  43. /** Android Application context */
  44. private Context mContext = null;
  45. /** Object to interact with the remote server */
  46. private WebdavClient mClient = null;
  47. /** Callback object to notify about the execution of the remote operation */
  48. private OnRemoteOperationListener mListener = null;
  49. /** Handler to the thread where mListener methods will be called */
  50. private Handler mListenerHandler = null;
  51. /** Activity */
  52. private Activity mCallerActivity;
  53. /**
  54. * Abstract method to implement the operation in derived classes.
  55. */
  56. protected abstract RemoteOperationResult run(WebdavClient client);
  57. /**
  58. * Synchronously executes the remote operation on the received ownCloud account.
  59. *
  60. * Do not call this method from the main thread.
  61. *
  62. * This method should be used whenever an ownCloud account is available, instead of {@link #execute(WebdavClient)}.
  63. *
  64. * @param account ownCloud account in remote ownCloud server to reach during the execution of the operation.
  65. * @param context Android context for the component calling the method.
  66. * @return Result of the operation.
  67. */
  68. public final RemoteOperationResult execute(Account account, Context context) {
  69. if (account == null)
  70. throw new IllegalArgumentException("Trying to execute a remote operation with a NULL Account");
  71. if (context == null)
  72. throw new IllegalArgumentException("Trying to execute a remote operation with a NULL Context");
  73. mAccount = account;
  74. mContext = context.getApplicationContext();
  75. try {
  76. mClient = OwnCloudClientUtils.createOwnCloudClient(mAccount, mContext);
  77. } catch (Exception e) {
  78. Log_OC.e(TAG, "Error while trying to access to " + mAccount.name, e);
  79. return new RemoteOperationResult(e);
  80. }
  81. return run(mClient);
  82. }
  83. /**
  84. * Synchronously executes the remote operation
  85. *
  86. * Do not call this method from the main thread.
  87. *
  88. * @param client Client object to reach an ownCloud server during the execution of the operation.
  89. * @return Result of the operation.
  90. */
  91. public final RemoteOperationResult execute(WebdavClient client) {
  92. if (client == null)
  93. throw new IllegalArgumentException("Trying to execute a remote operation with a NULL WebdavClient");
  94. mClient = client;
  95. return run(client);
  96. }
  97. /**
  98. * Asynchronously executes the remote operation
  99. *
  100. * This method should be used whenever an ownCloud account is available, instead of {@link #execute(WebdavClient)}.
  101. *
  102. * @param account ownCloud account in remote ownCloud server to reach during the execution of the operation.
  103. * @param context Android context for the component calling the method.
  104. * @param listener Listener to be notified about the execution of the operation.
  105. * @param listenerHandler Handler associated to the thread where the methods of the listener objects must be called.
  106. * @return Thread were the remote operation is executed.
  107. */
  108. public final Thread execute(Account account, Context context, OnRemoteOperationListener listener, Handler listenerHandler, Activity callerActivity) {
  109. if (account == null)
  110. throw new IllegalArgumentException("Trying to execute a remote operation with a NULL Account");
  111. if (context == null)
  112. throw new IllegalArgumentException("Trying to execute a remote operation with a NULL Context");
  113. mAccount = account;
  114. mContext = context.getApplicationContext();
  115. mCallerActivity = callerActivity;
  116. mClient = null; // the client instance will be created from mAccount and mContext in the runnerThread to create below
  117. if (listener == null) {
  118. throw new IllegalArgumentException("Trying to execute a remote operation asynchronously without a listener to notiy the result");
  119. }
  120. mListener = listener;
  121. if (listenerHandler == null) {
  122. throw new IllegalArgumentException("Trying to execute a remote operation asynchronously without a handler to the listener's thread");
  123. }
  124. mListenerHandler = listenerHandler;
  125. Thread runnerThread = new Thread(this);
  126. runnerThread.start();
  127. return runnerThread;
  128. }
  129. /**
  130. * Asynchronously executes the remote operation
  131. *
  132. * @param client Client object to reach an ownCloud server during the execution of the operation.
  133. * @param listener Listener to be notified about the execution of the operation.
  134. * @param listenerHandler Handler associated to the thread where the methods of the listener objects must be called.
  135. * @return Thread were the remote operation is executed.
  136. */
  137. public final Thread execute(WebdavClient client, OnRemoteOperationListener listener, Handler listenerHandler) {
  138. if (client == null) {
  139. throw new IllegalArgumentException("Trying to execute a remote operation with a NULL WebdavClient");
  140. }
  141. mClient = client;
  142. if (listener == null) {
  143. throw new IllegalArgumentException("Trying to execute a remote operation asynchronously without a listener to notiy the result");
  144. }
  145. mListener = listener;
  146. if (listenerHandler == null) {
  147. throw new IllegalArgumentException("Trying to execute a remote operation asynchronously without a handler to the listener's thread");
  148. }
  149. mListenerHandler = listenerHandler;
  150. Thread runnerThread = new Thread(this);
  151. runnerThread.start();
  152. return runnerThread;
  153. }
  154. /**
  155. * Synchronously retries the remote operation using the same WebdavClient in the last call to {@link RemoteOperation#execute(WebdavClient)}
  156. *
  157. * @param listener Listener to be notified about the execution of the operation.
  158. * @param listenerHandler Handler associated to the thread where the methods of the listener objects must be called.
  159. * @return Thread were the remote operation is executed.
  160. */
  161. public final RemoteOperationResult retry() {
  162. return execute(mClient);
  163. }
  164. /**
  165. * Asynchronously retries the remote operation using the same WebdavClient in the last call to {@link RemoteOperation#execute(WebdavClient, OnRemoteOperationListener, Handler)}
  166. *
  167. * @param listener Listener to be notified about the execution of the operation.
  168. * @param listenerHandler Handler associated to the thread where the methods of the listener objects must be called.
  169. * @return Thread were the remote operation is executed.
  170. */
  171. public final Thread retry(OnRemoteOperationListener listener, Handler listenerHandler) {
  172. return execute(mClient, listener, listenerHandler);
  173. }
  174. /**
  175. * Asynchronous execution of the operation
  176. * started by {@link RemoteOperation#execute(WebdavClient, OnRemoteOperationListener, Handler)},
  177. * and result posting.
  178. *
  179. * TODO refactor && clean the code; now it's a mess
  180. */
  181. @Override
  182. public final void run() {
  183. RemoteOperationResult result = null;
  184. boolean repeat = false;
  185. do {
  186. try{
  187. if (mClient == null) {
  188. if (mAccount != null && mContext != null) {
  189. if (mCallerActivity != null) {
  190. mClient = OwnCloudClientUtils.createOwnCloudClient(mAccount, mContext, mCallerActivity);
  191. } else {
  192. mClient = OwnCloudClientUtils.createOwnCloudClient(mAccount, mContext);
  193. }
  194. } else {
  195. throw new IllegalStateException("Trying to run a remote operation asynchronously with no client instance or account");
  196. }
  197. }
  198. } catch (IOException e) {
  199. Log_OC.e(TAG, "Error while trying to access to " + mAccount.name, new AccountsException("I/O exception while trying to authorize the account", e));
  200. result = new RemoteOperationResult(e);
  201. } catch (AccountsException e) {
  202. Log_OC.e(TAG, "Error while trying to access to " + mAccount.name, e);
  203. result = new RemoteOperationResult(e);
  204. }
  205. if (result == null)
  206. result = run(mClient);
  207. repeat = false;
  208. if (mCallerActivity != null && mAccount != null && mContext != null && !result.isSuccess() &&
  209. (result.getCode() == ResultCode.UNAUTHORIZED || result.isTemporalRedirection() || result.isIdPRedirection())) {
  210. /// possible fail due to lack of authorization in an operation performed in foreground
  211. Credentials cred = mClient.getCredentials();
  212. String ssoSessionCookie = mClient.getSsoSessionCookie();
  213. if (cred != null || ssoSessionCookie != null) {
  214. /// confirmed : unauthorized operation
  215. AccountManager am = AccountManager.get(mContext);
  216. boolean bearerAuthorization = (cred != null && cred instanceof BearerCredentials);
  217. boolean samlBasedSsoAuthorization = (cred == null && ssoSessionCookie != null);
  218. if (bearerAuthorization) {
  219. am.invalidateAuthToken(AccountAuthenticator.ACCOUNT_TYPE, ((BearerCredentials)cred).getAccessToken());
  220. } else if (samlBasedSsoAuthorization ) {
  221. am.invalidateAuthToken(AccountAuthenticator.ACCOUNT_TYPE, ssoSessionCookie);
  222. } else {
  223. am.clearPassword(mAccount);
  224. }
  225. mClient = null;
  226. repeat = true; // when repeated, the creation of a new OwnCloudClient after erasing the saved credentials will trigger the login activity
  227. result = null;
  228. }
  229. }
  230. } while (repeat);
  231. final RemoteOperationResult resultToSend = result;
  232. if (mListenerHandler != null && mListener != null) {
  233. mListenerHandler.post(new Runnable() {
  234. @Override
  235. public void run() {
  236. mListener.onRemoteOperationFinish(RemoteOperation.this, resultToSend);
  237. }
  238. });
  239. }
  240. }
  241. /**
  242. * Returns the current client instance to access the remote server.
  243. *
  244. * @return Current client instance to access the remote server.
  245. */
  246. public final WebdavClient getClient() {
  247. return mClient;
  248. }
  249. }