2017-04-29 17:22:50 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Wallabag\ApiBundle\Controller;
|
|
|
|
|
2022-08-28 00:01:46 +00:00
|
|
|
use Craue\ConfigBundle\Util\Config;
|
2017-04-29 17:22:50 +00:00
|
|
|
use FOS\UserBundle\Event\UserEvent;
|
|
|
|
use FOS\UserBundle\FOSUserEvents;
|
2022-08-28 00:01:46 +00:00
|
|
|
use FOS\UserBundle\Model\UserManagerInterface;
|
2017-04-29 17:22:50 +00:00
|
|
|
use JMS\Serializer\SerializationContext;
|
2022-08-28 00:01:46 +00:00
|
|
|
use JMS\Serializer\SerializerInterface;
|
2017-04-29 17:22:50 +00:00
|
|
|
use Nelmio\ApiDocBundle\Annotation\ApiDoc;
|
2022-08-28 00:01:46 +00:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
2017-04-29 17:22:50 +00:00
|
|
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
2017-07-01 07:52:38 +00:00
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
2022-08-28 00:01:46 +00:00
|
|
|
use Symfony\Component\Translation\TranslatorInterface;
|
2017-06-07 21:23:28 +00:00
|
|
|
use Wallabag\ApiBundle\Entity\Client;
|
2017-07-01 07:52:38 +00:00
|
|
|
use Wallabag\UserBundle\Entity\User;
|
2022-09-01 18:54:56 +00:00
|
|
|
use Wallabag\UserBundle\Form\NewUserType;
|
2017-04-29 17:22:50 +00:00
|
|
|
|
|
|
|
class UserRestController extends WallabagRestController
|
|
|
|
{
|
|
|
|
/**
|
2017-05-30 05:56:01 +00:00
|
|
|
* Retrieve current logged in user informations.
|
2017-04-29 17:22:50 +00:00
|
|
|
*
|
|
|
|
* @ApiDoc()
|
|
|
|
*
|
|
|
|
* @return JsonResponse
|
|
|
|
*/
|
|
|
|
public function getUserAction()
|
|
|
|
{
|
|
|
|
$this->validateAuthentication();
|
|
|
|
|
2017-05-30 05:56:01 +00:00
|
|
|
return $this->sendUser($this->getUser());
|
2017-04-29 17:22:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-06-08 12:25:44 +00:00
|
|
|
* Register an user and create a client.
|
2017-04-29 17:22:50 +00:00
|
|
|
*
|
|
|
|
* @ApiDoc(
|
|
|
|
* requirements={
|
|
|
|
* {"name"="username", "dataType"="string", "required"=true, "description"="The user's username"},
|
2017-05-30 05:56:01 +00:00
|
|
|
* {"name"="password", "dataType"="string", "required"=true, "description"="The user's password"},
|
2017-06-08 12:25:44 +00:00
|
|
|
* {"name"="email", "dataType"="string", "required"=true, "description"="The user's email"},
|
|
|
|
* {"name"="client_name", "dataType"="string", "required"=true, "description"="The client name (to be used by your app)"}
|
2017-04-29 17:22:50 +00:00
|
|
|
* }
|
|
|
|
* )
|
2017-05-30 05:56:01 +00:00
|
|
|
*
|
|
|
|
* @todo Make this method (or the whole API) accessible only through https
|
|
|
|
*
|
2017-04-29 17:22:50 +00:00
|
|
|
* @return JsonResponse
|
|
|
|
*/
|
2017-05-30 05:56:01 +00:00
|
|
|
public function putUserAction(Request $request)
|
2017-04-29 17:22:50 +00:00
|
|
|
{
|
2022-08-28 00:01:46 +00:00
|
|
|
if (!$this->container->getParameter('fosuser_registration') || !$this->get(Config::class)->get('api_user_registration')) {
|
|
|
|
$json = $this->get(SerializerInterface::class)->serialize(['error' => "Server doesn't allow registrations"], 'json');
|
2017-05-30 05:56:01 +00:00
|
|
|
|
2017-06-02 18:03:25 +00:00
|
|
|
return (new JsonResponse())
|
|
|
|
->setJson($json)
|
|
|
|
->setStatusCode(JsonResponse::HTTP_FORBIDDEN);
|
2017-04-29 17:22:50 +00:00
|
|
|
}
|
|
|
|
|
2022-08-28 00:01:46 +00:00
|
|
|
$userManager = $this->get(UserManagerInterface::class);
|
2017-05-30 05:56:01 +00:00
|
|
|
$user = $userManager->createUser();
|
2017-06-02 08:27:15 +00:00
|
|
|
// user will be disabled BY DEFAULT to avoid spamming account to be enabled
|
2017-06-02 08:19:33 +00:00
|
|
|
$user->setEnabled(false);
|
2017-04-29 17:22:50 +00:00
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
$form = $this->createForm(NewUserType::class, $user, [
|
2017-05-30 05:56:01 +00:00
|
|
|
'csrf_protection' => false,
|
|
|
|
]);
|
2017-04-29 17:22:50 +00:00
|
|
|
|
2017-05-30 05:56:01 +00:00
|
|
|
// simulate form submission
|
|
|
|
$form->submit([
|
|
|
|
'username' => $request->request->get('username'),
|
|
|
|
'plainPassword' => [
|
|
|
|
'first' => $request->request->get('password'),
|
|
|
|
'second' => $request->request->get('password'),
|
|
|
|
],
|
|
|
|
'email' => $request->request->get('email'),
|
|
|
|
]);
|
2017-04-29 17:22:50 +00:00
|
|
|
|
2017-05-30 05:56:01 +00:00
|
|
|
if ($form->isSubmitted() && false === $form->isValid()) {
|
|
|
|
$view = $this->view($form, 400);
|
|
|
|
$view->setFormat('json');
|
2017-04-29 17:22:50 +00:00
|
|
|
|
2017-05-30 05:56:01 +00:00
|
|
|
// handle errors in a more beautiful way than the default view
|
2017-12-08 11:10:26 +00:00
|
|
|
$data = json_decode($this->handleView($view)->getContent(), true)['errors']['children'];
|
2017-05-30 05:56:01 +00:00
|
|
|
$errors = [];
|
2017-04-29 17:22:50 +00:00
|
|
|
|
2017-05-30 05:56:01 +00:00
|
|
|
if (isset($data['username']['errors'])) {
|
|
|
|
$errors['username'] = $this->translateErrors($data['username']['errors']);
|
|
|
|
}
|
2017-04-29 17:22:50 +00:00
|
|
|
|
2017-05-30 05:56:01 +00:00
|
|
|
if (isset($data['email']['errors'])) {
|
|
|
|
$errors['email'] = $this->translateErrors($data['email']['errors']);
|
|
|
|
}
|
2017-04-29 17:22:50 +00:00
|
|
|
|
2017-05-30 05:56:01 +00:00
|
|
|
if (isset($data['plainPassword']['children']['first']['errors'])) {
|
|
|
|
$errors['password'] = $this->translateErrors($data['plainPassword']['children']['first']['errors']);
|
|
|
|
}
|
2017-04-29 17:22:50 +00:00
|
|
|
|
2022-08-28 00:01:46 +00:00
|
|
|
$json = $this->get(SerializerInterface::class)->serialize(['error' => $errors], 'json');
|
2017-04-29 17:22:50 +00:00
|
|
|
|
2017-06-02 18:03:25 +00:00
|
|
|
return (new JsonResponse())
|
|
|
|
->setJson($json)
|
|
|
|
->setStatusCode(JsonResponse::HTTP_BAD_REQUEST);
|
2017-05-30 05:56:01 +00:00
|
|
|
}
|
2017-04-29 17:22:50 +00:00
|
|
|
|
2017-06-07 21:23:28 +00:00
|
|
|
// create a default client
|
|
|
|
$client = new Client($user);
|
2017-06-08 12:25:44 +00:00
|
|
|
$client->setName($request->request->get('client_name', 'Default client'));
|
2017-06-07 21:23:28 +00:00
|
|
|
|
|
|
|
$this->getDoctrine()->getManager()->persist($client);
|
|
|
|
|
|
|
|
$user->addClient($client);
|
|
|
|
|
2017-05-30 05:56:01 +00:00
|
|
|
$userManager->updateUser($user);
|
2017-04-29 17:22:50 +00:00
|
|
|
|
|
|
|
// dispatch a created event so the associated config will be created
|
2017-05-30 05:56:01 +00:00
|
|
|
$event = new UserEvent($user, $request);
|
2022-08-28 00:01:46 +00:00
|
|
|
$this->get(EventDispatcherInterface::class)->dispatch(FOSUserEvents::USER_CREATED, $event);
|
2017-04-29 17:22:50 +00:00
|
|
|
|
2017-06-07 21:23:28 +00:00
|
|
|
return $this->sendUser($user, 'user_api_with_client', JsonResponse::HTTP_CREATED);
|
2017-05-30 05:56:01 +00:00
|
|
|
}
|
2017-04-29 17:22:50 +00:00
|
|
|
|
2017-05-30 05:56:01 +00:00
|
|
|
/**
|
|
|
|
* Send user response.
|
|
|
|
*
|
2017-06-07 21:23:28 +00:00
|
|
|
* @param string $group Used to define with serialized group might be used
|
|
|
|
* @param int $status HTTP Status code to send
|
2017-05-30 05:56:01 +00:00
|
|
|
*
|
|
|
|
* @return JsonResponse
|
|
|
|
*/
|
2017-06-07 21:23:28 +00:00
|
|
|
private function sendUser(User $user, $group = 'user_api', $status = JsonResponse::HTTP_OK)
|
2017-05-30 05:56:01 +00:00
|
|
|
{
|
2022-08-28 00:01:46 +00:00
|
|
|
$json = $this->get(SerializerInterface::class)->serialize(
|
2017-05-30 05:56:01 +00:00
|
|
|
$user,
|
|
|
|
'json',
|
2017-06-07 21:23:28 +00:00
|
|
|
SerializationContext::create()->setGroups([$group])
|
2017-05-30 05:56:01 +00:00
|
|
|
);
|
2017-04-29 17:22:50 +00:00
|
|
|
|
2017-06-02 18:03:25 +00:00
|
|
|
return (new JsonResponse())
|
|
|
|
->setJson($json)
|
|
|
|
->setStatusCode($status);
|
2017-04-29 17:22:50 +00:00
|
|
|
}
|
|
|
|
|
2017-05-30 05:56:01 +00:00
|
|
|
/**
|
|
|
|
* Translate errors message.
|
|
|
|
*
|
|
|
|
* @param array $errors
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private function translateErrors($errors)
|
|
|
|
{
|
|
|
|
$translatedErrors = [];
|
|
|
|
foreach ($errors as $error) {
|
2022-08-28 00:01:46 +00:00
|
|
|
$translatedErrors[] = $this->get(TranslatorInterface::class)->trans($error);
|
2017-05-30 05:56:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $translatedErrors;
|
|
|
|
}
|
2017-04-29 17:22:50 +00:00
|
|
|
}
|