src/Repository/AuthUserRepository.php line 20

Open in your IDE?
  1. <?php
  2. namespace Acme\SudcmsBundle\Repository;
  3. use Acme\SudcmsBundle\Entity\AuthUser;
  4. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  5. use Doctrine\Persistence\ManagerRegistry;
  6. use Symfony\Component\Security\Core\Exception\UnsupportedUserException;
  7. use Symfony\Component\Security\Core\User\PasswordUpgraderInterface;
  8. use Symfony\Component\Security\Core\User\UserInterface;
  9. /**
  10.  * @method AuthUser|null find($id, $lockMode = null, $lockVersion = null)
  11.  * @method AuthUser|null findOneBy(array $criteria, array $orderBy = null)
  12.  * @method AuthUser[]    findAll()
  13.  * @method AuthUser[]    findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  14.  */
  15. class AuthUserRepository extends ServiceEntityRepository implements PasswordUpgraderInterface {
  16.     public function __construct(ManagerRegistry $registry) {
  17.         parent::__construct($registryAuthUser::class);
  18.     }
  19.     /**
  20.      * Used to upgrade (rehash) the user's password automatically over time.
  21.      */
  22.     public function upgradePassword(UserInterface $userstring $newEncodedPassword): void {
  23.         if (!$user instanceof AuthUser) {
  24.             throw new UnsupportedUserException(sprintf('Instances of "%s" are not supported.'\get_class($user)));
  25.         }
  26.         $user->setPassword($newEncodedPassword);
  27.         $this->_em->persist($user);
  28.         $this->_em->flush();
  29.     }
  30.     public function getUserGroups($userId 0) {
  31.         $conn $this->getEntityManager()->getConnection();
  32.         $sql "
  33.             SELECT * 
  34.             FROM auth_user
  35.             JOIN auth_group_user
  36.             ON auth_user.id = auth_group_user.agu_user_id
  37.             JOIN auth_group_module
  38.             ON auth_group_module.agm_group_id = auth_group_user.agu_ag_id
  39.             WHERE auth_user.id = " $userId "
  40.         ";
  41.         $stmt $conn->prepare($sql);
  42.         $resultSet $stmt->executeQuery();
  43.         $resultSet->fetchAllAssociative();
  44.         $roles = [];
  45.         if (is_array($resultSet) && sizeof($resultSet) > 0) {
  46.             $roles[] = $resultSet["ag_role"];
  47.         }
  48.         return $roles;
  49.     }
  50.     public function getAllGroupsUsers() {
  51.         $conn $this->getEntityManager()->getConnection();
  52.         $sql "
  53.             SELECT * 
  54.             FROM auth_group
  55.         ";
  56.         $stmt $conn->prepare($sql);
  57.         $resultSet $stmt->executeQuery();
  58.         return $resultSet->fetchAllAssociative();
  59.     }
  60.     public function getGroupsUser($userId 0) {
  61.         $conn $this->getEntityManager()->getConnection();
  62.         $sql "
  63.             SELECT * 
  64.             FROM auth_group_user
  65.             JOIN auth_group_module
  66.             ON auth_group_module.agm_group_id = auth_group_user.agu_ag_id
  67.             WHERE auth_group_user.agu_user_id = " $userId "
  68.         ";
  69.         $stmt $conn->prepare($sql);
  70.         $resultSet $stmt->executeQuery();
  71.         return $resultSet->fetchAllAssociative();
  72.     }
  73.     public function getModulesUser($groupList = [], $site_uid 0) {
  74.         $conn $this->getEntityManager()->getConnection();
  75.         $sql "
  76.             SELECT * 
  77.             FROM auth_group_module
  78.             JOIN module ON module.id = auth_group_module.agm_module_id 
  79.             JOIN site_module ON site_module.module_id = module.id
  80.             WHERE auth_group_module.agm_group_id IN (" implode(","$groupList) . ")
  81.             AND site_module.site_id = " $site_uid "
  82.             GROUP BY module.id
  83.             ORDER BY module.mod_ordre ASC
  84.         ";
  85.         $stmt $conn->prepare($sql);
  86.         $resultSet $stmt->executeQuery();
  87.         return $resultSet->fetchAllAssociative();
  88.     }
  89.     public function findUsersByRole(?string $role) {
  90.         $query $this->createQueryBuilder('u')
  91.             ->orderBy('u.firstName''ASC');
  92.         if ($role) {
  93.             $query->andWhere('u.roles LIKE :val')
  94.                 ->setParameter('val''%' $role '%');
  95.         }
  96.         return $query->getQuery()->getResult();
  97.     }
  98. }