]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Controller/ConfigController.php
Add backup codes
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Controller / ConfigController.php
1 <?php
2
3 namespace Wallabag\CoreBundle\Controller;
4
5 use PragmaRX\Recovery\Recovery as BackupCodes;
6 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
7 use Symfony\Component\HttpFoundation\JsonResponse;
8 use Symfony\Component\HttpFoundation\RedirectResponse;
9 use Symfony\Component\HttpFoundation\Request;
10 use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
11 use Symfony\Component\Routing\Annotation\Route;
12 use Symfony\Component\Validator\Constraints\Locale as LocaleConstraint;
13 use Wallabag\CoreBundle\Entity\Config;
14 use Wallabag\CoreBundle\Entity\TaggingRule;
15 use Wallabag\CoreBundle\Form\Type\ChangePasswordType;
16 use Wallabag\CoreBundle\Form\Type\ConfigType;
17 use Wallabag\CoreBundle\Form\Type\RssType;
18 use Wallabag\CoreBundle\Form\Type\TaggingRuleType;
19 use Wallabag\CoreBundle\Form\Type\UserInformationType;
20 use Wallabag\CoreBundle\Tools\Utils;
21
22 class ConfigController extends Controller
23 {
24 /**
25 * @param Request $request
26 *
27 * @Route("/config", name="config")
28 */
29 public function indexAction(Request $request)
30 {
31 $em = $this->getDoctrine()->getManager();
32 $config = $this->getConfig();
33 $userManager = $this->container->get('fos_user.user_manager');
34 $user = $this->getUser();
35
36 // handle basic config detail (this form is defined as a service)
37 $configForm = $this->createForm(ConfigType::class, $config, ['action' => $this->generateUrl('config')]);
38 $configForm->handleRequest($request);
39
40 if ($configForm->isSubmitted() && $configForm->isValid()) {
41 $em->persist($config);
42 $em->flush();
43
44 $request->getSession()->set('_locale', $config->getLanguage());
45
46 // switch active theme
47 $activeTheme = $this->get('liip_theme.active_theme');
48 $activeTheme->setName($config->getTheme());
49
50 $this->addFlash(
51 'notice',
52 'flashes.config.notice.config_saved'
53 );
54
55 return $this->redirect($this->generateUrl('config'));
56 }
57
58 // handle changing password
59 $pwdForm = $this->createForm(ChangePasswordType::class, null, ['action' => $this->generateUrl('config') . '#set4']);
60 $pwdForm->handleRequest($request);
61
62 if ($pwdForm->isSubmitted() && $pwdForm->isValid()) {
63 if ($this->get('craue_config')->get('demo_mode_enabled') && $this->get('craue_config')->get('demo_mode_username') === $user->getUsername()) {
64 $message = 'flashes.config.notice.password_not_updated_demo';
65 } else {
66 $message = 'flashes.config.notice.password_updated';
67
68 $user->setPlainPassword($pwdForm->get('new_password')->getData());
69 $userManager->updateUser($user, true);
70 }
71
72 $this->addFlash('notice', $message);
73
74 return $this->redirect($this->generateUrl('config') . '#set4');
75 }
76
77 // handle changing user information
78 $userForm = $this->createForm(UserInformationType::class, $user, [
79 'validation_groups' => ['Profile'],
80 'action' => $this->generateUrl('config') . '#set3',
81 ]);
82 $userForm->handleRequest($request);
83
84 // `googleTwoFactor` isn't a field within the User entity, we need to define it's value in a different way
85 if ($this->getParameter('twofactor_auth') && true === $user->isGoogleAuthenticatorEnabled() && false === $userForm->isSubmitted()) {
86 $userForm->get('googleTwoFactor')->setData(true);
87 }
88
89 if ($userForm->isSubmitted() && $userForm->isValid()) {
90 // handle creation / reset of the OTP secret if checkbox changed from the previous state
91 if ($this->getParameter('twofactor_auth')) {
92 if (true === $userForm->get('googleTwoFactor')->getData() && false === $user->isGoogleAuthenticatorEnabled()) {
93 $secret = $this->get('scheb_two_factor.security.google_authenticator')->generateSecret();
94
95 $user->setGoogleAuthenticatorSecret($secret);
96 $user->setEmailTwoFactor(false);
97 $user->setBackupCodes((new BackupCodes())->toArray());
98
99 $this->addFlash('OtpQrCode', $this->get('scheb_two_factor.security.google_authenticator')->getQRContent($user));
100 } elseif (false === $userForm->get('googleTwoFactor')->getData() && true === $user->isGoogleAuthenticatorEnabled()) {
101 $user->setGoogleAuthenticatorSecret(null);
102 $user->setBackupCodes(null);
103 }
104 }
105
106 $userManager->updateUser($user, true);
107
108 $this->addFlash(
109 'notice',
110 'flashes.config.notice.user_updated'
111 );
112
113 return $this->redirect($this->generateUrl('config') . '#set3');
114 }
115
116 // handle rss information
117 $rssForm = $this->createForm(RssType::class, $config, ['action' => $this->generateUrl('config') . '#set2']);
118 $rssForm->handleRequest($request);
119
120 if ($rssForm->isSubmitted() && $rssForm->isValid()) {
121 $em->persist($config);
122 $em->flush();
123
124 $this->addFlash(
125 'notice',
126 'flashes.config.notice.rss_updated'
127 );
128
129 return $this->redirect($this->generateUrl('config') . '#set2');
130 }
131
132 // handle tagging rule
133 $taggingRule = new TaggingRule();
134 $action = $this->generateUrl('config') . '#set5';
135
136 if ($request->query->has('tagging-rule')) {
137 $taggingRule = $this->getDoctrine()
138 ->getRepository('WallabagCoreBundle:TaggingRule')
139 ->find($request->query->get('tagging-rule'));
140
141 if ($this->getUser()->getId() !== $taggingRule->getConfig()->getUser()->getId()) {
142 return $this->redirect($action);
143 }
144
145 $action = $this->generateUrl('config') . '?tagging-rule=' . $taggingRule->getId() . '#set5';
146 }
147
148 $newTaggingRule = $this->createForm(TaggingRuleType::class, $taggingRule, ['action' => $action]);
149 $newTaggingRule->handleRequest($request);
150
151 if ($newTaggingRule->isSubmitted() && $newTaggingRule->isValid()) {
152 $taggingRule->setConfig($config);
153 $em->persist($taggingRule);
154 $em->flush();
155
156 $this->addFlash(
157 'notice',
158 'flashes.config.notice.tagging_rules_updated'
159 );
160
161 return $this->redirect($this->generateUrl('config') . '#set5');
162 }
163
164 return $this->render('WallabagCoreBundle:Config:index.html.twig', [
165 'form' => [
166 'config' => $configForm->createView(),
167 'rss' => $rssForm->createView(),
168 'pwd' => $pwdForm->createView(),
169 'user' => $userForm->createView(),
170 'new_tagging_rule' => $newTaggingRule->createView(),
171 ],
172 'rss' => [
173 'username' => $user->getUsername(),
174 'token' => $config->getRssToken(),
175 ],
176 'twofactor_auth' => $this->getParameter('twofactor_auth'),
177 'wallabag_url' => $this->getParameter('domain_name'),
178 'enabled_users' => $this->get('wallabag_user.user_repository')
179 ->getSumEnabledUsers(),
180 ]);
181 }
182
183 /**
184 * @param Request $request
185 *
186 * @Route("/generate-token", name="generate_token")
187 *
188 * @return RedirectResponse|JsonResponse
189 */
190 public function generateTokenAction(Request $request)
191 {
192 $config = $this->getConfig();
193 $config->setRssToken(Utils::generateToken());
194
195 $em = $this->getDoctrine()->getManager();
196 $em->persist($config);
197 $em->flush();
198
199 if ($request->isXmlHttpRequest()) {
200 return new JsonResponse(['token' => $config->getRssToken()]);
201 }
202
203 $this->addFlash(
204 'notice',
205 'flashes.config.notice.rss_token_updated'
206 );
207
208 return $this->redirect($this->generateUrl('config') . '#set2');
209 }
210
211 /**
212 * Deletes a tagging rule and redirect to the config homepage.
213 *
214 * @param TaggingRule $rule
215 *
216 * @Route("/tagging-rule/delete/{id}", requirements={"id" = "\d+"}, name="delete_tagging_rule")
217 *
218 * @return RedirectResponse
219 */
220 public function deleteTaggingRuleAction(TaggingRule $rule)
221 {
222 $this->validateRuleAction($rule);
223
224 $em = $this->getDoctrine()->getManager();
225 $em->remove($rule);
226 $em->flush();
227
228 $this->addFlash(
229 'notice',
230 'flashes.config.notice.tagging_rules_deleted'
231 );
232
233 return $this->redirect($this->generateUrl('config') . '#set5');
234 }
235
236 /**
237 * Edit a tagging rule.
238 *
239 * @param TaggingRule $rule
240 *
241 * @Route("/tagging-rule/edit/{id}", requirements={"id" = "\d+"}, name="edit_tagging_rule")
242 *
243 * @return RedirectResponse
244 */
245 public function editTaggingRuleAction(TaggingRule $rule)
246 {
247 $this->validateRuleAction($rule);
248
249 return $this->redirect($this->generateUrl('config') . '?tagging-rule=' . $rule->getId() . '#set5');
250 }
251
252 /**
253 * Remove all annotations OR tags OR entries for the current user.
254 *
255 * @Route("/reset/{type}", requirements={"id" = "annotations|tags|entries"}, name="config_reset")
256 *
257 * @return RedirectResponse
258 */
259 public function resetAction($type)
260 {
261 switch ($type) {
262 case 'annotations':
263 $this->getDoctrine()
264 ->getRepository('WallabagAnnotationBundle:Annotation')
265 ->removeAllByUserId($this->getUser()->getId());
266 break;
267 case 'tags':
268 $this->removeAllTagsByUserId($this->getUser()->getId());
269 break;
270 case 'entries':
271 // SQLite doesn't care about cascading remove, so we need to manually remove associated stuff
272 // otherwise they won't be removed ...
273 if ($this->get('doctrine')->getConnection()->getDatabasePlatform() instanceof \Doctrine\DBAL\Platforms\SqlitePlatform) {
274 $this->getDoctrine()->getRepository('WallabagAnnotationBundle:Annotation')->removeAllByUserId($this->getUser()->getId());
275 }
276
277 // manually remove tags to avoid orphan tag
278 $this->removeAllTagsByUserId($this->getUser()->getId());
279
280 $this->get('wallabag_core.entry_repository')->removeAllByUserId($this->getUser()->getId());
281 break;
282 case 'archived':
283 if ($this->get('doctrine')->getConnection()->getDatabasePlatform() instanceof \Doctrine\DBAL\Platforms\SqlitePlatform) {
284 $this->removeAnnotationsForArchivedByUserId($this->getUser()->getId());
285 }
286
287 // manually remove tags to avoid orphan tag
288 $this->removeTagsForArchivedByUserId($this->getUser()->getId());
289
290 $this->get('wallabag_core.entry_repository')->removeArchivedByUserId($this->getUser()->getId());
291 break;
292 }
293
294 $this->addFlash(
295 'notice',
296 'flashes.config.notice.' . $type . '_reset'
297 );
298
299 return $this->redirect($this->generateUrl('config') . '#set3');
300 }
301
302 /**
303 * Delete account for current user.
304 *
305 * @Route("/account/delete", name="delete_account")
306 *
307 * @param Request $request
308 *
309 * @throws AccessDeniedHttpException
310 *
311 * @return \Symfony\Component\HttpFoundation\RedirectResponse
312 */
313 public function deleteAccountAction(Request $request)
314 {
315 $enabledUsers = $this->get('wallabag_user.user_repository')
316 ->getSumEnabledUsers();
317
318 if ($enabledUsers <= 1) {
319 throw new AccessDeniedHttpException();
320 }
321
322 $user = $this->getUser();
323
324 // logout current user
325 $this->get('security.token_storage')->setToken(null);
326 $request->getSession()->invalidate();
327
328 $em = $this->get('fos_user.user_manager');
329 $em->deleteUser($user);
330
331 return $this->redirect($this->generateUrl('fos_user_security_login'));
332 }
333
334 /**
335 * Switch view mode for current user.
336 *
337 * @Route("/config/view-mode", name="switch_view_mode")
338 *
339 * @param Request $request
340 *
341 * @return \Symfony\Component\HttpFoundation\RedirectResponse
342 */
343 public function changeViewModeAction(Request $request)
344 {
345 $user = $this->getUser();
346 $user->getConfig()->setListMode(!$user->getConfig()->getListMode());
347
348 $em = $this->getDoctrine()->getManager();
349 $em->persist($user);
350 $em->flush();
351
352 return $this->redirect($request->headers->get('referer'));
353 }
354
355 /**
356 * Change the locale for the current user.
357 *
358 * @param Request $request
359 * @param string $language
360 *
361 * @Route("/locale/{language}", name="changeLocale")
362 *
363 * @return \Symfony\Component\HttpFoundation\RedirectResponse
364 */
365 public function setLocaleAction(Request $request, $language = null)
366 {
367 $errors = $this->get('validator')->validate($language, (new LocaleConstraint()));
368
369 if (0 === \count($errors)) {
370 $request->getSession()->set('_locale', $language);
371 }
372
373 return $this->redirect($request->headers->get('referer', $this->generateUrl('homepage')));
374 }
375
376 /**
377 * Remove all tags for given tags and a given user and cleanup orphan tags.
378 *
379 * @param array $tags
380 * @param int $userId
381 */
382 private function removeAllTagsByStatusAndUserId($tags, $userId)
383 {
384 if (empty($tags)) {
385 return;
386 }
387
388 $this->get('wallabag_core.entry_repository')
389 ->removeTags($userId, $tags);
390
391 // cleanup orphan tags
392 $em = $this->getDoctrine()->getManager();
393
394 foreach ($tags as $tag) {
395 if (0 === \count($tag->getEntries())) {
396 $em->remove($tag);
397 }
398 }
399
400 $em->flush();
401 }
402
403 /**
404 * Remove all tags for a given user and cleanup orphan tags.
405 *
406 * @param int $userId
407 */
408 private function removeAllTagsByUserId($userId)
409 {
410 $tags = $this->get('wallabag_core.tag_repository')->findAllTags($userId);
411 $this->removeAllTagsByStatusAndUserId($tags, $userId);
412 }
413
414 /**
415 * Remove all tags for a given user and cleanup orphan tags.
416 *
417 * @param int $userId
418 */
419 private function removeTagsForArchivedByUserId($userId)
420 {
421 $tags = $this->get('wallabag_core.tag_repository')->findForArchivedArticlesByUser($userId);
422 $this->removeAllTagsByStatusAndUserId($tags, $userId);
423 }
424
425 private function removeAnnotationsForArchivedByUserId($userId)
426 {
427 $em = $this->getDoctrine()->getManager();
428
429 $archivedEntriesAnnotations = $this->getDoctrine()
430 ->getRepository('WallabagAnnotationBundle:Annotation')
431 ->findAllArchivedEntriesByUser($userId);
432
433 foreach ($archivedEntriesAnnotations as $archivedEntriesAnnotation) {
434 $em->remove($archivedEntriesAnnotation);
435 }
436
437 $em->flush();
438 }
439
440 /**
441 * Validate that a rule can be edited/deleted by the current user.
442 *
443 * @param TaggingRule $rule
444 */
445 private function validateRuleAction(TaggingRule $rule)
446 {
447 if ($this->getUser()->getId() !== $rule->getConfig()->getUser()->getId()) {
448 throw $this->createAccessDeniedException('You can not access this tagging rule.');
449 }
450 }
451
452 /**
453 * Retrieve config for the current user.
454 * If no config were found, create a new one.
455 *
456 * @return Config
457 */
458 private function getConfig()
459 {
460 $config = $this->getDoctrine()
461 ->getRepository('WallabagCoreBundle:Config')
462 ->findOneByUser($this->getUser());
463
464 // should NEVER HAPPEN ...
465 if (!$config) {
466 $config = new Config($this->getUser());
467 }
468
469 return $config;
470 }
471 }