Merge branch 'chill-main-update-repositores-and-entities' into 'master'

Chill main update repositores and entities

See merge request Chill-Projet/chill-bundles!82
This commit is contained in:
Pol Dellaiera 2021-06-15 14:24:04 +00:00
commit ce88fe158f
39 changed files with 696 additions and 409 deletions

View File

@ -115,7 +115,6 @@ class ChillMainExtension extends Extension implements PrependExtensionInterface,
$loader->load('services.yaml'); $loader->load('services.yaml');
$loader->load('services/doctrine.yaml'); $loader->load('services/doctrine.yaml');
$loader->load('services/logger.yaml'); $loader->load('services/logger.yaml');
$loader->load('services/repositories.yaml');
$loader->load('services/pagination.yaml'); $loader->load('services/pagination.yaml');
$loader->load('services/export.yaml'); $loader->load('services/export.yaml');
$loader->load('services/form.yaml'); $loader->load('services/form.yaml');

View File

@ -11,7 +11,7 @@ use Chill\ThirdPartyBundle\Entity\ThirdParty;
/** /**
* Address * Address
* *
* @ORM\Entity() * @ORM\Entity
* @ORM\Table(name="chill_main_address") * @ORM\Table(name="chill_main_address")
* @ORM\HasLifecycleCallbacks() * @ORM\HasLifecycleCallbacks()
*/ */

View File

@ -7,7 +7,7 @@ use Chill\MainBundle\Doctrine\Model\Point;
use Symfony\Component\Serializer\Annotation\Groups; use Symfony\Component\Serializer\Annotation\Groups;
/** /**
* @ORM\Entity() * @ORM\Entity
* @ORM\Table(name="chill_main_address_reference") * @ORM\Table(name="chill_main_address_reference")
* @ORM\HasLifecycleCallbacks() * @ORM\HasLifecycleCallbacks()
*/ */

View File

@ -25,7 +25,7 @@ use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection; use Doctrine\Common\Collections\Collection;
/** /**
* @ORM\Entity(repositoryClass="Chill\MainBundle\Repository\CenterRepository") * @ORM\Entity
* @ORM\Table(name="centers") * @ORM\Table(name="centers")
* *
* @author Julien Fastré <julien.fastre@champs-libres.coop> * @author Julien Fastré <julien.fastre@champs-libres.coop>

View File

@ -8,7 +8,7 @@ use Symfony\Component\Serializer\Annotation\Groups;
/** /**
* Country * Country
* *
* @ORM\Entity() * @ORM\Entity
* @ORM\Table(name="country") * @ORM\Table(name="country")
* @ORM\Cache(usage="READ_ONLY", region="country_cache_region") * @ORM\Cache(usage="READ_ONLY", region="country_cache_region")
* @ORM\HasLifecycleCallbacks() * @ORM\HasLifecycleCallbacks()

View File

@ -27,7 +27,7 @@ use Doctrine\Common\Collections\Collection;
use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\ArrayCollection;
/** /**
* @ORM\Entity() * @ORM\Entity
* @ORM\Table(name="group_centers") * @ORM\Table(name="group_centers")
* @ORM\Cache(usage="NONSTRICT_READ_WRITE", region="acl_cache_region") * @ORM\Cache(usage="NONSTRICT_READ_WRITE", region="acl_cache_region")
* *

View File

@ -25,7 +25,7 @@ use Doctrine\ORM\Mapping as ORM;
/** /**
* Language * Language
* *
* @ORM\Entity() * @ORM\Entity
* @ORM\Table(name="language") * @ORM\Table(name="language")
* @ORM\Cache(usage="READ_ONLY", region="language_cache_region") * @ORM\Cache(usage="READ_ONLY", region="language_cache_region")
* @ORM\HasLifecycleCallbacks() * @ORM\HasLifecycleCallbacks()

View File

@ -27,7 +27,7 @@ use Chill\MainBundle\Entity\RoleScope;
use Symfony\Component\Validator\Context\ExecutionContextInterface; use Symfony\Component\Validator\Context\ExecutionContextInterface;
/** /**
* @ORM\Entity() * @ORM\Entity
* @ORM\Table(name="permission_groups") * @ORM\Table(name="permission_groups")
* @ORM\Cache(usage="NONSTRICT_READ_WRITE", region="acl_cache_region") * @ORM\Cache(usage="NONSTRICT_READ_WRITE", region="acl_cache_region")
* *

View File

@ -8,7 +8,7 @@ use Symfony\Component\Serializer\Annotation\Groups;
/** /**
* PostalCode * PostalCode
* *
* @ORM\Entity(repositoryClass="Chill\MainBundle\Repository\PostalCodeRepository") * @ORM\Entity
* @ORM\Table( * @ORM\Table(
* name="chill_main_postal_code", * name="chill_main_postal_code",
* indexes={@ORM\Index( * indexes={@ORM\Index(

View File

@ -25,7 +25,7 @@ use Doctrine\Common\Collections\Collection;
use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\ArrayCollection;
/** /**
* @ORM\Entity() * @ORM\Entity
* @ORM\Table(name="role_scopes") * @ORM\Table(name="role_scopes")
* @ORM\Cache(usage="NONSTRICT_READ_WRITE", region="acl_cache_region") * @ORM\Cache(usage="NONSTRICT_READ_WRITE", region="acl_cache_region")
* *

View File

@ -28,7 +28,7 @@ use Symfony\Component\Serializer\Annotation\Groups;
use Symfony\Component\Serializer\Annotation\DiscriminatorMap; use Symfony\Component\Serializer\Annotation\DiscriminatorMap;
/** /**
* @ORM\Entity() * @ORM\Entity
* @ORM\Table(name="scopes") * @ORM\Table(name="scopes")
* @ORM\Cache(usage="NONSTRICT_READ_WRITE", region="acl_cache_region") * @ORM\Cache(usage="NONSTRICT_READ_WRITE", region="acl_cache_region")
* @DiscriminatorMap(typeProperty="type", mapping={ * @DiscriminatorMap(typeProperty="type", mapping={

View File

@ -12,7 +12,7 @@ use Symfony\Component\Serializer\Annotation\DiscriminatorMap;
/** /**
* User * User
* *
* @ORM\Entity(repositoryClass="Chill\MainBundle\Repository\UserRepository") * @ORM\Entity
* @ORM\Table(name="users") * @ORM\Table(name="users")
* @ORM\Cache(usage="NONSTRICT_READ_WRITE", region="acl_cache_region") * @ORM\Cache(usage="NONSTRICT_READ_WRITE", region="acl_cache_region")
* @DiscriminatorMap(typeProperty="type", mapping={ * @DiscriminatorMap(typeProperty="type", mapping={

View File

@ -19,26 +19,18 @@
namespace Chill\MainBundle\Form\Type\DataTransformer; namespace Chill\MainBundle\Form\Type\DataTransformer;
use Chill\MainBundle\Entity\Center;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Component\Form\DataTransformerInterface; use Symfony\Component\Form\DataTransformerInterface;
use Doctrine\Persistence\ObjectManager;
use Symfony\Component\Form\Exception\TransformationFailedException; use Symfony\Component\Form\Exception\TransformationFailedException;
/**
* Transform a center object to his id, and vice-versa
*
* @author Julien Fastré <julien.fastre@champs-libres.coop>
*/
class CenterTransformer implements DataTransformerInterface class CenterTransformer implements DataTransformerInterface
{ {
/** private EntityManagerInterface $em;
*
* @var ObjectManager public function __construct(EntityManagerInterface $em)
*/
private $om;
public function __construct(ObjectManager $om)
{ {
$this->om = $om; $this->em = $em;
} }
public function reverseTransform($id) public function reverseTransform($id)
@ -46,15 +38,17 @@ class CenterTransformer implements DataTransformerInterface
if ($id === NULL) { if ($id === NULL) {
return NULL; return NULL;
} }
$center = $this->om->getRepository('ChillMainBundle:Center') $center = $this
->find($id); ->em
->getRepository(Center::class)
->find($id);
if ($center === NULL) { if ($center === NULL) {
throw new TransformationFailedException(sprintf( throw new TransformationFailedException(sprintf(
'No center found with id %d', $id)); 'No center found with id %d', $id));
} }
return $center; return $center;
} }
@ -63,7 +57,7 @@ class CenterTransformer implements DataTransformerInterface
if ($center === NULL) { if ($center === NULL) {
return ''; return '';
} }
return $center->getId(); return $center->getId();
} }

