-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Improve bulk upload and add a config switch for it #33697
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 7 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
be7082e
Add fileid and permissions to response of bulk upload
come-nc 5ae185a
Add bulkupload.enabled configuration switch
come-nc e34f2c4
Call the correct functions to get BulkUpload metadata to return
come-nc b3cd9b5
Move Dav fileid and permissions logic into OCP\Util to be able to use…
come-nc d90b314
Fix OCP\Util documentation blocks
come-nc 9874557
Fix Capabilities tests for dav application
come-nc 7f80dcc
Flip bulkupload.enabled default value to true
come-nc 4f3b323
Move dav utils functions to OCP\Files\DavUtil
come-nc 30bfd5f
Add DavUtil to autoloader
come-nc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,7 @@ | |
| * @copyright Copyright (c) 2021, Louis Chemineau <[email protected]> | ||
| * | ||
| * @author Louis Chemineau <[email protected]> | ||
| * @author Côme Chilliet <[email protected]> | ||
| * | ||
| * @license AGPL-3.0 | ||
| * | ||
|
|
@@ -32,14 +33,13 @@ | |
| use OCA\DAV\Connector\Sabre\MtimeSanitizer; | ||
|
|
||
| class BulkUploadPlugin extends ServerPlugin { | ||
| private Folder $userFolder; | ||
| private LoggerInterface $logger; | ||
|
|
||
| /** @var Folder */ | ||
| private $userFolder; | ||
|
|
||
| /** @var LoggerInterface */ | ||
| private $logger; | ||
|
|
||
| public function __construct(Folder $userFolder, LoggerInterface $logger) { | ||
| public function __construct( | ||
| Folder $userFolder, | ||
| LoggerInterface $logger | ||
| ) { | ||
| $this->userFolder = $userFolder; | ||
| $this->logger = $logger; | ||
| } | ||
|
|
@@ -95,6 +95,8 @@ public function httpPost(RequestInterface $request, ResponseInterface $response) | |
| $writtenFiles[$headers['x-file-path']] = [ | ||
| "error" => false, | ||
| "etag" => $node->getETag(), | ||
| "fileid" => \OCP\Util::getDavFileId($node->getId()), | ||
| "permissions" => \OCP\Util::getDavPermissions($node), | ||
| ]; | ||
| } catch (\Exception $e) { | ||
| $this->logger->error($e->getMessage(), ['path' => $headers['x-file-path']]); | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,7 @@ | |
| * | ||
| * @author Thomas Müller <[email protected]> | ||
| * @author Louis Chemineau <[email protected]> | ||
| * @author Côme Chilliet <[email protected]> | ||
| * | ||
| * @license AGPL-3.0 | ||
| * | ||
|
|
@@ -23,15 +24,24 @@ | |
| namespace OCA\DAV; | ||
|
|
||
| use OCP\Capabilities\ICapability; | ||
| use OCP\IConfig; | ||
|
|
||
| class Capabilities implements ICapability { | ||
| private IConfig $config; | ||
|
|
||
| public function __construct(IConfig $config) { | ||
| $this->config = $config; | ||
| } | ||
|
|
||
| public function getCapabilities() { | ||
| return [ | ||
| $capabilities = [ | ||
| 'dav' => [ | ||
| 'chunking' => '1.0', | ||
| // disabled because of https://github.com/nextcloud/desktop/issues/4243 | ||
| // 'bulkupload' => '1.0', | ||
| ] | ||
| ]; | ||
| if ($this->config->getSystemValueBool('bulkupload.enabled', true)) { | ||
| $capabilities['dav']['bulkupload'] = '1.0'; | ||
| } | ||
| return $capabilities; | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.