render('WallabagImportBundle:Pocket:index.html.twig', [ 'import' => $this->get('wallabag_import.pocket.import'), 'has_consumer_key' => '' == trim($this->get('craue_config')->get('pocket_consumer_key')) ? false : true, ]); } /** * @Route("/pocket/auth", name="import_pocket_auth") */ public function authAction() { $requestToken = $this->get('wallabag_import.pocket.import') ->getRequestToken($this->generateUrl('import', array(), UrlGeneratorInterface::ABSOLUTE_URL)); $this->get('session')->set('import.pocket.code', $requestToken); return $this->redirect( 'https://getpocket.com/auth/authorize?request_token='.$requestToken.'&redirect_uri='.$this->generateUrl('import_pocket_callback', array(), UrlGeneratorInterface::ABSOLUTE_URL), 301 ); } /** * @Route("/pocket/callback", name="import_pocket_callback") */ public function callbackAction() { $message = 'Import failed, please try again.'; $pocket = $this->get('wallabag_import.pocket.import'); // something bad happend on pocket side if (false === $pocket->authorize($this->get('session')->get('import.pocket.code'))) { $this->get('session')->getFlashBag()->add( 'notice', $message ); return $this->redirect($this->generateUrl('import_pocket')); } if (true === $pocket->import()) { $summary = $pocket->getSummary(); $message = 'Import summary: '.$summary['imported'].' imported, '.$summary['skipped'].' already saved.'; } $this->get('session')->getFlashBag()->add( 'notice', $message ); return $this->redirect($this->generateUrl('homepage')); } }