mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-11 20:13:28 +00:00
80 lines
2.0 KiB
PHP
80 lines
2.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2014 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Alchemy\Phrasea\Feed\Link;
|
|
|
|
use Alchemy\Phrasea\Feed\FeedInterface;
|
|
use Alchemy\Phrasea\Exception\InvalidArgumentException;
|
|
use Alchemy\Phrasea\Model\Entities\User;
|
|
|
|
class LinkGeneratorCollection implements LinkGeneratorInterface
|
|
{
|
|
/** @var LinkGeneratorInterface[] */
|
|
private $generators = [];
|
|
|
|
/**
|
|
* Adds a LinkGeneratorInterface to the internal array.
|
|
*
|
|
* @param LinkGeneratorInterface $generator
|
|
*/
|
|
public function pushGenerator(LinkGeneratorInterface $generator)
|
|
{
|
|
$this->generators[] = $generator;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function generate(FeedInterface $feed, User $user, $format, $page = null, $renew = false)
|
|
{
|
|
if (null === $generator = $this->findGenerator($feed)) {
|
|
throw new InvalidArgumentException(sprintf('Unable to find a valid generator for %s', get_class($feed)));
|
|
}
|
|
|
|
return $generator->generate($feed, $user, $format, $page);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function generatePublic(FeedInterface $feed, $format, $page = null)
|
|
{
|
|
if (null === $generator = $this->findGenerator($feed)) {
|
|
throw new InvalidArgumentException(sprintf('Unable to find a valid generator for %s', get_class($feed)));
|
|
}
|
|
|
|
return $generator->generatePublic($feed, $format, $page);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function supports(FeedInterface $feed)
|
|
{
|
|
return null !== $this->findGenerator($feed);
|
|
}
|
|
|
|
/**
|
|
* @param FeedInterface $feed
|
|
* @return LinkGeneratorInterface|null
|
|
*/
|
|
private function findGenerator(FeedInterface $feed)
|
|
{
|
|
foreach ($this->generators as $generator) {
|
|
if ($generator->supports($feed)) {
|
|
return $generator;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|