1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php
namespace App\Utils;
use App\Entity\Adherent;
use App\Entity\Flux;
use App\Entity\Prestataire;
use FOS\UserBundle\Model\UserInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\HttpFoundation\Session\SessionInterface;
use Symfony\Component\Security\Core\Security;
class CotisationUtils
{
private $em;
private $session;
private $security;
private $eventDispatcher;
public function __construct(CustomEntityManager $em, SessionInterface $session, Security $security, EventDispatcherInterface $eventDispatcher)
{
$this->em = $em;
$this->session = $session;
$this->security = $security;
$this->eventDispatcher = $eventDispatcher;
}
public function isUserCotisationExpired(UserInterface $user, int $nbDay = 30): bool
{
if (null === $user && null != $this->security->getUser()) {
if ($this->security->getUser()->isGranted('ROLE_ADHERENT') && null != $this->security->getUser()->getAdherent()) {
return $this->isCotisationExpired($this->security->getUser()->getAdherent());
} elseif ($this->security->getUser()->isGranted('ROLE_PRESTATAIRE') && null != $this->session->get('_prestagere')) {
return $this->isCotisationExpired($this->session->get('_prestagere'));
}
} elseif (null !== $user) {
if ($user->isGranted('ROLE_ADHERENT') && null != $user->getAdherent()) {
return $this->isCotisationExpired($user->getAdherent());
} elseif ($user->isGranted('ROLE_PRESTATAIRE') && null != $this->session->get('_prestagere')) {
return $this->isCotisationExpired($this->session->get('_prestagere'));
}
}
return false;
}
public function isCotisationExpired($object, int $nbDay = 30): bool
{
if ($object instanceof Adherent) {
$cotisations = $this->em->getRepository(Flux::class)->getQueryByAdherent($adherent, 'cotisation')->getResult();
} elseif ($object instanceof Prestataire) {
$cotisations = $this->em->getRepository(Flux::class)->getQueryByPrestataire($prestataire, 'cotisation')->getResult();
} else {
return false;
}
$hasCotisationValidForPeriod = false;
foreach ($cotisations as $cotisation) {
if ($cotisation->isRecu() && $cotisation->getCotisationInfos()->getFin() > new \DateTime('now - ' . $nbDay . 'days')) {
$hasCotisationValidForPeriod = true;
}
}
return $hasCotisationValidForPeriod;
}
public function isCotisationValid(UserInterface $user): bool
{
$query = null;
if (null === $user && null != $this->security->getUser()) {
if ($this->security->getUser()->isGranted('ROLE_ADHERENT') && null != $this->security->getUser()->getAdherent()) {
$query = $this->em->getRepository(Flux::class)->getQueryByAdherent($this->security->getUser()->getAdherent(), 'cotisation');
} elseif ($this->security->getUser()->isGranted('ROLE_PRESTATAIRE') && null != $this->session->get('_prestagere')) {
$query = $this->em->getRepository(Flux::class)->getQueryByPrestataire($this->session->get('_prestagere'), 'cotisation');
}
} elseif (null !== $user) {
if (null != $user->getAdherent()) {
$query = $this->em->getRepository(Flux::class)->getQueryByAdherent($user->getAdherent(), 'cotisation');
} elseif ($user->isGranted('ROLE_PRESTATAIRE') && null != $this->session->get('_prestagere')) {
$query = $this->em->getRepository(Flux::class)->getQueryByPrestataire($this->session->get('_prestagere'), 'cotisation');
}
}
if (null !== $query) {
$cotisations = $query->getResult();
foreach ($cotisations as $cotisation) {
if ($cotisation->isRecu() && $cotisation->getCotisationInfos()->getFin() > new \DateTime('now')) {
return true;
}
}
}
return false;
}
}