mirror of
https://github.com/sigoden/dufs.git
synced 2026-04-08 16:49:02 +03:00
[GH-ISSUE #400] PROPFIND request body with properies gets ignored #213
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @grote on GitHub (Jun 13, 2024).
Original GitHub issue: https://github.com/sigoden/dufs/issues/400
The following curl request is only asking for
displaynameandresourcetypeproperties:yet still other properties get returned:
Other WebDAV implementations only seem to return what I asked for.
Background: This may not be an issue apart from response sizes, but I actually get a runtime crash in a project, because a library is used for parsing
getlastmodifiedwhich I don't want to depend on, but my WebDAV client library pulls this in at runtime when it finds thegetlastmodifiedproperty.@sigoden commented on GitHub (Jun 14, 2024):
Sorrry, Your current requirements exceed the webdav capabilities of dufs.
Dufs do not guarantee strict compliance with the WebDAV specification.
For example, it doesn't implement PROPPATCH, LOCK, or UNLOCK. Additionally, Dufs can only handle PROPFIND with a depth of 0 or 1.
We just need WebDAV on dufs to handle basic operations.