View File

@ -24,28 +24,20 @@ use Symfony\Component\Form\DataTransformerInterface;
use Symfony\Component\Form\Exception\TransformationFailedException; use Symfony\Component\Form\Exception\TransformationFailedException;
use Doctrine\Persistence\ObjectManager; use Doctrine\Persistence\ObjectManager;
use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\EntityManagerInterface;
class MultipleObjectsToIdTransformer implements DataTransformerInterface class MultipleObjectsToIdTransformer implements DataTransformerInterface
{ {
/** private EntityManagerInterface $em;
* @var ObjectManager
*/ private ?string $class;
private $em;
public function __construct(EntityManagerInterface $em, ?string $class = null)
/**
* @var string
*/
private $class;
/**
* @param ObjectManager $em
*/
public function __construct(ObjectManager $em, $class)
{ {
$this->em = $em; $this->em = $em;
$this->class = $class; $this->class = $class;
} }
/** /**
* Transforms an object (use) to a string (id). * Transforms an object (use) to a string (id).
* *

View File

@ -20,28 +20,20 @@
namespace Chill\MainBundle\Form\Type\DataTransformer; namespace Chill\MainBundle\Form\Type\DataTransformer;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Component\Form\DataTransformerInterface; use Symfony\Component\Form\DataTransformerInterface;
use Symfony\Component\Form\Exception\TransformationFailedException; use Symfony\Component\Form\Exception\TransformationFailedException;
use Doctrine\Persistence\ObjectManager; use Doctrine\Persistence\ObjectManager;
class ObjectToIdTransformer implements DataTransformerInterface class ObjectToIdTransformer implements DataTransformerInterface
{ {
/** private EntityManagerInterface $em;
* @var ObjectManager
*/
private $om;
/** private ?string $class;
* @var string
*/
private $class;
/** public function __construct(EntityManagerInterface $em, ?string $class = null)
* @param ObjectManager $om
*/
public function __construct(ObjectManager $om, $class)
{ {
$this->om = $om; $this->em = $em;
$this->class = $class; $this->class = $class;
} }
@ -73,7 +65,7 @@ class ObjectToIdTransformer implements DataTransformerInterface
return null; return null;
} }
$object = $this->om $object = $this->em
->getRepository($this->class) ->getRepository($this->class)
->find($id) ->find($id)
; ;

View File

@ -19,41 +19,28 @@
namespace Chill\MainBundle\Form\Type\DataTransformer; namespace Chill\MainBundle\Form\Type\DataTransformer;
use Chill\MainBundle\Entity\Scope;
use Symfony\Component\Form\DataTransformerInterface; use Symfony\Component\Form\DataTransformerInterface;
use Doctrine\Persistence\ObjectManager; use Doctrine\Persistence\ObjectManager;
use Symfony\Component\Form\Exception\TransformationFailedException; use Symfony\Component\Form\Exception\TransformationFailedException;
use Chill\MainBundle\Templating\TranslatableStringHelper; use Chill\MainBundle\Templating\TranslatableStringHelper;
use Doctrine\ORM\EntityManagerInterface;
/**
*
*
* @author Julien Fastré <julien.fastre@champs-libres.coop>
*/
class ScopeTransformer implements DataTransformerInterface class ScopeTransformer implements DataTransformerInterface
{ {
/** private EntityManagerInterface $em;
*
* @var ObjectManager public function __construct(EntityManagerInterface $em)
*/
protected $om;
/**
*
* @var TranslatableStringHelper
*/
protected $helper;
public function __construct(ObjectManager $om)
{ {
$this->om = $om; $this->em = $em;
} }
public function transform($scope) public function transform($scope)
{ {
if ($scope === NULL) { if ($scope === NULL) {
return NULL; return NULL;
} }
return $scope->getId(); return $scope->getId();
} }
@ -62,15 +49,17 @@ class ScopeTransformer implements DataTransformerInterface
if ($id == NULL) { if ($id == NULL) {
return NULL; return NULL;
} }
$scope = $this->om->getRepository('ChillMainBundle:Scope') $scope = $this
->find($id); ->em
->getRepository(Scope::class)
->find($id);
if ($scope === NULL) { if ($scope === NULL) {
throw new TransformationFailedException(sprintf("The scope with id " throw new TransformationFailedException(sprintf("The scope with id "
. "'%d' were not found", $id)); . "'%d' were not found", $id));
} }
return $scope; return $scope;
} }

