3 namespace Wallabag\ImportBundle\Controller
;
5 use Symfony\Bundle\FrameworkBundle\Controller\Controller
;
6 use Symfony\Component\Routing\Generator\UrlGeneratorInterface
;
7 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route
;
8 use Symfony\Component\HttpFoundation\Request
;
9 use Symfony\Component\Form\Extension\Core\Type\CheckboxType
;
11 class PocketController
extends Controller
14 * @Route("/pocket", name="import_pocket")
16 public function indexAction()
18 $pocket = $this->get('wallabag_import.pocket.import');
19 $form = $this->createFormBuilder($pocket)
20 ->add('read', CheckboxType
::class, array(
21 'label' => 'Mark all as read',
26 return $this->render('WallabagImportBundle:Pocket:index.html.twig', [
27 'import' => $this->get('wallabag_import.pocket.import'),
28 'has_consumer_key' => '' == trim($this->get('craue_config')->get('pocket_consumer_key')) ? false : true,
29 'form' => $form->createView(),
34 * @Route("/pocket/auth", name="import_pocket_auth")
36 public function authAction(Request
$request)
38 $requestToken = $this->get('wallabag_import.pocket.import')
39 ->getRequestToken($this->generateUrl('import', array(), UrlGeneratorInterface
::ABSOLUTE_URL
));
41 $this->get('session')->set('import.pocket.code', $requestToken);
42 $this->get('session')->set('read', $request->request
->get('form')['read']);
44 return $this->redirect(
45 'https://getpocket.com/auth/authorize?request_token='.$requestToken.'&redirect_uri='.$this->generateUrl('import_pocket_callback', array(), UrlGeneratorInterface
::ABSOLUTE_URL
),
51 * @Route("/pocket/callback", name="import_pocket_callback")
53 public function callbackAction()
55 $message = 'Import failed, please try again.';
56 $pocket = $this->get('wallabag_import.pocket.import');
57 $markAsRead = $this->get('session')->get('read');
58 $this->get('session')->remove('read');
60 // something bad happend on pocket side
61 if (false === $pocket->authorize($this->get('session')->get('import.pocket.code'))) {
62 $this->get('session')->getFlashBag()->add(
67 return $this->redirect($this->generateUrl('import_pocket'));
70 if (true === $pocket->setMarkAsRead($markAsRead)->import()) {
71 $summary = $pocket->getSummary();
72 $message = 'Import summary: '.$summary['imported'].' imported, '.$summary['skipped'].' already saved.';
75 $this->get('session')->getFlashBag()->add(
80 return $this->redirect($this->generateUrl('homepage'));