68 lines
2.7 KiB
PHP
68 lines
2.7 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace DigiComp\HetznerDnsApi\Endpoint;
|
||
|
|
||
|
class BulkCreateRecords extends \DigiComp\HetznerDnsApi\Runtime\Client\BaseEndpoint implements \DigiComp\HetznerDnsApi\Runtime\Client\Endpoint
|
||
|
{
|
||
|
/**
|
||
|
* Create several records at once.
|
||
|
*
|
||
|
* @param null|\DigiComp\HetznerDnsApi\Model\RecordsBulkPostBody $requestBody
|
||
|
*/
|
||
|
public function __construct(?\DigiComp\HetznerDnsApi\Model\RecordsBulkPostBody $requestBody = null)
|
||
|
{
|
||
|
$this->body = $requestBody;
|
||
|
}
|
||
|
use \DigiComp\HetznerDnsApi\Runtime\Client\EndpointTrait;
|
||
|
public function getMethod() : string
|
||
|
{
|
||
|
return 'POST';
|
||
|
}
|
||
|
public function getUri() : string
|
||
|
{
|
||
|
return '/records/bulk';
|
||
|
}
|
||
|
public function getBody(\Symfony\Component\Serializer\SerializerInterface $serializer, $streamFactory = null) : array
|
||
|
{
|
||
|
if ($this->body instanceof \DigiComp\HetznerDnsApi\Model\RecordsBulkPostBody) {
|
||
|
return array(array('Content-Type' => array('application/json')), $serializer->serialize($this->body, 'json'));
|
||
|
}
|
||
|
return array(array(), null);
|
||
|
}
|
||
|
public function getExtraHeaders() : array
|
||
|
{
|
||
|
return array('Accept' => array('application/json'));
|
||
|
}
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*
|
||
|
* @throws \DigiComp\HetznerDnsApi\Exception\BulkCreateRecordsUnauthorizedException
|
||
|
* @throws \DigiComp\HetznerDnsApi\Exception\BulkCreateRecordsForbiddenException
|
||
|
* @throws \DigiComp\HetznerDnsApi\Exception\BulkCreateRecordsNotAcceptableException
|
||
|
* @throws \DigiComp\HetznerDnsApi\Exception\BulkCreateRecordsUnprocessableEntityException
|
||
|
*
|
||
|
* @return null|\DigiComp\HetznerDnsApi\Model\RecordsBulkPostResponse200
|
||
|
*/
|
||
|
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer, ?string $contentType = null)
|
||
|
{
|
||
|
if (is_null($contentType) === false && (200 === $status && mb_strpos($contentType, 'application/json') !== false)) {
|
||
|
return $serializer->deserialize($body, 'DigiComp\\HetznerDnsApi\\Model\\RecordsBulkPostResponse200', 'json');
|
||
|
}
|
||
|
if (401 === $status) {
|
||
|
throw new \DigiComp\HetznerDnsApi\Exception\BulkCreateRecordsUnauthorizedException();
|
||
|
}
|
||
|
if (403 === $status) {
|
||
|
throw new \DigiComp\HetznerDnsApi\Exception\BulkCreateRecordsForbiddenException();
|
||
|
}
|
||
|
if (406 === $status) {
|
||
|
throw new \DigiComp\HetznerDnsApi\Exception\BulkCreateRecordsNotAcceptableException();
|
||
|
}
|
||
|
if (422 === $status) {
|
||
|
throw new \DigiComp\HetznerDnsApi\Exception\BulkCreateRecordsUnprocessableEntityException();
|
||
|
}
|
||
|
}
|
||
|
public function getAuthenticationScopes() : array
|
||
|
{
|
||
|
return array('Auth-API-Token');
|
||
|
}
|
||
|
}
|