2015-10-20 11:58:13 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Wallabag\ImportBundle\Controller;
|
|
|
|
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
2016-01-09 17:38:40 +00:00
|
|
|
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
|
|
|
|
{
|
2016-09-03 15:36:57 +00:00
|
|
|
/**
|
|
|
|
* Return Pocket Import Service with or without RabbitMQ enabled.
|
|
|
|
*
|
|
|
|
* @return \Wallabag\ImportBundle\Import\PocketImport
|
|
|
|
*/
|
|
|
|
private function getPocketImportService()
|
|
|
|
{
|
|
|
|
$pocket = $this->get('wallabag_import.pocket.import');
|
|
|
|
$pocket->setUser($this->getUser());
|
|
|
|
|
|
|
|
if ($this->get('craue_config')->get('rabbitmq')) {
|
2016-09-04 19:49:21 +00:00
|
|
|
$pocket->setRabbitmqProducer($this->get('old_sound_rabbit_mq.import_pocket_producer'));
|
2016-09-03 15:36:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $pocket;
|
|
|
|
}
|
|
|
|
|
2015-10-20 11:58:13 +00:00
|
|
|
/**
|
2015-12-31 10:24:46 +00:00
|
|
|
* @Route("/pocket", name="import_pocket")
|
2015-10-20 11:58:13 +00:00
|
|
|
*/
|
2015-10-23 12:45:50 +00:00
|
|
|
public function indexAction()
|
2015-10-20 11:58:13 +00:00
|
|
|
{
|
2016-09-03 15:36:57 +00:00
|
|
|
$pocket = $this->getPocketImportService();
|
2016-02-13 13:32:16 +00:00
|
|
|
$form = $this->createFormBuilder($pocket)
|
2016-04-12 09:36:01 +00:00
|
|
|
->add('mark_as_read', CheckboxType::class, [
|
2016-03-09 07:59:08 +00:00
|
|
|
'label' => 'import.form.mark_as_read_label',
|
2016-03-04 09:04:51 +00:00
|
|
|
'required' => false,
|
2016-04-12 09:36:01 +00:00
|
|
|
])
|
2016-02-13 13:32:16 +00:00
|
|
|
->getForm();
|
|
|
|
|
2015-12-31 10:24:46 +00:00
|
|
|
return $this->render('WallabagImportBundle:Pocket:index.html.twig', [
|
2016-09-03 15:36:57 +00:00
|
|
|
'import' => $this->getPocketImportService(),
|
2016-01-21 09:59:21 +00:00
|
|
|
'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-12-31 10:24:46 +00:00
|
|
|
]);
|
2015-10-20 11:58:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-12-31 10:24:46 +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
|
|
|
{
|
2016-09-03 15:36:57 +00:00
|
|
|
$requestToken = $this->getPocketImportService()
|
2016-04-12 09:36:01 +00:00
|
|
|
->getRequestToken($this->generateUrl('import', [], UrlGeneratorInterface::ABSOLUTE_URL));
|
2015-12-30 11:23:51 +00:00
|
|
|
|
2016-03-27 18:35:56 +00:00
|
|
|
if (false === $requestToken) {
|
|
|
|
$this->get('session')->getFlashBag()->add(
|
|
|
|
'notice',
|
|
|
|
'flashes.import.notice.failed'
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->redirect($this->generateUrl('import_pocket'));
|
|
|
|
}
|
|
|
|
|
2015-12-30 11:23:51 +00:00
|
|
|
$this->get('session')->set('import.pocket.code', $requestToken);
|
2016-03-09 07:59:08 +00:00
|
|
|
$this->get('session')->set('mark_as_read', $request->request->get('form')['mark_as_read']);
|
2015-10-20 11:58:13 +00:00
|
|
|
|
2015-12-30 11:23:51 +00:00
|
|
|
return $this->redirect(
|
2016-04-12 09:36:01 +00:00
|
|
|
'https://getpocket.com/auth/authorize?request_token='.$requestToken.'&redirect_uri='.$this->generateUrl('import_pocket_callback', [], UrlGeneratorInterface::ABSOLUTE_URL),
|
2015-12-30 11:23:51 +00:00
|
|
|
301
|
|
|
|
);
|
2015-10-20 11:58:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-12-31 10:24:46 +00:00
|
|
|
* @Route("/pocket/callback", name="import_pocket_callback")
|
2015-10-20 11:58:13 +00:00
|
|
|
*/
|
|
|
|
public function callbackAction()
|
|
|
|
{
|
2016-03-11 13:48:46 +00:00
|
|
|
$message = 'flashes.import.notice.failed';
|
2016-09-03 15:36:57 +00:00
|
|
|
$pocket = $this->getPocketImportService();
|
2016-03-11 13:48:46 +00:00
|
|
|
|
2016-03-09 07:59:08 +00:00
|
|
|
$markAsRead = $this->get('session')->get('mark_as_read');
|
|
|
|
$this->get('session')->remove('mark_as_read');
|
2015-12-30 11:23:51 +00:00
|
|
|
|
|
|
|
// 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()) {
|
2015-12-30 11:23:51 +00:00
|
|
|
$summary = $pocket->getSummary();
|
2016-04-12 09:36:01 +00:00
|
|
|
$message = $this->get('translator')->trans('flashes.import.notice.summary', [
|
2016-03-11 13:48:46 +00:00
|
|
|
'%imported%' => $summary['imported'],
|
|
|
|
'%skipped%' => $summary['skipped'],
|
2016-04-12 09:36:01 +00:00
|
|
|
]);
|
2015-12-30 11:23:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->get('session')->getFlashBag()->add(
|
|
|
|
'notice',
|
|
|
|
$message
|
|
|
|
);
|
2015-10-20 11:58:13 +00:00
|
|
|
|
|
|
|
return $this->redirect($this->generateUrl('homepage'));
|
|
|
|
}
|
|
|
|
}
|