Hi,
In some case an entity can have a property of type array, and we should want to store it in Elasticsearch as nested or object depending the kind of search we want.
But, if we configure the bundle to store the property as type: nested for example we have an error because the Transformer do not handle the case of a non-object.
Actually I've a workarround:
<?php
declare(strict_types=1);
namespace App\SearchRepository\Transformer;
use FOS\ElasticaBundle\Transformer\ModelToElasticaAutoTransformer;
use Symfony\Component\DependencyInjection\Attribute\Autoconfigure;
#[Autoconfigure(
calls: [
['setPropertyAccessor' => ['@fos_elastica.property_accessor']],
]
)]
class NestedArrayModelToElasticaAutoTransformer extends ModelToElasticaAutoTransformer
{
protected function transformNested($objects, array $fields): ?array
{
if (is_iterable($objects)) {
foreach ($objects as &$object) {
$object = \is_array($object) ? (object) $object : $object;
}
} elseif (null !== $objects) {
$objects = \is_array($objects) ? (object) $objects : $objects;
}
return parent::transformNested($objects, $fields);
}
}
In the config, I just set:
model_to_elastica_transformer:
service: App\SearchRepository\Transformer\NestedArrayModelToElasticaAutoTransformer
Do you think, it will be accepted to do a change in the original transformer ?
The main document should be an object, but all fields and subfields should be what we want, I don't know if the best way is:
- keep this workarround directly in the Transformer (pro: do not redesign all, cons: this is a little weird)
- do a redefine the functions type hints to handle object or array ? (pro: better design, cons: update the transformer design for a edge-case)
Hi,
In some case an entity can have a property of type array, and we should want to store it in Elasticsearch as nested or object depending the kind of search we want.
But, if we configure the bundle to store the property as
type: nestedfor example we have an error because the Transformer do not handle the case of a non-object.Actually I've a workarround:
In the config, I just set:
Do you think, it will be accepted to do a change in the original transformer ?
The main document should be an object, but all fields and subfields should be what we want, I don't know if the best way is: