]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/ImportBundle/Controller/PocketController.php
Some cleanup
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / Controller / PocketController.php
CommitLineData
1f4408de
NL
1<?php
2
3namespace Wallabag\ImportBundle\Controller;
4
5use Symfony\Bundle\FrameworkBundle\Controller\Controller;
1d76102a 6use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
1f4408de 7use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
c10fcb3b
TC
8use Symfony\Component\HttpFoundation\Request;
9use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
10
1f4408de
NL
11class PocketController extends Controller
12{
13 /**
7019c7cf 14 * @Route("/pocket", name="import_pocket")
1f4408de 15 */
d51b38ed 16 public function indexAction()
1f4408de 17 {
c10fcb3b
TC
18 $pocket = $this->get('wallabag_import.pocket.import');
19 $form = $this->createFormBuilder($pocket)
0d42217e
JB
20 ->add('mark_as_read', CheckboxType::class, array(
21 'label' => 'import.form.mark_as_read_label',
79d0e38e
JB
22 'required' => false,
23 ))
c10fcb3b 24 ->getForm();
c10fcb3b 25
7019c7cf
JB
26 return $this->render('WallabagImportBundle:Pocket:index.html.twig', [
27 'import' => $this->get('wallabag_import.pocket.import'),
1e3ed714 28 'has_consumer_key' => '' == trim($this->get('craue_config')->get('pocket_consumer_key')) ? false : true,
c10fcb3b 29 'form' => $form->createView(),
7019c7cf 30 ]);
1f4408de
NL
31 }
32
1f4408de 33 /**
7019c7cf 34 * @Route("/pocket/auth", name="import_pocket_auth")
1f4408de 35 */
c10fcb3b 36 public function authAction(Request $request)
1f4408de 37 {
252ebd60 38 $requestToken = $this->get('wallabag_import.pocket.import')
27e475a9 39 ->getRequestToken($this->generateUrl('import', array(), UrlGeneratorInterface::ABSOLUTE_URL));
252ebd60
JB
40
41 $this->get('session')->set('import.pocket.code', $requestToken);
0d42217e 42 $this->get('session')->set('mark_as_read', $request->request->get('form')['mark_as_read']);
1f4408de 43
252ebd60 44 return $this->redirect(
27e475a9 45 'https://getpocket.com/auth/authorize?request_token='.$requestToken.'&redirect_uri='.$this->generateUrl('import_pocket_callback', array(), UrlGeneratorInterface::ABSOLUTE_URL),
252ebd60
JB
46 301
47 );
1f4408de
NL
48 }
49
50 /**
7019c7cf 51 * @Route("/pocket/callback", name="import_pocket_callback")
1f4408de
NL
52 */
53 public function callbackAction()
54 {
4204a06b 55 $message = 'flashes.import.notice.failed';
0aa344dc 56 $pocket = $this->get('wallabag_import.pocket.import');
4204a06b 57
0d42217e
JB
58 $markAsRead = $this->get('session')->get('mark_as_read');
59 $this->get('session')->remove('mark_as_read');
252ebd60
JB
60
61 // something bad happend on pocket side
62 if (false === $pocket->authorize($this->get('session')->get('import.pocket.code'))) {
63 $this->get('session')->getFlashBag()->add(
64 'notice',
65 $message
66 );
67
68 return $this->redirect($this->generateUrl('import_pocket'));
69 }
70
c10fcb3b 71 if (true === $pocket->setMarkAsRead($markAsRead)->import()) {
252ebd60 72 $summary = $pocket->getSummary();
4204a06b
JB
73 $message = $this->get('translator')->trans('flashes.import.notice.summary', array(
74 '%imported%' => $summary['imported'],
75 '%skipped%' => $summary['skipped'],
76 ));
252ebd60
JB
77 }
78
79 $this->get('session')->getFlashBag()->add(
80 'notice',
81 $message
82 );
1f4408de
NL
83
84 return $this->redirect($this->generateUrl('homepage'));
85 }
1f4408de 86}