View File

@ -22,6 +22,7 @@ use Chill\MainBundle\Entity\Center;
use Chill\MainBundle\Entity\Scope; use Chill\MainBundle\Entity\Scope;
use Chill\MainBundle\Entity\User; use Chill\MainBundle\Entity\User;
use Chill\MainBundle\Form\DataMapper\ScopePickerDataMapper; use Chill\MainBundle\Form\DataMapper\ScopePickerDataMapper;
use Chill\MainBundle\Repository\ScopeRepository;
use Chill\MainBundle\Security\Authorization\AuthorizationHelper; use Chill\MainBundle\Security\Authorization\AuthorizationHelper;
use Chill\MainBundle\Templating\TranslatableStringHelper; use Chill\MainBundle\Templating\TranslatableStringHelper;
use Doctrine\ORM\EntityRepository; use Doctrine\ORM\EntityRepository;
@ -60,7 +61,7 @@ class ScopePickerType extends AbstractType
protected $tokenStorage; protected $tokenStorage;
/** /**
* @var EntityRepository * @var ScopeRepository
*/ */
protected $scopeRepository; protected $scopeRepository;
@ -72,7 +73,7 @@ class ScopePickerType extends AbstractType
public function __construct( public function __construct(
AuthorizationHelper $authorizationHelper, AuthorizationHelper $authorizationHelper,
TokenStorageInterface $tokenStorage, TokenStorageInterface $tokenStorage,
EntityRepository $scopeRepository, ScopeRepository $scopeRepository,
TranslatableStringHelper $translatableStringHelper TranslatableStringHelper $translatableStringHelper
) { ) {
$this->authorizationHelper = $authorizationHelper; $this->authorizationHelper = $authorizationHelper;

View File

@ -25,6 +25,7 @@ use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface; use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
use Symfony\Bridge\Doctrine\Form\Type\EntityType; use Symfony\Bridge\Doctrine\Form\Type\EntityType;
use Chill\MainBundle\Entity\User; use Chill\MainBundle\Entity\User;
use Chill\MainBundle\Repository\UserRepository;
use Symfony\Component\Security\Core\Role\RoleHierarchyInterface; use Symfony\Component\Security\Core\Role\RoleHierarchyInterface;
use Symfony\Component\Security\Core\Role\Role; use Symfony\Component\Security\Core\Role\Role;
@ -53,16 +54,12 @@ class UserPickerType extends AbstractType
*/ */
protected $tokenStorage; protected $tokenStorage;
/** protected UserRepository $userRepository;
*
* @var \Chill\MainBundle\Repository\UserRepository
*/
protected $userRepository;
public function __construct( public function __construct(
AuthorizationHelper $authorizationHelper, AuthorizationHelper $authorizationHelper,
TokenStorageInterface $tokenStorage, TokenStorageInterface $tokenStorage,
EntityRepository $userRepository UserRepository $userRepository
) { ) {
$this->authorizationHelper = $authorizationHelper; $this->authorizationHelper = $authorizationHelper;
$this->tokenStorage = $tokenStorage; $this->tokenStorage = $tokenStorage;

View File

@ -1,50 +1,50 @@
<?php <?php
declare(strict_types=1);
namespace Chill\MainBundle\Repository; namespace Chill\MainBundle\Repository;
use Chill\MainBundle\Entity\AddressReference; use Chill\MainBundle\Entity\AddressReference;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Doctrine\ORM\EntityManagerInterface;
use Doctrine\Persistence\ManagerRegistry; use Doctrine\ORM\EntityRepository;
use Doctrine\Persistence\ObjectRepository;
/** final class AddressReferenceRepository implements ObjectRepository
* @method AddressReference|null find($id, $lockMode = null, $lockVersion = null)
* @method AddressReference|null findOneBy(array $criteria, array $orderBy = null)
* @method AddressReference[] findAll()
* @method AddressReference[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class AddressReferenceRepository extends ServiceEntityRepository
{ {
public function __construct(ManagerRegistry $registry) private EntityRepository $repository;
public function __construct(EntityManagerInterface $entityManager)
{ {
parent::__construct($registry, AddressReference::class); $this->repository = $entityManager->getRepository(AddressReference::class);
} }
// /** public function find($id, $lockMode = null, $lockVersion = null): ?AddressReference
// * @return AddressReference[] Returns an array of AddressReference objects
// */
/*
public function findByExampleField($value)
{ {
return $this->createQueryBuilder('a') return $this->repository->find($id, $lockMode, $lockVersion);
->andWhere('a.exampleField = :val')
->setParameter('val', $value)
->orderBy('a.id', 'ASC')
->setMaxResults(10)
->getQuery()
->getResult()
;
} }
*/
/* public function findOneBy(array $criteria, array $orderBy = null): ?AddressReference
public function findOneBySomeField($value): ?AddressReference
{ {
return $this->createQueryBuilder('a') return $this->repository->findOneBy($criteria, $orderBy);
->andWhere('a.exampleField = :val') }
->setParameter('val', $value)
->getQuery() /**
->getOneOrNullResult() * @return AddressReference[]
; */
public function findAll(): array
{
return $this->repository->findAll();
}
/**
* @return AddressReference[]
*/
public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null): array
{
return $this->repository->findBy($criteria, $orderBy, $limit, $offset);
}
public function getClassName() {
return AddressReference::class;
} }
*/
} }

View File

