ConnectionCheckOperation.java 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /* ownCloud Android client application
  2. * Copyright (C) 2012 Bartek Przybylski
  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 as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. */
  18. package com.owncloud.android.authenticator;
  19. import org.apache.commons.httpclient.HttpStatus;
  20. import org.apache.commons.httpclient.methods.GetMethod;
  21. import org.json.JSONException;
  22. import org.json.JSONObject;
  23. import com.owncloud.android.AccountUtils;
  24. import com.owncloud.android.operations.RemoteOperation;
  25. import com.owncloud.android.operations.RemoteOperationResult;
  26. import com.owncloud.android.utils.OwnCloudVersion;
  27. import eu.alefzero.webdav.WebdavClient;
  28. import android.content.Context;
  29. import android.net.ConnectivityManager;
  30. import android.net.Uri;
  31. import android.util.Log;
  32. public class ConnectionCheckOperation extends RemoteOperation {
  33. /** Maximum time to wait for a response from the server when the connection is being tested, in MILLISECONDs. */
  34. public static final int TRY_CONNECTION_TIMEOUT = 5000;
  35. private static final String TAG = ConnectionCheckOperation.class.getCanonicalName();
  36. private String mUrl;
  37. private RemoteOperationResult mLatestResult;
  38. private Context mContext;
  39. private OwnCloudVersion mOCVersion;
  40. public ConnectionCheckOperation(String url, Context context) {
  41. mUrl = url;
  42. mContext = context;
  43. mOCVersion = null;
  44. }
  45. public OwnCloudVersion getDiscoveredVersion() {
  46. return mOCVersion;
  47. }
  48. private boolean tryConnection(WebdavClient wc, String urlSt) {
  49. boolean retval = false;
  50. GetMethod get = null;
  51. try {
  52. get = new GetMethod(urlSt);
  53. int status = wc.executeMethod(get, TRY_CONNECTION_TIMEOUT, TRY_CONNECTION_TIMEOUT);
  54. String response = get.getResponseBodyAsString();
  55. if (status == HttpStatus.SC_OK) {
  56. JSONObject json = new JSONObject(response);
  57. if (!json.getBoolean("installed")) {
  58. mLatestResult = new RemoteOperationResult(RemoteOperationResult.ResultCode.INSTANCE_NOT_CONFIGURED);
  59. } else {
  60. mOCVersion = new OwnCloudVersion(json.getString("version"));
  61. if (!mOCVersion.isVersionValid()) {
  62. mLatestResult = new RemoteOperationResult(RemoteOperationResult.ResultCode.BAD_OC_VERSION);
  63. } else {
  64. retval = true;
  65. }
  66. }
  67. } else {
  68. mLatestResult = new RemoteOperationResult(false, status);
  69. }
  70. } catch (JSONException e) {
  71. mLatestResult = new RemoteOperationResult(RemoteOperationResult.ResultCode.INSTANCE_NOT_CONFIGURED);
  72. //Log.e(TAG, "JSON exception while trying connection (instance not configured) ", e);
  73. } catch (Exception e) {
  74. mLatestResult = new RemoteOperationResult(e);
  75. //Log.e(TAG, "Unexpected exception while trying connection", e);
  76. } finally {
  77. if (get != null)
  78. get.releaseConnection();
  79. }
  80. return retval;
  81. }
  82. private boolean isOnline() {
  83. ConnectivityManager cm = (ConnectivityManager) mContext
  84. .getSystemService(Context.CONNECTIVITY_SERVICE);
  85. return cm != null && cm.getActiveNetworkInfo() != null
  86. && cm.getActiveNetworkInfo().isConnectedOrConnecting();
  87. }
  88. @Override
  89. protected RemoteOperationResult run(WebdavClient client) {
  90. if (!isOnline()) {
  91. return new RemoteOperationResult(RemoteOperationResult.ResultCode.NO_NETWORK_CONNECTION);
  92. }
  93. if (mUrl.startsWith("http://") || mUrl.startsWith("https://")) {
  94. mLatestResult = new RemoteOperationResult(
  95. mUrl.startsWith("https://") ? RemoteOperationResult.ResultCode.OK_SSL : RemoteOperationResult.ResultCode.OK_NO_SSL
  96. );
  97. tryConnection(client, mUrl + AccountUtils.STATUS_PATH);
  98. return mLatestResult;
  99. } else {
  100. client.setBaseUri(Uri.parse("https://" + mUrl + AccountUtils.STATUS_PATH));
  101. if (tryConnection(client, "https://" + mUrl + AccountUtils.STATUS_PATH)) {
  102. return new RemoteOperationResult(RemoteOperationResult.ResultCode.OK_SSL);
  103. } else if (!mLatestResult.isSslRecoverableException()) {
  104. Log.d(TAG, "establishing secure connection failed, trying non secure connection");
  105. client.setBaseUri(Uri.parse("http://" + mUrl + AccountUtils.STATUS_PATH));
  106. if (tryConnection(client, "http://" + mUrl + AccountUtils.STATUS_PATH)) {
  107. return new RemoteOperationResult(RemoteOperationResult.ResultCode.OK_NO_SSL);
  108. }
  109. }
  110. return mLatestResult;
  111. }
  112. }
  113. }