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
|
|
|
|
*
|
2012-07-21 01:52:47 +04:00
|
|
|
* 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
|
2012-07-21 01:52:47 +04:00
|
|
|
* @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'])) {
|
2012-07-27 13:59:52 +04:00
|
|
|
$info = OC_FileChunking::decodeName($name);
|
2012-09-17 19:34:49 +04:00
|
|
|
if (empty($info)) {
|
|
|
|
throw new Sabre_DAV_Exception_NotImplemented();
|
|
|
|
}
|
2012-07-27 14:14:18 +04:00
|
|
|
$chunk_handler = new OC_FileChunking($info);
|
|
|
|
$chunk_handler->store($info['index'], $data);
|
|
|
|
if ($chunk_handler->isComplete()) {
|
2012-07-27 13:59:52 +04:00
|
|
|
$newPath = $this->path . '/' . $info['name'];
|
2012-09-18 20:34:39 +04:00
|
|
|
$chunk_handler->file_assemble($newPath);
|
2012-07-27 13:40:51 +04:00
|
|
|
return OC_Connector_Sabre_Node::getETagPropertyForPath($newPath);
|
2012-07-09 00:11:13 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$newPath = $this->path . '/' . $name;
|
2012-09-10 13:31:57 +04:00
|
|
|
OC_Filesystem::file_put_contents($newPath, $data);
|
2012-07-27 13:40:51 +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
|
|
|
|
2012-07-27 13:40:51 +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;
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Filesystem::mkdir($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
|
|
|
|
*/
|
2012-06-15 18:04:01 +04:00
|
|
|
public function getChild($name, $info = null) {
|
2011-07-20 17:53:34 +04:00
|
|
|
|
|
|
|
$path = $this->path . '/' . $name;
|
2012-06-15 18:04:01 +04:00
|
|
|
if (is_null($info)) {
|
2012-09-21 23:28:53 +04:00
|
|
|
$info = OC_Files::getFileInfo($path);
|
2012-06-15 18:04:01 +04:00
|
|
|
}
|
2011-07-20 17:53:34 +04:00
|
|
|
|
2012-09-21 15:30:39 +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
|
|
|
|
2012-06-15 18:04:01 +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-09-21 15:30:39 +04:00
|
|
|
$folder_content = OC_Files::getDirectoryContent($this->path);
|
2012-06-15 19:51:56 +04:00
|
|
|
$paths = array();
|
|
|
|
foreach($folder_content as $info) {
|
|
|
|
$paths[] = $this->path.'/'.$info['name'];
|
|
|
|
}
|
|
|
|
$properties = array_fill_keys($paths, array());
|
2012-09-07 17:22:01 +04:00
|
|
|
if(count($paths)>0) {
|
2012-06-27 15:08:16 +04:00
|
|
|
$placeholders = join(',', array_fill(0, count($paths), '?'));
|
2012-08-25 03:52:27 +04:00
|
|
|
$query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*properties` WHERE `userid` = ?' . ' AND `propertypath` IN ('.$placeholders.')' );
|
2012-06-27 15:08:16 +04:00
|
|
|
array_unshift($paths, OC_User::getUser()); // prepend userid
|
|
|
|
$result = $query->execute( $paths );
|
|
|
|
while($row = $result->fetchRow()) {
|
|
|
|
$propertypath = $row['propertypath'];
|
|
|
|
$propertyname = $row['propertyname'];
|
|
|
|
$propertyvalue = $row['propertyvalue'];
|
|
|
|
$properties[$propertypath][$propertyname] = $propertyvalue;
|
|
|
|
}
|
2012-06-15 19:51:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
$nodes = array();
|
2012-06-15 18:04:01 +04:00
|
|
|
foreach($folder_content as $info) {
|
2012-06-15 19:51:56 +04:00
|
|
|
$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;
|
2011-07-29 23:36:03 +04:00
|
|
|
return OC_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() {
|
|
|
|
|
2012-06-04 20:03:16 +04:00
|
|
|
if ($this->path != "/Shared") {
|
|
|
|
foreach($this->getChildren() as $child) $child->delete();
|
|
|
|
OC_Filesystem::rmdir($this->path);
|
|
|
|
}
|
2011-07-20 17:53:34 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns available diskspace information
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getQuotaInfo() {
|
2012-07-20 18:35:24 +04:00
|
|
|
$rootInfo=OC_FileCache_Cached::get('');
|
2011-07-20 17:53:34 +04:00
|
|
|
return array(
|
2011-12-14 04:19:23 +04:00
|
|
|
$rootInfo['size'],
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Filesystem::free_space()
|
2011-12-14 04:19:23 +04:00
|
|
|
);
|
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])) {
|
|
|
|
$props[self::GETETAG_PROPERTYNAME]
|
|
|
|
= 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
|
|
|
}
|