@ -0,0 +1,50 @@
<?php
declare(strict_types=1);
namespace Chill\MainBundle\Repository;
use Chill\MainBundle\Entity\Address;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\EntityRepository;
use Doctrine\Persistence\ObjectRepository;
final class AddressRepository implements ObjectRepository
{
private EntityRepository $repository;
public function __construct(EntityManagerInterface $entityManager)
{
$this->repository = $entityManager->getRepository(Address::class);
}
public function find($id, $lockMode = null, $lockVersion = null): ?Address
{
return $this->repository->find($id, $lockMode, $lockVersion);
}
public function findOneBy(array $criteria, array $orderBy = null): ?Address
{
return $this->repository->findOneBy($criteria, $orderBy);
}
/**
* @return Address[]
*/
public function findAll(): array
{
return $this->repository->findAll();
}
/**
* @return Address[]
*/
public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null): array
{
return $this->repository->findBy($criteria, $orderBy, $limit, $offset);
}
public function getClassName() {
return Address::class;
}
}

View File

@ -1,27 +1,50 @@
<?php <?php
/*
* Copyright (C) 2018 Champs-Libres <info@champs-libres.coop> declare(strict_types=1);
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Chill\MainBundle\Repository; namespace Chill\MainBundle\Repository;
/** use Chill\MainBundle\Entity\Center;
* use Doctrine\ORM\EntityManagerInterface;
* use Doctrine\ORM\EntityRepository;
*/ use Doctrine\Persistence\ObjectRepository;
class CenterRepository extends \Doctrine\ORM\EntityRepository
final class CenterRepository implements ObjectRepository
{ {
private EntityRepository $repository;
public function __construct(EntityManagerInterface $entityManager)
{
$this->repository = $entityManager->getRepository(Center::class);
}
public function find($id, $lockMode = null, $lockVersion = null): ?Center
{
return $this->repository->find($id, $lockMode, $lockVersion);
}
public function findOneBy(array $criteria, array $orderBy = null): ?Center
{
return $this->repository->findOneBy($criteria, $orderBy);
}
/**
* @return Center[]
*/
public function findAll(): array
{
return $this->repository->findAll();
}
/**
* @return Center[]
*/
public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null): array
{
return $this->repository->findBy($criteria, $orderBy, $limit, $offset);
}
public function getClassName() {
return Center::class;
}
} }

View File

@ -0,0 +1,50 @@
<?php
declare(strict_types=1);
namespace Chill\MainBundle\Repository;
use Chill\MainBundle\Entity\Country;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\EntityRepository;
use Doctrine\Persistence\ObjectRepository;
final class CountryRepository implements ObjectRepository
{
private EntityRepository $repository;
public function __construct(EntityManagerInterface $entityManager)
{
$this->repository = $entityManager->getRepository(Country::class);
}
public function find($id, $lockMode = null, $lockVersion = null): ?Country
{
return $this->repository->find($id, $lockMode, $lockVersion);
}
public function findOneBy(array $criteria, array $orderBy = null): ?Country
{
return $this->repository->findOneBy($criteria, $orderBy);
}
/**
* @return Country[]
*/
public function findAll(): array
{
return $this->repository->findAll();
}
/**
* @return Country[]
*/
public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null): array
{
return $this->repository->findBy($criteria, $orderBy, $limit, $offset);
}
public function getClassName() {
return Country::class;
}
}

View File

@ -0,0 +1,50 @@
<?php
declare(strict_types=1);
namespace Chill\MainBundle\Repository;
use Chill\MainBundle\Entity\GroupCenter;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\EntityRepository;
use Doctrine\Persistence\ObjectRepository;
final class GroupCenterRepository implements ObjectRepository
{
private EntityRepository $repository;
public function __construct(EntityManagerInterface $entityManager)
{
$this->repository = $entityManager->getRepository(GroupCenter::class);
}
public function find($id, $lockMode = null, $lockVersion = null): ?GroupCenter
{
return $this->repository->find($id, $lockMode, $lockVersion);
}
public function findOneBy(array $criteria, array $orderBy = null): ?GroupCenter
{
return $this->repository->findOneBy($criteria, $orderBy);
}
/**
* @return GroupCenter[]
*/
public function findAll(): array
{
return $this->repository->findAll();
}
/**
* @return GroupCenter[]
*/
public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null): array
{
return $this->repository->findBy($criteria, $orderBy, $limit, $offset);
}
public function getClassName() {
return GroupCenter::class;
}
}

View File

@ -0,0 +1,50 @@
<?php
declare(strict_types=1);
namespace Chill\MainBundle\Repository;
use Chill\MainBundle\Entity\Language;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\EntityRepository;
use Doctrine\Persistence\ObjectRepository;
final class LanguageRepository implements ObjectRepository
{
private EntityRepository $repository;
public function __construct(EntityManagerInterface $entityManager)
{
$this->repository = $entityManager->getRepository(Language::class);
}
public function find($id, $lockMode = null, $lockVersion = null): ?Language
{
return $this->repository->find($id, $lockMode, $lockVersion);
}
public function findOneBy(array $criteria, array $orderBy = null): ?Language
{
return $this->repository->findOneBy($criteria, $orderBy);
}
/**
* @return Language[]
*/
public function findAll(): array
{
return $this->repository->findAll();
}
/**
* @return Language[]
*/
public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null): array
{
return $this->repository->findBy($criteria, $orderBy, $limit, $offset);
}
public function getClassName() {
return Language::class;
}
}

View File

@ -0,0 +1,50 @@
<?php
declare(strict_types=1);
namespace Chill\MainBundle\Repository;
use Chill\MainBundle\Entity\PermissionsGroup;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\EntityRepository;
use Doctrine\Persistence\ObjectRepository;
final class PermissionsGroupRepository implements ObjectRepository
{
private EntityRepository $repository;
public function __construct(EntityManagerInterface $entityManager)
{
$this->repository = $entityManager->getRepository(PermissionsGroup::class);
}
public function find($id, $lockMode = null, $lockVersion = null): ?PermissionsGroup
{
return $this->repository->find($id, $lockMode, $lockVersion);
}
public function findOneBy(array $criteria, array $orderBy = null): ?PermissionsGroup
{
return $this->repository->findOneBy($criteria, $orderBy);
}
/**
* @return PermissionsGroup[]
*/
public function findAll(): array
{
return $this->repository->findAll();
}
/**
* @return PermissionsGroup[]
*/
public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null): array
{
return $this->repository->findBy($criteria, $orderBy, $limit, $offset);
}
public function getClassName() {
return PermissionsGroup::class;
}
}

