wallabag/src/Wallabag/CoreBundle/Controller/DeveloperController.php

101 lines
3 KiB
PHP
Raw Normal View History

<?php
namespace Wallabag\CoreBundle\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Wallabag\ApiBundle\Entity\Client;
use Wallabag\CoreBundle\Form\Type\ClientType;
class DeveloperController extends Controller
{
/**
2016-03-05 21:29:58 +00:00
* List all clients and link to create a new one.
*
* @Route("/developer", name="developer")
2016-02-16 06:55:18 +00:00
*
* @return \Symfony\Component\HttpFoundation\Response
*/
public function indexAction()
{
$clients = $this->getDoctrine()->getRepository('WallabagApiBundle:Client')->findAll();
return $this->render('WallabagCoreBundle:Developer:index.html.twig', array(
'clients' => $clients,
));
}
/**
2016-03-05 21:29:58 +00:00
* Create a client (an app).
*
* @param Request $request
*
* @Route("/developer/client/create", name="developer_create_client")
2016-02-16 06:55:18 +00:00
*
* @return \Symfony\Component\HttpFoundation\Response
*/
public function createClientAction(Request $request)
{
$em = $this->getDoctrine()->getManager();
$client = new Client();
$clientForm = $this->createForm(ClientType::class, $client);
$clientForm->handleRequest($request);
if ($clientForm->isValid()) {
2016-03-15 17:50:13 +00:00
$client->setAllowedGrantTypes(array('token', 'authorization_code', 'password', 'refresh_token'));
$em->persist($client);
$em->flush();
$this->get('session')->getFlashBag()->add(
'notice',
2016-03-16 22:56:42 +00:00
'flashes.developer.notice.client_created'
);
return $this->render('WallabagCoreBundle:Developer:client_parameters.html.twig', array(
'client_id' => $client->getPublicId(),
'client_secret' => $client->getSecret(),
));
}
return $this->render('WallabagCoreBundle:Developer:client.html.twig', array(
'form' => $clientForm->createView(),
));
}
2016-02-16 06:55:18 +00:00
/**
* Remove a client.
*
2016-03-05 21:29:58 +00:00
* @param Client $client
*
* @Route("/developer/client/delete/{id}", requirements={"id" = "\d+"}, name="developer_delete_client")
*
* @return \Symfony\Component\HttpFoundation\RedirectResponse
*/
2016-03-05 21:29:58 +00:00
public function deleteClientAction(Client $client)
{
$em = $this->getDoctrine()->getManager();
$em->remove($client);
$em->flush();
$this->get('session')->getFlashBag()->add(
'notice',
2016-03-16 22:56:42 +00:00
'flashes.developer.notice.client_deleted'
);
return $this->redirect($this->generateUrl('developer'));
}
/**
2016-03-05 21:29:58 +00:00
* Display developer how to use an existing app.
*
* @Route("/developer/howto/first-app", name="developer_howto_firstapp")
2016-02-16 06:55:18 +00:00
*
* @return \Symfony\Component\HttpFoundation\Response
*/
public function howtoFirstAppAction()
2016-02-16 06:55:18 +00:00
{
return $this->render('WallabagCoreBundle:Developer:howto_app.html.twig');
}
}