summaryrefslogtreecommitdiffstats
path: root/lib/private/connector
Commit message (Collapse)AuthorAgeFilesLines
* Some expected Sabre exceptions are now logged with DEBUG levelVincent Petry2014-05-071-2/+15
|
* merge master into webdav-injectionRobin Appelman2014-04-253-26/+8
|\
| * always allow to rename the share mount pointBjoern Schiessle2014-04-231-1/+7
| |
| * we no longer need to handle the Shared folder different from any other folderBjoern Schiessle2014-04-233-26/+0
| |
| * Merge pull request #8222 from owncloud/type-hintingMorris Jobke2014-04-171-0/+1
| |\ | | | | | | Type hinting fixes
| | * Fix PHPdoc in lib/privateBart Visscher2014-04-151-0/+1
| | | | | | | | | | | | using scrutinizer patch
* | | properly quote etagsRobin Appelman2014-04-241-1/+1
| | |
* | | Normalize paths when moving propertiesRobin Appelman2014-04-241-1/+1
| | |
* | | fixing typos and PHPDocThomas Müller2014-04-235-8/+22
| | |
* | | Revert changes to OC_Connector_Sabre_ServerRobin Appelman2014-04-231-41/+28
| | |
* | | merge master into webdav-injectionRobin Appelman2014-04-151-1/+3
|\| |
| * | White-list known secure mime types. Refs. #8184Thomas Tanghus2014-04-141-2/+4
| |/
* | merge master into webdav-injectionRobin Appelman2014-04-152-3/+17
|\|
| * Fixed Sabre Node implementation to correctly return timestamps as intVincent Petry2014-04-091-3/+6
| | | | | | | | | | | | | | | | Negative timestamps were returned as string and were confusing other Sabre API like Sabre_DAV_Property_GetLastModified. This fix makes sure the timestamp is returned as int when defined.
| * Merge pull request #7696 from owncloud/chunk-remainingspacefixVincent Petry2014-04-011-0/+11
| |\ | | | | | | Fixed chunking and insufficient storage check
| | * Fixed chunking and insufficient storage checkVincent Petry2014-03-171-0/+11
| | | | | | | | | | | | | | | | | | | | | - fixed free space detection based on the already uploaded chunks - now deleting chunks as soon as it is read out before writing it into the part file, which reduces the space needed when assembling part files
* | | merge master into webdav-injectionRobin Appelman2014-03-261-1/+15
|\| |
| * | close the session for all DAV calls right after authentication - no need to ↵Thomas Müller2014-03-101-1/+15
| |/ | | | | | | write to the session afterwards
* | merge master into webdav-injectionRobin Appelman2014-03-062-2/+5
|\|
| * don't allow to create a file or folder named 'Shared' in the root folder, ↵Bjoern Schiessle2014-03-052-2/+5
| | | | | | | | also exclude all combinations of lower and upper case letters
* | Remove the need for a custom SabreDav server constructorRobin Appelman2014-03-042-14/+16
| |
* | Make path for dummy fileinfo absoluteRobin Appelman2014-03-031-1/+1
| |
* | Pass the filesystem view as argument in the sabredav connectors and use the ↵Robin Appelman2014-02-257-270/+216
|/ | | | fileinfo object
* Merge pull request #6714 from owncloud/files-newfileinvalidcharsfixLukas Reschke2014-02-203-4/+20
|\ | | | | Added extra checks for invalid file chars in newfile.php and newfolder.php
| * Added file name check in webdav connectorVincent Petry2014-02-183-4/+20
| | | | | | | | | | | | | | - added file name check for the put, rename and setNames() methods which throw a "Bad Request" whenever invalid characters are used - replaced \OC\Filesystem usage with $this->getFS() to be able to write unit tests
* | Scrutinizer Auto-FixesScrutinizer Auto-Fixer2014-02-192-1/+2
| | | | | | | | | | | | | | | | | | | | | | This patch was automatically generated as part of the following inspection: https://scrutinizer-ci.com/g/owncloud/core/inspections/cdfecc4e-a37e-4233-8025-f0d7252a8720 Enabled analysis tools: - PHP Analyzer - JSHint - PHP Copy/Paste Detector - PHP PDepend
* | polish documentation based on scrutinizer patchesJörn Friedrich Dreyer2014-02-065-5/+7
|/
* Merge pull request #6081 from owncloud/partfilewebdavfixVincent Petry2014-02-041-1/+14
|\ | | | | Allow getting info or renaming part files through WebDAV
| * Allow getting info or renaming part files through WebDAVVincent Petry2014-01-231-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When mounting an ownCloud (backend OC) inside another ownCloud (frontend OC), the frontend OC will use WebDAV to upload file, which will create part files. These part files need to be accessible for the frontend OC to rename them to the actual file name. This fix leaves the file cache untouched but gives direct access to part file info when requested. This means that part file can be accessed only when their path and name are known. These won't appear in file listtings. Fixes #6068
* | Added exception logger plugin for sabre connectorVincent Petry2014-01-272-3/+53
|/ | | | | | | | | | | Whenever an exception occurs in the sabre connector code or code called by it, it will be logged. This plugin approach is needed because Sabre already catches exceptions to return them to the client in the XML response, so they don't appear logged in the web server log. This will make it much easier to debug syncing issues.
* Removed special handling of part files in shared storage renameVincent Petry2014-01-081-1/+4
| | | | | | This fixes the issue introduced by the transfer id which itself wasn't taken into account by the shortcut code for part file in the shared storage class.
* in order to work properly with encryption ocTransferId is added to the file ↵Thomas Müller2014-01-071-1/+1
| | | | path - questionable usage of magic string
* Adding a random postfix to the part file.Thomas Müller2013-12-201-1/+1
|
* Fixed touch after chunk assemblingVincent Petry2013-11-291-1/+1
| | | | | | | Fixed touch after chunk assembling which was using the wrong path, resulting in the creation of an extra file. Fixes #6007
* adding chunked upload handlingThomas Müller2013-11-251-0/+12
|
* always get the right node for the given file pathThomas Müller2013-11-201-0/+2
|
* Merge pull request #5447 from owncloud/fixing-5117-masterVincent Petry2013-11-131-3/+25
|\ | | | | No data corruption duriing parallel upload
| * make it possible to detect transferID partBjoern Schiessle2013-11-111-1/+1
| |
| * adding oc-mtime handling to chunked uploadThomas Müller2013-10-211-0/+9
| |
| * chunked files are assembled into a part file on the target storage followed ↵Thomas Müller2013-10-211-3/+16
| | | | | | | | by an atomic rename operation.
* | add header 'OC-FileId' on PUTThomas Müller2013-10-251-0/+16
| |
* | switch instance id and file idThomas Müller2013-10-251-1/+1
| |
* | Merge pull request #5494 from owncloud/fixing-3593-masterThomas Müller2013-10-242-1/+95
|\ \ | | | | | | introducing new dav property {xmlns:oc="http://owncloud.org/ns}id
| * | - fixing namespaceThomas Müller2013-10-241-2/+4
| | | | | | | | | | | | - remove property only if present
| * | handle case where fileid is not setThomas Müller2013-10-232-4/+12
| | |
| * | introducing new dav property {xmlns:oc="http://owncloud.org/ns}idThomas Müller2013-10-232-1/+85
| | |
* | | Merge pull request #5402 from owncloud/fixing-5367-masterThomas Müller2013-10-241-1/+1
|\ \ \ | | | | | | | | fixes chunked upload
| * | | fixes #5367Thomas Müller2013-10-171-1/+1
| | |/ | |/|
* | | Merge pull request #5464 from owncloud/fixing-5456-masterThomas Müller2013-10-232-3/+18
|\ \ \ | |_|/ |/| | Fixing 5456 master
| * | creating and deleting of file and folder 'Shared' in root is not allowedThomas Müller2013-10-222-3/+18
| |/