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
<?php
namespace OpenCloud\DNS\Resource;
use OpenCloud\Common\Http\Message\Formatter;
class PtrRecord extends Record
{
public $server;
protected static $json_name = false;
protected static $json_collection_name = 'records';
protected static $url_resource = 'rdns';
private $link_rel;
private $link_href;
public function __construct($service, $info = null)
{
parent::__construct($service, $info);
$this->type = 'PTR';
}
protected function populateRecord(array $params = array())
{
if (!isset($params['parent'])) {
throw new \InvalidArgumentException('You must set a `parent` device');
}
$this->setDeviceParent($params['parent']);
unset($params['parent']);
parent::populate($params);
}
public function setDeviceParent(HasPtrRecordsInterface $parent)
{
$this->server = $parent;
}
public function getDeviceParent()
{
return $this->server;
}
public function create($params = array())
{
$this->populateRecord($params);
$this->link_rel = $this->getDeviceParent()->getService()->getName();
$this->link_href = (string) $this->getDeviceParent()->getUrl();
return parent::create();
}
public function update($params = array())
{
$this->populateRecord($params);
$this->link_rel = $this->getDeviceParent()->getService()->getName();
$this->link_href = (string) $this->getDeviceParent()->getUrl();
return parent::update();
}
public function delete()
{
$this->link_rel = $this->getDeviceParent()->getService()->Name();
$this->link_href = (string) $this->getDeviceParent()->getUrl();
$params = array('href' => $this->link_href);
if (!empty($this->data)) {
$params['ip'] = $this->data;
}
$url = clone $this->getUrl();
$url->addPath('..')
->normalizePath()
->addPath($this->link_rel)
->setQuery($params);
$response = $this->getClient()->delete($url)->send();
return new AsyncResponse($this->getService(), Formatter::decode($response));
}
protected function createJson()
{
return (object) array(
'recordsList' => parent::createJson(),
'link' => array(
'href' => $this->link_href,
'rel' => $this->link_rel
)
);
}
protected function updateJson($params = array())
{
$this->populate($params);
$object = $this->createJson();
$object->recordsList->records[0]->id = $this->id;
return $object;
}
}