wallabag/src/Wallabag/ImportBundle/Controller/PocketController.php

83 lines
2.9 KiB
PHP
Raw Normal View History

2015-10-20 11:58:13 +00:00
<?php
namespace Wallabag\ImportBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
2015-10-20 11:58:13 +00:00
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
2016-02-13 13:32:16 +00:00
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
2015-10-20 11:58:13 +00:00
class PocketController extends Controller
{
/**
* @Route("/pocket", name="import_pocket")
2015-10-20 11:58:13 +00:00
*/
public function indexAction()
2015-10-20 11:58:13 +00:00
{
2016-02-13 13:32:16 +00:00
$pocket = $this->get('wallabag_import.pocket.import');
$form = $this->createFormBuilder($pocket)
->add('read', CheckboxType::class, array(
'label' => 'Mark all as read',
'required' => false,
))
2016-02-13 13:32:16 +00:00
->getForm();
return $this->render('WallabagImportBundle:Pocket:index.html.twig', [
'import' => $this->get('wallabag_import.pocket.import'),
'has_consumer_key' => '' == trim($this->get('craue_config')->get('pocket_consumer_key')) ? false : true,
2016-02-13 13:32:16 +00:00
'form' => $form->createView(),
]);
2015-10-20 11:58:13 +00:00
}
/**
* @Route("/pocket/auth", name="import_pocket_auth")
2015-10-20 11:58:13 +00:00
*/
2016-02-13 13:32:16 +00:00
public function authAction(Request $request)
2015-10-20 11:58:13 +00:00
{
$requestToken = $this->get('wallabag_import.pocket.import')
2016-01-13 21:53:36 +00:00
->getRequestToken($this->generateUrl('import', array(), UrlGeneratorInterface::ABSOLUTE_URL));
$this->get('session')->set('import.pocket.code', $requestToken);
$this->get('session')->set('read', $request->request->get('form')['read']);
2015-10-20 11:58:13 +00:00
return $this->redirect(
2016-01-13 21:53:36 +00:00
'https://getpocket.com/auth/authorize?request_token='.$requestToken.'&redirect_uri='.$this->generateUrl('import_pocket_callback', array(), UrlGeneratorInterface::ABSOLUTE_URL),
301
);
2015-10-20 11:58:13 +00:00
}
/**
* @Route("/pocket/callback", name="import_pocket_callback")
2015-10-20 11:58:13 +00:00
*/
public function callbackAction()
{
$message = 'Import failed, please try again.';
$pocket = $this->get('wallabag_import.pocket.import');
2016-02-13 13:32:16 +00:00
$markAsRead = $this->get('session')->get('read');
$this->get('session')->remove('read');
// something bad happend on pocket side
if (false === $pocket->authorize($this->get('session')->get('import.pocket.code'))) {
$this->get('session')->getFlashBag()->add(
'notice',
$message
);
return $this->redirect($this->generateUrl('import_pocket'));
}
2016-02-13 13:32:16 +00:00
if (true === $pocket->setMarkAsRead($markAsRead)->import()) {
$summary = $pocket->getSummary();
2015-12-30 12:26:30 +00:00
$message = 'Import summary: '.$summary['imported'].' imported, '.$summary['skipped'].' already saved.';
}
$this->get('session')->getFlashBag()->add(
'notice',
$message
);
2015-10-20 11:58:13 +00:00
return $this->redirect($this->generateUrl('homepage'));
}
}