. * */ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_DAV_IFile { /** * Updates the data * * The data argument is a readable stream resource. * * After a successful put operation, you may choose to return an ETag. The * etag must always be surrounded by double-quotes. These quotes must * appear in the actual string you're returning. * * Clients may use the ETag from a PUT request to later on make sure that * when they update the file, the contents haven't changed in the mean * time. * * If you don't plan to store the file byte-by-byte, and you return a * different object on a subsequent GET you are strongly recommended to not * return an ETag, and just return null. * * @param resource $data * @throws Sabre_DAV_Exception_Forbidden * @return string|null */ public function put($data) { $fs = $this->getFS(); if ($fs->file_exists($this->path) && !$fs->isUpdatable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } // throw an exception if encryption was disabled but the files are still encrypted if (\OC_Util::encryptedFiles()) { throw new \Sabre_DAV_Exception_ServiceUnavailable(); } // chunked handling if (isset($_SERVER['HTTP_OC_CHUNKED'])) { list(, $name) = \Sabre_DAV_URLUtil::splitPath($this->path); $info = OC_FileChunking::decodeName($name); if (empty($info)) { throw new Sabre_DAV_Exception_NotImplemented(); } $chunk_handler = new OC_FileChunking($info); $chunk_handler->store($info['index'], $data); if ($chunk_handler->isComplete()) { $newPath = $this->path . '/' . $info['name']; $chunk_handler->file_assemble($newPath); return $this->getETagPropertyForPath($newPath); } return null; } // mark file as partial while uploading (ignored by the scanner) $partpath = $this->path . '.part'; try { $putOkay = $fs->file_put_contents($partpath, $data); if ($putOkay === false) { \OC_Log::write('webdav', '\OC\Files\Filesystem::file_put_contents() failed', \OC_Log::ERROR); $fs->unlink($partpath); // because we have no clue about the cause we can only throw back a 500/Internal Server Error throw new Sabre_DAV_Exception(); } } catch (\OCP\Files\NotPermittedException $e) { throw new Sabre_DAV_Exception_Forbidden(); } catch (\OCP\Files\EntityTooLargeException $e) { throw new OC_Connector_Sabre_Exception_EntityTooLarge(); } catch (\OCP\Files\InvalidContentException $e) { throw new OC_Connector_Sabre_Exception_UnsupportedMediaType(); } catch (\OCP\Files\InvalidPathException $e) { // TODO: add specific exception here throw new Sabre_DAV_Exception_Forbidden(); } // rename to correct path $renameOkay = $fs->rename($partpath, $this->path); $fileExists = $fs->file_exists($this->path); if ($renameOkay === false || $fileExists === false) { \OC_Log::write('webdav', '\OC\Files\Filesystem::rename() failed', \OC_Log::ERROR); $fs->unlink($partpath); throw new Sabre_DAV_Exception(); } // allow sync clients to send the mtime along in a header $mtime = OC_Request::hasModificationTime(); if ($mtime !== false) { if($fs->touch($this->path, $mtime)) { header('X-OC-MTime: accepted'); } } return $this->getETagPropertyForPath($this->path); } /** * Returns the data * * @return string */ public function get() { //throw exception if encryption is disabled but files are still encrypted if (\OC_Util::encryptedFiles()) { throw new \Sabre_DAV_Exception_ServiceUnavailable(); } else { return \OC\Files\Filesystem::fopen($this->path, 'rb'); } } /** * Delete the current file * * @return void * @throws Sabre_DAV_Exception_Forbidden */ public function delete() { if (!\OC\Files\Filesystem::isDeletable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } \OC\Files\Filesystem::unlink($this->path); } /** * Returns the size of the node, in bytes * * @return int */ public function getSize() { $this->getFileinfoCache(); if ($this->fileinfo_cache['size'] > -1) { return $this->fileinfo_cache['size']; } else { return null; } } /** * Returns the ETag for a file * * An ETag is a unique identifier representing the current version of the * file. If the file changes, the ETag MUST change. The ETag is an * arbitrary string, but MUST be surrounded by double-quotes. * * Return null if the ETag can not effectively be determined * * @return mixed */ public function getETag() { $properties = $this->getProperties(array(self::GETETAG_PROPERTYNAME)); if (isset($properties[self::GETETAG_PROPERTYNAME])) { return $properties[self::GETETAG_PROPERTYNAME]; } return null; } /** * Returns the mime-type for a file * * If null is returned, we'll assume application/octet-stream * * @return mixed */ public function getContentType() { if (isset($this->fileinfo_cache['mimetype'])) { return $this->fileinfo_cache['mimetype']; } return \OC\Files\Filesystem::getMimeType($this->path); } }