|
@@ -3,12 +3,22 @@
|
|
|
namespace App\Service;
|
|
|
|
|
|
use App\Entity\Counter;
|
|
|
+use App\Repository\CounterRepository;
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
|
+use Symfony\Component\EventDispatcher\Attribute\AsEventListener;
|
|
|
+use Symfony\Component\HttpKernel\Event\ControllerEvent;
|
|
|
+use Symfony\Component\HttpKernel\KernelEvents;
|
|
|
+use Symfony\Component\Workflow\Attribute\AsCompletedListener;
|
|
|
+use Symfony\Component\Workflow\Attribute\AsTransitionListener;
|
|
|
+use Symfony\Component\Workflow\Event\Event;
|
|
|
+use Symfony\Component\Workflow\WorkflowInterface;
|
|
|
|
|
|
class CounterManager
|
|
|
{
|
|
|
public function __construct(
|
|
|
- protected EntityManagerInterface $em
|
|
|
+ protected EntityManagerInterface $em,
|
|
|
+ protected WorkflowInterface $countdownStateMachine,
|
|
|
+ protected CounterRepository $counterRepository
|
|
|
)
|
|
|
{
|
|
|
|
|
@@ -17,24 +27,60 @@ class CounterManager
|
|
|
public function init(string $ttl, ?string $name = null): Counter
|
|
|
{
|
|
|
$counter = new Counter();
|
|
|
- $counter->setName($name);
|
|
|
- $counter->setTimeTolive($ttl);
|
|
|
- $counter->setState('ready');
|
|
|
+ $counter
|
|
|
+ ->setName($name)
|
|
|
+ ->setTimeTolive($ttl)
|
|
|
+ ;
|
|
|
|
|
|
+ $this->countdownStateMachine->getMarking($counter);
|
|
|
$this->em->persist($counter);
|
|
|
$this->em->flush();
|
|
|
|
|
|
return $counter;
|
|
|
}
|
|
|
|
|
|
- public function start(Counter $counter): Counter
|
|
|
+
|
|
|
+ public function started(Event $event): void
|
|
|
{
|
|
|
- $counter->setStartTime(new \DateTimeImmutable('now'));
|
|
|
- $counter->setEndTime($counter->getStartTime()->add(new \DateInterval($counter->getTimeTolive())));
|
|
|
+
|
|
|
+ $counter = $event->getSubject();
|
|
|
+ $counter
|
|
|
+ ->setStartTime(new \DateTimeImmutable('now'))
|
|
|
+ ->setEndTime($counter->getStartTime()->add(new \DateInterval($counter->getTimeTolive())))
|
|
|
+ ;
|
|
|
+ $this->em->flush();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public function completed(Event $event): void
|
|
|
+ {
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- $counter->setState('started');
|
|
|
+
|
|
|
+ public function toReady(Event $event): void
|
|
|
+ {
|
|
|
+
|
|
|
+ $counter = $event->getSubject();
|
|
|
+ $counter
|
|
|
+ ->setStartTime(null)
|
|
|
+ ->setEndTime(null)
|
|
|
+ ;
|
|
|
+ $this->em->flush();
|
|
|
+ }
|
|
|
|
|
|
+
|
|
|
+ public function onKernelController(ControllerEvent $event) {
|
|
|
+ if (!$event->isMainRequest()) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ $counters = $this->counterRepository->findBy(['state' => Counter::STATE_STARTED]);
|
|
|
+ foreach($counters as $counter) {
|
|
|
+ if ($counter->getEndTime() <= new \DateTime('now')) {
|
|
|
+ $this->countdownStateMachine->apply($counter, Counter::TRANSITION_TO_COMPLETED);
|
|
|
+ }
|
|
|
+ }
|
|
|
$this->em->flush();
|
|
|
- return $counter;
|
|
|
}
|
|
|
}
|