2016-02-15 22:12:50 +01:00
|
|
|
<?php
|
|
|
|
|
2016-10-08 00:02:22 +02:00
|
|
|
namespace Wallabag\ApiBundle\Controller;
|
2016-02-15 22:12:50 +01:00
|
|
|
|
2022-12-19 10:37:22 +01:00
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
2022-08-28 16:59:43 +02:00
|
|
|
use Symfony\Component\HttpFoundation\RedirectResponse;
|
2017-07-01 09:52:38 +02:00
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
2022-08-28 16:59:43 +02:00
|
|
|
use Symfony\Component\HttpFoundation\Response;
|
2025-03-23 22:12:08 +01:00
|
|
|
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
|
2018-10-04 14:07:20 +02:00
|
|
|
use Symfony\Component\Routing\Annotation\Route;
|
2022-12-19 10:37:22 +01:00
|
|
|
use Symfony\Contracts\Translation\TranslatorInterface;
|
2016-02-16 13:49:25 +01:00
|
|
|
use Wallabag\ApiBundle\Entity\Client;
|
2016-10-08 00:02:22 +02:00
|
|
|
use Wallabag\ApiBundle\Form\Type\ClientType;
|
2022-12-19 10:37:22 +01:00
|
|
|
use Wallabag\ApiBundle\Repository\ClientRepository;
|
2016-02-15 22:12:50 +01:00
|
|
|
|
2022-12-19 10:37:22 +01:00
|
|
|
class DeveloperController extends AbstractController
|
2016-02-15 22:12:50 +01:00
|
|
|
{
|
|
|
|
/**
|
2016-03-05 22:29:58 +01:00
|
|
|
* List all clients and link to create a new one.
|
|
|
|
*
|
2016-02-15 22:12:50 +01:00
|
|
|
* @Route("/developer", name="developer")
|
2016-02-16 07:55:18 +01:00
|
|
|
*
|
2022-08-28 16:59:43 +02:00
|
|
|
* @return Response
|
2016-02-15 22:12:50 +01:00
|
|
|
*/
|
2022-12-19 10:37:22 +01:00
|
|
|
public function indexAction(ClientRepository $repo)
|
2016-02-15 22:12:50 +01:00
|
|
|
{
|
2022-12-19 10:37:22 +01:00
|
|
|
$clients = $repo->findByUser($this->getUser()->getId());
|
2016-03-05 21:44:39 +01:00
|
|
|
|
2022-11-23 14:49:52 +01:00
|
|
|
return $this->render('@WallabagCore/Developer/index.html.twig', [
|
2016-03-05 21:44:39 +01:00
|
|
|
'clients' => $clients,
|
2016-04-12 11:36:01 +02:00
|
|
|
]);
|
2016-02-15 22:12:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-03-05 22:29:58 +01:00
|
|
|
* Create a client (an app).
|
|
|
|
*
|
2016-03-05 21:44:39 +01:00
|
|
|
* @Route("/developer/client/create", name="developer_create_client")
|
2016-02-16 07:55:18 +01:00
|
|
|
*
|
2022-08-28 16:59:43 +02:00
|
|
|
* @return Response
|
2016-02-15 22:12:50 +01:00
|
|
|
*/
|
2022-12-19 10:37:22 +01:00
|
|
|
public function createClientAction(Request $request, EntityManagerInterface $entityManager, TranslatorInterface $translator)
|
2016-02-15 22:12:50 +01:00
|
|
|
{
|
2016-10-24 21:56:28 +02:00
|
|
|
$client = new Client($this->getUser());
|
2016-02-16 13:49:25 +01:00
|
|
|
$clientForm = $this->createForm(ClientType::class, $client);
|
|
|
|
$clientForm->handleRequest($request);
|
|
|
|
|
2016-12-14 11:54:30 +01:00
|
|
|
if ($clientForm->isSubmitted() && $clientForm->isValid()) {
|
2017-07-08 19:28:12 +02:00
|
|
|
$client->setAllowedGrantTypes(['token', 'authorization_code', 'password', 'refresh_token']);
|
2022-12-19 10:37:22 +01:00
|
|
|
$entityManager->persist($client);
|
|
|
|
$entityManager->flush();
|
2016-02-16 13:49:25 +01:00
|
|
|
|
2022-12-19 10:37:22 +01:00
|
|
|
$this->addFlash(
|
2016-02-16 13:49:25 +01:00
|
|
|
'notice',
|
2022-12-19 10:37:22 +01:00
|
|
|
$translator->trans('flashes.developer.notice.client_created', ['%name%' => $client->getName()])
|
2016-02-16 13:49:25 +01:00
|
|
|
);
|
|
|
|
|
2022-11-23 14:49:52 +01:00
|
|
|
return $this->render('@WallabagCore/Developer/client_parameters.html.twig', [
|
2016-02-16 13:49:25 +01:00
|
|
|
'client_id' => $client->getPublicId(),
|
|
|
|
'client_secret' => $client->getSecret(),
|
2016-05-21 18:09:38 +02:00
|
|
|
'client_name' => $client->getName(),
|
2016-04-12 11:36:01 +02:00
|
|
|
]);
|
2016-02-16 13:49:25 +01:00
|
|
|
}
|
2016-02-15 22:12:50 +01:00
|
|
|
|
2022-11-23 14:49:52 +01:00
|
|
|
return $this->render('@WallabagCore/Developer/client.html.twig', [
|
2016-02-16 13:49:25 +01:00
|
|
|
'form' => $clientForm->createView(),
|
2016-04-12 11:36:01 +02:00
|
|
|
]);
|
2016-02-15 22:12:50 +01:00
|
|
|
}
|
2016-02-16 07:55:18 +01:00
|
|
|
|
|
|
|
/**
|
2016-03-05 21:44:39 +01:00
|
|
|
* Remove a client.
|
|
|
|
*
|
2023-07-29 10:31:51 +02:00
|
|
|
* @Route("/developer/client/delete/{id}", requirements={"id" = "\d+"}, name="developer_delete_client", methods={"POST"})
|
2016-03-05 21:44:39 +01:00
|
|
|
*
|
2022-08-28 16:59:43 +02:00
|
|
|
* @return RedirectResponse
|
2016-03-05 21:44:39 +01:00
|
|
|
*/
|
2023-07-29 10:31:51 +02:00
|
|
|
public function deleteClientAction(Request $request, Client $client, EntityManagerInterface $entityManager, TranslatorInterface $translator)
|
2016-03-05 21:44:39 +01:00
|
|
|
{
|
2023-07-29 10:31:51 +02:00
|
|
|
if (!$this->isCsrfTokenValid('delete-client', $request->request->get('token'))) {
|
2025-03-23 22:12:08 +01:00
|
|
|
throw new BadRequestHttpException('Bad CSRF token.');
|
2023-07-29 10:31:51 +02:00
|
|
|
}
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
if (null === $this->getUser() || $client->getUser()->getId() !== $this->getUser()->getId()) {
|
2016-10-24 21:56:28 +02:00
|
|
|
throw $this->createAccessDeniedException('You can not access this client.');
|
|
|
|
}
|
|
|
|
|
2022-12-19 10:37:22 +01:00
|
|
|
$entityManager->remove($client);
|
|
|
|
$entityManager->flush();
|
2016-03-05 21:44:39 +01:00
|
|
|
|
2022-12-19 10:37:22 +01:00
|
|
|
$this->addFlash(
|
2016-03-05 21:44:39 +01:00
|
|
|
'notice',
|
2022-12-19 10:37:22 +01:00
|
|
|
$translator->trans('flashes.developer.notice.client_deleted', ['%name%' => $client->getName()])
|
2016-03-05 21:44:39 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
return $this->redirect($this->generateUrl('developer'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-03-05 22:29:58 +01:00
|
|
|
* Display developer how to use an existing app.
|
|
|
|
*
|
2016-03-05 21:44:39 +01:00
|
|
|
* @Route("/developer/howto/first-app", name="developer_howto_firstapp")
|
2016-02-16 07:55:18 +01:00
|
|
|
*
|
2022-08-28 16:59:43 +02:00
|
|
|
* @return Response
|
2016-02-16 07:55:18 +01:00
|
|
|
*/
|
2016-02-16 13:49:25 +01:00
|
|
|
public function howtoFirstAppAction()
|
2016-02-16 07:55:18 +01:00
|
|
|
{
|
2023-07-30 10:05:59 +02:00
|
|
|
return $this->render('@WallabagCore/Developer/howto_app.html.twig',
|
|
|
|
[
|
|
|
|
'wallabag_url' => $this->getParameter('domain_name'),
|
|
|
|
]);
|
2016-02-16 07:55:18 +01:00
|
|
|
}
|
2016-02-15 22:12:50 +01:00
|
|
|
}
|