add header 'OC-FileId' on PUT
This commit is contained in:
parent
3bca1519ee
commit
c455cb989b
1 changed files with 16 additions and 0 deletions
|
@ -40,6 +40,8 @@ class OC_Connector_Sabre_FilesPlugin extends Sabre_DAV_ServerPlugin
|
|||
|
||||
$this->server = $server;
|
||||
$this->server->subscribeEvent('beforeGetProperties', array($this, 'beforeGetProperties'));
|
||||
$this->server->subscribeEvent('afterCreateFile', array($this, 'sendFileIdHeader'));
|
||||
$this->server->subscribeEvent('afterWriteContent', array($this, 'sendFileIdHeader'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -70,4 +72,18 @@ class OC_Connector_Sabre_FilesPlugin extends Sabre_DAV_ServerPlugin
|
|||
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $filePath
|
||||
* @param Sabre_DAV_INode $node
|
||||
* @throws Sabre_DAV_Exception_BadRequest
|
||||
*/
|
||||
public function sendFileIdHeader($filePath, Sabre_DAV_INode $node = null) {
|
||||
if ($node instanceof OC_Connector_Sabre_Node) {
|
||||
$fileId = $node->getFileId();
|
||||
if (!is_null($fileId)) {
|
||||
$this->server->httpResponse->setHeader('OC-FileId', $fileId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue