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
|
<?php
/**
* A abstract file backend. Offers basic functions that are needed by the frontend modules.
*
* @class file_backend
*/
namespace Files\Backend;
require_once __DIR__ . "/interface.quota.php";
require_once __DIR__ . "/interface.version.php";
require_once __DIR__ . "/interface.streaming.php";
require_once __DIR__ . "/interface.sharing.php";
require_once __DIR__ . "/interface.oauth.php";
abstract class AbstractBackend
{
/**
* @var string This is a small description for the backend. It will be shown in the settings UI.
*/
public $backendDescription = "This is a generic file backend.";
/**
* @var string This is the name of backend that is visible to the user.
*/
public $backendDisplayName = "AbstractBackend";
/**
* @var string Version code of the backend implementation.
*/
public $backendVersion = "1.0";
/**
* @var string AccountID of the account that is using this backend.
*/
protected $accountID = null;
/**
* This function will initialize internal variables of the backend. It will receive the values in the
* $backend_config array.
*
* Example for the $backend_config array:
* $backend_config["server_address"]
* $backend_config["user"]
* ...
*
* @param array $backend_config
* @return void
*/
abstract public function init_backend($backend_config);
/**
* This function will set the backend internal debug flag. Each backend will handle debugging by itself.
*
* @param bool $debug
* @return void
*/
abstract public function set_debug($debug);
/**
* This function opens the backend connection. For instance it will open a new ftp connection.
*
* @throws \Files\Backend\Exception
* @return bool
*/
abstract public function open();
/**
* This function will read a list of files and folders from the server.
* The return value must look like this:
* Array => (
* "path 1" => array(
* "resourcetype" => "collection" or "file",
* "getcontentlength" => size in bytes,
* "getlastmodified" => date/time string,
* "getcontenttype" => mime type (optional),
* "quota-used-bytes" => size in bytes (optional),
* "quota-available-bytes" => size in bytes (optional),
* ),
* "path 2" => array(
* ...
* ),
* ):
*
* @param string $dir
* @param bool $hidefirst
* @throws \Files\Backend\Exception
* @return array
*/
abstract public function ls($dir, $hidefirst = true);
/**
* Creates a new directory on the server.
*
* @param string $dir
* @throws \Files\Backend\Exception
* @return bool
*/
abstract public function mkcol($dir);
/**
* Deletes a files or folder from the backend.
*
* @param string $path
* @throws \Files\Backend\Exception
* @return bool
*/
abstract public function delete($path);
/**
* Move a file or collection on the backend server (serverside).
* If you set param $overwrite as true, the target will be overwritten.
*
* @param string $src_path Source path
* @param string $dest_path Destination path
* @param bool $overwrite Overwrite file if exists in $dest_path
* @throws \Files\Backend\Exception
* @return bool
*/
abstract public function move($src_path, $dst_path, $overwrite = false);
/**
* Uploads the given $data to a new file in the backend.
*
* @param string $path
* @param string $data
* @throws \Files\Backend\Exception
* @return bool
*/
abstract public function put($path, $data);
/**
* Uploads a local file ($filename) to a new file in the backend.
*
* @param string $path
* @param string $filename
* @throws \Files\Backend\Exception
* @return bool
*/
abstract public function put_file($path, $filename);
/**
* Download a remote file to a buffer variable.
*
* @param string $path
* @param string $buffer
* @throws \Files\Backend\Exception
* @return void
*/
abstract public function get($path, &$buffer);
/**
* Download a remote file to a local file.
*
* @param string $srcpath
* @param string $localpath
* @throws \Files\Backend\Exception
* @return void
*/
abstract public function get_file($srcpath, $localpath);
/**
* Duplicates a file on the backend server.
* If you set param overwrite as true, the target will be overwritten.
*
* @param string $src_path
* @param string $dst_path
* @param bool $overwrite
* @throws \Files\Backend\Exception
* @return bool
*/
abstract public function copy_file($src_path, $dst_path, $overwrite = false);
/**
* Duplicates a folder on the backend server.
* If you set param overwrite as true, the target will be overwritten.
*
* @param string $src_path
* @param string $dst_path
* @param bool $overwrite
* @throws \Files\Backend\Exception
* @return bool
*/
abstract public function copy_coll($src_path, $dst_path, $overwrite = false);
/**
* Get's path information from backend server for the first element
* in the given path.
*
* Returned value:
* array(
* "resourcetype" => "collection" or "file",
* "getcontentlength" => size in bytes,
* "getlastmodified" => date/time string,
* "getcontenttype" => mime type (optional),
* "quota-used-bytes" => size in bytes (optional),
* "quota-available-bytes" => size in bytes (optional),
* )
*
* @param string $path
* @throws \Files\Backend\Exception
* @return mixed
*/
abstract public function gpi($path);
/**
* Checks if the given $path is a file. If so, this function returns true, otherwise it will
* return false.
*
* @param string $path
* @throws \Files\Backend\Exception
* @return bool
*/
abstract public function is_file($path);
/**
* Checks if the given $path is a folder. If so, this function returns true, otherwise it will
* return false.
*
* @param string $path
* @throws \Files\Backend\Exception
* @return bool
*/
abstract public function is_dir($path);
/**
* Checks if the given $path exists on the remote server. If so, this function returns true, otherwise it will
* return false.
*
* @param string $path
* @throws \Files\Backend\Exception
* @return bool
*/
abstract public function exists($path);
/**
* This function will return an array with configuration values for the settings form.
*
* Example return value:
* array(
* "success" => true,
* "metaData" => array(
* "fields" => $this->formFields,
* "formConfig" => $this->formConfig
* ),
* "data" => array( // here we can specify the default values.
* "server_address" => "files.demo.com",
* "server_port" => "80",
* "server_path" => "/remote.php/webdav"
* ),
* )
*
* @return array
*/
abstract public function getFormConfig();
/**
* This function will return an array with configuration values for the settings form.
* The returned value will also contain the data values for each form field.
*
* Example return value:
* array(
* "success" => true,
* "metaData" => array(
* "fields" => $this->formFields,
* "formConfig" => $this->formConfig
* ),
* "data" => array( // here we can specify the default values.
* "server_address" => "files.demo.com",
* "server_port" => "80",
* "server_path" => "/remote.php/webdav"
* ),
* )
*
* @return array
*/
abstract public function getFormConfigWithData();
/**
* Returns a brief the description of the backend.
*
* @return string
*/
public function getDescription()
{
return $this->backendDescription;
}
/**
* @return string
*/
public function getDisplayName()
{
return $this->backendDisplayName;
}
/**
* Returns the version/revision of the backend.
*
* @return string
*/
public function getBackendVersion()
{
return $this->backendVersion;
}
/**
* Check if the given feature is supported by this backend.
*
* @param string $feature feature name. e.g. Quota or VersionInfo
*
* @return bool
*/
public function supports($feature)
{
$features = $this->getAvailableFeatures();
return in_array($feature, $features);
}
/**
* Returns all available features and their values.
*
* @return array
*/
public function getAvailableFeatures()
{
$interfaces = class_implements(get_class($this));
$features = array();
// remove namespace and interface prefix
foreach ($interfaces as $interface) {
$features[] = str_replace("Files\\Backend\\iFeature", "", $interface);
}
return $features;
}
/**
* This function gets called before the backend-account is deleted.
*
* @param $account
*/
public function beforeDeleteAccount($account)
{
// do nothing by default
}
/**
* @return string
*/
public function getAccountID()
{
return $this->accountID;
}
/**
* @param string $accountID
*/
public function setAccountID($accountID)
{
$this->accountID = $accountID;
}
}
|