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
|
<?php
/**
* PHP OpenCloud library.
*
* @copyright Copyright 2014 Rackspace US, Inc. See COPYING for licensing information.
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache 2.0
* @version 1.6.0
* @author Glen Campbell <glen.campbell@rackspace.com>
* @author Jamie Hannaford <jamie.hannaford@rackspace.com>
*/
namespace OpenCloud\LoadBalancer\Resource;
use Guzzle\Http\Exception\ClientErrorResponseException;
use OpenCloud\Common\PersistentObject;
use OpenCloud\Common\Lang;
/**
* SubResource is an abstract class that handles subresources of a
* LoadBalancer object; for example, the
* `/loadbalancers/{id}/errorpage`. Since most of the subresources are
* handled in a similar manner, this consolidates the functions.
*
* There are really four pieces of data that define a subresource:
* * `$url_resource` - the actual name of the url component
* * `$json_name` - the name of the JSON object holding the data
* * `$json_collection_name` - if the collection is not simply
* `$json_name . 's'`, this defines the collectio name.
* * `$json_collection_element` - if the object in a collection is not
* anonymous, this defines the name of the element holding the object.
* Of these, only the `$json_name` and `$url_resource` are required.
*/
abstract class SubResource extends PersistentObject
{
/**
* This method needs attention.
*
* @codeCoverageIgnore
*/
public function initialRefresh()
{
if (isset($this->id)) {
$this->refresh();
} else {
$entity = (method_exists($this->getParent(), 'url')) ? $this->getParent() : $this->getService();
$this->refresh(null, $entity->url($this->resourceName()));
}
}
/**
* returns the JSON document's object for creating the subresource
*
* The value `$_create_keys` should be an array of names of data items
* that can be used in the creation of the object.
*
* @return \stdClass;
*/
protected function createJson()
{
$object = new \stdClass;
foreach ($this->createKeys as $item) {
$object->$item = $this->$item;
}
if ($top = $this->jsonName()) {
$object = (object) array($top => $object);
}
return $object;
}
/**
* returns the JSON for the update (same as create)
*
* For these subresources, the update JSON is the same as the Create JSON
* @return \stdClass
*/
protected function updateJson($params = array())
{
return $this->createJson();
}
/**
* returns a (default) name of the object
*
* The name is constructed by the object class and the object's ID.
*
* @api
* @return string
*/
public function name()
{
$classArray = explode('\\', get_class($this));
return method_exists($this->getParent(), 'id')
? sprintf('%s-%s', end($classArray), $this->getParent()->id())
: parent::name();
}
public function refresh($id = null, $url = null)
{
try {
return parent::refresh($id, $url);
} catch (ClientErrorResponseException $e) {
return false;
}
}
}
|