imatic / data-bundle
Bundle to work with data
Installs: 5 907
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 5
Forks: 0
Open Issues: 1
Type:symfony-bundle
Requires
- php: ^7.4 || ^8.0
- ext-json: *
- doctrine/dbal: ^3.0
- doctrine/doctrine-bundle: ^2.0
- symfony/framework-bundle: ^4.4 || ^5.4 || ^6.2
Requires (Dev)
- doctrine/doctrine-fixtures-bundle: ^3.0
- doctrine/orm: ^2.15
- friendsofphp/php-cs-fixer: ^3.2.1
- imatic/form-bundle: ^5.0.0
- imatic/testing: ^6.0.0
- mikey179/vfsstream: ^1.4
- phpstan/phpstan: ^1.8
- symfony/browser-kit: ^4.4 || ^5.0 || ^6.2
- symfony/phpunit-bridge: ^4.4 || ^5.0 || ^6.2
- symfony/security-bundle: ^4.4 || ^5.0 || ^6.2
- symfony/yaml: ^4.4 || ^5.0 || ^6.2
Suggests
- dev-master
- v6.2.1
- v6.2.0
- v6.1.5
- v6.1.4
- v6.1.3
- v6.1.2
- v6.1.1
- v6.1.0
- v6.0.4
- v6.0.3
- v6.0.2
- v6.0.1
- v6.0.0
- v5.x-dev
- v5.1.2
- v5.1.1
- v5.1.0
- v5.0.3
- v5.0.2
- v5.0.1
- v5.0.0
- 5.0.0-alpha.2
- 5.0.0-alpha
- v4.x-dev
- v4.2.1
- v4.2.0
- v4.1.2
- v4.1.1
- v4.1.0
- v4.0.1
- v4.0.0
- v3.1.0
- v3.0.12
- v3.0.11
- v3.0.10
- v3.0.9
- v3.0.8
- v3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.1
- 3.0
- 2.x-dev
- 2.9.2
- 2.9.1
- 2.9.0
- 2.8.9
- 2.8.8
- 2.8.7
- 2.8.6
- 2.8.5
- 2.8.4
- 2.8.3
- 2.8.2
- 2.8.1
- 2.8.0
- 2.6.4
- 2.6.3
- 2.6.2
- 2.6.1
- 2.6.0
- 2.4.3
- 2.4.2
- 2.4.1
- 2.4.0
- 1.9.2
- dev-dependabot/composer/symfony/security-http-6.4.15
- dev-dbal3
- dev-dependent_filters
- dev-upgrade
This package is auto-updated.
Last update: 2025-03-16 09:28:17 UTC
README
ImaticDataBundle
This bundle makes it easy to work with data.
Main goals of the bundle
- Accessing data in uniform way (no matter where they are stored) and possibility to have filtering, sorting, paging capabilities with small effort.
- Executing arbitrary operations (activating users, making orders in eshop...) in uniform way (no matter if the operation was executed by user from a browser, via some message queues, console or something else).
Accessing data in uniform way
This bundle uses query objects to retrieve/store data from arbitrary storage. Currently, we have drivers for doctrine dbal and doctrine orm. Other drivers can be relatively easily implemented.
All query objects have to implement QueryObjectInterface
of specific driver in order to query data.
Example of querying active users using doctrine orm driver
First we need to create query of active users.
<?php use Doctrine\ORM\EntityManager; use Doctrine\ORM\QueryBuilder; use Imatic\Bundle\DataBundle\Data\Driver\DoctrineORM\QueryObjectInterface; class ActiveUsersQuery implements QueryObjectInterface { public function build(EntityManager $em): QueryBuilder { return $em->getRepository(User::class)->createQueryBuilder('u') ->select('u') ->where('u.active = :active') ->setParameter('active', true); } }
Now we can execute the query using query executor.
<?php $queryExecutor = $container->get('Imatic\Bundle\DataBundle\Data\Driver\DoctrineORM\QueryExecutor'); /** @var User[] */ $activeUsers = $queryExecutor->execute(new ActiveUsersQuery());
Variable $activeUsers
now contains objects of active users.
To learn more about query objects (how to do filtering, sorting, pagination, etc.) see query object documentation.
Executing operations
This bundle uses commands to execute operations. Command instance is passed to a command executor, which calls command handler to do the actual work.
Example of exporting all active users using command
First we need to create command handler, which will export all active users in passed format (note that used class
UserExporter
does not exist and its responsibility is to export passed users in given format).
<?php use Imatic\Bundle\DataBundle\Data\Command\CommandInterface; use Imatic\Bundle\DataBundle\Data\Command\HandlerInterface; ExportActiveUsersHandler implements HandlerInterface { private $userExporter; private $queryExecutor; public __construct(UserExporter $userExporter, QueryExecutor $queryExecutor) { $this->userExporter = $userExporter; $this->queryExecutor = $queryExecutor; } public function handle(CommandInterface $command) { $exportFormat = $command->getParameter('format'); $activeUsers = $this->queryExecutor->execute(new ActiveUsersQuery()); $this->userExporter->export($activeUsers, $exportFormat); } }
Then we need to register the handler in the container.
services: ExportActiveUsersHandler: arguments: - '@app.user_exporter' - '@Imatic\Bundle\DataBundle\Data\Driver\DoctrineORM\QueryExecutor' tags: - { name: 'imatic_data.handler' }
Then we can run the command via command executor. First argument of the command is handler alias (specified when registering handler in the container), second argument is optional and specifies options passed to the handler).
<?php use Imatic\Bundle\DataBundle\Data\Command\Command; $commandExecutor = $container->get('Imatic\Bundle\DataBundle\Data\Command\CommandExecutor'); $commandExecutor->execute(new Command('export_active_users', ['format' => 'json']));
To learn more about commands, see command documentation.
Further reading
Visit our documentation to learn about all features of this bundle.