]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/ImportBundle/Controller/PocketController.php
Merge pull request #1774 from wallabag/v2-key-translation
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / Controller / PocketController.php
1 <?php
2
3 namespace Wallabag\ImportBundle\Controller;
4
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;
10
11 class PocketController extends Controller
12 {
13 /**
14 * @Route("/pocket", name="import_pocket")
15 */
16 public function indexAction()
17 {
18 $pocket = $this->get('wallabag_import.pocket.import');
19 $form = $this->createFormBuilder($pocket)
20 ->add('mark_as_read', CheckboxType::class, array(
21 'label' => 'import.form.mark_as_read_label',
22 'required' => false,
23 ))
24 ->getForm();
25
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(),
30 ]);
31 }
32
33 /**
34 * @Route("/pocket/auth", name="import_pocket_auth")
35 */
36 public function authAction(Request $request)
37 {
38 $requestToken = $this->get('wallabag_import.pocket.import')
39 ->getRequestToken($this->generateUrl('import', array(), UrlGeneratorInterface::ABSOLUTE_URL));
40
41 $this->get('session')->set('import.pocket.code', $requestToken);
42 $this->get('session')->set('mark_as_read', $request->request->get('form')['mark_as_read']);
43
44 return $this->redirect(
45 'https://getpocket.com/auth/authorize?request_token='.$requestToken.'&redirect_uri='.$this->generateUrl('import_pocket_callback', array(), UrlGeneratorInterface::ABSOLUTE_URL),
46 301
47 );
48 }
49
50 /**
51 * @Route("/pocket/callback", name="import_pocket_callback")
52 */
53 public function callbackAction()
54 {
55 $message = 'flashes.import.notice.failed';
56 $pocket = $this->get('wallabag_import.pocket.import');
57
58 $markAsRead = $this->get('session')->get('mark_as_read');
59 $this->get('session')->remove('mark_as_read');
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
71 if (true === $pocket->setMarkAsRead($markAsRead)->import()) {
72 $summary = $pocket->getSummary();
73 $message = $this->get('translator')->trans('flashes.import.notice.summary', array(
74 '%imported%' => $summary['imported'],
75 '%skipped%' => $summary['skipped'],
76 ));
77 }
78
79 $this->get('session')->getFlashBag()->add(
80 'notice',
81 $message
82 );
83
84 return $this->redirect($this->generateUrl('homepage'));
85 }
86 }