mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-25 09:42:15 +01:00
79 lines
1.9 KiB
PHP
79 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace AppBundle\Controller\Event;
|
|
|
|
use AppBundle\Event\Model\Event;
|
|
use AppBundle\Event\Model\GithubUser;
|
|
use AppBundle\Event\Model\Repository\EventRepository;
|
|
use Assert\Assertion;
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
|
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
|
|
|
|
class EventActionHelper
|
|
{
|
|
/** @var EventRepository */
|
|
protected $eventRepository;
|
|
/** @var TokenStorageInterface */
|
|
private $tokenStorage;
|
|
|
|
public function __construct(
|
|
EventRepository $eventRepository,
|
|
TokenStorageInterface $tokenStorage
|
|
) {
|
|
$this->eventRepository = $eventRepository;
|
|
$this->tokenStorage = $tokenStorage;
|
|
}
|
|
|
|
/**
|
|
* @param string $eventSlug
|
|
*
|
|
* @return Event
|
|
*
|
|
* @throws NotFoundHttpException
|
|
*/
|
|
public function getEvent($eventSlug)
|
|
{
|
|
$event = $this->eventRepository->getOneBy(['path' => $eventSlug]);
|
|
if ($event === null) {
|
|
throw new NotFoundHttpException('Event not found');
|
|
}
|
|
|
|
return $event;
|
|
}
|
|
|
|
/**
|
|
* @param int|null $id
|
|
* @param bool $allowFallback
|
|
*
|
|
* @return Event
|
|
*/
|
|
public function getEventById($id = null, $allowFallback = true)
|
|
{
|
|
$event = null;
|
|
if (null !== $id) {
|
|
$event = $this->eventRepository->get((int) $id);
|
|
} elseif ($allowFallback) {
|
|
$event = $this->eventRepository->getNextEvent();
|
|
}
|
|
if ($event === null) {
|
|
throw new NotFoundHttpException('Could not find event');
|
|
}
|
|
|
|
return $event;
|
|
}
|
|
|
|
/**
|
|
* @return GithubUser
|
|
*/
|
|
public function getUser()
|
|
{
|
|
$token = $this->tokenStorage->getToken();
|
|
Assertion::notNull($token);
|
|
/** @var GithubUser $user */
|
|
$user = $token->getUser();
|
|
Assertion::isInstanceOf($user, GithubUser::class);
|
|
|
|
return $user;
|
|
}
|
|
}
|