diff --git a/src/com/owncloud/android/lib/common/OwnCloudClient.java b/src/com/owncloud/android/lib/common/OwnCloudClient.java index f21c9d18..c4bc58e7 100644 --- a/src/com/owncloud/android/lib/common/OwnCloudClient.java +++ b/src/com/owncloud/android/lib/common/OwnCloudClient.java @@ -58,7 +58,7 @@ public class OwnCloudClient extends HttpClient { public static final String WEBDAV_PATH_4_0 = "/remote.php/webdav"; public static final String NEW_WEBDAV_FILES_PATH_4_0 = "/remote.php/dav/files/"; - public static final String NEW_WEBDAV_UPLOADS_PATH_4_0 = "/remote.php/dav/files/"; + public static final String NEW_WEBDAV_UPLOADS_PATH_4_0 = "/remote.php/dav/uploads/"; public static final String STATUS_PATH = "/status.php"; public static final String FILES_WEB_PATH = "/index.php/apps/files"; diff --git a/src/com/owncloud/android/lib/resources/files/CreateRemoteChunkFolderOperation.java b/src/com/owncloud/android/lib/resources/files/CreateRemoteChunkFolderOperation.java new file mode 100644 index 00000000..8c5ecc17 --- /dev/null +++ b/src/com/owncloud/android/lib/resources/files/CreateRemoteChunkFolderOperation.java @@ -0,0 +1,43 @@ +/* ownCloud Android Library is available under MIT license + * Copyright (C) 2018 ownCloud GmbH. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +package com.owncloud.android.lib.resources.files; + +/** + * Remote operation performing the creation of a new folder to save chunks during an upload to the ownCloud server. + * + * @author David González Verdugo + */ +public class CreateRemoteChunkFolderOperation extends CreateRemoteFolderOperation { + /** + * Constructor + * + * @param remotePath Full path to the new directory to create in the remote server. + * @param createFullPath 'True' means that all the ancestor folders should be created. + */ + public CreateRemoteChunkFolderOperation(String remotePath, boolean createFullPath) { + super(remotePath, createFullPath); + mFolderToSaveChunks = true; + } +} \ No newline at end of file diff --git a/src/com/owncloud/android/lib/resources/files/CreateRemoteFolderOperation.java b/src/com/owncloud/android/lib/resources/files/CreateRemoteFolderOperation.java index 80763d4e..798d9d51 100644 --- a/src/com/owncloud/android/lib/resources/files/CreateRemoteFolderOperation.java +++ b/src/com/owncloud/android/lib/resources/files/CreateRemoteFolderOperation.java @@ -57,18 +57,17 @@ public class CreateRemoteFolderOperation extends RemoteOperation { private String mRemotePath; private boolean mCreateFullPath; - private boolean mFolderToSaveChunks; + protected boolean mFolderToSaveChunks; /** * Constructor - * @param remotePath Full path to the new directory to create in the remote server. + * @param remotePath Full path to the new directory to create in the remote server. * @param createFullPath 'True' means that all the ancestor folders should be created. - * @param folderToSaveChunks 'True' means that the folder to create is to save upload chunks. */ - public CreateRemoteFolderOperation(String remotePath, boolean createFullPath, boolean folderToSaveChunks) { + public CreateRemoteFolderOperation(String remotePath, boolean createFullPath) { mRemotePath = remotePath; mCreateFullPath = createFullPath; - mFolderToSaveChunks = folderToSaveChunks; + mFolderToSaveChunks = false; } /** @@ -125,8 +124,7 @@ public class CreateRemoteFolderOperation extends RemoteOperation { } private RemoteOperationResult createParentFolder(String parentPath, OwnCloudClient client) { - RemoteOperation operation = new CreateRemoteFolderOperation(parentPath, - mCreateFullPath, mFolderToSaveChunks); + RemoteOperation operation = new CreateRemoteFolderOperation(parentPath, mCreateFullPath); return operation.execute(client); } } \ No newline at end of file