Spaces:
No application file
No application file
File size: 2,228 Bytes
d2897cd |
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 |
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Helper;
use Mautic\IntegrationsBundle\Exception\IntegrationNotFoundException;
use Mautic\IntegrationsBundle\Integration\Interfaces\BuilderInterface;
use Mautic\PluginBundle\Entity\Integration;
class BuilderIntegrationsHelper
{
/**
* @var BuilderInterface[]
*/
private array $builders = [];
public function __construct(
private IntegrationsHelper $integrationsHelper
) {
}
/**
* Returns the first enabled builder that supports the given feature.
*
* @throws IntegrationNotFoundException
*/
public function getBuilder(string $feature): BuilderInterface
{
foreach ($this->builders as $builder) {
// Ensure the configuration is hydrated
$this->integrationsHelper->getIntegrationConfiguration($builder);
if ($builder->isSupported($feature) && $builder->getIntegrationConfiguration()->getIsPublished()) {
return $builder;
}
}
throw new IntegrationNotFoundException();
}
public function getBuilderNames(): array
{
$names = [];
foreach ($this->builders as $builder) {
$names[$builder->getName()] = $builder->getDisplayName();
}
return $names;
}
public function addIntegration(BuilderInterface $integration): void
{
$this->builders[$integration->getName()] = $integration;
}
/**
* @throws IntegrationNotFoundException
*/
public function getIntegration(string $integration): BuilderInterface
{
if (!isset($this->builders[$integration])) {
throw new IntegrationNotFoundException("$integration either doesn't exist or has not been tagged with mautic.builder_integration");
}
// Ensure the configuration is hydrated
$this->integrationsHelper->getIntegrationConfiguration($this->builders[$integration]);
return $this->builders[$integration];
}
public function saveIntegrationConfiguration(Integration $integrationConfiguration): void
{
$this->integrationsHelper->saveIntegrationConfiguration($integrationConfiguration);
}
}
|