mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 13:54:23 +00:00
Update existing repositories and their corresponding entities.
This commit is contained in:
parent
670ba1713a
commit
1e72247546
@ -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()
|
||||||
*/
|
*/
|
||||||
|
@ -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>
|
||||||
|
@ -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(
|
||||||
|
@ -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={
|
||||||
|
@ -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
|
||||||
|
{
|
||||||
|
private EntityRepository $repository;
|
||||||
|
|
||||||
|
public function __construct(EntityManagerInterface $entityManager)
|
||||||
|
{
|
||||||
|
$this->repository = $entityManager->getRepository(AddressReference::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function find($id, $lockMode = null, $lockVersion = null): ?AddressReference
|
||||||
|
{
|
||||||
|
return $this->repository->find($id, $lockMode, $lockVersion);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function findOneBy(array $criteria, array $orderBy = null): ?AddressReference
|
||||||
|
{
|
||||||
|
return $this->repository->findOneBy($criteria, $orderBy);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @method AddressReference|null find($id, $lockMode = null, $lockVersion = null)
|
* @return AddressReference[]
|
||||||
* @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 findAll(): array
|
||||||
{
|
{
|
||||||
public function __construct(ManagerRegistry $registry)
|
return $this->repository->findAll();
|
||||||
{
|
|
||||||
parent::__construct($registry, AddressReference::class);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// /**
|
/**
|
||||||
// * @return AddressReference[] Returns an array of AddressReference objects
|
* @return AddressReference[]
|
||||||
// */
|
|
||||||
/*
|
|
||||||
public function findByExampleField($value)
|
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('a')
|
|
||||||
->andWhere('a.exampleField = :val')
|
|
||||||
->setParameter('val', $value)
|
|
||||||
->orderBy('a.id', 'ASC')
|
|
||||||
->setMaxResults(10)
|
|
||||||
->getQuery()
|
|
||||||
->getResult()
|
|
||||||
;
|
|
||||||
}
|
|
||||||
*/
|
*/
|
||||||
|
public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null): array
|
||||||
|
{
|
||||||
|
return $this->repository->findBy($criteria, $orderBy, $limit, $offset);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
public function getClassName() {
|
||||||
public function findOneBySomeField($value): ?AddressReference
|
return AddressReference::class;
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('a')
|
|
||||||
->andWhere('a.exampleField = :val')
|
|
||||||
->setParameter('val', $value)
|
|
||||||
->getQuery()
|
|
||||||
->getOneOrNullResult()
|
|
||||||
;
|
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,32 +1,58 @@
|
|||||||
<?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
|
||||||
|
{
|
||||||
|
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[]
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
class UserRepository extends \Doctrine\ORM\EntityRepository
|
public function findAll(): array
|
||||||
{
|
{
|
||||||
public function countByUsernameOrEmail($pattern)
|
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);
|
||||||
|
|
||||||
@ -35,14 +61,14 @@ class UserRepository extends \Doctrine\ORM\EntityRepository
|
|||||||
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);
|
||||||
|
|
||||||
@ -58,13 +84,17 @@ class UserRepository extends \Doctrine\ORM\EntityRepository
|
|||||||
*
|
*
|
||||||
* @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
|
||||||
@ -75,14 +105,14 @@ class UserRepository extends \Doctrine\ORM\EntityRepository
|
|||||||
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);
|
||||||
@ -90,31 +120,28 @@ class UserRepository extends \Doctrine\ORM\EntityRepository
|
|||||||
|
|
||||||
$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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user