nextcloud/lib/connector/sabre/directory.php

250 lines
7.2 KiB
PHP
Raw Normal View History

2011-07-20 17:53:34 +04:00
<?php
2012-05-05 20:13:40 +04:00
2011-07-20 17:53:34 +04:00
/**
2012-05-05 20:13:40 +04:00
* ownCloud
*
* @author Jakob Sack
* @copyright 2011 Jakob Sack kde@jakobsack.de
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
2011-07-20 17:53:34 +04:00
*/
2012-05-05 20:13:40 +04:00
2011-07-22 16:38:42 +04:00
class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sabre_DAV_ICollection, Sabre_DAV_IQuota {
2011-07-20 17:53:34 +04:00
/**
* Creates a new file in the directory
*
* Data will either be supplied as a stream resource, or in certain cases
* as a string. Keep in mind that you may have to support either.
*
* After succesful creation of the file, you may choose to return the ETag
* of the new file here.
*
* The returned ETag must be surrounded by double-quotes (The quotes should
* be part of the actual string).
*
* If you cannot accurately determine the ETag, you should not return it.
* If you don't store the file exactly as-is (you're transforming it
* somehow) you should also not return an ETag.
*
* This means that if a subsequent GET to this new file does not exactly
* return the same contents of what was submitted here, you are strongly
* recommended to omit the ETag.
2011-07-20 17:53:34 +04:00
*
* @param string $name Name of the file
* @param resource|string $data Initial payload
* @return null|string
2011-07-20 17:53:34 +04:00
*/
public function createFile($name, $data = null) {
2012-07-09 00:11:13 +04:00
if (isset($_SERVER['HTTP_OC_CHUNKED'])) {
$info = OC_FileChunking::decodeName($name);
2012-09-17 19:34:49 +04:00
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 OC_Connector_Sabre_Node::getETagPropertyForPath($newPath);
2012-07-09 00:11:13 +04:00
}
} else {
$newPath = $this->path . '/' . $name;
2013-02-22 20:21:57 +04:00
// mark file as partial while uploading (ignored by the scanner)
$partpath = $newPath . '.part';
2013-02-22 20:21:57 +04:00
\OC\Files\Filesystem::file_put_contents($partpath, $data);
2013-02-22 20:21:57 +04:00
//detect aborted upload
if (isset ($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'PUT' ) {
if (isset($_SERVER['CONTENT_LENGTH'])) {
$expected = $_SERVER['CONTENT_LENGTH'];
$actual = \OC\Files\Filesystem::filesize($partpath);
if ($actual != $expected) {
\OC\Files\Filesystem::unlink($partpath);
throw new Sabre_DAV_Exception_BadRequest(
'expected filesize ' . $expected . ' got ' . $actual);
}
}
}
2013-02-22 20:21:57 +04:00
// rename to correct path
\OC\Files\Filesystem::rename($partpath, $newPath);
2013-02-22 20:21:57 +04:00
// allow sync clients to send the mtime along in a header
$mtime = OC_Request::hasModificationTime();
if ($mtime !== false) {
if(\OC\Files\Filesystem::touch($newPath, $mtime)) {
header('X-OC-MTime: accepted');
}
}
2013-02-22 20:21:57 +04:00
return OC_Connector_Sabre_Node::getETagPropertyForPath($newPath);
2012-07-09 00:11:13 +04:00
}
2011-07-20 17:53:34 +04:00
return null;
2011-07-20 17:53:34 +04:00
}
/**
* Creates a new subdirectory
*
* @param string $name
* @return void
*/
public function createDirectory($name) {
$newPath = $this->path . '/' . $name;
if(!\OC\Files\Filesystem::mkdir($newPath)) {
throw new Sabre_DAV_Exception_Forbidden('Could not create directory '.$newPath);
}
2011-07-20 17:53:34 +04:00
}
/**
* Returns a specific child node, referenced by its name
*
* @param string $name
* @throws Sabre_DAV_Exception_FileNotFound
* @return Sabre_DAV_INode
*/
public function getChild($name, $info = null) {
2011-07-20 17:53:34 +04:00
$path = $this->path . '/' . $name;
if (is_null($info)) {
2012-10-27 01:05:02 +04:00
$info = \OC\Files\Filesystem::getFileInfo($path);
}
2011-07-20 17:53:34 +04:00
if (!$info) {
throw new Sabre_DAV_Exception_NotFound('File with name ' . $path . ' could not be located');
}
2011-07-20 17:53:34 +04:00
if ($info['mimetype'] == 'httpd/unix-directory') {
2012-06-15 19:04:37 +04:00
$node = new OC_Connector_Sabre_Directory($path);
2011-07-20 17:53:34 +04:00
} else {
2012-06-15 19:04:37 +04:00
$node = new OC_Connector_Sabre_File($path);
2011-07-20 17:53:34 +04:00
}
2012-06-15 19:04:37 +04:00
$node->setFileinfoCache($info);
return $node;
2011-07-20 17:53:34 +04:00
}
/**
* Returns an array with all the child nodes
*
* @return Sabre_DAV_INode[]
*/
public function getChildren() {
2012-10-27 01:05:02 +04:00
$folder_content = \OC\Files\Filesystem::getDirectoryContent($this->path);
$paths = array();
foreach($folder_content as $info) {
$paths[] = $this->path.'/'.$info['name'];
$properties[$this->path.'/'.$info['name']][self::GETETAG_PROPERTYNAME] = '"' . $info['etag'] . '"';
}
2012-09-07 17:22:01 +04:00
if(count($paths)>0) {
//
// the number of arguments within IN conditions are limited in most databases
// we chunk $paths into arrays of 200 items each to meet this criteria
//
$chunks = array_chunk($paths, 200, false);
foreach ($chunks as $pack) {
$placeholders = join(',', array_fill(0, count($pack), '?'));
2013-02-11 20:44:02 +04:00
$query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*properties`'
.' WHERE `userid` = ?' . ' AND `propertypath` IN ('.$placeholders.')' );
array_unshift($pack, OC_User::getUser()); // prepend userid
$result = $query->execute( $pack );
while($row = $result->fetchRow()) {
$propertypath = $row['propertypath'];
$propertyname = $row['propertyname'];
$propertyvalue = $row['propertyvalue'];
if($propertyname !== self::GETETAG_PROPERTYNAME) {
$properties[$propertypath][$propertyname] = $propertyvalue;
}
}
2012-06-27 15:08:16 +04:00
}
}
$nodes = array();
foreach($folder_content as $info) {
$node = $this->getChild($info['name'], $info);
$node->setPropertyCache($properties[$this->path.'/'.$info['name']]);
$nodes[] = $node;
2011-07-20 17:53:34 +04:00
}
return $nodes;
}
/**
* Checks if a child exists.
*
* @param string $name
* @return bool
*/
public function childExists($name) {
$path = $this->path . '/' . $name;
2012-10-10 15:18:36 +04:00
return \OC\Files\Filesystem::file_exists($path);
2011-07-20 17:53:34 +04:00
}
/**
* Deletes all files in this directory, and then itself
*
* @return void
*/
public function delete() {
if ($this->path != "/Shared") {
foreach($this->getChildren() as $child) $child->delete();
2012-10-10 15:18:36 +04:00
\OC\Files\Filesystem::rmdir($this->path);
}
2011-07-20 17:53:34 +04:00
}
/**
* Returns available diskspace information
*
* @return array
*/
public function getQuotaInfo() {
2012-10-27 01:05:02 +04:00
$rootInfo=\OC\Files\Filesystem::getFileInfo('');
2011-07-20 17:53:34 +04:00
return array(
$rootInfo['size'],
2012-10-10 15:18:36 +04:00
\OC\Files\Filesystem::free_space()
);
2011-07-20 17:53:34 +04:00
}
2012-07-26 01:08:53 +04:00
/**
* Returns a list of properties for this nodes.;
*
* The properties list is a list of propertynames the client requested,
* encoded as xmlnamespace#tagName, for example:
* http://www.example.org/namespace#author
* If the array is empty, all properties should be returned
*
* @param array $properties
* @return void
*/
public function getProperties($properties) {
$props = parent::getProperties($properties);
2012-09-10 13:31:57 +04:00
if (in_array(self::GETETAG_PROPERTYNAME, $properties) && !isset($props[self::GETETAG_PROPERTYNAME])) {
2012-10-14 23:04:08 +04:00
$props[self::GETETAG_PROPERTYNAME]
2012-09-10 13:31:57 +04:00
= OC_Connector_Sabre_Node::getETagPropertyForPath($this->path);
2012-07-26 01:08:53 +04:00
}
return $props;
}
2011-07-20 17:53:34 +04:00
}