mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
35680bbae9
code is consisted with PSR-1 + PSR-2
71 lines
1.3 KiB
PHP
71 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Storage;
|
|
|
|
use Exception;
|
|
|
|
class Storage
|
|
{
|
|
/**
|
|
* Devices.
|
|
*
|
|
* List of all available storage devices
|
|
*
|
|
* @var array
|
|
*/
|
|
public static $devices = array();
|
|
|
|
/**
|
|
* Add Device.
|
|
*
|
|
* Add device by name
|
|
*
|
|
* @param string $name
|
|
* @param Device $device
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public static function addDevice($name, Device $device)
|
|
{
|
|
if (array_key_exists($name, self::$devices)) {
|
|
throw new Exception('The device "'.$name.'" is already listed');
|
|
}
|
|
|
|
self::$devices[$name] = $device;
|
|
}
|
|
|
|
/**
|
|
* Get Device.
|
|
*
|
|
* Get device by name
|
|
*
|
|
* @param string $name
|
|
*
|
|
* @return Device
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public static function getDevice($name)
|
|
{
|
|
if (!array_key_exists($name, self::$devices)) {
|
|
throw new Exception('The device "'.$name.'" is not listed');
|
|
}
|
|
|
|
return self::$devices[$name];
|
|
}
|
|
|
|
/**
|
|
* Exists.
|
|
*
|
|
* Checks if given storage name is registered or not
|
|
*
|
|
* @param string $name
|
|
*
|
|
* @return bool
|
|
*/
|
|
public static function exists($name)
|
|
{
|
|
return (bool) array_key_exists($name, self::$devices);
|
|
}
|
|
}
|