vendor/shopware/core/System/CustomField/CustomFieldService.php line 68
<?php declare(strict_types=1);
namespace Shopware\Core\System\CustomField;
use Doctrine\DBAL\Connection;
use Shopware\Core\Framework\DataAbstractionLayer\Field\BoolField;
use Shopware\Core\Framework\DataAbstractionLayer\Field\DateTimeField;
use Shopware\Core\Framework\DataAbstractionLayer\Field\Field;
use Shopware\Core\Framework\DataAbstractionLayer\Field\Flag\AllowHtml;
use Shopware\Core\Framework\DataAbstractionLayer\Field\Flag\ApiAware;
use Shopware\Core\Framework\DataAbstractionLayer\Field\FloatField;
use Shopware\Core\Framework\DataAbstractionLayer\Field\IntField;
use Shopware\Core\Framework\DataAbstractionLayer\Field\JsonField;
use Shopware\Core\Framework\DataAbstractionLayer\Field\LongTextField;
use Shopware\Core\Framework\DataAbstractionLayer\Field\PriceField;
use Shopware\Core\Framework\Log\Package;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Contracts\Service\ResetInterface;
/**
* @internal
*/
#[Package('core')]
class CustomFieldService implements EventSubscriberInterface, ResetInterface
{
/**
* @var array<string>|null
*/
private ?array $customFields = null;
/**
* @internal
*/
public function __construct(private readonly Connection $connection)
{
}
public function getCustomField(string $attributeName): ?Field
{
$type = $this->getCustomFields()[$attributeName] ?? null;
if (!$type) {
return null;
}
return match ($type) {
CustomFieldTypes::INT => (new IntField($attributeName, $attributeName))->addFlags(new ApiAware()),
CustomFieldTypes::FLOAT => (new FloatField($attributeName, $attributeName))->addFlags(new ApiAware()),
CustomFieldTypes::BOOL => (new BoolField($attributeName, $attributeName))->addFlags(new ApiAware()),
CustomFieldTypes::DATETIME => (new DateTimeField($attributeName, $attributeName))->addFlags(new ApiAware()),
CustomFieldTypes::TEXT => (new LongTextField($attributeName, $attributeName))->addFlags(new ApiAware()),
CustomFieldTypes::HTML => (new LongTextField($attributeName, $attributeName))->addFlags(new ApiAware(), new AllowHtml()),
CustomFieldTypes::PRICE => (new PriceField($attributeName, $attributeName))->addFlags(new ApiAware()),
default => (new JsonField($attributeName, $attributeName))->addFlags(new ApiAware()),
};
}
/**
* @return array<string, string>
*/
public static function getSubscribedEvents(): array
{
return [
CustomFieldEvents::CUSTOM_FIELD_DELETED_EVENT => 'reset',
CustomFieldEvents::CUSTOM_FIELD_WRITTEN_EVENT => 'reset',
];
}
public function reset(): void
{
$this->customFields = null;
}
/**
* @return array<string>
*/
private function getCustomFields(): array
{
if ($this->customFields !== null) {
return $this->customFields;
}
$this->customFields = $this->connection->fetchAllKeyValue('SELECT `name`, `type` FROM `custom_field` WHERE `active` = 1');
return $this->customFields;
}
}