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
|
<?php
/**
* VFS implementation for the Horde Application Framework.
*
* Required parameters:<pre>
* 'horde_base' Filesystem location of a local Horde installation.</pre>
*
* Optional parameters:<pre>
* 'user' A valid Horde user name.
* 'password' The user's password.</pre>
*
* $Horde: framework/VFS/lib/VFS/horde.php,v 1.1.2.3 2009/01/06 15:23:47 jan Exp $
*
* Copyright 2006-2009 The Horde Project (http://www.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 Jan Schneider <jan@horde.org>
* @since Horde 3.2
* @package VFS
*/
class VFS_horde extends VFS {
/**
* Reference to a Horde Registry instance.
*
* @var Registry
*/
var $_registry;
/**
* Constructor.
*
* @param array $params A hash containing connection parameters.
*/
function VFS_horde($params = array())
{
parent::VFS($params);
if (!isset($this->_params['horde_base'])) {
$this->_registry = PEAR::raiseError(sprintf(_("Required \"%s\" not specified in VFS configuration."), 'horde_base'));
return;
}
// Define path to Horde.
@define('HORDE_BASE', $this->_params['horde_base']);
// Load the Horde Framework core, and set up inclusion paths.
require_once HORDE_BASE . '/lib/core.php';
// Create the Registry object.
$this->_registry = &Registry::singleton();
}
function _connect()
{
if (!empty($this->_params['user']) &&
!empty($this->_params['password'])) {
include HORDE_BASE . '/config/conf.php';
$auth_driver = empty($conf['auth']['driver']) ? 'none' : $conf['auth']['driver'];
$auth = &Auth::singleton($auth_driver);
$auth->setAuth($this->_params['user'],
array('password' => $this->_params['password']));
}
}
/**
* Retrieves the size of a file from the VFS.
*
* @abstract
*
* @param string $path The pathname to the file.
* @param string $name The filename to retrieve.
*
* @return integer The file size.
*/
function size($path, $name)
{
if (is_a($this->_registry, 'PEAR_Error')) {
return $this->_registry;
}
return PEAR::raiseError(_("Not supported."));
}
/**
* Retrieves a file from the VFS.
*
* @abstract
*
* @param string $path The pathname to the file.
* @param string $name The filename to retrieve.
*
* @return string The file data.
*/
function read($path, $name)
{
if (is_a($this->_registry, 'PEAR_Error')) {
return $this->_registry;
}
if (substr($path, 0, 1) == '/') {
$path = substr($path, 1);
}
$pieces = explode('/', $path);
$data = $this->_registry->callByPackage($pieces[0], 'browse', array('path' => $path . '/' . $name));
if (is_object($data)) {
return $data;
}
return $data['data'];
}
/**
* Stores a file in the VFS.
*
* @abstract
*
* @param string $path The path to store the file in.
* @param string $name The filename to use.
* @param string $tmpFile The temporary file containing the data to
* be stored.
* @param boolean $autocreate Automatically create directories?
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function write($path, $name, $tmpFile, $autocreate = false)
{
if (is_a($this->_registry, 'PEAR_Error')) {
return $this->_registry;
}
return PEAR::raiseError(_("Not supported."));
}
/**
* Stores a file in the VFS from raw data.
*
* @abstract
*
* @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 Automatically create directories?
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function writeData($path, $name, $data, $autocreate = false)
{
if (is_a($this->_registry, 'PEAR_Error')) {
return $this->_registry;
}
return PEAR::raiseError(_("Not supported."));
}
/**
* Moves a file through the backend.
*
* @abstract
*
* @param string $path The path of the original file.
* @param string $name The name of the original file.
* @param string $dest The destination file name.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function move($path, $name, $dest)
{
if (is_a($this->_registry, 'PEAR_Error')) {
return $this->_registry;
}
return PEAR::raiseError(_("Not supported."));
}
/**
* Copies a file through the backend.
*
* @abstract
*
* @param string $path The path of the original file.
* @param string $name The name of the original file.
* @param string $dest The name of the destination directory.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function copy($path, $name, $dest)
{
if (is_a($this->_registry, 'PEAR_Error')) {
return $this->_registry;
}
return PEAR::raiseError(_("Not supported."));
}
/**
* Deletes a file from the VFS.
*
* @abstract
*
* @param string $path The path to delete the file from.
* @param string $name The filename to delete.
*
* @return mixed True on success or a PEAR_Error object on failure.
*/
function deleteFile($path, $name)
{
if (is_a($this->_registry, 'PEAR_Error')) {
return $this->_registry;
}
return PEAR::raiseError(_("Not supported."));
}
/**
* Renames a file in the VFS.
*
* @abstract
*
* @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)
{
if (is_a($this->_registry, 'PEAR_Error')) {
return $this->_registry;
}
return PEAR::raiseError(_("Not supported."));
}
/**
* Returns an an unsorted file list of the specified directory.
*
* @abstract
*
* @param string $path The path of the directory.
* @param mixed $filter String/hash to filter file/dirname on.
* @param boolean $dotfiles Show dotfiles?
* @param boolean $dironly Show only directories?
*
* @return array File list on success or PEAR_Error on failure.
*/
function _listFolder($path, $filter = null, $dotfiles = true,
$dironly = false)
{
if (is_a($this->_registry, 'PEAR_Error')) {
return $this->_registry;
}
$list = array();
if ($path == '/') {
$apps = $this->_registry->listApps(null, false, PERMS_READ);
if (is_a($apps, 'PEAR_Error')) {
return $apps;
}
foreach ($apps as $app) {
if ($this->_registry->hasMethod('browse', $app)) {
$file = array(
//'name' => $this->_registry->get('name', $app),
'name' => $app,
'date' => time(),
'type' => '**dir',
'size' => -1
);
$list[] = $file;
}
}
return $list;
}
if (substr($path, 0, 1) == '/') {
$path = substr($path, 1);
}
$pieces = explode('/', $path);
$items = $this->_registry->callByPackage($pieces[0], 'browse', array('path' => $path, 'properties' => array('name', 'browseable', 'contenttype', 'contentlength', 'modified')));
if (is_a($items, 'PEAR_Error')) {
return $items;
}
if (!is_array(reset($items))) {
/* We return an object's content. */
return PEAR::raiseError(_("unknown error"));
}
include_once 'Horde/MIME/Magic.php';
foreach ($items as $sub_path => $i) {
if ($dironly && !$i['browseable']) {
continue;
}
$name = basename($sub_path);
if ($this->_filterMatch($filter, $name)) {
continue;
}
if (class_exists('MIME_Magic')) {
$type = empty($i['contenttype']) ? 'application/octet-stream' : $i['contenttype'];
$type = MIME_Magic::MIMEToExt($type);
} else {
$type = '**none';
}
$file = array(
//'name' => $i['name'],
'name' => $name,
'date' => empty($i['modified']) ? 0 : $i['modified'],
'type' => $i['browseable'] ? '**dir' : $type,
'size' => empty($i['contentlength']) ? 0 : $i['contentlength']
);
$list[] = $file;
}
return $list;
}
/**
* Returns a sorted list of folders in the specified directory.
*
* @abstract
*
* @param string $path The path of the directory to get the
* directory list for.
* @param mixed $filter Hash of items to filter based on folderlist.
* @param boolean $dotfolders Include dotfolders?
*
* @return mixed Folder list on success or a PEAR_Error object on failure.
*/
function listFolders($path = '', $filter = null, $dotfolders = true)
{
if (is_a($this->_registry, 'PEAR_Error')) {
return $this->_registry;
}
return PEAR::raiseError(_("Not supported."));
}
}
|