summaryrefslogtreecommitdiffstats
path: root/lib/private/files
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge pull request #20875 from owncloud/remove-changepropagatorThomas Müller2015-12-022-143/+0
|\ | | | | remove old propagation logic
| * remove old propagation logicRobin Appelman2015-12-012-143/+0
| |
* | Add metadata to post delete hooksRobin Appelman2015-12-014-22/+104
|/
* Add DB group to some files_external testsThomas Müller2015-11-301-0/+1
| | | | | | | | | | Adding group Db to federation tests and ldap tests Add group DB to Test_UrlGenerator Adding group DB to trashbin and versions tests Adding group DB to Test_Util_CheckServer for pg
* also log exceptionRobin Appelman2015-11-271-0/+1
|
* Skip unavailable storages in scannerRobin Appelman2015-11-271-2/+16
|
* Merge pull request #20744 from owncloud/oc_helper-getMimeType-cleanupThomas Müller2015-11-261-1/+1
|\ | | | | Remove last occurences of OC_Helper::getMimeType()
| * Remove last occurences of OC_Helper::getMimeType()Morris Jobke2015-11-261-1/+1
| | | | | | | | * ref #4774
* | Merge pull request #20731 from owncloud/per-storage-updaterThomas Müller2015-11-265-114/+144
|\ \ | |/ |/| Make Cache\Updater per storage
| * Make Cache\Updater per storageRobin Appelman2015-11-255-114/+144
| |
* | Merge pull request #20705 from owncloud/fix_20648Thomas Müller2015-11-251-2/+2
|\ \ | |/ |/| Fix overriding function from 3rdparty warning
| * Fix overriding function from 3rdparty warningRoeland Jago Douma2015-11-241-2/+2
| | | | | | | | Fixes #20648
* | Merge pull request #20439 from owncloud/etag-propagate-in-storageThomas Müller2015-11-258-110/+242
|\ \ | | | | | | Take submount etag into account for folder etags
| * | take the etag of child mounts into account for the folder etagRobin Appelman2015-11-198-21/+158
| | | | | | | | | | | | this replaces shared etag propagation
| * | Fix scanning of incomplete foldersRobin Appelman2015-11-191-1/+1
| | |
| * | use relative pathRobin Appelman2015-11-191-1/+1
| | |
| * | fix fileinfo for non existing filesRobin Appelman2015-11-191-0/+4
| | |
| * | Some more cleanup for getFIleInfo/getDirectoryContentRobin Appelman2015-11-192-39/+42
| | |
| * | Split getting cache entry and checking update to a seperate methodRobin Appelman2015-11-191-58/+46
| | |
* | | Adjust sabre changes in coreThomas Müller2015-11-241-3/+6
| |/ |/|
* | Merge pull request #20614 from ↵Thomas Müller2015-11-201-1/+1
|\ \ | | | | | | | | | | | | owncloud/use-mocks-when-testing-isSharingDisabledForUser Use mocks when testing isSharingDisabledForUser
| * | Use mocks when testing isSharingDisabledForUserThomas Müller2015-11-191-1/+1
| |/
* / Follow the interface againRoeland Jago Douma2015-11-191-0/+9
|/
* Handle non existing users as owner in the viewRobin Appelman2015-11-181-5/+20
|
* Allow storage wrappers to through a forbidden exception with retry informationJoas Schilling2015-11-171-0/+2
|
* Add getOwner to FileInfoRobin Appelman2015-11-103-7/+36
|
* Merge pull request #16604 from owncloud/cache-escape-likeRobin Appelman2015-11-101-62/+71
|\ | | | | escape like parameter in cache operations
| * escape like parameter for move queriesRobin Appelman2015-11-051-1/+1
| |
| * move from OC_DB to IDBConnectionRobin Appelman2015-11-051-62/+71
| |
* | Merge pull request #20288 from owncloud/fix_20234Thomas Müller2015-11-061-1/+13
|\ \ | |/ |/| make sure that we update the unencrypted size for the versions
| * make sure that we update the unencrypted size for the versionsBjörn Schießle2015-11-041-1/+13
| |
* | mark path as checkedRobin Appelman2015-11-041-0/+1
| |
* | when a file is locked use old cache dataRobin Appelman2015-11-041-29/+37
| |
* | fix whitespaceRobin Appelman2015-11-041-2/+2
| |
* | only lock in getDirectoryContent if we need to update the cacheRobin Appelman2015-11-031-21/+17
| |
* | only lock in getFileInfo if we need to update the cacheRobin Appelman2015-11-031-18/+16
| |
* | Split checkUpdateRobin Appelman2015-11-031-19/+39
|/
* Merge pull request #20060 from owncloud/cache-move-final-update-transactionRobin Appelman2015-10-291-2/+6
|\ | | | | include the final update in the transaction when moving a folder in the cache
| * include the final update in the transaction when moving a folder in the cacheRobin Appelman2015-10-291-2/+6
| |
* | Merge pull request #19592 from owncloud/availability-root-always-existsThomas Müller2015-10-291-0/+3
|\ \ | |/ |/| The root of a storage always exists
| * The root of a storage always existsRobin Appelman2015-10-291-0/+3
| |
* | Merge pull request #19869 from owncloud/cache-adjustcurrentmtimeonrenameThomas Müller2015-10-292-1/+23
|\ \ | |/ |/| On rename, also refresh storage_mtime of the target file
| * Also adjust storage_mtime of target after renameVincent Petry2015-10-262-1/+23
| | | | | | | | Some storages like Dropbox change their mtime on rename...
* | Update license headersLukas Reschke2015-10-265-1/+5
|/
* Throw exception on `getPath` if file does not existLukas Reschke2015-10-252-5/+15
| | | | | | | | | | Currently the `getPath` methods returned `NULL` in case when a file with the specified ID does not exist. This however mandates that developers are checking for the `NULL` case and if they do not the door for bugs with all kind of impact is widely opened. This is especially harmful if used in context with Views where the final result is limited based on the result of `getPath`, if `getPath` returns `NULL` PHP type juggles this to an empty string resulting in all possible kind of bugs. While one could argue that this is a misusage of the API the fact is that it is very often misused and an exception will trigger an immediate stop of execution as well as log this behaviour and show a pretty error page. I also adjusted some usages where I believe that we need to catch these errors, in most cases this is though simply an error that should hard-fail.
* Dont lock /$user/filesRobin Appelman2015-10-231-1/+1
|
* Merge pull request #17641 from owncloud/fix_objectstore_renameJörn Friedrich Dreyer2015-10-192-9/+11
|\ | | | | don't move files in cache twice, fixes renaming for objectstores
| * fix objectstore files having create permissionsRobin Appelman2015-10-161-2/+2
| |
| * don't move files in cache twice, fixes renaming for objectstoresJörn Friedrich Dreyer2015-10-161-7/+9
| |
* | Merge pull request #19833 from owncloud/fix_view_rmdirRobin Appelman2015-10-191-1/+1
|\ \ | |/ |/| Removemount expects absolutePath