1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 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 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
|
<?php
require_once dirname(__FILE__) . '/sql.php';
/**
* Multi User Horde_VFS implementation for PHP's PEAR database
* abstraction layer.
*
* Required values for $params:
* 'phptype' The database type (ie. 'pgsql', 'mysql, etc.).
* 'hostspec' The hostname of the database server.
* 'protocol' The communication protocol ('tcp', 'unix', etc.).
* 'username' The username with which to connect to the database.
* 'password' The password associated with 'username'.
* 'database' The name of the database.
*
* Optional values:
* 'table' The name of the vfs table in 'database'. Defaults to 'horde_muvfs'.
*
* Required by some database implementations:
* 'options' Additional options to pass to the database.
* 'tty' The TTY on which to connect to the database.
* 'port' The port on which to connect to the database.
*
* Known Issues:
* Delete is not recusive, so file and folders that used to be in a folder that gets
* deleted life forever in the database, or re-appear when the folder is recreated.
* Rename has the same issue, if files are lost if a folder is renamed.
*
* The table structure for the VFS can be found in
* horde/scripts/db/muvfs.sql.
*
* Database specific notes:
*
* MSSQL:
* - The vfs_data field must be of type IMAGE.
* - You need the following php.ini settings:
* ; Valid range 0 - 2147483647. Default = 4096.
* mssql.textlimit = 0 ; zero to pass through
*
* ; Valid range 0 - 2147483647. Default = 4096.
* mssql.textsize = 0 ; zero to pass through
*
* $Horde: horde/lib/VFS/musql.php,v 1.4.2.4 2003/01/03 13:23:18 jan Exp $
*
* Copyright 2002-2003 Chuck Hagenbuch <chuck@horde.org>
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @author Mike Cochrane <mike@graftonhall.co.nz>
* @version $Revision: 1.4.2.4 $
* @since Horde 2.2
* @package horde.vfs
*/
/** @const HORDE_VFS_FLAG_READ Permission for read access. */
define('HORDE_VFS_FLAG_READ', 1);
/** @const HORDE_VFS_FLAG_WRITE Permission for read access. */
define('HORDE_VFS_FLAG_WRITE', 2);
class Horde_VFS_musql extends Horde_VFS_sql {
/**
* List of permissions and if they can be changed in this VFS
*/
var $_permissions = array(
'owner' => array('read' => false, 'write' => false, 'execute' => false),
'group' => array('read' => false, 'write' => false, 'execute' => false),
'all' => array('read' => true, 'write' => true, 'execute' => false));
/**
* Store a file in the VFS from raw data.
*
* @param string $path The path to store the file in.
* @param string $name The filename to use.
* @param string $data The file data.
* @param boolean $autocreate (optional) Automatically create directories?
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function writeData($path, $name, $data, $autocreate = false)
{
$conn = $this->_connect();
if (PEAR::isError($conn)) {
return $conn;
}
/* Make sure we have write access to this and all parent
* paths. */
if ($path != '') {
$paths = explode('/', $path);
$previous = '';
foreach ($paths as $thispath) {
$results = $this->_db->getAll(sprintf('SELECT vfs_owner, vfs_perms FROM %s
WHERE vfs_path = %s AND vfs_name= %s',
$this->_params['table'],
$this->_db->quote($previous),
$this->_db->quote($thispath)));
if (!is_array($results) || count($results) < 1) {
return PEAR::raiseError('Unable to create VFS file.');
}
$allowed = false;
foreach ($results as $result) {
if ($result[0] == Auth::getAuth() || $result[1] & HORDE_VFS_FLAG_WRITE) {
$allowed = true;
break;
}
}
if (!$allowed) {
return PEAR::raiseError('Access denied creating VFS file.');
}
$previous = $thispath;
}
}
return parent::writeData($path, $name, $data, $autocreate);
}
/**
* Delete a file from the VFS.
*
* @param string $path The path to store the file in.
* @param string $name The filename to use.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function deleteFile($path, $name)
{
$conn = $this->_connect();
if (PEAR::isError($conn)) {
return $conn;
}
$fileList = $this->_db->getAll(sprintf('SELECT vfs_id, vfs_owner, vfs_perms FROM %s
WHERE vfs_path = %s AND vfs_name= %s AND vfs_type = %s',
$this->_params['table'],
$this->_db->quote($path),
$this->_db->quote($name),
$this->_db->quote(HORDE_VFS_FILE)));
if (!is_array($fileList) || count($fileList) < 1) {
return PEAR::raiseError('Unable to delete VFS file.');
}
/* There may be one or more files with the same name but the
user may not have read access to them, so doesn't see
them. So we have to delete the one they have access to. */
foreach ($fileList as $file) {
if ($file[1] == Auth::getAuth() || $file[2] & HORDE_VFS_FLAG_WRITE) {
$result = $this->_db->query(sprintf('DELETE FROM %s WHERE vfs_id = %s',
$this->_params['table'],
$this->_db->quote($file[0])));
if ($this->_db->affectedRows() == 0) {
return PEAR::raiseError('Unable to delete VFS file.');
}
return $result;
}
}
// FIXME: 'Access Denied deleting file %s/%s'
return PEAR::raiseError('Unable to delete VFS file.');
}
/**
* Rename a file or folder in the VFS.
*
* @param string $oldpath The old path to the file.
* @param string $oldname The old filename.
* @param string $newpath The new path of the file.
* @param string $newname The new filename.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function rename($oldpath, $oldname, $newpath, $newname)
{
$conn = $this->_connect();
if (PEAR::isError($conn)) {
return $conn;
}
$fileList = $this->_db->getAll(sprintf('SELECT vfs_id, vfs_owner, vfs_perms FROM %s
WHERE vfs_path = %s AND vfs_name= %s',
$this->_params['table'],
$this->_db->quote($oldpath),
$this->_db->quote($oldname)));
if (!is_array($fileList) || count($fileList) < 1) {
return PEAR::raiseError('Unable to rename VFS file.');
}
/* There may be one or more files with the same name but the user may not have
read access to them, so doesn't see them. So we have to rename the one they have
access to. */
foreach ($fileList as $file) {
if ($file[1] == Auth::getAuth() || $file[2] & HORDE_VFS_FLAG_WRITE) {
$result = $this->_db->query(sprintf('UPDATE %s SET vfs_path = %s, vfs_name = %s, vfs_modified = %s
WHERE vfs_id = %s',
$this->_params['table'],
$this->_db->quote($newpath),
$this->_db->quote($newname),
$this->_db->quote(time()),
$this->_db->quote($file[0])));
return $result;
}
}
return PEAR::raiseError(sprintf(_('Unable to rename VFS file %s/%s.'), $oldpath, $oldname));
}
/**
* Creates a folder on the VFS.
*
* @param string $path Holds the path of directory to create folder.
* @param string $name Holds the name of the new folder.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function createFolder($path, $name)
{
$conn = $this->_connect();
if (PEAR::isError($conn)) {
return $conn;
}
/* make sure we have write access to this and all parent paths */
if ($path != "") {
$paths = explode('/', $path);
$previous = '';
foreach ($paths as $thispath) {
$results = $this->_db->getAll(sprintf('SELECT vfs_owner, vfs_perms FROM %s
WHERE vfs_path = %s AND vfs_name= %s',
$this->_params['table'],
$this->_db->quote($previous),
$this->_db->quote($thispath)));
if (!is_array($results) || count($results) < 1) {
return PEAR::raiseError('Unable to create VFS folder.');
}
$allowed = false;
foreach ($results as $result) {
if ($result[0] == Auth::getAuth() || $result[1] & HORDE_VFS_FLAG_WRITE) {
$allowed = true;
break;
}
}
if (!$allowed) {
return PEAR::raiseError('Access denied creating VFS folder.');
}
$previous = $thispath;
}
}
$id = $this->_db->nextId($this->_params['table']);
return $this->_db->query(sprintf('INSERT INTO %s (vfs_id, vfs_type, vfs_path, vfs_name, vfs_modified, vfs_owner, vfs_perms)
VALUES (%s, %s, %s, %s, %s, %s, %s)',
$this->_params['table'],
$this->_db->quote($id),
$this->_db->quote(HORDE_VFS_FOLDER),
$this->_db->quote($path),
$this->_db->quote($name),
$this->_db->quote(time()),
$this->_db->quote(Auth::getAuth()),
$this->_db->quote(0)
));
}
/**
* Delete a file from the VFS.
*
* @param string $path The path to store the file in.
* @param string $name The filename to use.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function deleteFolder($path, $name)
{
$conn = $this->_connect();
if (PEAR::isError($conn)) {
return $conn;
}
$fileList = $this->_db->getAll(sprintf('SELECT vfs_id, vfs_owner, vfs_perms FROM %s
WHERE vfs_path = %s AND vfs_name= %s AND vfs_type = %s',
$this->_params['table'],
$this->_db->quote($path),
$this->_db->quote($name),
$this->_db->quote(HORDE_VFS_FOLDER)));
if (!is_array($fileList) || count($fileList) < 1) {
return PEAR::raiseError('Unable to delete VFS directory.');
}
/* There may be one or more folders with the same name but as the user may not have
read access to them, they don't see them. So we have to delete the one they have
access to */
foreach ($fileList as $file) {
if ($file[1] == Auth::getAuth() || $file[2] & HORDE_VFS_FLAG_WRITE) {
$result = $this->_db->query(sprintf('DELETE FROM %s WHERE vfs_id = %s',
$this->_params['table'],
$this->_db->quote($file[0])));
if ($this->_db->affectedRows() == 0) {
return PEAR::raiseError('Unable to delete VFS directory.');
}
return $result;
}
}
// FIXME: 'Access Denied deleting folder %s/%s'
return PEAR::raiseError('Unable to delete VFS directory.');
}
/**
* Return a list of the contents of a folder.
*
* @param string $path Holds the path of the directory.
*
* @return mixed File list on success or false on failure.
*/
function listFolder($path)
{
$conn = $this->_connect();
if (PEAR::isError($conn)) {
return $conn;
}
$files = array();
$fileList = array();
$fileList = $this->_db->getAll(sprintf('SELECT vfs_name, vfs_type, vfs_modified, vfs_owner, vfs_perms, vfs_data FROM %s
WHERE vfs_path = %s AND (vfs_owner = %s or vfs_perms && %s)',
$this->_params['table'],
$this->_db->quote($path),
$this->_db->quote(Auth::getAuth()),
$this->_db->quote(HORDE_VFS_FLAG_READ)
));
foreach ($fileList as $line) {
$file['name'] = stripslashes($line[0]);
if ($line[1] == HORDE_VFS_FILE) {
$name = explode('.', $line[0]);
if (count($name) == 1) {
$file['type'] = '**none';
} else {
$file['type'] = strtolower($name[count($name) - 1]);
}
$file['size'] = strlen($line[5]);
} else if ($line[1] == HORDE_VFS_FOLDER) {
$file['type'] = '**dir';
$file['size'] = -1;
}
$file['date'] = $line[2];
$file['owner'] = $line[3];
$line[4] = intval($line[4]);
$file['perms'] = ($line[1] == HORDE_VFS_FOLDER) ? 'd' : '-';
$file['perms'] .= 'rw-';
$file['perms'] .= ($line[4] & HORDE_VFS_FLAG_READ) ? 'r' : '-';
$file['perms'] .= ($line[4] & HORDE_VFS_FLAG_WRITE) ? 'w' : '-';
$file['perms'] .= '-';
$file['group'] = '-';
$files[$file['name']] = $file;
}
return $files;
}
/**
* Changes permissions for an Item on the VFS.
*
* @param string $path Holds the path of directory of the Item.
* @param string $name Holds the name of the Item.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function changePermissions($path, $name, $permission)
{
$conn = $this->_connect();
if (PEAR::isError($conn)) {
return $conn;
}
$val = intval(substr($permission, -1));
$perm = 0;
$perm |= ($val & 4) ? HORDE_VFS_FLAG_READ : 0;
$perm |= ($val & 2) ? HORDE_VFS_FLAG_WRITE : 0;
$fileList = $this->_db->getAll(sprintf('SELECT vfs_id, vfs_owner, vfs_perms FROM %s
WHERE vfs_path = %s AND vfs_name= %s',
$this->_params['table'],
$this->_db->quote($path),
$this->_db->quote($name)));
if (!is_array($fileList) || count($fileList) < 1) {
return PEAR::raiseError('Unable to rename VFS file.');
}
/* There may be one or more files with the same name but the user may not have
read access to them, so doesn't see them. So we have to chmod the one they have
access to. */
foreach ($fileList as $file) {
if ($file[1] == Auth::getAuth() || $file[2] & HORDE_VFS_FLAG_WRITE) {
$result = $this->_db->query(sprintf('UPDATE %s SET vfs_perms = %s
WHERE vfs_id = %s',
$this->_params['table'],
$this->_db->quote($perm),
$this->_db->quote($file[0])));
return $result;
}
}
return PEAR::raiseError(sprintf(_('Unable to change permission for VFS file %s/%s.'), $path, $name));
}
}
|