View File

@ -1,28 +1,50 @@
<?php <?php
/*
* Copyright (C) 2018 Champs-Libres <info@champs-libres.coop> declare(strict_types=1);
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Chill\MainBundle\Repository; namespace Chill\MainBundle\Repository;
/** use Chill\MainBundle\Entity\PostalCode;
* use Doctrine\ORM\EntityManagerInterface;
* use Doctrine\ORM\EntityRepository;
* @author Julien Fastré <julien.fastre@champs-libres.coop> use Doctrine\Persistence\ObjectRepository;
*/
class PostalCodeRepository extends \Doctrine\ORM\EntityRepository final class PostalCodeRepository implements ObjectRepository
{ {
private EntityRepository $repository;
public function __construct(EntityManagerInterface $entityManager)
{
$this->repository = $entityManager->getRepository(PostalCode::class);
}
public function find($id, $lockMode = null, $lockVersion = null): ?PostalCode
{
return $this->repository->find($id, $lockMode, $lockVersion);
}
public function findOneBy(array $criteria, array $orderBy = null): ?PostalCode
{
return $this->repository->findOneBy($criteria, $orderBy);
}
/**
* @return PostalCode[]
*/
public function findAll(): array
{
return $this->repository->findAll();
}
/**
* @return PostalCode[]
*/
public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null): array
{
return $this->repository->findBy($criteria, $orderBy, $limit, $offset);
}
public function getClassName() {
return PostalCode::class;
}
} }

View File

@ -0,0 +1,50 @@
<?php
declare(strict_types=1);
namespace Chill\MainBundle\Repository;
use Chill\MainBundle\Entity\RoleScope;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\EntityRepository;
use Doctrine\Persistence\ObjectRepository;
final class RoleScopeRepository implements ObjectRepository
{
private EntityRepository $repository;
public function __construct(EntityManagerInterface $entityManager)
{
$this->repository = $entityManager->getRepository(RoleScope::class);
}
public function find($id, $lockMode = null, $lockVersion = null): ?RoleScope
{
return $this->repository->find($id, $lockMode, $lockVersion);
}
public function findOneBy(array $criteria, array $orderBy = null): ?RoleScope
{
return $this->repository->findOneBy($criteria, $orderBy);
}
/**
* @return RoleScope[]
*/
public function findAll(): array
{
return $this->repository->findAll();
}
/**
* @return RoleScope[]
*/
public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null): array
{
return $this->repository->findBy($criteria, $orderBy, $limit, $offset);
}
public function getClassName() {
return RoleScope::class;
}
}

View File

@ -0,0 +1,50 @@
<?php
declare(strict_types=1);
namespace Chill\MainBundle\Repository;
use Chill\MainBundle\Entity\Scope;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\EntityRepository;
use Doctrine\Persistence\ObjectRepository;
final class ScopeRepository implements ObjectRepository
{
private EntityRepository $repository;
public function __construct(EntityManagerInterface $entityManager)
{
$this->repository = $entityManager->getRepository(Scope::class);
}
public function find($id, $lockMode = null, $lockVersion = null): ?Scope
{
return $this->repository->find($id, $lockMode, $lockVersion);
}
public function findOneBy(array $criteria, array $orderBy = null): ?Scope
{
return $this->repository->findOneBy($criteria, $orderBy);
}
/**
* @return Scope[]
*/
public function findAll(): array
{
return $this->repository->findAll();
}
/**
* @return Scope[]
*/
public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null): array
{
return $this->repository->findBy($criteria, $orderBy, $limit, $offset);
}
public function getClassName() {
return Scope::class;
}
}

View File

