mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-08 00:16:09 +00:00
OC-2678: Consider CreateShareRemoteOperation returns result!=null in exceptions
This commit is contained in:
parent
30a5eedf7e
commit
81acfb9571
@ -102,18 +102,20 @@ public class CreateShareRemoteOperation extends RemoteOperation {
|
|||||||
RemoteOperationResult result = null;
|
RemoteOperationResult result = null;
|
||||||
int status = -1;
|
int status = -1;
|
||||||
|
|
||||||
// Post Method
|
PostMethod post = null;
|
||||||
PostMethod post = new PostMethod(client.getBaseUri() + ShareUtils.SHAREAPI_ROUTE);
|
|
||||||
Log.d(TAG, "URL ------> " + client.getBaseUri() + ShareUtils.SHAREAPI_ROUTE);
|
|
||||||
|
|
||||||
post.addParameter(PARAM_PATH, mPath);
|
|
||||||
post.addParameter(PARAM_SHARE_TYPE, Integer.toString(mShareType.getValue()));
|
|
||||||
post.addParameter(PARAM_SHARE_WITH, mShareWith);
|
|
||||||
post.addParameter(PARAM_PUBLIC_UPLOAD, Boolean.toString(mPublicUpload));
|
|
||||||
post.addParameter(PARAM_PASSWORD, mPassword);
|
|
||||||
post.addParameter(PARAM_PERMISSIONS, Integer.toString(mPermissions));
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
// Post Method
|
||||||
|
post = new PostMethod(client.getBaseUri() + ShareUtils.SHAREAPI_ROUTE);
|
||||||
|
Log.d(TAG, "URL ------> " + client.getBaseUri() + ShareUtils.SHAREAPI_ROUTE);
|
||||||
|
|
||||||
|
post.addParameter(PARAM_PATH, mPath);
|
||||||
|
post.addParameter(PARAM_SHARE_TYPE, Integer.toString(mShareType.getValue()));
|
||||||
|
post.addParameter(PARAM_SHARE_WITH, mShareWith);
|
||||||
|
post.addParameter(PARAM_PUBLIC_UPLOAD, Boolean.toString(mPublicUpload));
|
||||||
|
post.addParameter(PARAM_PASSWORD, mPassword);
|
||||||
|
post.addParameter(PARAM_PERMISSIONS, Integer.toString(mPermissions));
|
||||||
|
|
||||||
status = client.executeMethod(post);
|
status = client.executeMethod(post);
|
||||||
|
|
||||||
if(isSuccess(status)) {
|
if(isSuccess(status)) {
|
||||||
@ -138,12 +140,18 @@ public class CreateShareRemoteOperation extends RemoteOperation {
|
|||||||
result.setData(sharesObjects);
|
result.setData(sharesObjects);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
result = new RemoteOperationResult(false, status, post.getResponseHeaders());
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
result = new RemoteOperationResult(e);
|
result = new RemoteOperationResult(e);
|
||||||
Log.e(TAG, "Exception while Creating New Share", e);
|
Log.e(TAG, "Exception while Creating New Share", e);
|
||||||
|
|
||||||
} finally {
|
} finally {
|
||||||
post.releaseConnection();
|
if (post != null) {
|
||||||
|
post.releaseConnection();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user