Blame view
sources/lib/private/connector/sabre/directory.php
6.92 KB
|
03e52840d
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<?php /** * 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/>. * */ |
|
6d9380f96
|
23 24 |
class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node
implements \Sabre\DAV\ICollection, \Sabre\DAV\IQuota {
|
|
03e52840d
|
25 26 27 28 29 30 31 |
/** * 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. * |
|
6d9380f96
|
32 |
* After successful creation of the file, you may choose to return the ETag |
|
03e52840d
|
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
* 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. * * @param string $name Name of the file * @param resource|string $data Initial payload |
|
6d9380f96
|
48 |
* @throws \Sabre\DAV\Exception\Forbidden |
|
03e52840d
|
49 50 51 |
* @return null|string
*/
public function createFile($name, $data = null) {
|
|
31b7f2792
|
52 |
// for chunked upload also updating a existing file is a "createFile" |
|
6d9380f96
|
53 |
// because we create all the chunks before re-assemble them to the existing file. |
|
03e52840d
|
54 |
if (isset($_SERVER['HTTP_OC_CHUNKED'])) {
|
|
03e52840d
|
55 |
|
|
31b7f2792
|
56 57 |
// exit if we can't create a new file and we don't updatable existing file $info = OC_FileChunking::decodeName($name); |
|
6d9380f96
|
58 59 60 |
if (!$this->fileView->isCreatable($this->path) &&
!$this->fileView->isUpdatable($this->path . '/' . $info['name'])) {
throw new \Sabre\DAV\Exception\Forbidden();
|
|
03e52840d
|
61 |
} |
|
03e52840d
|
62 |
} else {
|
|
31b7f2792
|
63 |
// For non-chunked upload it is enough to check if we can create a new file |
|
6d9380f96
|
64 65 |
if (!$this->fileView->isCreatable($this->path)) {
throw new \Sabre\DAV\Exception\Forbidden();
|
|
03e52840d
|
66 |
} |
|
03e52840d
|
67 |
} |
|
6d9380f96
|
68 69 70 71 |
$path = $this->fileView->getAbsolutePath($this->path) . '/' . $name; // using a dummy FileInfo is acceptable here since it will be refreshed after the put is complete $info = new \OC\Files\FileInfo($path, null, null, array()); $node = new OC_Connector_Sabre_File($this->fileView, $info); |
|
31b7f2792
|
72 |
return $node->put($data); |
|
03e52840d
|
73 74 75 76 77 78 |
} /** * Creates a new subdirectory * * @param string $name |
|
6d9380f96
|
79 |
* @throws \Sabre\DAV\Exception\Forbidden |
|
03e52840d
|
80 81 82 |
* @return void
*/
public function createDirectory($name) {
|
|
6d9380f96
|
83 84 |
if (!$this->fileView->isCreatable($this->path)) {
throw new \Sabre\DAV\Exception\Forbidden();
|
|
03e52840d
|
85 86 87 |
} $newPath = $this->path . '/' . $name; |
|
6d9380f96
|
88 89 |
if(!$this->fileView->mkdir($newPath)) {
throw new \Sabre\DAV\Exception\Forbidden('Could not create directory '.$newPath);
|
|
03e52840d
|
90 91 92 93 94 95 96 97 |
} } /** * Returns a specific child node, referenced by its name * * @param string $name |
|
6d9380f96
|
98 99 100 |
* @param \OCP\Files\FileInfo $info * @throws \Sabre\DAV\Exception\FileNotFound * @return \Sabre\DAV\INode |
|
03e52840d
|
101 102 103 104 105 |
*/
public function getChild($name, $info = null) {
$path = $this->path . '/' . $name;
if (is_null($info)) {
|
|
6d9380f96
|
106 |
$info = $this->fileView->getFileInfo($path); |
|
03e52840d
|
107 108 109 |
}
if (!$info) {
|
|
6d9380f96
|
110 |
throw new \Sabre\DAV\Exception\NotFound('File with name ' . $path . ' could not be located');
|
|
03e52840d
|
111 112 113 |
}
if ($info['mimetype'] == 'httpd/unix-directory') {
|
|
6d9380f96
|
114 |
$node = new OC_Connector_Sabre_Directory($this->fileView, $info); |
|
03e52840d
|
115 |
} else {
|
|
6d9380f96
|
116 |
$node = new OC_Connector_Sabre_File($this->fileView, $info); |
|
03e52840d
|
117 |
} |
|
03e52840d
|
118 119 120 121 122 123 |
return $node; } /** * Returns an array with all the child nodes * |
|
6d9380f96
|
124 |
* @return \Sabre\DAV\INode[] |
|
03e52840d
|
125 126 |
*/
public function getChildren() {
|
|
6d9380f96
|
127 |
$folder_content = $this->fileView->getDirectoryContent($this->path); |
|
03e52840d
|
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
$paths = array();
foreach($folder_content as $info) {
$paths[] = $this->path.'/'.$info['name'];
$properties[$this->path.'/'.$info['name']][self::GETETAG_PROPERTYNAME] = '"' . $info['etag'] . '"';
}
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), '?'));
$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;
}
}
}
}
$nodes = array();
foreach($folder_content as $info) {
|
|
6d9380f96
|
158 |
$node = $this->getChild($info->getName(), $info); |
|
03e52840d
|
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
$node->setPropertyCache($properties[$this->path.'/'.$info['name']]);
$nodes[] = $node;
}
return $nodes;
}
/**
* Checks if a child exists.
*
* @param string $name
* @return bool
*/
public function childExists($name) {
$path = $this->path . '/' . $name;
|
|
6d9380f96
|
174 |
return $this->fileView->file_exists($path); |
|
03e52840d
|
175 176 177 178 179 180 181 |
} /** * Deletes all files in this directory, and then itself * * @return void |
|
6d9380f96
|
182 |
* @throws \Sabre\DAV\Exception\Forbidden |
|
03e52840d
|
183 184 |
*/
public function delete() {
|
|
6d9380f96
|
185 186 |
if (!$this->info->isDeletable()) {
throw new \Sabre\DAV\Exception\Forbidden();
|
|
03e52840d
|
187 |
} |
|
6d9380f96
|
188 |
$this->fileView->rmdir($this->path); |
|
31b7f2792
|
189 |
|
|
03e52840d
|
190 191 192 193 194 195 196 197 |
}
/**
* Returns available diskspace information
*
* @return array
*/
public function getQuotaInfo() {
|
|
6d9380f96
|
198 199 |
$path = \OC\Files\Filesystem::getView()->getRelativePath($this->info->getPath()); $storageInfo = OC_Helper::getStorageInfo($path); |
|
03e52840d
|
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
return array(
$storageInfo['used'],
$storageInfo['free']
);
}
/**
* 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 array
*/
public function getProperties($properties) {
$props = parent::getProperties($properties);
if (in_array(self::GETETAG_PROPERTYNAME, $properties) && !isset($props[self::GETETAG_PROPERTYNAME])) {
|
|
6d9380f96
|
221 |
$props[self::GETETAG_PROPERTYNAME] = $this->info->getEtag(); |
|
03e52840d
|
222 223 224 |
} return $props; } |
|
03e52840d
|
225 |
} |