@ -1,121 +1,148 @@
<?php <?php
/*
* Copyright (C) 2018 Julien Fastré <julien.fastre@champs-libres.coop> declare(strict_types=1);
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Chill\MainBundle\Repository; namespace Chill\MainBundle\Repository;
use Chill\MainBundle\Entity\GroupCenter;
use Chill\MainBundle\Entity\User; use Chill\MainBundle\Entity\User;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\EntityRepository;
use Doctrine\ORM\QueryBuilder;
use Doctrine\Persistence\ObjectRepository;
/** final class UserRepository implements ObjectRepository
*
*
*/
class UserRepository extends \Doctrine\ORM\EntityRepository
{ {
public function countByUsernameOrEmail($pattern) private EntityRepository $repository;
private EntityManagerInterface $entityManager;
public function __construct(EntityManagerInterface $entityManager)
{
$this->entityManager = $entityManager;
$this->repository = $entityManager->getRepository(User::class);
}
public function find($id, $lockMode = null, $lockVersion = null): ?User
{
return $this->repository->find($id, $lockMode, $lockVersion);
}
public function findOneBy(array $criteria, array $orderBy = null): ?User
{
return $this->repository->findOneBy($criteria, $orderBy);
}
/**
* @return User[]
*/
public function findAll(): array
{
return $this->repository->findAll();
}
/**
* @return User[]
*/
public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null): array
{
return $this->repository->findBy($criteria, $orderBy, $limit, $offset);
}
public function getClassName() {
return User::class;
}
public function countByUsernameOrEmail(string $pattern): int
{ {
$qb = $this->queryByUsernameOrEmail($pattern); $qb = $this->queryByUsernameOrEmail($pattern);
$qb->select('COUNT(u)'); $qb->select('COUNT(u)');
return (int) $qb->getQuery()->getSingleScalarResult(); return (int) $qb->getQuery()->getSingleScalarResult();
} }
public function findByUsernameOrEmail($pattern) public function findByUsernameOrEmail(string $pattern)
{ {
$qb = $this->queryByUsernameOrEmail($pattern); $qb = $this->queryByUsernameOrEmail($pattern);
return $qb->getQuery()->getResult(); return $qb->getQuery()->getResult();
} }
public function findOneByUsernameOrEmail($pattern) public function findOneByUsernameOrEmail(string $pattern)
{ {
$qb = $this->queryByUsernameOrEmail($pattern); $qb = $this->queryByUsernameOrEmail($pattern);
return $qb->getQuery()->getSingleResult(); return $qb->getQuery()->getSingleResult();
} }
/** /**
* Get the users having a specific flags * Get the users having a specific flags
* *
* If provided, only the users amongst "filtered users" are searched. This * If provided, only the users amongst "filtered users" are searched. This
* allows to make a first search amongst users based on role and center * allows to make a first search amongst users based on role and center
* and, then filter those users having some flags. * and, then filter those users having some flags.
* *
* @param \Chill\MainBundle\Entity\User[] $amongstUsers * @param \Chill\MainBundle\Entity\User[] $amongstUsers
*/ */
public function findUsersHavingFlags($flag, $amongstUsers = []) public function findUsersHavingFlags($flag, array $amongstUsers = []): array
{ {
$gcs = $this->_em->createQuery("SELECT DISTINCT gc " $gcs = $this
. "FROM ".GroupCenter::class." gc " ->entityManager
. "JOIN gc.permissionsGroup pg " ->createQuery(
. "WHERE " "SELECT DISTINCT gc " .
. "JSONB_EXISTS_IN_ARRAY(pg.flags, :flag) = :true ") "FROM ".GroupCenter::class." gc " .
"JOIN gc.permissionsGroup pg " .
"WHERE " .
"JSONB_EXISTS_IN_ARRAY(pg.flags, :flag) = :true "
)
->setParameters([ ->setParameters([
'true' => true, 'true' => true,
'flag' => $flag 'flag' => $flag
]) ])
->getResult(); ->getResult();
if (count($gcs) === 0) { if (count($gcs) === 0) {
return []; return [];
} }
$qb = $this->_em->createQueryBuilder(); $qb = $this->entityManager->createQueryBuilder();
$qb $qb
->select('DISTINCT u') ->select('DISTINCT u')
->from(User::class, 'u') ->from(User::class, 'u')
->where("u.enabled = 'TRUE'") ->where("u.enabled = 'TRUE'");
;
$orx = $qb->expr()->orX(); $orx = $qb->expr()->orX();
foreach($gcs as $i => $gc) { foreach($gcs as $i => $gc) {
$orx->add(':gc_'.$i.' MEMBER OF u.groupCenters'); $orx->add(':gc_' . $i . ' MEMBER OF u.groupCenters');
$qb->setParameter('gc_'.$i, $gc); $qb->setParameter('gc_' . $i, $gc);
} }
$qb->andWhere($orx); $qb->andWhere($orx);
if (count($amongstUsers) > 0) { if ($amongstUsers !== []) {
$qb $qb
->andWhere($qb->expr()->in('u', ':amongstUsers')) ->andWhere($qb->expr()->in('u', ':amongstUsers'))
->setParameter('amongstUsers', $amongstUsers) ->setParameter('amongstUsers', $amongstUsers);
;
} }
return $qb->getQuery()->getResult(); return $qb->getQuery()->getResult();
} }
protected function queryByUsernameOrEmail($pattern) protected function queryByUsernameOrEmail(string $pattern): QueryBuilder
{ {
$qb = $this->createQueryBuilder('u'); $qb = $this->entityManager->createQueryBuilder('u');
$searchByPattern = $qb->expr()->orX(); $searchByPattern = $qb->expr()->orX();
$searchByPattern $searchByPattern
->add($qb->expr()->eq('u.usernameCanonical', 'LOWER(UNACCENT(:pattern))')) ->add($qb->expr()->eq('u.usernameCanonical', 'LOWER(UNACCENT(:pattern))'))
->add($qb->expr()->eq('u.emailCanonical', 'LOWER(UNACCENT(:pattern))')) ->add($qb->expr()->eq('u.emailCanonical', 'LOWER(UNACCENT(:pattern))'));
;
$qb $qb
->where($searchByPattern) ->where($searchByPattern)
->setParameter('pattern', $pattern) ->setParameter('pattern', $pattern);
;
return $qb; return $qb;
} }
} }

View File

@ -2,17 +2,33 @@ parameters:
# cl_chill_main.example.class: Chill\MainBundle\Example # cl_chill_main.example.class: Chill\MainBundle\Example
services: services:
_defaults:
autowire: true
autoconfigure: true
Chill\MainBundle\Repository\:
resource: '../Repository/'
autowire: true
autoconfigure: true
Chill\MainBundle\Serializer\Normalizer\: Chill\MainBundle\Serializer\Normalizer\:
resource: '../Serializer/Normalizer' resource: '../Serializer/Normalizer'
autoconfigure: true
autowire: true autowire: true
tags: tags:
- { name: 'serializer.normalizer', priority: 64 } - { name: 'serializer.normalizer', priority: 64 }
Chill\MainBundle\Form\Type\:
resource: '../Form/Type'
autoconfigure: true
autowire: true
tags:
- { name: form.type }
Chill\MainBundle\Doctrine\Event\: Chill\MainBundle\Doctrine\Event\:
resource: '../Doctrine/Event/' resource: '../Doctrine/Event/'
autowire: true autowire: true
tags: tags:
- { name: 'doctrine.event_subscriber' } - { name: 'doctrine.event_subscriber' }
chill.main.helper.translatable_string: chill.main.helper.translatable_string:

View File

@ -65,8 +65,6 @@ services:
chill.main.form.choice_loader.postal_code: chill.main.form.choice_loader.postal_code:
class: Chill\MainBundle\Form\ChoiceLoader\PostalCodeChoiceLoader class: Chill\MainBundle\Form\ChoiceLoader\PostalCodeChoiceLoader
arguments:
- '@Chill\MainBundle\Repository\PostalCodeRepository'
chill.main.form.type.export: chill.main.form.type.export:
class: Chill\MainBundle\Form\Type\Export\ExportType class: Chill\MainBundle\Form\Type\Export\ExportType
@ -98,32 +96,10 @@ services:
arguments: arguments:
- '@Chill\MainBundle\Export\ExportManager' - '@Chill\MainBundle\Export\ExportManager'
chill.main.form.date_type:
class: Chill\MainBundle\Form\Type\ChillDateType
tags:
- { name: form.type }
chill.main.form.pick_user_type:
class: Chill\MainBundle\Form\Type\UserPickerType
arguments:
- "@chill.main.security.authorization.helper"
- "@security.token_storage"
- "@chill.main.user_repository"
tags:
- { name: form.type }
chill.main.form.pick_scope_type:
class: Chill\MainBundle\Form\Type\ScopePickerType
arguments:
- "@chill.main.security.authorization.helper"
- "@security.token_storage"
- "@chill.main.scope_repository"
- "@chill.main.helper.translatable_string"
tags:
- { name: form.type }
chill.main.form.advanced_search_type: chill.main.form.advanced_search_type:
class: Chill\MainBundle\Form\AdvancedSearchType class: Chill\MainBundle\Form\AdvancedSearchType
autowire: true
autoconfigure: true
arguments: arguments:
- "@chill_main.search_provider" - "@chill_main.search_provider"
tags: tags:

