|
@@ -24,36 +24,49 @@ require_once 'Zend/Service/Rackspace/Files.php';
|
|
|
|
|
|
|
|
class Zend_Service_Rackspace_Files_Container
|
|
class Zend_Service_Rackspace_Files_Container
|
|
|
{
|
|
{
|
|
|
- const ERROR_PARAM_FILE_CONSTRUCT = 'The Zend_Service_Rackspace_Files passed in construction is not valid';
|
|
|
|
|
|
|
+ const ERROR_PARAM_FILE_CONSTRUCT = 'The Zend_Service_Rackspace_Files passed in construction is not valid';
|
|
|
|
|
+
|
|
|
const ERROR_PARAM_ARRAY_CONSTRUCT = 'The array passed in construction is not valid';
|
|
const ERROR_PARAM_ARRAY_CONSTRUCT = 'The array passed in construction is not valid';
|
|
|
- const ERROR_PARAM_NO_NAME = 'The container name is empty';
|
|
|
|
|
|
|
+
|
|
|
|
|
+ const ERROR_PARAM_NO_NAME = 'The container name is empty';
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* @var string
|
|
* @var string
|
|
|
*/
|
|
*/
|
|
|
protected $name;
|
|
protected $name;
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Construct
|
|
* Construct
|
|
|
*
|
|
*
|
|
|
* @param Zend_Service_Rackspace_Files $service
|
|
* @param Zend_Service_Rackspace_Files $service
|
|
|
- * @param string $name
|
|
|
|
|
|
|
+ * @param $data
|
|
|
|
|
+ *
|
|
|
|
|
+ * @throws Zend_Service_Rackspace_Files_Exception
|
|
|
*/
|
|
*/
|
|
|
public function __construct($service, $data)
|
|
public function __construct($service, $data)
|
|
|
{
|
|
{
|
|
|
if (!($service instanceof Zend_Service_Rackspace_Files)) {
|
|
if (!($service instanceof Zend_Service_Rackspace_Files)) {
|
|
|
require_once 'Zend/Service/Rackspace/Files/Exception.php';
|
|
require_once 'Zend/Service/Rackspace/Files/Exception.php';
|
|
|
- throw new Zend_Service_Rackspace_Files_Exception(self::ERROR_PARAM_FILE_CONSTRUCT);
|
|
|
|
|
|
|
+ throw new Zend_Service_Rackspace_Files_Exception(
|
|
|
|
|
+ self::ERROR_PARAM_FILE_CONSTRUCT
|
|
|
|
|
+ );
|
|
|
}
|
|
}
|
|
|
if (!is_array($data)) {
|
|
if (!is_array($data)) {
|
|
|
require_once 'Zend/Service/Rackspace/Files/Exception.php';
|
|
require_once 'Zend/Service/Rackspace/Files/Exception.php';
|
|
|
- throw new Zend_Service_Rackspace_Files_Exception(self::ERROR_PARAM_ARRAY_CONSTRUCT);
|
|
|
|
|
|
|
+ throw new Zend_Service_Rackspace_Files_Exception(
|
|
|
|
|
+ self::ERROR_PARAM_ARRAY_CONSTRUCT
|
|
|
|
|
+ );
|
|
|
}
|
|
}
|
|
|
if (!array_key_exists('name', $data)) {
|
|
if (!array_key_exists('name', $data)) {
|
|
|
require_once 'Zend/Service/Rackspace/Files/Exception.php';
|
|
require_once 'Zend/Service/Rackspace/Files/Exception.php';
|
|
|
- throw new Zend_Service_Rackspace_Files_Exception(self::ERROR_PARAM_NO_NAME);
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ throw new Zend_Service_Rackspace_Files_Exception(
|
|
|
|
|
+ self::ERROR_PARAM_NO_NAME
|
|
|
|
|
+ );
|
|
|
|
|
+ }
|
|
|
$this->service = $service;
|
|
$this->service = $service;
|
|
|
- $this->name = $data['name'];
|
|
|
|
|
|
|
+ $this->name = $data['name'];
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Get the name of the container
|
|
* Get the name of the container
|
|
|
*
|
|
*
|
|
@@ -63,10 +76,11 @@ class Zend_Service_Rackspace_Files_Container
|
|
|
{
|
|
{
|
|
|
return $this->name;
|
|
return $this->name;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Get the size in bytes of the container
|
|
* Get the size in bytes of the container
|
|
|
*
|
|
*
|
|
|
- * @return integer|boolean
|
|
|
|
|
|
|
+ * @return integer|bool
|
|
|
*/
|
|
*/
|
|
|
public function getSize()
|
|
public function getSize()
|
|
|
{
|
|
{
|
|
@@ -74,12 +88,14 @@ class Zend_Service_Rackspace_Files_Container
|
|
|
if (isset($data['bytes'])) {
|
|
if (isset($data['bytes'])) {
|
|
|
return $data['bytes'];
|
|
return $data['bytes'];
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
return false;
|
|
return false;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Get the total count of objects in the container
|
|
* Get the total count of objects in the container
|
|
|
*
|
|
*
|
|
|
- * @return integer|boolean
|
|
|
|
|
|
|
+ * @return integer|bool
|
|
|
*/
|
|
*/
|
|
|
public function getObjectCount()
|
|
public function getObjectCount()
|
|
|
{
|
|
{
|
|
@@ -87,12 +103,14 @@ class Zend_Service_Rackspace_Files_Container
|
|
|
if (isset($data['count'])) {
|
|
if (isset($data['count'])) {
|
|
|
return $data['count'];
|
|
return $data['count'];
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
return false;
|
|
return false;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Return true if the container is CDN enabled
|
|
* Return true if the container is CDN enabled
|
|
|
- *
|
|
|
|
|
- * @return boolean
|
|
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return bool
|
|
|
*/
|
|
*/
|
|
|
public function isCdnEnabled()
|
|
public function isCdnEnabled()
|
|
|
{
|
|
{
|
|
@@ -100,69 +118,80 @@ class Zend_Service_Rackspace_Files_Container
|
|
|
if (isset($data['cdn_enabled'])) {
|
|
if (isset($data['cdn_enabled'])) {
|
|
|
return $data['cdn_enabled'];
|
|
return $data['cdn_enabled'];
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
return false;
|
|
return false;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Get the TTL of the CDN
|
|
* Get the TTL of the CDN
|
|
|
- *
|
|
|
|
|
- * @return integer|boolean
|
|
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return integer|bool
|
|
|
*/
|
|
*/
|
|
|
- public function getCdnTtl()
|
|
|
|
|
|
|
+ public function getCdnTtl()
|
|
|
{
|
|
{
|
|
|
$data = $this->getCdnInfo();
|
|
$data = $this->getCdnInfo();
|
|
|
- if (!isset($data['ttl'])) {
|
|
|
|
|
|
|
+ if (isset($data['ttl'])) {
|
|
|
return $data['ttl'];
|
|
return $data['ttl'];
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
return false;
|
|
return false;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Return true if the log retention is enabled for the CDN
|
|
* Return true if the log retention is enabled for the CDN
|
|
|
*
|
|
*
|
|
|
- * @return boolean
|
|
|
|
|
|
|
+ * @return bool
|
|
|
*/
|
|
*/
|
|
|
public function isCdnLogEnabled()
|
|
public function isCdnLogEnabled()
|
|
|
{
|
|
{
|
|
|
$data = $this->getCdnInfo();
|
|
$data = $this->getCdnInfo();
|
|
|
- if (!isset($data['log_retention'])) {
|
|
|
|
|
|
|
+ if (isset($data['log_retention'])) {
|
|
|
return $data['log_retention'];
|
|
return $data['log_retention'];
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
return false;
|
|
return false;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Get the CDN URI
|
|
* Get the CDN URI
|
|
|
- *
|
|
|
|
|
- * @return string|boolean
|
|
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return string|bool
|
|
|
*/
|
|
*/
|
|
|
public function getCdnUri()
|
|
public function getCdnUri()
|
|
|
{
|
|
{
|
|
|
$data = $this->getCdnInfo();
|
|
$data = $this->getCdnInfo();
|
|
|
- if (!isset($data['cdn_uri'])) {
|
|
|
|
|
|
|
+ if (isset($data['cdn_uri'])) {
|
|
|
return $data['cdn_uri'];
|
|
return $data['cdn_uri'];
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
return false;
|
|
return false;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Get the CDN URI SSL
|
|
* Get the CDN URI SSL
|
|
|
*
|
|
*
|
|
|
- * @return string|boolean
|
|
|
|
|
|
|
+ * @return string|bool
|
|
|
*/
|
|
*/
|
|
|
public function getCdnUriSsl()
|
|
public function getCdnUriSsl()
|
|
|
{
|
|
{
|
|
|
$data = $this->getCdnInfo();
|
|
$data = $this->getCdnInfo();
|
|
|
- if (!isset($data['cdn_uri_ssl'])) {
|
|
|
|
|
|
|
+ if (isset($data['cdn_uri_ssl'])) {
|
|
|
return $data['cdn_uri_ssl'];
|
|
return $data['cdn_uri_ssl'];
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
return false;
|
|
return false;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Get the metadata of the container
|
|
* Get the metadata of the container
|
|
|
*
|
|
*
|
|
|
* If $key is empty return the array of metadata
|
|
* If $key is empty return the array of metadata
|
|
|
*
|
|
*
|
|
|
* @param string $key
|
|
* @param string $key
|
|
|
- * @return array|string|boolean
|
|
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return array|string|bool
|
|
|
*/
|
|
*/
|
|
|
- public function getMetadata($key=null)
|
|
|
|
|
|
|
+ public function getMetadata($key = null)
|
|
|
{
|
|
{
|
|
|
$result = $this->service->getMetadataContainer($this->getName());
|
|
$result = $this->service->getMetadataContainer($this->getName());
|
|
|
if (!empty($result) && is_array($result)) {
|
|
if (!empty($result) && is_array($result)) {
|
|
@@ -172,23 +201,27 @@ class Zend_Service_Rackspace_Files_Container
|
|
|
if (isset ($result['metadata'][$key])) {
|
|
if (isset ($result['metadata'][$key])) {
|
|
|
return $result['metadata'][$key];
|
|
return $result['metadata'][$key];
|
|
|
}
|
|
}
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
return false;
|
|
return false;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Get the information of the container (total of objects, total size)
|
|
* Get the information of the container (total of objects, total size)
|
|
|
- *
|
|
|
|
|
- * @return array|boolean
|
|
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return array|bool
|
|
|
*/
|
|
*/
|
|
|
public function getInfo()
|
|
public function getInfo()
|
|
|
{
|
|
{
|
|
|
$result = $this->service->getMetadataContainer($this->getName());
|
|
$result = $this->service->getMetadataContainer($this->getName());
|
|
|
if (!empty($result) && is_array($result)) {
|
|
if (!empty($result) && is_array($result)) {
|
|
|
- return $result;
|
|
|
|
|
|
|
+ return $result;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
return false;
|
|
return false;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Get all the object of the container
|
|
* Get all the object of the container
|
|
|
*
|
|
*
|
|
@@ -198,131 +231,174 @@ class Zend_Service_Rackspace_Files_Container
|
|
|
{
|
|
{
|
|
|
return $this->service->getObjects($this->getName());
|
|
return $this->service->getObjects($this->getName());
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Get an object of the container
|
|
* Get an object of the container
|
|
|
- *
|
|
|
|
|
|
|
+ *
|
|
|
* @param string $name
|
|
* @param string $name
|
|
|
- * @param array $headers
|
|
|
|
|
- * @return Zend_Service_Rackspace_Files_Object|boolean
|
|
|
|
|
|
|
+ * @param array $headers
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return Zend_Service_Rackspace_Files_Object|bool
|
|
|
*/
|
|
*/
|
|
|
- public function getObject($name, $headers=array())
|
|
|
|
|
|
|
+ public function getObject($name, $headers = array())
|
|
|
{
|
|
{
|
|
|
return $this->service->getObject($this->getName(), $name, $headers);
|
|
return $this->service->getObject($this->getName(), $name, $headers);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Add an object in the container
|
|
* Add an object in the container
|
|
|
*
|
|
*
|
|
|
* @param string $name
|
|
* @param string $name
|
|
|
* @param string $file the content of the object
|
|
* @param string $file the content of the object
|
|
|
- * @param array $metadata
|
|
|
|
|
- * @return boolen
|
|
|
|
|
|
|
+ * @param array $metadata
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return bool
|
|
|
*/
|
|
*/
|
|
|
- public function addObject($name, $file, $metadata=array())
|
|
|
|
|
|
|
+ public function addObject($name, $file, $metadata = array())
|
|
|
{
|
|
{
|
|
|
- return $this->service->storeObject($this->getName(), $name, $file, $metadata);
|
|
|
|
|
|
|
+ return $this->service->storeObject(
|
|
|
|
|
+ $this->getName(), $name, $file, $metadata
|
|
|
|
|
+ );
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Delete an object in the container
|
|
* Delete an object in the container
|
|
|
*
|
|
*
|
|
|
* @param string $obj
|
|
* @param string $obj
|
|
|
- * @return boolean
|
|
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return bool
|
|
|
*/
|
|
*/
|
|
|
public function deleteObject($obj)
|
|
public function deleteObject($obj)
|
|
|
{
|
|
{
|
|
|
return $this->service->deleteObject($this->getName(), $obj);
|
|
return $this->service->deleteObject($this->getName(), $obj);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Copy an object to another container
|
|
* Copy an object to another container
|
|
|
*
|
|
*
|
|
|
* @param string $obj_source
|
|
* @param string $obj_source
|
|
|
* @param string $container_dest
|
|
* @param string $container_dest
|
|
|
* @param string $obj_dest
|
|
* @param string $obj_dest
|
|
|
- * @param array $metadata
|
|
|
|
|
|
|
+ * @param array $metadata
|
|
|
* @param string $content_type
|
|
* @param string $content_type
|
|
|
- * @return boolean
|
|
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return bool
|
|
|
*/
|
|
*/
|
|
|
- public function copyObject($obj_source, $container_dest, $obj_dest, $metadata=array(), $content_type=null)
|
|
|
|
|
|
|
+ public function copyObject(
|
|
|
|
|
+ $obj_source, $container_dest, $obj_dest, $metadata = array(),
|
|
|
|
|
+ $content_type = null
|
|
|
|
|
+ )
|
|
|
{
|
|
{
|
|
|
- return $this->service->copyObject($this->getName(), $obj_source, $container_dest, $obj_dest, $metadata, $content_type);
|
|
|
|
|
|
|
+ return $this->service->copyObject(
|
|
|
|
|
+ $this->getName(),
|
|
|
|
|
+ $obj_source,
|
|
|
|
|
+ $container_dest,
|
|
|
|
|
+ $obj_dest,
|
|
|
|
|
+ $metadata,
|
|
|
|
|
+ $content_type
|
|
|
|
|
+ );
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Get the metadata of an object in the container
|
|
* Get the metadata of an object in the container
|
|
|
*
|
|
*
|
|
|
* @param string $object
|
|
* @param string $object
|
|
|
|
|
+ *
|
|
|
* @return array
|
|
* @return array
|
|
|
*/
|
|
*/
|
|
|
public function getMetadataObject($object)
|
|
public function getMetadataObject($object)
|
|
|
{
|
|
{
|
|
|
- return $this->service->getMetadataObject($this->getName(),$object);
|
|
|
|
|
|
|
+ return $this->service->getMetadataObject($this->getName(), $object);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Set the metadata of an object in the container
|
|
* Set the metadata of an object in the container
|
|
|
*
|
|
*
|
|
|
* @param string $object
|
|
* @param string $object
|
|
|
- * @param array $metadata
|
|
|
|
|
- * @return boolean
|
|
|
|
|
|
|
+ * @param array $metadata
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return bool
|
|
|
*/
|
|
*/
|
|
|
- public function setMetadataObject($object,$metadata=array())
|
|
|
|
|
|
|
+ public function setMetadataObject($object, $metadata = array())
|
|
|
{
|
|
{
|
|
|
- return $this->service->setMetadataObject($this->getName(),$object,$metadata);
|
|
|
|
|
|
|
+ return $this->service->setMetadataObject(
|
|
|
|
|
+ $this->getName(), $object, $metadata
|
|
|
|
|
+ );
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Enable the CDN for the container
|
|
* Enable the CDN for the container
|
|
|
*
|
|
*
|
|
|
* @param integer $ttl
|
|
* @param integer $ttl
|
|
|
- * @return array|boolean
|
|
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return array|bool
|
|
|
*/
|
|
*/
|
|
|
- public function enableCdn($ttl=Zend_Service_Rackspace_Files::CDN_TTL_MIN)
|
|
|
|
|
|
|
+ public function enableCdn($ttl = Zend_Service_Rackspace_Files::CDN_TTL_MIN)
|
|
|
{
|
|
{
|
|
|
- return $this->service->enableCdnContainer($this->getName(),$ttl);
|
|
|
|
|
|
|
+ return $this->service->enableCdnContainer($this->getName(), $ttl);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Disable the CDN for the container
|
|
* Disable the CDN for the container
|
|
|
- *
|
|
|
|
|
- * @return boolean
|
|
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return bool
|
|
|
*/
|
|
*/
|
|
|
- public function disableCdn()
|
|
|
|
|
|
|
+ public function disableCdn()
|
|
|
{
|
|
{
|
|
|
- $result = $this->service->updateCdnContainer($this->getName(),null,false);
|
|
|
|
|
- return ($result!==false);
|
|
|
|
|
|
|
+ $result =
|
|
|
|
|
+ $this->service->updateCdnContainer($this->getName(), null, false);
|
|
|
|
|
+
|
|
|
|
|
+ return ($result !== false);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Change the TTL for the CDN container
|
|
* Change the TTL for the CDN container
|
|
|
*
|
|
*
|
|
|
* @param integer $ttl
|
|
* @param integer $ttl
|
|
|
- * @return boolean
|
|
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return bool
|
|
|
*/
|
|
*/
|
|
|
- public function changeTtlCdn($ttl)
|
|
|
|
|
|
|
+ public function changeTtlCdn($ttl)
|
|
|
{
|
|
{
|
|
|
- $result = $this->service->updateCdnContainer($this->getName(),$ttl);
|
|
|
|
|
- return ($result!==false);
|
|
|
|
|
|
|
+ $result = $this->service->updateCdnContainer($this->getName(), $ttl);
|
|
|
|
|
+
|
|
|
|
|
+ return ($result !== false);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Enable the log retention for the CDN
|
|
* Enable the log retention for the CDN
|
|
|
*
|
|
*
|
|
|
- * @return boolean
|
|
|
|
|
|
|
+ * @return bool
|
|
|
*/
|
|
*/
|
|
|
- public function enableLogCdn()
|
|
|
|
|
|
|
+ public function enableLogCdn()
|
|
|
{
|
|
{
|
|
|
- $result = $this->service->updateCdnContainer($this->getName(),null,null,true);
|
|
|
|
|
- return ($result!==false);
|
|
|
|
|
|
|
+ $result = $this->service->updateCdnContainer(
|
|
|
|
|
+ $this->getName(), null, null, true
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ return ($result !== false);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Disable the log retention for the CDN
|
|
* Disable the log retention for the CDN
|
|
|
*
|
|
*
|
|
|
- * @return boolean
|
|
|
|
|
|
|
+ * @return bool
|
|
|
*/
|
|
*/
|
|
|
- public function disableLogCdn()
|
|
|
|
|
|
|
+ public function disableLogCdn()
|
|
|
{
|
|
{
|
|
|
- $result = $this->service->updateCdnContainer($this->getName(),null,null,false);
|
|
|
|
|
- return ($result!==false);
|
|
|
|
|
|
|
+ $result = $this->service->updateCdnContainer(
|
|
|
|
|
+ $this->getName(), null, null, false
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
|
|
+ return ($result !== false);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Get the CDN information
|
|
* Get the CDN information
|
|
|
*
|
|
*
|
|
|
- * @return array|boolean
|
|
|
|
|
|
|
+ * @return array|bool
|
|
|
*/
|
|
*/
|
|
|
- public function getCdnInfo()
|
|
|
|
|
|
|
+ public function getCdnInfo()
|
|
|
{
|
|
{
|
|
|
return $this->service->getInfoCdnContainer($this->getName());
|
|
return $this->service->getInfoCdnContainer($this->getName());
|
|
|
}
|
|
}
|