service call

This commit is contained in:
Nicolas Lœuillet 2015-10-23 14:09:19 +02:00 committed by Jeremy Benoist
parent 9c9c23cf08
commit 557e549db7

View file

@ -21,7 +21,7 @@ class PocketController extends Controller
*/ */
public function authAction() public function authAction()
{ {
$pocket = new PocketImport($this->get('security.token_storage'), $this->get('session'), $this->getDoctrine()->getManager(), $this->container->getParameter('pocket_consumer_key')); $pocket = $this->get('wallabag_import.import.pocket_import');
$authUrl = $pocket->oAuthRequest($this->generateUrl('import', array(), true), $this->generateUrl('callbackpocket', array(), true)); $authUrl = $pocket->oAuthRequest($this->generateUrl('import', array(), true), $this->generateUrl('callbackpocket', array(), true));
return $this->redirect($authUrl, 301); return $this->redirect($authUrl, 301);
@ -32,7 +32,7 @@ class PocketController extends Controller
*/ */
public function callbackAction() public function callbackAction()
{ {
$pocket = new PocketImport($this->get('security.token_storage'), $this->get('session'), $this->getDoctrine()->getManager(), $this->container->getParameter('pocket_consumer_key')); $pocket = $this->get('wallabag_import.import.pocket_import');
$accessToken = $pocket->oAuthAuthorize(); $accessToken = $pocket->oAuthAuthorize();
$pocket->import($accessToken); $pocket->import($accessToken);