View File

@ -1,35 +0,0 @@
services:
chill.main.countries_repository:
class: Doctrine\ORM\EntityRepository
factory: ["@doctrine.orm.entity_manager", getRepository]
arguments:
- "Chill\\MainBundle\\Entity\\Country"
chill.main.user_repository:
class: Doctrine\ORM\EntityRepository
factory: ["@doctrine.orm.entity_manager", getRepository]
arguments:
- "Chill\\MainBundle\\Entity\\User"
chill.main.scope_repository:
class: Doctrine\ORM\EntityRepository
factory: ["@doctrine.orm.entity_manager", getRepository]
arguments:
- "Chill\\MainBundle\\Entity\\Scope"
chill.main.postalcode_repository:
class: Doctrine\ORM\EntityRepository
factory: ["@doctrine.orm.entity_manager", getRepository]
arguments:
- "Chill\\MainBundle\\Entity\\PostalCode"
Chill\MainBundle\Repository\PostalCodeRepository: '@chill.main.postalcode_repository'
chill.main.center_repository:
class: Doctrine\ORM\EntityRepository
factory: ["@doctrine.orm.entity_manager", getRepository]
arguments:
- "Chill\\MainBundle\\Entity\\Center"
Chill\MainBundle\Repository\CenterRepository: '@chill.main.center_repository'

View File

@ -32,9 +32,8 @@ services:
- { name: twig.extension } - { name: twig.extension }
Chill\MainBundle\Templating\Entity\CommentRender: Chill\MainBundle\Templating\Entity\CommentRender:
arguments: autoconfigure: true
- '@chill.main.user_repository' autowire: true
- '@Symfony\Component\Templating\EngineInterface'
tags: tags:
- { name: 'chill.render_entity' } - { name: 'chill.render_entity' }

View File

