]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/ImportBundle/Controller/PocketController.php
Merge pull request #1642 from wallabag/v2-escape-preview
[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
9 class PocketController extends Controller
10 {
11 /**
12 * @Route("/pocket", name="import_pocket")
13 */
14 public function indexAction()
15 {
16 return $this->render('WallabagImportBundle:Pocket:index.html.twig', [
17 'import' => $this->get('wallabag_import.pocket.import'),
18 'has_consumer_key' => '' == trim($this->get('craue_config')->get('pocket_consumer_key')) ? false : true,
19 ]);
20 }
21
22 /**
23 * @Route("/pocket/auth", name="import_pocket_auth")
24 */
25 public function authAction()
26 {
27 $requestToken = $this->get('wallabag_import.pocket.import')
28 ->getRequestToken($this->generateUrl('import', array(), UrlGeneratorInterface::ABSOLUTE_URL));
29
30 $this->get('session')->set('import.pocket.code', $requestToken);
31
32 return $this->redirect(
33 'https://getpocket.com/auth/authorize?request_token='.$requestToken.'&redirect_uri='.$this->generateUrl('import_pocket_callback', array(), UrlGeneratorInterface::ABSOLUTE_URL),
34 301
35 );
36 }
37
38 /**
39 * @Route("/pocket/callback", name="import_pocket_callback")
40 */
41 public function callbackAction()
42 {
43 $message = 'Import failed, please try again.';
44 $pocket = $this->get('wallabag_import.pocket.import');
45
46 // something bad happend on pocket side
47 if (false === $pocket->authorize($this->get('session')->get('import.pocket.code'))) {
48 $this->get('session')->getFlashBag()->add(
49 'notice',
50 $message
51 );
52
53 return $this->redirect($this->generateUrl('import_pocket'));
54 }
55
56 if (true === $pocket->import()) {
57 $summary = $pocket->getSummary();
58 $message = 'Import summary: '.$summary['imported'].' imported, '.$summary['skipped'].' already saved.';
59 }
60
61 $this->get('session')->getFlashBag()->add(
62 'notice',
63 $message
64 );
65
66 return $this->redirect($this->generateUrl('homepage'));
67 }
68 }