]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/ImportBundle/Controller/PocketController.php
Add a real configuration for CS-Fixer
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / Controller / PocketController.php
CommitLineData
1f4408de
NL
1<?php
2
3namespace Wallabag\ImportBundle\Controller;
4
1f4408de 5use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
f808b016 6use Symfony\Bundle\FrameworkBundle\Controller\Controller;
c10fcb3b 7use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
f808b016
JB
8use Symfony\Component\HttpFoundation\Request;
9use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
c10fcb3b 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 {
ef75e122 18 $pocket = $this->getPocketImportService();
c10fcb3b 19 $form = $this->createFormBuilder($pocket)
4094ea47 20 ->add('mark_as_read', CheckboxType::class, [
0d42217e 21 'label' => 'import.form.mark_as_read_label',
79d0e38e 22 'required' => false,
4094ea47 23 ])
c10fcb3b 24 ->getForm();
c10fcb3b 25
7019c7cf 26 return $this->render('WallabagImportBundle:Pocket:index.html.twig', [
ef75e122 27 'import' => $this->getPocketImportService(),
ebe0787e 28 'has_consumer_key' => '' === trim($this->getUser()->getConfig()->getPocketConsumerKey()) ? 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 {
ef75e122 38 $requestToken = $this->getPocketImportService()
4094ea47 39 ->getRequestToken($this->generateUrl('import', [], UrlGeneratorInterface::ABSOLUTE_URL));
252ebd60 40
4d0ec0e7
JB
41 if (false === $requestToken) {
42 $this->get('session')->getFlashBag()->add(
43 'notice',
44 'flashes.import.notice.failed'
45 );
46
47 return $this->redirect($this->generateUrl('import_pocket'));
48 }
49
252ebd60 50 $this->get('session')->set('import.pocket.code', $requestToken);
0d42217e 51 $this->get('session')->set('mark_as_read', $request->request->get('form')['mark_as_read']);
1f4408de 52
252ebd60 53 return $this->redirect(
f808b016 54 'https://getpocket.com/auth/authorize?request_token=' . $requestToken . '&redirect_uri=' . $this->generateUrl('import_pocket_callback', [], UrlGeneratorInterface::ABSOLUTE_URL),
252ebd60
JB
55 301
56 );
1f4408de
NL
57 }
58
59 /**
7019c7cf 60 * @Route("/pocket/callback", name="import_pocket_callback")
1f4408de
NL
61 */
62 public function callbackAction()
63 {
4204a06b 64 $message = 'flashes.import.notice.failed';
ef75e122 65 $pocket = $this->getPocketImportService();
4204a06b 66
0d42217e
JB
67 $markAsRead = $this->get('session')->get('mark_as_read');
68 $this->get('session')->remove('mark_as_read');
252ebd60
JB
69
70 // something bad happend on pocket side
71 if (false === $pocket->authorize($this->get('session')->get('import.pocket.code'))) {
72 $this->get('session')->getFlashBag()->add(
73 'notice',
74 $message
75 );
76
77 return $this->redirect($this->generateUrl('import_pocket'));
78 }
79
c10fcb3b 80 if (true === $pocket->setMarkAsRead($markAsRead)->import()) {
252ebd60 81 $summary = $pocket->getSummary();
4094ea47 82 $message = $this->get('translator')->trans('flashes.import.notice.summary', [
4204a06b
JB
83 '%imported%' => $summary['imported'],
84 '%skipped%' => $summary['skipped'],
4094ea47 85 ]);
c80cc01a
JB
86
87 if (0 < $summary['queued']) {
88 $message = $this->get('translator')->trans('flashes.import.notice.summary_with_queue', [
89 '%queued%' => $summary['queued'],
90 ]);
91 }
252ebd60
JB
92 }
93
94 $this->get('session')->getFlashBag()->add(
95 'notice',
96 $message
97 );
1f4408de
NL
98
99 return $this->redirect($this->generateUrl('homepage'));
100 }
f808b016
JB
101
102 /**
103 * Return Pocket Import Service with or without RabbitMQ enabled.
104 *
105 * @return \Wallabag\ImportBundle\Import\PocketImport
106 */
107 private function getPocketImportService()
108 {
109 $pocket = $this->get('wallabag_import.pocket.import');
110 $pocket->setUser($this->getUser());
111
112 if ($this->get('craue_config')->get('import_with_rabbitmq')) {
113 $pocket->setProducer($this->get('old_sound_rabbit_mq.import_pocket_producer'));
114 } elseif ($this->get('craue_config')->get('import_with_redis')) {
115 $pocket->setProducer($this->get('wallabag_import.producer.redis.pocket'));
116 }
117
118 return $pocket;
119 }
1f4408de 120}