diff options
Diffstat (limited to 'src/Wallabag/ApiBundle/Controller')
-rw-r--r-- | src/Wallabag/ApiBundle/Controller/UserRestController.php | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/src/Wallabag/ApiBundle/Controller/UserRestController.php b/src/Wallabag/ApiBundle/Controller/UserRestController.php index 8f675b8d..becbbb9e 100644 --- a/src/Wallabag/ApiBundle/Controller/UserRestController.php +++ b/src/Wallabag/ApiBundle/Controller/UserRestController.php | |||
@@ -9,6 +9,7 @@ use Nelmio\ApiDocBundle\Annotation\ApiDoc; | |||
9 | use Symfony\Component\HttpFoundation\Request; | 9 | use Symfony\Component\HttpFoundation\Request; |
10 | use Symfony\Component\HttpFoundation\JsonResponse; | 10 | use Symfony\Component\HttpFoundation\JsonResponse; |
11 | use Wallabag\UserBundle\Entity\User; | 11 | use Wallabag\UserBundle\Entity\User; |
12 | use Wallabag\ApiBundle\Entity\Client; | ||
12 | 13 | ||
13 | class UserRestController extends WallabagRestController | 14 | class UserRestController extends WallabagRestController |
14 | { | 15 | { |
@@ -97,29 +98,38 @@ class UserRestController extends WallabagRestController | |||
97 | ->setStatusCode(JsonResponse::HTTP_BAD_REQUEST); | 98 | ->setStatusCode(JsonResponse::HTTP_BAD_REQUEST); |
98 | } | 99 | } |
99 | 100 | ||
101 | // create a default client | ||
102 | $client = new Client($user); | ||
103 | $client->setName('Default client'); | ||
104 | |||
105 | $this->getDoctrine()->getManager()->persist($client); | ||
106 | |||
107 | $user->addClient($client); | ||
108 | |||
100 | $userManager->updateUser($user); | 109 | $userManager->updateUser($user); |
101 | 110 | ||
102 | // dispatch a created event so the associated config will be created | 111 | // dispatch a created event so the associated config will be created |
103 | $event = new UserEvent($user, $request); | 112 | $event = new UserEvent($user, $request); |
104 | $this->get('event_dispatcher')->dispatch(FOSUserEvents::USER_CREATED, $event); | 113 | $this->get('event_dispatcher')->dispatch(FOSUserEvents::USER_CREATED, $event); |
105 | 114 | ||
106 | return $this->sendUser($user, JsonResponse::HTTP_CREATED); | 115 | return $this->sendUser($user, 'user_api_with_client', JsonResponse::HTTP_CREATED); |
107 | } | 116 | } |
108 | 117 | ||
109 | /** | 118 | /** |
110 | * Send user response. | 119 | * Send user response. |
111 | * | 120 | * |
112 | * @param User $user | 121 | * @param User $user |
113 | * @param int $status HTTP Status code to send | 122 | * @param string $group Used to define with serialized group might be used |
123 | * @param int $status HTTP Status code to send | ||
114 | * | 124 | * |
115 | * @return JsonResponse | 125 | * @return JsonResponse |
116 | */ | 126 | */ |
117 | private function sendUser(User $user, $status = JsonResponse::HTTP_OK) | 127 | private function sendUser(User $user, $group = 'user_api', $status = JsonResponse::HTTP_OK) |
118 | { | 128 | { |
119 | $json = $this->get('serializer')->serialize( | 129 | $json = $this->get('serializer')->serialize( |
120 | $user, | 130 | $user, |
121 | 'json', | 131 | 'json', |
122 | SerializationContext::create()->setGroups(['user_api']) | 132 | SerializationContext::create()->setGroups([$group]) |
123 | ); | 133 | ); |
124 | 134 | ||
125 | return (new JsonResponse()) | 135 | return (new JsonResponse()) |