mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-08 00:16:09 +00:00
Allow the usage of OwnCloudVersion instances for invalid server versions, and removed some really old or never used endpoint paths
This commit is contained in:
parent
ef49035784
commit
825ef70cef
@ -295,8 +295,6 @@ public class OwnCloudClient extends HttpClient {
|
||||
}
|
||||
if (destination != null) {
|
||||
int suffixIndex = locationStr.lastIndexOf(
|
||||
(mCredentials instanceof OwnCloudBearerCredentials) ?
|
||||
AccountUtils.ODAV_PATH :
|
||||
AccountUtils.WEBDAV_PATH_4_0
|
||||
);
|
||||
String redirectionBase = locationStr.substring(0, suffixIndex);
|
||||
@ -352,12 +350,8 @@ public class OwnCloudClient extends HttpClient {
|
||||
}
|
||||
|
||||
public Uri getWebdavUri() {
|
||||
if (mCredentials instanceof OwnCloudBearerCredentials) {
|
||||
return Uri.parse(mBaseUri + AccountUtils.ODAV_PATH);
|
||||
} else {
|
||||
return Uri.parse(mBaseUri + AccountUtils.WEBDAV_PATH_4_0);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the root URI to the ownCloud server.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* ownCloud Android Library is available under MIT license
|
||||
* Copyright (C) 2016 ownCloud GmbH.
|
||||
* Copyright (C) 2017 ownCloud GmbH.
|
||||
* Copyright (C) 2012 Bartek Przybylski
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
@ -47,43 +47,9 @@ public class AccountUtils {
|
||||
|
||||
private static final String TAG = AccountUtils.class.getSimpleName();
|
||||
|
||||
public static final String WEBDAV_PATH_1_2 = "/webdav/owncloud.php";
|
||||
public static final String WEBDAV_PATH_2_0 = "/files/webdav.php";
|
||||
public static final String WEBDAV_PATH_4_0 = "/remote.php/webdav";
|
||||
public static final String ODAV_PATH = "/remote.php/odav";
|
||||
private static final String SAML_SSO_PATH = "/remote.php/webdav";
|
||||
public static final String CARDDAV_PATH_2_0 = "/apps/contacts/carddav.php";
|
||||
public static final String CARDDAV_PATH_4_0 = "/remote/carddav.php";
|
||||
public static final String STATUS_PATH = "/status.php";
|
||||
|
||||
/**
|
||||
* Returns the proper URL path to access the WebDAV interface of an ownCloud server,
|
||||
* according to its version and the authorization method used.
|
||||
*
|
||||
* @param supportsOAuth If true, access with OAuth 2 authorization is considered.
|
||||
* @param supportsSamlSso If true, and supportsOAuth is false, access with SAML-based single-sign-on is considered.
|
||||
* @return WebDAV path for given OC version, null if OC version unknown
|
||||
* @param version Version of ownCloud server.
|
||||
*/
|
||||
public static String getWebdavPath(OwnCloudVersion version, boolean supportsOAuth, boolean supportsSamlSso) {
|
||||
if (version != null) {
|
||||
if (supportsOAuth) {
|
||||
return ODAV_PATH;
|
||||
}
|
||||
if (supportsSamlSso) {
|
||||
return SAML_SSO_PATH;
|
||||
}
|
||||
if (version.compareTo(OwnCloudVersion.owncloud_v4) >= 0)
|
||||
return WEBDAV_PATH_4_0;
|
||||
if (version.compareTo(OwnCloudVersion.owncloud_v3) >= 0
|
||||
|| version.compareTo(OwnCloudVersion.owncloud_v2) >= 0)
|
||||
return WEBDAV_PATH_2_0;
|
||||
if (version.compareTo(OwnCloudVersion.owncloud_v1) >= 0)
|
||||
return WEBDAV_PATH_1_2;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs full url to host and webdav resource basing on host version
|
||||
*
|
||||
@ -97,16 +63,10 @@ public class AccountUtils {
|
||||
public static String constructFullURLForAccount(Context context, Account account) throws AccountNotFoundException {
|
||||
AccountManager ama = AccountManager.get(context);
|
||||
String baseurl = ama.getUserData(account, Constants.KEY_OC_BASE_URL);
|
||||
String version = ama.getUserData(account, Constants.KEY_OC_VERSION);
|
||||
boolean supportsOAuth = (ama.getUserData(account, Constants.KEY_SUPPORTS_OAUTH2) != null);
|
||||
boolean supportsSamlSso = (ama.getUserData(account, Constants.KEY_SUPPORTS_SAML_WEB_SSO) != null);
|
||||
OwnCloudVersion ver = new OwnCloudVersion(version);
|
||||
String webdavpath = getWebdavPath(ver, supportsOAuth, supportsSamlSso);
|
||||
|
||||
if (baseurl == null || webdavpath == null)
|
||||
if (baseurl == null) {
|
||||
throw new AccountNotFoundException(account, "Account not found", null);
|
||||
|
||||
return baseurl + webdavpath;
|
||||
}
|
||||
return baseurl + WEBDAV_PATH_4_0;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -115,12 +115,9 @@ public class GetRemoteStatusOperation extends RemoteOperation {
|
||||
} else {
|
||||
String version = json.getString(NODE_VERSION);
|
||||
OwnCloudVersion ocVersion = new OwnCloudVersion(version);
|
||||
if (!ocVersion.isVersionValid()) {
|
||||
mLatestResult = new RemoteOperationResult(
|
||||
RemoteOperationResult.ResultCode.BAD_OC_VERSION);
|
||||
/// the version object will be returned even if the version is invalid, no error code;
|
||||
/// every app will decide how to act if (ocVersion.isVersionValid() == false)
|
||||
|
||||
} else {
|
||||
// success
|
||||
if (isRedirectToNonSecureConnection) {
|
||||
mLatestResult = new RemoteOperationResult(
|
||||
RemoteOperationResult.ResultCode.
|
||||
@ -139,7 +136,6 @@ public class GetRemoteStatusOperation extends RemoteOperation {
|
||||
mLatestResult.setData(data);
|
||||
retval = true;
|
||||
}
|
||||
}
|
||||
|
||||
} else {
|
||||
mLatestResult = new RemoteOperationResult(false, get);
|
||||
|
@ -26,16 +26,6 @@
|
||||
package com.owncloud.android.lib.resources.status;
|
||||
|
||||
public class OwnCloudVersion implements Comparable<OwnCloudVersion> {
|
||||
public static final OwnCloudVersion owncloud_v1 = new OwnCloudVersion(
|
||||
0x01000000);
|
||||
public static final OwnCloudVersion owncloud_v2 = new OwnCloudVersion(
|
||||
0x02000000);
|
||||
public static final OwnCloudVersion owncloud_v3 = new OwnCloudVersion(
|
||||
0x03000000);
|
||||
public static final OwnCloudVersion owncloud_v4 = new OwnCloudVersion(
|
||||
0x04000000);
|
||||
public static final OwnCloudVersion owncloud_v4_5 = new OwnCloudVersion(
|
||||
0x04050000);
|
||||
|
||||
public static final int MINIMUN_VERSION_FOR_CHUNKED_UPLOADS = 0x04050000; // 4.5
|
||||
|
||||
@ -67,12 +57,15 @@ public class OwnCloudVersion implements Comparable<OwnCloudVersion> {
|
||||
private int mVersion;
|
||||
private boolean mIsValid;
|
||||
|
||||
protected OwnCloudVersion(int version) {
|
||||
/**
|
||||
* @deprecated Will be removed in version 1.0 of the library.
|
||||
*/
|
||||
private OwnCloudVersion(int version) {
|
||||
mVersion = version;
|
||||
mIsValid = true;
|
||||
}
|
||||
|
||||
public OwnCloudVersion(String version){
|
||||
public OwnCloudVersion(String version) {
|
||||
mVersion = 0;
|
||||
mIsValid = false;
|
||||
int countDots = version.length() - version.replace(".", "").length();
|
||||
@ -87,15 +80,22 @@ public class OwnCloudVersion implements Comparable<OwnCloudVersion> {
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
String versionToString = String.valueOf((mVersion >> (8*MAX_DOTS)) % 256);
|
||||
for (int i = MAX_DOTS - 1; i >= 0; i-- ) {
|
||||
versionToString = versionToString + "." + String.valueOf((mVersion >> (8*i)) % 256);
|
||||
String versionToString = String.valueOf((mVersion >> (8 * MAX_DOTS)) % 256);
|
||||
for (int i = MAX_DOTS - 1; i >= 0; i--) {
|
||||
versionToString = versionToString + "." + String.valueOf((mVersion >> (8 * i)) % 256);
|
||||
}
|
||||
if (!mIsValid) {
|
||||
versionToString += " INVALID";
|
||||
}
|
||||
return versionToString;
|
||||
}
|
||||
|
||||
public String getVersion() {
|
||||
if (mIsValid) {
|
||||
return toString();
|
||||
} else {
|
||||
return "0.0.0";
|
||||
}
|
||||
}
|
||||
|
||||
public boolean isVersionValid() {
|
||||
@ -115,6 +115,9 @@ public class OwnCloudVersion implements Comparable<OwnCloudVersion> {
|
||||
|
||||
} catch (Exception e) {
|
||||
mIsValid = false;
|
||||
// if invalid, the instance will respond as if server is 8.1, minimum with capabilities API,
|
||||
// and "dead" : https://github.com/owncloud/core/wiki/Maintenance-and-Release-Schedule
|
||||
mVersion = MINIMUM_VERSION_CAPABILITIES_API;
|
||||
}
|
||||
}
|
||||
|
||||
@ -152,7 +155,7 @@ public class OwnCloudVersion implements Comparable<OwnCloudVersion> {
|
||||
return (mVersion >= MINIMUM_SERVER_VERSION_FOR_REMOTE_THUMBNAILS);
|
||||
}
|
||||
|
||||
public boolean isAfter8Version(){
|
||||
public boolean isAfter8Version() {
|
||||
return (mVersion >= VERSION_8);
|
||||
}
|
||||
|
||||
@ -160,8 +163,8 @@ public class OwnCloudVersion implements Comparable<OwnCloudVersion> {
|
||||
return (mVersion >= MINIMUM_VERSION_FOR_SEARCHING_USERS);
|
||||
}
|
||||
|
||||
public boolean isVersionWithCapabilitiesAPI(){
|
||||
return (mVersion>= MINIMUM_VERSION_CAPABILITIES_API);
|
||||
public boolean isVersionWithCapabilitiesAPI() {
|
||||
return (mVersion >= MINIMUM_VERSION_CAPABILITIES_API);
|
||||
}
|
||||
|
||||
public boolean isNotReshareableFederatedSupported() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user