Publisher.php in Zircon Profile 8
File
vendor/zendframework/zend-feed/src/PubSubHubbub/Publisher.php
View source
<?php
namespace Zend\Feed\PubSubHubbub;
use Traversable;
use Zend\Feed\Uri;
use Zend\Http\Request as HttpRequest;
use Zend\Stdlib\ArrayUtils;
class Publisher {
protected $hubUrls = [];
protected $updatedTopicUrls = [];
protected $errors = [];
protected $parameters = [];
public function __construct($options = null) {
if ($options !== null) {
$this
->setOptions($options);
}
}
public function setOptions($options) {
if ($options instanceof Traversable) {
$options = ArrayUtils::iteratorToArray($options);
}
if (!is_array($options)) {
throw new Exception\InvalidArgumentException('Array or Traversable object' . 'expected, got ' . gettype($options));
}
if (array_key_exists('hubUrls', $options)) {
$this
->addHubUrls($options['hubUrls']);
}
if (array_key_exists('updatedTopicUrls', $options)) {
$this
->addUpdatedTopicUrls($options['updatedTopicUrls']);
}
if (array_key_exists('parameters', $options)) {
$this
->setParameters($options['parameters']);
}
return $this;
}
public function addHubUrl($url) {
if (empty($url) || !is_string($url) || !Uri::factory($url)
->isValid()) {
throw new Exception\InvalidArgumentException('Invalid parameter "url"' . ' of "' . $url . '" must be a non-empty string and a valid' . 'URL');
}
$this->hubUrls[] = $url;
return $this;
}
public function addHubUrls(array $urls) {
foreach ($urls as $url) {
$this
->addHubUrl($url);
}
return $this;
}
public function removeHubUrl($url) {
if (!in_array($url, $this
->getHubUrls())) {
return $this;
}
$key = array_search($url, $this->hubUrls);
unset($this->hubUrls[$key]);
return $this;
}
public function getHubUrls() {
$this->hubUrls = array_unique($this->hubUrls);
return $this->hubUrls;
}
public function addUpdatedTopicUrl($url) {
if (empty($url) || !is_string($url) || !Uri::factory($url)
->isValid()) {
throw new Exception\InvalidArgumentException('Invalid parameter "url"' . ' of "' . $url . '" must be a non-empty string and a valid' . 'URL');
}
$this->updatedTopicUrls[] = $url;
return $this;
}
public function addUpdatedTopicUrls(array $urls) {
foreach ($urls as $url) {
$this
->addUpdatedTopicUrl($url);
}
return $this;
}
public function removeUpdatedTopicUrl($url) {
if (!in_array($url, $this
->getUpdatedTopicUrls())) {
return $this;
}
$key = array_search($url, $this->updatedTopicUrls);
unset($this->updatedTopicUrls[$key]);
return $this;
}
public function getUpdatedTopicUrls() {
$this->updatedTopicUrls = array_unique($this->updatedTopicUrls);
return $this->updatedTopicUrls;
}
public function notifyHub($url) {
if (empty($url) || !is_string($url) || !Uri::factory($url)
->isValid()) {
throw new Exception\InvalidArgumentException('Invalid parameter "url"' . ' of "' . $url . '" must be a non-empty string and a valid' . 'URL');
}
$client = $this
->_getHttpClient();
$client
->setUri($url);
$response = $client
->getResponse();
if ($response
->getStatusCode() !== 204) {
throw new Exception\RuntimeException('Notification to Hub Server ' . 'at "' . $url . '" appears to have failed with a status code of "' . $response
->getStatusCode() . '" and message "' . $response
->getContent() . '"');
}
}
public function notifyAll() {
$client = $this
->_getHttpClient();
$hubs = $this
->getHubUrls();
if (empty($hubs)) {
throw new Exception\RuntimeException('No Hub Server URLs' . ' have been set so no notifications can be sent');
}
$this->errors = [];
foreach ($hubs as $url) {
$client
->setUri($url);
$response = $client
->getResponse();
if ($response
->getStatusCode() !== 204) {
$this->errors[] = [
'response' => $response,
'hubUrl' => $url,
];
}
}
}
public function setParameter($name, $value = null) {
if (is_array($name)) {
$this
->setParameters($name);
return $this;
}
if (empty($name) || !is_string($name)) {
throw new Exception\InvalidArgumentException('Invalid parameter "name"' . ' of "' . $name . '" must be a non-empty string');
}
if ($value === null) {
$this
->removeParameter($name);
return $this;
}
if (empty($value) || !is_string($value) && $value !== null) {
throw new Exception\InvalidArgumentException('Invalid parameter "value"' . ' of "' . $value . '" must be a non-empty string');
}
$this->parameters[$name] = $value;
return $this;
}
public function setParameters(array $parameters) {
foreach ($parameters as $name => $value) {
$this
->setParameter($name, $value);
}
return $this;
}
public function removeParameter($name) {
if (empty($name) || !is_string($name)) {
throw new Exception\InvalidArgumentException('Invalid parameter "name"' . ' of "' . $name . '" must be a non-empty string');
}
if (array_key_exists($name, $this->parameters)) {
unset($this->parameters[$name]);
}
return $this;
}
public function getParameters() {
return $this->parameters;
}
public function isSuccess() {
return !(count($this->errors) != 0);
}
public function getErrors() {
return $this->errors;
}
protected function _getHttpClient() {
$client = PubSubHubbub::getHttpClient();
$client
->setMethod(HttpRequest::METHOD_POST);
$client
->setOptions([
'useragent' => 'Zend_Feed_Pubsubhubbub_Publisher/' . Version::VERSION,
]);
$params = [];
$params[] = 'hub.mode=publish';
$topics = $this
->getUpdatedTopicUrls();
if (empty($topics)) {
throw new Exception\RuntimeException('No updated topic URLs' . ' have been set');
}
foreach ($topics as $topicUrl) {
$params[] = 'hub.url=' . urlencode($topicUrl);
}
$optParams = $this
->getParameters();
foreach ($optParams as $name => $value) {
$params[] = urlencode($name) . '=' . urlencode($value);
}
$paramString = implode('&', $params);
$client
->setRawBody($paramString);
return $client;
}
}