From 836d4b8cc091d5815e3f6dffe05532ac7137440d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Sat, 9 Mar 2024 14:45:35 +0100 Subject: [PATCH] Cleanup --- Command/Calendar2Command.php | 93 ------------------------------------ 1 file changed, 93 deletions(-) diff --git a/Command/Calendar2Command.php b/Command/Calendar2Command.php index 257d2e3..0ce4da8 100644 --- a/Command/Calendar2Command.php +++ b/Command/Calendar2Command.php @@ -53,16 +53,6 @@ class Calendar2Command extends Command { */ protected string $help = 'This command synchronize sessions in users\' google calendar'; - /** - * Set markdown instance - */ - #private DefaultMarkdown $markdown; - - /** - * Set date period instance - */ - #private \DatePeriod $period; - /** * {@inheritdoc} */ @@ -72,42 +62,8 @@ class Calendar2Command extends Command { //Replace google client redirect uri $this->google->setRedirectUri($this->router->generate($this->google->getRedirectUri(), [], UrlGeneratorInterface::ABSOLUTE_URL)); - - /* - //Set google client - $this->client = new Client( - [ - 'application_name' => $_ENV['RAPSYSAIR_GOOGLE_PROJECT'], - 'client_id' => $_ENV['GOOGLE_CLIENT_ID'], - 'client_secret' => $_ENV['GOOGLE_CLIENT_SECRET'], - 'redirect_uri' => $this->router->generate('rapsysair_google_callback', [], UrlGeneratorInterface::ABSOLUTE_URL), - 'scopes' => $this->scopes, - 'access_type' => 'offline', - #'login_hint' => $user->getMail(), - //XXX: see https://stackoverflow.com/questions/10827920/not-receiving-google-oauth-refresh-token - #'approval_prompt' => 'force' - 'prompt' => 'consent' - ] - ); - - //Set Markdown instance - $this->markdown = new DefaultMarkdown;*/ } - /** - * Configure attribute command - */ - /*protected function configure() { - //Configure the class - $this - //Set name - ->setName('rapsysair:calendar2') - //Set description shown with bin/console list - ->setDescription('Synchronize sessions in users\' calendar') - //Set description shown with bin/console --help airlibre:attribute - ->setHelp('This command synchronize sessions in users\' google calendar'); - }*/ - /** * Process the attribution */ @@ -146,56 +102,7 @@ class Calendar2Command extends Command { //TODO: XXX: or fetch directly the events updated since synchronized + matching rubscriptions and/or dances - #var_dump($tokens); exit; - - //Set sql request - $sql =<<doctrine->getRepository(Session::class)->findAllByDanceUserModified($filter['dance'], $filter['user'], $calendar['synchronized']); - //Iterate on google tokens - foreach($tokens as $token) { - //TODO: clear google client cache - //TODO: set google token - //Iterate on google calendars - foreach($calendars as $calendar) { - //Fetch sessions to sync - $sessions = $this->doctrine->getRepository(Session::class)->findAllByDanceUserModified($filter['dance'], $filter['user'], $calendar['synchronized']); - } - } //Return success return self::SUCCESS; -- 2.41.0