wallabag/src/Controller/Api/DeveloperController.php

111 lines
3.6 KiB
PHP
Raw Normal View History

<?php
2023-12-31 08:28:37 +00:00
namespace Wallabag\CoreBundle\Controller\Api;
use Doctrine\ORM\EntityManagerInterface;
2022-08-28 14:59:43 +00:00
use Symfony\Component\HttpFoundation\RedirectResponse;
2017-07-01 07:52:38 +00:00
use Symfony\Component\HttpFoundation\Request;
2022-08-28 14:59:43 +00:00
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Contracts\Translation\TranslatorInterface;
2024-01-01 18:51:22 +00:00
use Wallabag\CoreBundle\Controller\AbstractController;
2023-12-31 08:34:04 +00:00
use Wallabag\CoreBundle\Entity\Api\Client;
2023-12-31 08:38:27 +00:00
use Wallabag\CoreBundle\Form\Type\Api\ClientType;
2023-12-31 08:36:05 +00:00
use Wallabag\CoreBundle\Repository\Api\ClientRepository;
class DeveloperController extends AbstractController
{
/**
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
*
2022-08-28 14:59:43 +00:00
* @return Response
*/
public function indexAction(ClientRepository $repo)
{
$clients = $repo->findByUser($this->getUser()->getId());
2024-02-18 23:03:14 +00:00
return $this->render('Developer/index.html.twig', [
'clients' => $clients,
]);
}
/**
2016-03-05 21:29:58 +00:00
* Create a client (an app).
*
* @Route("/developer/client/create", name="developer_create_client")
2016-02-16 06:55:18 +00:00
*
2022-08-28 14:59:43 +00:00
* @return Response
*/
public function createClientAction(Request $request, EntityManagerInterface $entityManager, TranslatorInterface $translator)
{
$client = new Client($this->getUser());
$clientForm = $this->createForm(ClientType::class, $client);
$clientForm->handleRequest($request);
2016-12-14 10:54:30 +00:00
if ($clientForm->isSubmitted() && $clientForm->isValid()) {
2017-07-08 17:28:12 +00:00
$client->setAllowedGrantTypes(['token', 'authorization_code', 'password', 'refresh_token']);
$entityManager->persist($client);
$entityManager->flush();
$this->addFlash(
'notice',
$translator->trans('flashes.developer.notice.client_created', ['%name%' => $client->getName()])
);
2024-02-18 23:03:14 +00:00
return $this->render('Developer/client_parameters.html.twig', [
'client_id' => $client->getPublicId(),
'client_secret' => $client->getSecret(),
'client_name' => $client->getName(),
]);
}
2024-02-18 23:03:14 +00:00
return $this->render('Developer/client.html.twig', [
'form' => $clientForm->createView(),
]);
}
2016-02-16 06:55:18 +00:00
/**
* Remove a client.
*
* @Route("/developer/client/delete/{id}", requirements={"id" = "\d+"}, name="developer_delete_client", methods={"POST"})
*
2022-08-28 14:59:43 +00:00
* @return RedirectResponse
*/
public function deleteClientAction(Request $request, Client $client, EntityManagerInterface $entityManager, TranslatorInterface $translator)
{
if (!$this->isCsrfTokenValid('delete-client', $request->request->get('token'))) {
throw $this->createAccessDeniedException('Bad CSRF token.');
}
2017-07-01 07:52:38 +00:00
if (null === $this->getUser() || $client->getUser()->getId() !== $this->getUser()->getId()) {
throw $this->createAccessDeniedException('You can not access this client.');
}
$entityManager->remove($client);
$entityManager->flush();
$this->addFlash(
'notice',
$translator->trans('flashes.developer.notice.client_deleted', ['%name%' => $client->getName()])
);
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
*
2022-08-28 14:59:43 +00:00
* @return Response
2016-02-16 06:55:18 +00:00
*/
public function howtoFirstAppAction()
2016-02-16 06:55:18 +00:00
{
2024-02-18 23:03:14 +00:00
return $this->render('Developer/howto_app.html.twig', [
'wallabag_url' => $this->getParameter('domain_name'),
]);
2016-02-16 06:55:18 +00:00
}
}