summaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/Files
Commit message (Collapse)AuthorAgeFilesLines
* Allow searching file by fileidRobin Appelman2017-04-051-3/+5
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* OCA\DAV\Files\CustomPropertiesBackend -> OCA\DAV\DAV\CustomPropertiesBackendGeorg Ehrke2017-03-271-291/+0
| | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* allow sharees to edit certain calendar properties for themselvesGeorg Ehrke2017-03-271-0/+22
| | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* safer casting of datetimeRobin Appelman2017-03-141-1/+5
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* fix searching and ordering on getlastmodifiedRobin Appelman2017-03-131-2/+4
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Allow searching for favoritesRobin Appelman2017-03-081-5/+11
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* add tests for filesearchbackendRobin Appelman2017-03-011-7/+4
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Implement webdav SEARCHRobin Appelman2017-03-011-6/+198
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* add icewind/searchdavRobin Appelman2017-02-281-0/+76
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Fix "Call to a member function getUID() on null"Thomas Müller2016-12-191-0/+1
| | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Harden files dropRoeland Jago Douma2016-12-021-20/+10
| | | | | | | | * Fail on MKCOL * Only take filename ignore directories * No need to parse query parameters Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Fixes files_drop for sabre 3.2Roeland Jago Douma2016-11-101-2/+2
| | | | | | | | In the new sabre (3.2) the order of beforeMethod is switched. it used to be that beforeMethod:METHOD was called after beforeMethod. But now it is called before. Since we need the view this was broken. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Update sabre dav to 3.2 (#26115)Thomas Müller2016-11-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | * Update sabre/dav to 3.2.0 * Adjust code to work with sabre/dav 3.2.0 and it's dependencies * Adding own CalDAV plugin to fix calendar home property * Test if there is a user logged in when listing files home * Update sabre version used by integration tests * Disable unauthenticated DAV access This is needed to make Sabre 3.2 behave like we did before. Eventually we should integrate better with the ACL plugin which itself should implement an auth failure when appropriate. ===== * Fixed so cherry-pick was succesfull Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Remove any detailed information about the exception in the browser error pluginThomas Müller2016-10-251-11/+2
|
* Only enable files_drop plugin when we actuall do files_dropRoeland Jago Douma2016-10-241-4/+16
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Make files_drop workRoeland Jago Douma2016-10-241-0/+82
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Fix permision maskRoeland Jago Douma2016-10-241-0/+0
| | | | | | | If we move a file from the temp part file to the original file we don't need update permissions. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* FilesHome now also returns DAV propertiesVincent Petry2016-09-262-52/+16
| | | | | | | | | | | | | | The files home node must also return DAV properties like etag, permissions, etc for the clients to work like they did with the old endpoint. This fix makes FilesHome extend the Sabre Directory class, this makes the FilesPlugin and other plugins recognize it as a directory and will retrieve the matching properties when applicable. Downstream of https://github.com/owncloud/core/pull/26066 Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Don't print exception message in HTMLLukas Reschke2016-09-091-4/+3
| | | | | | The exception message is potentially influenced by user input and could thus be confusing (e.g. somebody could try to open a file like "Please send a mail to support@foo.com", and then the message would include that string. It is thus reasonable to not show the exception message by default. Also for the browser view I added an `exit()` at the end, as otherwise the XML exception would be attached.
* Update with robinJoas Schilling2016-07-212-2/+2
|
* Fix apps/Joas Schilling2016-07-215-5/+11
|
* Fix type hintingRobin Appelman2016-07-081-1/+1
|
* Update license headersLukas Reschke2016-05-261-0/+1
|
* Move dav app to PSR-4 (#24527)Joas Schilling2016-05-125-0/+595
* Move Application to correct namespace and PSR-4 it * Move dav app to PSR-4