X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/4f1511980043fca288c364b794e540af1c54f95e..849cc2e2bdd1b0c01d32e79d2d8d2fe862e89cd1:/Command/CalendarCommand.php?ds=inline diff --git a/Command/CalendarCommand.php b/Command/CalendarCommand.php index 25c45ca..fb0cd02 100644 --- a/Command/CalendarCommand.php +++ b/Command/CalendarCommand.php @@ -10,11 +10,13 @@ use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\Routing\Generator\UrlGeneratorInterface; use Symfony\Component\Routing\RouterInterface; -use Symfony\Component\Translation\TranslatorInterface; +use Symfony\Contracts\Translation\TranslatorInterface; use Twig\Extra\Markdown\DefaultMarkdown; use Rapsys\AirBundle\Entity\Session; +use Rapsys\PackBundle\Util\SluggerUtil; + class CalendarCommand extends Command { //Set failure constant const FAILURE = 1; @@ -22,45 +24,67 @@ class CalendarCommand extends Command { ///Set success constant const SUCCESS = 0; - ///Config array - protected $config; - /** * Doctrine instance * * @var ManagerRegistry */ - protected $doctrine; + protected ManagerRegistry $doctrine; + + ///Router + protected RouterInterface $router; + + ///Slugger + protected SluggerUtil $slugger; + + ///Translator instance + protected TranslatorInterface $translator; ///Locale protected $locale; - ///Translator instance - protected $translator; + ///Lifetime string + protected $lifetime; + + ///Namespace string + protected $namespace; + + ///Path string + protected $path; /** - * Inject doctrine, container and translator interface + * Creates new calendar command * - * @param ContainerInterface $container The container instance * @param ManagerRegistry $doctrine The doctrine instance * @param RouterInterface $router The router instance + * @param SluggerUtil $slugger The slugger instance * @param TranslatorInterface $translator The translator instance + * @param string $namespace The cache namespace + * @param int $lifetime The cache lifetime + * @param string $path The cache path + * @param string $locale The default locale */ - public function __construct(ContainerInterface $container, ManagerRegistry $doctrine, RouterInterface $router, TranslatorInterface $translator) { + public function __construct(ManagerRegistry $doctrine, RouterInterface $router, SluggerUtil $slugger, TranslatorInterface $translator, string $namespace, int $lifetime, string $path, string $locale) { //Call parent constructor parent::__construct(); - //Retrieve config - $this->config = $container->getParameter($this->getAlias()); + //Store doctrine + $this->doctrine = $doctrine; - //Retrieve locale - $this->locale = $container->getParameter('kernel.default_locale'); + //Set lifetime + $this->lifetime = $lifetime; - //Store doctrine - $this->doctrine = $doctrine; + //Set namespace + $this->namespace = $namespace; + + //Set path + $this->path = $path; //Store router - $this->router = $router; + $this->router = $router; + + //Retrieve slugger + $this->slugger = $slugger; //Get router context $context = $this->router->getContext(); @@ -108,7 +132,7 @@ class CalendarCommand extends Command { //Retrieve cache object //XXX: by default stored in /tmp/symfony-cache/@/W/3/6SEhFfeIW4UMDlAII+Dg //XXX: stored in %kernel.project_dir%/var/cache/airlibre/0/P/IA20X0K4dkMd9-+Ohp9Q - $cache = new FilesystemAdapter($this->config['cache']['namespace'], $this->config['cache']['lifetime'], $this->config['cache']['directory']); + $cache = new FilesystemAdapter($this->namespace, $this->lifetime, $this->path); //Retrieve calendars $cacheCalendars = $cache->getItem('calendars'); @@ -147,10 +171,7 @@ class CalendarCommand extends Command { //With expired token if ($exp = $googleClient->isAccessTokenExpired()) { //Refresh token - if ($googleClient->getRefreshToken()) { - //Retrieve refreshed token - $googleToken = $googleClient->fetchAccessTokenWithRefreshToken($googleClient->getRefreshToken()); - + if (($refreshToken = $googleClient->getRefreshToken()) && ($googleToken = $googleClient->fetchAccessTokenWithRefreshToken($refreshToken)) && empty($googleToken['error'])) { //Add refreshed token $calendars[$clientId]['tokens'][$googleToken['access_token']] = [ 'calendar' => $token['calendar'], @@ -174,7 +195,15 @@ class CalendarCommand extends Command { unset($calendars[$clientId]); } + //Save calendars + $cacheCalendars->set($calendars); + + //Save calendar + $cache->save($cacheCalendars); + //Drop token and report + //XXX: submit app to avoid expiration + //XXX: see https://console.cloud.google.com/apis/credentials/consent?project=calendar-317315 echo 'Token '.$tokenId.' for calendar '.$token['calendar'].' has expired and is not refreshable'."\n"; //Return failure @@ -278,49 +307,53 @@ class CalendarCommand extends Command { foreach($sessions as $sessionId => $session) { //Init shared properties //TODO: validate for constraints here ??? https://developers.google.com/calendar/api/guides/extended-properties + //TODO: drop shared as unused ??? $shared = [ 'gps' => $session['l_latitude'].','.$session['l_longitude'] ]; //Init source $source = [ - 'title' => $this->translator->trans('Session %id% by %pseudonym%', ['%id%' => $sessionId, '%pseudonym%' => $session['au_pseudonym']]).' '.$this->translator->trans('at '.$session['l_title']), - 'url' => $this->router->generate('rapsys_air_session_view', ['id' => $sessionId], UrlGeneratorInterface::ABSOLUTE_URL) + 'title' => $this->translator->trans('%dance% %id% by %pseudonym%', ['%id%' => $sessionId, '%dance%' => $this->translator->trans($session['ad_name'].' '.lcfirst($session['ad_type'])), '%pseudonym%' => $session['au_pseudonym']]).' '.$this->translator->trans('at '.$session['l_title']), + 'url' => $this->router->generate('rapsys_air_session_view', ['id' => $sessionId, 'location' => $this->slugger->slug($this->translator->trans($session['l_title'])), 'dance' => $this->slugger->slug($this->translator->trans($session['ad_name'].' '.lcfirst($session['ad_type']))), 'user' => $this->slugger->slug($session['au_pseudonym'])], UrlGeneratorInterface::ABSOLUTE_URL) ]; - //Init description - #$description = '
'.$session['p_class'].'
'.$session['p_contact'].'
'.$session['p_donate'].'
'.$session['p_link'].'
'.$session['p_profile'].'