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
|
2011-07-20 17:53:34 +04:00
|
|
|
*
|
2012-05-05 20:13:40 +04:00
|
|
|
* @author Jakob Sack
|
|
|
|
* @copyright 2011 Jakob Sack kde@jakobsack.de
|
2011-07-22 18:21:29 +04:00
|
|
|
*
|
2012-05-05 20:13:40 +04:00
|
|
|
* 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.
|
2011-07-22 18:21:29 +04:00
|
|
|
*
|
2012-05-05 20:13:40 +04:00
|
|
|
* 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-22 18:21:29 +04:00
|
|
|
*
|
|
|
|
*/
|
2012-05-05 20:13:40 +04:00
|
|
|
|
2011-07-22 18:21:29 +04:00
|
|
|
abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IProperties {
|
2012-07-21 01:52:47 +04:00
|
|
|
const GETETAG_PROPERTYNAME = '{DAV:}getetag';
|
2012-09-28 19:44:46 +04:00
|
|
|
const LASTMODIFIED_PROPERTYNAME = '{DAV:}lastmodified';
|
2012-09-26 15:05:12 +04:00
|
|
|
|
2011-07-20 17:53:34 +04:00
|
|
|
/**
|
|
|
|
* The path to the current node
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $path;
|
2012-06-08 22:26:08 +04:00
|
|
|
/**
|
2012-06-15 19:51:56 +04:00
|
|
|
* node fileinfo cache
|
2012-06-08 22:26:08 +04:00
|
|
|
* @var array
|
|
|
|
*/
|
2012-06-15 18:04:01 +04:00
|
|
|
protected $fileinfo_cache;
|
2012-06-15 19:51:56 +04:00
|
|
|
/**
|
|
|
|
* node properties cache
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $property_cache = null;
|
2011-07-20 17:53:34 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets up the node, expects a full path name
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct($path) {
|
|
|
|
$this->path = $path;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the name of the node
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getName() {
|
|
|
|
|
|
|
|
list(, $name) = Sabre_DAV_URLUtil::splitPath($this->path);
|
|
|
|
return $name;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renames the node
|
|
|
|
*
|
|
|
|
* @param string $name The new name
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setName($name) {
|
|
|
|
|
|
|
|
list($parentPath, ) = Sabre_DAV_URLUtil::splitPath($this->path);
|
|
|
|
list(, $newName) = Sabre_DAV_URLUtil::splitPath($name);
|
|
|
|
|
|
|
|
$newPath = $parentPath . '/' . $newName;
|
2011-07-23 00:30:45 +04:00
|
|
|
$oldPath = $this->path;
|
|
|
|
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Filesystem::rename($this->path,$newPath);
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2011-07-20 17:53:34 +04:00
|
|
|
$this->path = $newPath;
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-07-30 22:46:14 +04:00
|
|
|
$query = OC_DB::prepare( 'UPDATE `*PREFIX*properties` SET `propertypath` = ? WHERE `userid` = ? AND `propertypath` = ?' );
|
2011-07-29 23:36:03 +04:00
|
|
|
$query->execute( array( $newPath,OC_User::getUser(), $oldPath ));
|
2011-07-20 17:53:34 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-06-15 19:04:37 +04:00
|
|
|
public function setFileinfoCache($fileinfo_cache)
|
|
|
|
{
|
|
|
|
$this->fileinfo_cache = $fileinfo_cache;
|
|
|
|
}
|
|
|
|
|
2012-06-08 22:26:08 +04:00
|
|
|
/**
|
2012-06-15 19:04:37 +04:00
|
|
|
* Make sure the fileinfo cache is filled. Uses OC_FileCache or a direct stat
|
2012-06-08 22:26:08 +04:00
|
|
|
*/
|
2012-06-15 18:04:01 +04:00
|
|
|
protected function getFileinfoCache() {
|
|
|
|
if (!isset($this->fileinfo_cache)) {
|
|
|
|
if ($fileinfo_cache = OC_FileCache::get($this->path)) {
|
|
|
|
} else {
|
|
|
|
$fileinfo_cache = OC_Filesystem::stat($this->path);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->fileinfo_cache = $fileinfo_cache;
|
2012-06-08 22:26:08 +04:00
|
|
|
}
|
|
|
|
}
|
2011-07-20 17:53:34 +04:00
|
|
|
|
2012-06-15 19:51:56 +04:00
|
|
|
public function setPropertyCache($property_cache)
|
|
|
|
{
|
|
|
|
$this->property_cache = $property_cache;
|
|
|
|
}
|
|
|
|
|
2011-07-20 17:53:34 +04:00
|
|
|
/**
|
|
|
|
* Returns the last modification time, as a unix timestamp
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getLastModified() {
|
2012-06-15 18:04:01 +04:00
|
|
|
$this->getFileinfoCache();
|
|
|
|
return $this->fileinfo_cache['mtime'];
|
2011-07-20 17:53:34 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-08-29 10:38:33 +04:00
|
|
|
/**
|
|
|
|
* sets the last modification time of the file (mtime) to the value given
|
2012-02-10 14:30:38 +04:00
|
|
|
* in the second parameter or to now if the second param is empty.
|
|
|
|
* Even if the modification time is set to a custom value the access time is set to now.
|
|
|
|
*/
|
2012-02-14 12:59:54 +04:00
|
|
|
public function touch($mtime) {
|
|
|
|
OC_Filesystem::touch($this->path, $mtime);
|
2012-02-10 14:30:38 +04:00
|
|
|
}
|
|
|
|
|
2011-07-22 18:21:29 +04:00
|
|
|
/**
|
|
|
|
* Updates properties on this node,
|
|
|
|
*
|
|
|
|
* @param array $mutations
|
|
|
|
* @see Sabre_DAV_IProperties::updateProperties
|
|
|
|
* @return bool|array
|
|
|
|
*/
|
|
|
|
public function updateProperties($properties) {
|
|
|
|
$existing = $this->getProperties(array());
|
|
|
|
foreach($properties as $propertyName => $propertyValue) {
|
|
|
|
// If it was null, we need to delete the property
|
|
|
|
if (is_null($propertyValue)) {
|
2012-09-07 17:22:01 +04:00
|
|
|
if(array_key_exists( $propertyName, $existing )) {
|
2012-07-30 22:46:14 +04:00
|
|
|
$query = OC_DB::prepare( 'DELETE FROM `*PREFIX*properties` WHERE `userid` = ? AND `propertypath` = ? AND `propertyname` = ?' );
|
2011-07-29 23:36:03 +04:00
|
|
|
$query->execute( array( OC_User::getUser(), $this->path, $propertyName ));
|
2011-07-22 18:21:29 +04:00
|
|
|
}
|
|
|
|
}
|
2012-09-28 19:44:46 +04:00
|
|
|
else {
|
|
|
|
if( strcmp( $propertyName, self::LASTMODIFIED_PROPERTYNAME) === 0 ) {
|
2012-02-14 12:59:54 +04:00
|
|
|
$this->touch($propertyValue);
|
2012-02-10 14:30:38 +04:00
|
|
|
} else {
|
2012-09-07 17:22:01 +04:00
|
|
|
if(!array_key_exists( $propertyName, $existing )) {
|
2012-07-30 22:46:14 +04:00
|
|
|
$query = OC_DB::prepare( 'INSERT INTO `*PREFIX*properties` (`userid`,`propertypath`,`propertyname`,`propertyvalue`) VALUES(?,?,?,?)' );
|
2012-02-10 14:30:38 +04:00
|
|
|
$query->execute( array( OC_User::getUser(), $this->path, $propertyName,$propertyValue ));
|
|
|
|
} else {
|
2012-07-30 22:46:14 +04:00
|
|
|
$query = OC_DB::prepare( 'UPDATE `*PREFIX*properties` SET `propertyvalue` = ? WHERE `userid` = ? AND `propertypath` = ? AND `propertyname` = ?' );
|
2012-02-10 14:30:38 +04:00
|
|
|
$query->execute( array( $propertyValue,OC_User::getUser(), $this->path, $propertyName ));
|
|
|
|
}
|
2011-07-22 18:21:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2012-06-15 19:51:56 +04:00
|
|
|
$this->setPropertyCache(null);
|
2011-07-22 18:21:29 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a list of properties for this nodes.;
|
|
|
|
*
|
2012-06-08 18:39:21 +04:00
|
|
|
* The properties list is a list of propertynames the client requested,
|
|
|
|
* encoded as xmlnamespace#tagName, for example:
|
|
|
|
* http://www.example.org/namespace#author
|
2011-07-22 18:21:29 +04:00
|
|
|
* If the array is empty, all properties should be returned
|
|
|
|
*
|
|
|
|
* @param array $properties
|
|
|
|
* @return void
|
|
|
|
*/
|
2012-07-21 02:13:23 +04:00
|
|
|
public function getProperties($properties) {
|
2012-06-15 19:51:56 +04:00
|
|
|
if (is_null($this->property_cache)) {
|
2012-08-25 02:05:07 +04:00
|
|
|
$query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*properties` WHERE `userid` = ? AND `propertypath` = ?' );
|
2012-06-15 19:51:56 +04:00
|
|
|
$result = $query->execute( array( OC_User::getUser(), $this->path ));
|
2011-07-22 18:21:29 +04:00
|
|
|
|
2012-06-15 19:51:56 +04:00
|
|
|
$this->property_cache = array();
|
2012-09-07 17:22:01 +04:00
|
|
|
while( $row = $result->fetchRow()) {
|
2012-06-15 19:51:56 +04:00
|
|
|
$this->property_cache[$row['propertyname']] = $row['propertyvalue'];
|
|
|
|
}
|
2011-07-22 18:21:29 +04:00
|
|
|
}
|
|
|
|
|
2012-06-08 18:39:21 +04:00
|
|
|
// if the array was empty, we need to return everything
|
2012-09-07 17:22:01 +04:00
|
|
|
if(count($properties) == 0) {
|
2012-06-15 19:51:56 +04:00
|
|
|
return $this->property_cache;
|
2011-07-22 18:21:29 +04:00
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2011-07-22 18:21:29 +04:00
|
|
|
$props = array();
|
|
|
|
foreach($properties as $property) {
|
2012-06-15 19:51:56 +04:00
|
|
|
if (isset($this->property_cache[$property])) $props[$property] = $this->property_cache[$property];
|
2011-07-22 18:21:29 +04:00
|
|
|
}
|
|
|
|
return $props;
|
|
|
|
}
|
2012-07-21 01:52:47 +04:00
|
|
|
|
2012-07-26 01:08:53 +04:00
|
|
|
/**
|
|
|
|
* Creates a ETag for this path.
|
|
|
|
* @param string $path Path of the file
|
|
|
|
* @return string|null Returns null if the ETag can not effectively be determined
|
|
|
|
*/
|
|
|
|
static protected function createETag($path) {
|
|
|
|
return uniqid('', true);
|
|
|
|
}
|
|
|
|
|
2012-07-21 01:52:47 +04:00
|
|
|
/**
|
|
|
|
* Returns the ETag surrounded by double-quotes for this path.
|
|
|
|
* @param string $path Path of the file
|
|
|
|
* @return string|null Returns null if the ETag can not effectively be determined
|
|
|
|
*/
|
2012-07-26 01:07:10 +04:00
|
|
|
static public function getETagPropertyForPath($path) {
|
2012-07-26 01:08:53 +04:00
|
|
|
$tag = self::createETag($path);
|
2012-07-21 01:52:47 +04:00
|
|
|
if (empty($tag)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
$etag = '"'.$tag.'"';
|
2012-08-25 02:05:07 +04:00
|
|
|
$query = OC_DB::prepare( 'INSERT INTO `*PREFIX*properties` (`userid`,`propertypath`,`propertyname`,`propertyvalue`) VALUES(?,?,?,?)' );
|
2012-07-21 01:52:47 +04:00
|
|
|
$query->execute( array( OC_User::getUser(), $path, self::GETETAG_PROPERTYNAME, $etag ));
|
|
|
|
return $etag;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the ETag from the cache.
|
|
|
|
* @param string $path Path of the file
|
|
|
|
*/
|
2012-07-26 01:07:10 +04:00
|
|
|
static public function removeETagPropertyForPath($path) {
|
2012-07-26 19:56:32 +04:00
|
|
|
// remove tags from this and parent paths
|
|
|
|
$paths = array();
|
2012-09-13 02:08:52 +04:00
|
|
|
while ($path != '/' && $path != '.' && $path != '') {
|
2012-07-26 19:56:32 +04:00
|
|
|
$paths[] = $path;
|
|
|
|
$path = dirname($path);
|
|
|
|
}
|
|
|
|
if (empty($paths)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$paths[] = $path;
|
|
|
|
$path_placeholders = join(',', array_fill(0, count($paths), '?'));
|
2012-08-25 02:05:07 +04:00
|
|
|
$query = OC_DB::prepare( 'DELETE FROM `*PREFIX*properties`'
|
|
|
|
.' WHERE `userid` = ?'
|
|
|
|
.' AND `propertyname` = ?'
|
|
|
|
.' AND `propertypath` IN ('.$path_placeholders.')'
|
2012-07-26 19:56:32 +04:00
|
|
|
);
|
|
|
|
$vals = array( OC_User::getUser(), self::GETETAG_PROPERTYNAME );
|
|
|
|
$query->execute(array_merge( $vals, $paths ));
|
2012-07-21 01:52:47 +04:00
|
|
|
}
|
2011-07-20 17:53:34 +04:00
|
|
|
}
|