Hello while creating my Application written in ApiControllers, I found there seems no way to access webdav node properties in php frameworks.
For example, I am going to have a event listener that automatically writes properties like
{http://owncloud.org/ns}checksum
{http://foo.com/ns}bar
to webdav immediately after the file is uploaded to webdav.
And also a ApiController that is able to write
{http://foo.com/ns}bar
properties in some calls.
But I’d like them to be done without making a new http request for the sake of performance and preventing redundant event dispatching.
Any one can help on this? Thanks in advance.