|
@@ -33,142 +33,126 @@ import org.apache.commons.httpclient.HttpException;
|
|
import org.apache.commons.httpclient.HttpStatus;
|
|
import org.apache.commons.httpclient.HttpStatus;
|
|
import org.apache.jackrabbit.webdav.DavException;
|
|
import org.apache.jackrabbit.webdav.DavException;
|
|
|
|
|
|
-import com.owncloud.android.network.CertificateCombinedException;
|
|
|
|
|
|
+import android.util.Log;
|
|
|
|
|
|
|
|
+import com.owncloud.android.network.CertificateCombinedException;
|
|
|
|
|
|
/**
|
|
/**
|
|
* The result of a remote operation required to an ownCloud server.
|
|
* The result of a remote operation required to an ownCloud server.
|
|
*
|
|
*
|
|
- * Provides a common classification of remote operation results for all the application.
|
|
|
|
|
|
+ * Provides a common classification of remote operation results for all the
|
|
|
|
+ * application.
|
|
*
|
|
*
|
|
* @author David A. Velasco
|
|
* @author David A. Velasco
|
|
*/
|
|
*/
|
|
public class RemoteOperationResult implements Serializable {
|
|
public class RemoteOperationResult implements Serializable {
|
|
-
|
|
|
|
|
|
+
|
|
/** Generated - should be refreshed every time the class changes!! */
|
|
/** Generated - should be refreshed every time the class changes!! */
|
|
private static final long serialVersionUID = -7805531062432602444L;
|
|
private static final long serialVersionUID = -7805531062432602444L;
|
|
|
|
+ private static final String TAG = "RemoteOperationResult";
|
|
|
|
|
|
-
|
|
|
|
- public enum ResultCode {
|
|
|
|
- OK,
|
|
|
|
- OK_SSL,
|
|
|
|
- OK_NO_SSL,
|
|
|
|
- UNHANDLED_HTTP_CODE,
|
|
|
|
- UNAUTHORIZED,
|
|
|
|
- FILE_NOT_FOUND,
|
|
|
|
- INSTANCE_NOT_CONFIGURED,
|
|
|
|
- UNKNOWN_ERROR,
|
|
|
|
- WRONG_CONNECTION,
|
|
|
|
- TIMEOUT,
|
|
|
|
- INCORRECT_ADDRESS,
|
|
|
|
- HOST_NOT_AVAILABLE,
|
|
|
|
- NO_NETWORK_CONNECTION,
|
|
|
|
- SSL_ERROR,
|
|
|
|
- SSL_RECOVERABLE_PEER_UNVERIFIED,
|
|
|
|
- BAD_OC_VERSION,
|
|
|
|
- CANCELLED,
|
|
|
|
- INVALID_LOCAL_FILE_NAME,
|
|
|
|
- INVALID_OVERWRITE,
|
|
|
|
- CONFLICT,
|
|
|
|
- SYNC_CONFLICT,
|
|
|
|
- LOCAL_STORAGE_FULL,
|
|
|
|
- LOCAL_STORAGE_NOT_MOVED,
|
|
|
|
- LOCAL_STORAGE_NOT_COPIED
|
|
|
|
|
|
+ public enum ResultCode {
|
|
|
|
+ OK, OK_SSL, OK_NO_SSL, UNHANDLED_HTTP_CODE, UNAUTHORIZED, FILE_NOT_FOUND, INSTANCE_NOT_CONFIGURED, UNKNOWN_ERROR, WRONG_CONNECTION, TIMEOUT, INCORRECT_ADDRESS, HOST_NOT_AVAILABLE, NO_NETWORK_CONNECTION, SSL_ERROR, SSL_RECOVERABLE_PEER_UNVERIFIED, BAD_OC_VERSION, CANCELLED, INVALID_LOCAL_FILE_NAME, INVALID_OVERWRITE, CONFLICT, SYNC_CONFLICT, LOCAL_STORAGE_FULL, LOCAL_STORAGE_NOT_MOVED, LOCAL_STORAGE_NOT_COPIED, QUOTA_EXCEEDED
|
|
}
|
|
}
|
|
|
|
|
|
private boolean mSuccess = false;
|
|
private boolean mSuccess = false;
|
|
private int mHttpCode = -1;
|
|
private int mHttpCode = -1;
|
|
private Exception mException = null;
|
|
private Exception mException = null;
|
|
private ResultCode mCode = ResultCode.UNKNOWN_ERROR;
|
|
private ResultCode mCode = ResultCode.UNKNOWN_ERROR;
|
|
-
|
|
|
|
|
|
+
|
|
public RemoteOperationResult(ResultCode code) {
|
|
public RemoteOperationResult(ResultCode code) {
|
|
mCode = code;
|
|
mCode = code;
|
|
mSuccess = (code == ResultCode.OK || code == ResultCode.OK_SSL || code == ResultCode.OK_NO_SSL);
|
|
mSuccess = (code == ResultCode.OK || code == ResultCode.OK_SSL || code == ResultCode.OK_NO_SSL);
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
public RemoteOperationResult(boolean success, int httpCode) {
|
|
public RemoteOperationResult(boolean success, int httpCode) {
|
|
- mSuccess = success;
|
|
|
|
|
|
+ mSuccess = success;
|
|
mHttpCode = httpCode;
|
|
mHttpCode = httpCode;
|
|
|
|
|
|
if (success) {
|
|
if (success) {
|
|
mCode = ResultCode.OK;
|
|
mCode = ResultCode.OK;
|
|
-
|
|
|
|
|
|
+
|
|
} else if (httpCode > 0) {
|
|
} else if (httpCode > 0) {
|
|
switch (httpCode) {
|
|
switch (httpCode) {
|
|
- case HttpStatus.SC_UNAUTHORIZED:
|
|
|
|
- mCode = ResultCode.UNAUTHORIZED;
|
|
|
|
- break;
|
|
|
|
- case HttpStatus.SC_NOT_FOUND:
|
|
|
|
- mCode = ResultCode.FILE_NOT_FOUND;
|
|
|
|
- break;
|
|
|
|
- case HttpStatus.SC_INTERNAL_SERVER_ERROR:
|
|
|
|
- mCode = ResultCode.INSTANCE_NOT_CONFIGURED;
|
|
|
|
- break;
|
|
|
|
- case HttpStatus.SC_CONFLICT:
|
|
|
|
- mCode = ResultCode.CONFLICT;
|
|
|
|
- break;
|
|
|
|
- default:
|
|
|
|
- mCode = ResultCode.UNHANDLED_HTTP_CODE;
|
|
|
|
|
|
+ case HttpStatus.SC_UNAUTHORIZED:
|
|
|
|
+ mCode = ResultCode.UNAUTHORIZED;
|
|
|
|
+ break;
|
|
|
|
+ case HttpStatus.SC_NOT_FOUND:
|
|
|
|
+ mCode = ResultCode.FILE_NOT_FOUND;
|
|
|
|
+ break;
|
|
|
|
+ case HttpStatus.SC_INTERNAL_SERVER_ERROR:
|
|
|
|
+ mCode = ResultCode.INSTANCE_NOT_CONFIGURED;
|
|
|
|
+ break;
|
|
|
|
+ case HttpStatus.SC_CONFLICT:
|
|
|
|
+ mCode = ResultCode.CONFLICT;
|
|
|
|
+ break;
|
|
|
|
+ case HttpStatus.SC_INSUFFICIENT_STORAGE:
|
|
|
|
+ mCode = ResultCode.QUOTA_EXCEEDED;
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ mCode = ResultCode.UNHANDLED_HTTP_CODE;
|
|
|
|
+ Log.d(TAG, "RemoteOperationResult has prcessed UNHANDLED_HTTP_CODE: " + httpCode);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
public RemoteOperationResult(Exception e) {
|
|
public RemoteOperationResult(Exception e) {
|
|
- mException = e;
|
|
|
|
-
|
|
|
|
|
|
+ mException = e;
|
|
|
|
+
|
|
if (e instanceof OperationCancelledException) {
|
|
if (e instanceof OperationCancelledException) {
|
|
mCode = ResultCode.CANCELLED;
|
|
mCode = ResultCode.CANCELLED;
|
|
-
|
|
|
|
- } else if (e instanceof SocketException) {
|
|
|
|
|
|
+
|
|
|
|
+ } else if (e instanceof SocketException) {
|
|
mCode = ResultCode.WRONG_CONNECTION;
|
|
mCode = ResultCode.WRONG_CONNECTION;
|
|
-
|
|
|
|
|
|
+
|
|
} else if (e instanceof SocketTimeoutException) {
|
|
} else if (e instanceof SocketTimeoutException) {
|
|
mCode = ResultCode.TIMEOUT;
|
|
mCode = ResultCode.TIMEOUT;
|
|
-
|
|
|
|
|
|
+
|
|
} else if (e instanceof ConnectTimeoutException) {
|
|
} else if (e instanceof ConnectTimeoutException) {
|
|
mCode = ResultCode.TIMEOUT;
|
|
mCode = ResultCode.TIMEOUT;
|
|
-
|
|
|
|
|
|
+
|
|
} else if (e instanceof MalformedURLException) {
|
|
} else if (e instanceof MalformedURLException) {
|
|
mCode = ResultCode.INCORRECT_ADDRESS;
|
|
mCode = ResultCode.INCORRECT_ADDRESS;
|
|
-
|
|
|
|
|
|
+
|
|
} else if (e instanceof UnknownHostException) {
|
|
} else if (e instanceof UnknownHostException) {
|
|
mCode = ResultCode.HOST_NOT_AVAILABLE;
|
|
mCode = ResultCode.HOST_NOT_AVAILABLE;
|
|
-
|
|
|
|
|
|
+
|
|
} else if (e instanceof SSLException || e instanceof RuntimeException) {
|
|
} else if (e instanceof SSLException || e instanceof RuntimeException) {
|
|
CertificateCombinedException se = getCertificateCombinedException(e);
|
|
CertificateCombinedException se = getCertificateCombinedException(e);
|
|
if (se != null) {
|
|
if (se != null) {
|
|
mException = se;
|
|
mException = se;
|
|
- if (se.isRecoverable()) {
|
|
|
|
|
|
+ if (se.isRecoverable()) {
|
|
mCode = ResultCode.SSL_RECOVERABLE_PEER_UNVERIFIED;
|
|
mCode = ResultCode.SSL_RECOVERABLE_PEER_UNVERIFIED;
|
|
}
|
|
}
|
|
-
|
|
|
|
- } else {
|
|
|
|
|
|
+ } else if (e instanceof RuntimeException) {
|
|
|
|
+ mCode = ResultCode.HOST_NOT_AVAILABLE;
|
|
|
|
+
|
|
|
|
+ } else {
|
|
mCode = ResultCode.SSL_ERROR;
|
|
mCode = ResultCode.SSL_ERROR;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
} else {
|
|
} else {
|
|
mCode = ResultCode.UNKNOWN_ERROR;
|
|
mCode = ResultCode.UNKNOWN_ERROR;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
}
|
|
}
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+
|
|
public boolean isSuccess() {
|
|
public boolean isSuccess() {
|
|
return mSuccess;
|
|
return mSuccess;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
public boolean isCancelled() {
|
|
public boolean isCancelled() {
|
|
return mCode == ResultCode.CANCELLED;
|
|
return mCode == ResultCode.CANCELLED;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
public int getHttpCode() {
|
|
public int getHttpCode() {
|
|
return mHttpCode;
|
|
return mHttpCode;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
public ResultCode getCode() {
|
|
public ResultCode getCode() {
|
|
return mCode;
|
|
return mCode;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
public Exception getException() {
|
|
public Exception getException() {
|
|
return mException;
|
|
return mException;
|
|
}
|
|
}
|
|
@@ -176,11 +160,11 @@ public class RemoteOperationResult implements Serializable {
|
|
public boolean isSslRecoverableException() {
|
|
public boolean isSslRecoverableException() {
|
|
return mCode == ResultCode.SSL_RECOVERABLE_PEER_UNVERIFIED;
|
|
return mCode == ResultCode.SSL_RECOVERABLE_PEER_UNVERIFIED;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
private CertificateCombinedException getCertificateCombinedException(Exception e) {
|
|
private CertificateCombinedException getCertificateCombinedException(Exception e) {
|
|
CertificateCombinedException result = null;
|
|
CertificateCombinedException result = null;
|
|
if (e instanceof CertificateCombinedException) {
|
|
if (e instanceof CertificateCombinedException) {
|
|
- return (CertificateCombinedException)e;
|
|
|
|
|
|
+ return (CertificateCombinedException) e;
|
|
}
|
|
}
|
|
Throwable cause = mException.getCause();
|
|
Throwable cause = mException.getCause();
|
|
Throwable previousCause = null;
|
|
Throwable previousCause = null;
|
|
@@ -189,39 +173,38 @@ public class RemoteOperationResult implements Serializable {
|
|
cause = cause.getCause();
|
|
cause = cause.getCause();
|
|
}
|
|
}
|
|
if (cause != null && cause instanceof CertificateCombinedException) {
|
|
if (cause != null && cause instanceof CertificateCombinedException) {
|
|
- result = (CertificateCombinedException)cause;
|
|
|
|
|
|
+ result = (CertificateCombinedException) cause;
|
|
}
|
|
}
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+
|
|
public String getLogMessage() {
|
|
public String getLogMessage() {
|
|
-
|
|
|
|
|
|
+
|
|
if (mException != null) {
|
|
if (mException != null) {
|
|
if (mException instanceof OperationCancelledException) {
|
|
if (mException instanceof OperationCancelledException) {
|
|
return "Operation cancelled by the caller";
|
|
return "Operation cancelled by the caller";
|
|
-
|
|
|
|
- } else if (mException instanceof SocketException) {
|
|
|
|
|
|
+
|
|
|
|
+ } else if (mException instanceof SocketException) {
|
|
return "Socket exception";
|
|
return "Socket exception";
|
|
-
|
|
|
|
|
|
+
|
|
} else if (mException instanceof SocketTimeoutException) {
|
|
} else if (mException instanceof SocketTimeoutException) {
|
|
return "Socket timeout exception";
|
|
return "Socket timeout exception";
|
|
-
|
|
|
|
|
|
+
|
|
} else if (mException instanceof ConnectTimeoutException) {
|
|
} else if (mException instanceof ConnectTimeoutException) {
|
|
return "Connect timeout exception";
|
|
return "Connect timeout exception";
|
|
-
|
|
|
|
|
|
+
|
|
} else if (mException instanceof MalformedURLException) {
|
|
} else if (mException instanceof MalformedURLException) {
|
|
return "Malformed URL exception";
|
|
return "Malformed URL exception";
|
|
-
|
|
|
|
|
|
+
|
|
} else if (mException instanceof UnknownHostException) {
|
|
} else if (mException instanceof UnknownHostException) {
|
|
return "Unknown host exception";
|
|
return "Unknown host exception";
|
|
-
|
|
|
|
|
|
+
|
|
} else if (mException instanceof CertificateCombinedException) {
|
|
} else if (mException instanceof CertificateCombinedException) {
|
|
if (((CertificateCombinedException) mException).isRecoverable())
|
|
if (((CertificateCombinedException) mException).isRecoverable())
|
|
return "SSL recoverable exception";
|
|
return "SSL recoverable exception";
|
|
else
|
|
else
|
|
return "SSL exception";
|
|
return "SSL exception";
|
|
-
|
|
|
|
|
|
+
|
|
} else if (mException instanceof SSLException) {
|
|
} else if (mException instanceof SSLException) {
|
|
return "SSL exception";
|
|
return "SSL exception";
|
|
|
|
|
|
@@ -238,25 +221,25 @@ public class RemoteOperationResult implements Serializable {
|
|
return "Unexpected exception";
|
|
return "Unexpected exception";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
if (mCode == ResultCode.INSTANCE_NOT_CONFIGURED) {
|
|
if (mCode == ResultCode.INSTANCE_NOT_CONFIGURED) {
|
|
return "The ownCloud server is not configured!";
|
|
return "The ownCloud server is not configured!";
|
|
-
|
|
|
|
|
|
+
|
|
} else if (mCode == ResultCode.NO_NETWORK_CONNECTION) {
|
|
} else if (mCode == ResultCode.NO_NETWORK_CONNECTION) {
|
|
return "No network connection";
|
|
return "No network connection";
|
|
-
|
|
|
|
|
|
+
|
|
} else if (mCode == ResultCode.BAD_OC_VERSION) {
|
|
} else if (mCode == ResultCode.BAD_OC_VERSION) {
|
|
return "No valid ownCloud version was found at the server";
|
|
return "No valid ownCloud version was found at the server";
|
|
-
|
|
|
|
|
|
+
|
|
} else if (mCode == ResultCode.LOCAL_STORAGE_FULL) {
|
|
} else if (mCode == ResultCode.LOCAL_STORAGE_FULL) {
|
|
return "Local storage full";
|
|
return "Local storage full";
|
|
-
|
|
|
|
|
|
+
|
|
} else if (mCode == ResultCode.LOCAL_STORAGE_NOT_MOVED) {
|
|
} else if (mCode == ResultCode.LOCAL_STORAGE_NOT_MOVED) {
|
|
return "Error while moving file to final directory";
|
|
return "Error while moving file to final directory";
|
|
}
|
|
}
|
|
-
|
|
|
|
- return "Operation finished with HTTP status code " + mHttpCode + " (" + (isSuccess()?"success":"fail") + ")";
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ return "Operation finished with HTTP status code " + mHttpCode + " (" + (isSuccess() ? "success" : "fail") + ")";
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|