@ -24,28 +24,17 @@ use Doctrine\ORM\QueryBuilder;
use Symfony\Component\Form\Extension\Core\Type\DateType; use Symfony\Component\Form\Extension\Core\Type\DateType;
use Chill\MainBundle\Export\ExportElementValidatedInterface; use Chill\MainBundle\Export\ExportElementValidatedInterface;
use Symfony\Component\Validator\Context\ExecutionContextInterface; use Symfony\Component\Validator\Context\ExecutionContextInterface;
use Symfony\Component\Translation\TranslatorInterface; use Symfony\Contracts\Translation\TranslatorInterface;
/** final class AgeAggregator implements AggregatorInterface, ExportElementValidatedInterface
*
*
* @author Julien Fastré <julien.fastre@champs-libres.coop>
*/
class AgeAggregator implements AggregatorInterface,
ExportElementValidatedInterface
{ {
/** private TranslatorInterface $translator;
*
* @var public function __construct(TranslatorInterface $translator)
*/
protected $translator;
public function __construct($translator)
{ {
$this->translator = $translator; $this->translator = $translator;
} }
public function addRole() public function addRole()
{ {
return null; return null;

View File

@ -29,40 +29,23 @@ use Chill\MainBundle\Util\CountriesInfo;
use Symfony\Component\Security\Core\Role\Role; use Symfony\Component\Security\Core\Role\Role;
use Chill\PersonBundle\Security\Authorization\PersonVoter; use Chill\PersonBundle\Security\Authorization\PersonVoter;
use Chill\MainBundle\Export\ExportElementValidatedInterface; use Chill\MainBundle\Export\ExportElementValidatedInterface;
use Chill\MainBundle\Repository\CountryRepository;
use Symfony\Component\Validator\Context\ExecutionContextInterface; use Symfony\Component\Validator\Context\ExecutionContextInterface;
use Symfony\Component\Form\Extension\Core\Type\ChoiceType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
final class CountryOfBirthAggregator implements AggregatorInterface, ExportElementValidatedInterface
/**
*
*
* @author Julien Fastré <julien.fastre@champs-libres.coop>
*/
class CountryOfBirthAggregator implements AggregatorInterface,
ExportElementValidatedInterface
{ {
/** private CountryRepository $countriesRepository;
*
* @var EntityRepository
*/
protected $countriesRepository;
/** private TranslatableStringHelper $translatableStringHelper;
*
* @var TranslatableStringHelper
*/
protected $translatableStringHelper;
/** private TranslatorInterface $translator;
*
* @var TranslatorInterface
*/
protected $translator;
public function __construct(EntityRepository $countriesRepository, public function __construct(
TranslatableStringHelper $translatableStringHelper, CountryRepository $countriesRepository,
TranslatorInterface $translator) TranslatableStringHelper $translatableStringHelper,
{ TranslatorInterface $translator
) {
$this->countriesRepository = $countriesRepository; $this->countriesRepository = $countriesRepository;
$this->translatableStringHelper = $translatableStringHelper; $this->translatableStringHelper = $translatableStringHelper;
$this->translator = $translator; $this->translator = $translator;
@ -73,7 +56,6 @@ class CountryOfBirthAggregator implements AggregatorInterface,
return 'person'; return 'person';
} }
public function buildForm(FormBuilderInterface $builder) public function buildForm(FormBuilderInterface $builder)
{ {
$builder->add('group_by_level', ChoiceType::class, array( $builder->add('group_by_level', ChoiceType::class, array(

View File

@ -26,31 +26,20 @@ use Symfony\Component\Translation\TranslatorInterface;
use Chill\PersonBundle\Entity\Person; use Chill\PersonBundle\Entity\Person;
use Chill\PersonBundle\Export\Declarations; use Chill\PersonBundle\Export\Declarations;
/** final class GenderAggregator implements AggregatorInterface
*
*
* @author Julien Fastré <julien.fastre@champs-libres.coop>
*/
class GenderAggregator implements AggregatorInterface
{ {
private TranslatorInterface $translator;
/**
*
* @var TranslatorInterface
*/
protected $translator;
public function __construct(TranslatorInterface $translator) public function __construct(TranslatorInterface $translator)
{ {
$this->translator = $translator; $this->translator = $translator;
} }
public function applyOn() public function applyOn()
{ {
return Declarations::PERSON_TYPE; return Declarations::PERSON_TYPE;
} }
public function buildForm(FormBuilderInterface $builder) public function buildForm(FormBuilderInterface $builder)
{ {

View File

@ -29,39 +29,23 @@ use Chill\MainBundle\Util\CountriesInfo;
use Symfony\Component\Security\Core\Role\Role; use Symfony\Component\Security\Core\Role\Role;
use Chill\PersonBundle\Security\Authorization\PersonVoter; use Chill\PersonBundle\Security\Authorization\PersonVoter;
use Chill\MainBundle\Export\ExportElementValidatedInterface; use Chill\MainBundle\Export\ExportElementValidatedInterface;
use Chill\MainBundle\Repository\CountryRepository;
use Symfony\Component\Validator\Context\ExecutionContextInterface; use Symfony\Component\Validator\Context\ExecutionContextInterface;
use Symfony\Component\Form\Extension\Core\Type\ChoiceType; use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
/** final class NationalityAggregator implements AggregatorInterface, ExportElementValidatedInterface
*
*
* @author Julien Fastré <julien.fastre@champs-libres.coop>
*/
class NationalityAggregator implements AggregatorInterface,
ExportElementValidatedInterface
{ {
/** private CountryRepository $countriesRepository;
*
* @var EntityRepository
*/
protected $countriesRepository;
/** private TranslatableStringHelper $translatableStringHelper;
*
* @var TranslatableStringHelper
*/
protected $translatableStringHelper;
/** private TranslatorInterface $translator;
*
* @var TranslatorInterface
*/
protected $translator;
public function __construct(EntityRepository $countriesRepository, public function __construct(
TranslatableStringHelper $translatableStringHelper, CountryRepository $countriesRepository,
TranslatorInterface $translator) TranslatableStringHelper $translatableStringHelper,
{ TranslatorInterface $translator
) {
$this->countriesRepository = $countriesRepository; $this->countriesRepository = $countriesRepository;
$this->translatableStringHelper = $translatableStringHelper; $this->translatableStringHelper = $translatableStringHelper;
$this->translator = $translator; $this->translator = $translator;

View File

@ -68,6 +68,11 @@ services:
resource: '../Controller/' resource: '../Controller/'
tags: ['controller.service_arguments'] tags: ['controller.service_arguments']
Chill\PersonBundle\Export\:
autowire: true
autoconfigure: true
resource: '../Export/'
Chill\PersonBundle\Templating\Entity\: Chill\PersonBundle\Templating\Entity\:
autowire: true autowire: true
autoconfigure: true autoconfigure: true

View File

@ -36,43 +36,39 @@ services:
chill.person.export.filter_birthdate: chill.person.export.filter_birthdate:
class: Chill\PersonBundle\Export\Filter\BirthdateFilter class: Chill\PersonBundle\Export\Filter\BirthdateFilter
tags: tags:
- { name: chill.export_filter, alias: person_birthdate_filter } - { name: chill.export_filter, alias: person_birthdate_filter }
chill.person.export.filter_nationality: chill.person.export.filter_nationality:
class: Chill\PersonBundle\Export\Filter\NationalityFilter class: Chill\PersonBundle\Export\Filter\NationalityFilter
arguments: autowire: true
- "@chill.main.helper.translatable_string" autoconfigure: true
tags: tags:
- { name: chill.export_filter, alias: person_nationality_filter } - { name: chill.export_filter, alias: person_nationality_filter }
chill.person.export.aggregator_nationality: chill.person.export.aggregator_nationality:
class: Chill\PersonBundle\Export\Aggregator\NationalityAggregator class: Chill\PersonBundle\Export\Aggregator\NationalityAggregator
arguments: autowire: true
- "@chill.main.countries_repository" autoconfigure: true
- "@chill.main.helper.translatable_string"
- "@translator"
tags: tags:
- { name: chill.export_aggregator, alias: person_nationality_aggregator } - { name: chill.export_aggregator, alias: person_nationality_aggregator }
chill.person.export.aggregator_country_of_birth: chill.person.export.aggregator_country_of_birth:
class: Chill\PersonBundle\Export\Aggregator\CountryOfBirthAggregator class: Chill\PersonBundle\Export\Aggregator\CountryOfBirthAggregator
arguments: autowire: true
- "@chill.main.countries_repository" autoconfigure: true
- "@chill.main.helper.translatable_string"
- "@translator"
tags: tags:
- { name: chill.export_aggregator, alias: person_country_of_birth_aggregator } - { name: chill.export_aggregator, alias: person_country_of_birth_aggregator }
chill.person.export.aggregator_gender: chill.person.export.aggregator_gender:
class: Chill\PersonBundle\Export\Aggregator\GenderAggregator class: Chill\PersonBundle\Export\Aggregator\GenderAggregator
arguments: autowire: true
- "@translator" autoconfigure: true
tags: tags:
- { name: chill.export_aggregator, alias: person_gender_aggregator } - { name: chill.export_aggregator, alias: person_gender_aggregator }
chill.person.export.aggregator_age: chill.person.export.aggregator_age:
class: Chill\PersonBundle\Export\Aggregator\AgeAggregator class: Chill\PersonBundle\Export\Aggregator\AgeAggregator
arguments: autowire: true
- "@translator" autoconfigure: true
tags: tags:
- { name: chill.export_aggregator, alias: person_age_aggregator } - { name: chill.export_aggregator, alias: person_age_aggregator }