wallabag/src/Wallabag/CoreBundle/Controller/ConfigController.php

472 lines
16 KiB
PHP
Raw Normal View History

2015-02-16 20:28:49 +00:00
<?php
namespace Wallabag\CoreBundle\Controller;
2018-12-03 05:51:06 +00:00
use PragmaRX\Recovery\Recovery as BackupCodes;
2015-02-16 20:28:49 +00:00
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
2015-03-28 13:27:45 +00:00
use Symfony\Component\HttpFoundation\JsonResponse;
2016-02-12 11:24:30 +00:00
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Validator\Constraints\Locale as LocaleConstraint;
2015-02-16 20:28:49 +00:00
use Wallabag\CoreBundle\Entity\Config;
2015-10-11 15:30:58 +00:00
use Wallabag\CoreBundle\Entity\TaggingRule;
2015-02-17 20:03:23 +00:00
use Wallabag\CoreBundle\Form\Type\ChangePasswordType;
2017-07-01 07:52:38 +00:00
use Wallabag\CoreBundle\Form\Type\ConfigType;
2015-03-28 13:27:45 +00:00
use Wallabag\CoreBundle\Form\Type\RssType;
use Wallabag\CoreBundle\Form\Type\TaggingRuleType;
use Wallabag\CoreBundle\Form\Type\UserInformationType;
2015-03-28 13:27:45 +00:00
use Wallabag\CoreBundle\Tools\Utils;
2015-02-16 20:28:49 +00:00
class ConfigController extends Controller
{
/**
* @param Request $request
*
* @Route("/config", name="config")
*/
public function indexAction(Request $request)
{
2015-02-17 20:03:23 +00:00
$em = $this->getDoctrine()->getManager();
2015-02-16 20:28:49 +00:00
$config = $this->getConfig();
$userManager = $this->container->get('fos_user.user_manager');
$user = $this->getUser();
2015-02-16 20:28:49 +00:00
// handle basic config detail (this form is defined as a service)
$configForm = $this->createForm(ConfigType::class, $config, ['action' => $this->generateUrl('config')]);
2015-02-17 20:03:23 +00:00
$configForm->handleRequest($request);
2015-02-16 20:28:49 +00:00
2016-12-14 10:54:30 +00:00
if ($configForm->isSubmitted() && $configForm->isValid()) {
2015-02-16 20:28:49 +00:00
$em->persist($config);
$em->flush();
$request->getSession()->set('_locale', $config->getLanguage());
// switch active theme
$activeTheme = $this->get('liip_theme.active_theme');
$activeTheme->setName($config->getTheme());
$this->addFlash(
2015-02-16 20:28:49 +00:00
'notice',
2016-03-11 13:48:46 +00:00
'flashes.config.notice.config_saved'
2015-02-16 20:28:49 +00:00
);
return $this->redirect($this->generateUrl('config'));
}
2015-02-17 20:03:23 +00:00
// handle changing password
2017-07-01 07:52:38 +00:00
$pwdForm = $this->createForm(ChangePasswordType::class, null, ['action' => $this->generateUrl('config') . '#set4']);
2015-02-17 20:03:23 +00:00
$pwdForm->handleRequest($request);
2016-12-14 10:54:30 +00:00
if ($pwdForm->isSubmitted() && $pwdForm->isValid()) {
2016-02-22 10:38:25 +00:00
if ($this->get('craue_config')->get('demo_mode_enabled') && $this->get('craue_config')->get('demo_mode_username') === $user->getUsername()) {
2016-03-11 13:48:46 +00:00
$message = 'flashes.config.notice.password_not_updated_demo';
} else {
2016-03-11 13:48:46 +00:00
$message = 'flashes.config.notice.password_updated';
2016-02-22 12:33:22 +00:00
2016-02-18 12:31:22 +00:00
$user->setPlainPassword($pwdForm->get('new_password')->getData());
$userManager->updateUser($user, true);
}
2015-02-17 20:03:23 +00:00
$this->addFlash('notice', $message);
2016-02-22 12:33:22 +00:00
2017-07-01 07:52:38 +00:00
return $this->redirect($this->generateUrl('config') . '#set4');
2015-02-17 20:03:23 +00:00
}
// handle changing user information
$userForm = $this->createForm(UserInformationType::class, $user, [
'validation_groups' => ['Profile'],
2017-07-01 07:52:38 +00:00
'action' => $this->generateUrl('config') . '#set3',
]);
$userForm->handleRequest($request);
// `googleTwoFactor` isn't a field within the User entity, we need to define it's value in a different way
2018-12-02 17:39:02 +00:00
if ($this->getParameter('twofactor_auth') && true === $user->isGoogleAuthenticatorEnabled() && false === $userForm->isSubmitted()) {
$userForm->get('googleTwoFactor')->setData(true);
}
2016-12-14 10:54:30 +00:00
if ($userForm->isSubmitted() && $userForm->isValid()) {
// handle creation / reset of the OTP secret if checkbox changed from the previous state
2018-12-02 17:39:02 +00:00
if ($this->getParameter('twofactor_auth')) {
if (true === $userForm->get('googleTwoFactor')->getData() && false === $user->isGoogleAuthenticatorEnabled()) {
$secret = $this->get('scheb_two_factor.security.google_authenticator')->generateSecret();
2018-12-02 17:39:02 +00:00
$user->setGoogleAuthenticatorSecret($secret);
$user->setEmailTwoFactor(false);
2018-12-03 05:51:06 +00:00
$user->setBackupCodes((new BackupCodes())->toArray());
2018-12-02 17:39:02 +00:00
$this->addFlash('OtpQrCode', $this->get('scheb_two_factor.security.google_authenticator')->getQRContent($user));
} elseif (false === $userForm->get('googleTwoFactor')->getData() && true === $user->isGoogleAuthenticatorEnabled()) {
$user->setGoogleAuthenticatorSecret(null);
2018-12-03 05:51:06 +00:00
$user->setBackupCodes(null);
2018-12-02 17:39:02 +00:00
}
}
$userManager->updateUser($user, true);
$this->addFlash(
'notice',
2016-03-11 13:48:46 +00:00
'flashes.config.notice.user_updated'
);
2017-07-01 07:52:38 +00:00
return $this->redirect($this->generateUrl('config') . '#set3');
}
2015-03-28 13:27:45 +00:00
// handle rss information
2017-07-01 07:52:38 +00:00
$rssForm = $this->createForm(RssType::class, $config, ['action' => $this->generateUrl('config') . '#set2']);
2015-03-28 13:27:45 +00:00
$rssForm->handleRequest($request);
2016-12-14 10:54:30 +00:00
if ($rssForm->isSubmitted() && $rssForm->isValid()) {
2015-03-28 13:27:45 +00:00
$em->persist($config);
$em->flush();
$this->addFlash(
2015-03-28 13:27:45 +00:00
'notice',
2016-03-11 13:48:46 +00:00
'flashes.config.notice.rss_updated'
2015-03-28 13:27:45 +00:00
);
2017-07-01 07:52:38 +00:00
return $this->redirect($this->generateUrl('config') . '#set2');
2015-03-28 13:27:45 +00:00
}
2015-10-11 15:30:58 +00:00
// handle tagging rule
$taggingRule = new TaggingRule();
2017-07-01 07:52:38 +00:00
$action = $this->generateUrl('config') . '#set5';
2016-10-01 14:47:48 +00:00
if ($request->query->has('tagging-rule')) {
$taggingRule = $this->getDoctrine()
->getRepository('WallabagCoreBundle:TaggingRule')
->find($request->query->get('tagging-rule'));
if ($this->getUser()->getId() !== $taggingRule->getConfig()->getUser()->getId()) {
return $this->redirect($action);
}
2017-07-01 07:52:38 +00:00
$action = $this->generateUrl('config') . '?tagging-rule=' . $taggingRule->getId() . '#set5';
2016-10-01 14:47:48 +00:00
}
$newTaggingRule = $this->createForm(TaggingRuleType::class, $taggingRule, ['action' => $action]);
2015-10-11 15:30:58 +00:00
$newTaggingRule->handleRequest($request);
2016-12-14 10:54:30 +00:00
if ($newTaggingRule->isSubmitted() && $newTaggingRule->isValid()) {
2015-10-11 15:30:58 +00:00
$taggingRule->setConfig($config);
$em->persist($taggingRule);
$em->flush();
$this->addFlash(
2015-10-11 15:30:58 +00:00
'notice',
2016-03-11 13:48:46 +00:00
'flashes.config.notice.tagging_rules_updated'
2015-10-11 15:30:58 +00:00
);
2017-07-01 07:52:38 +00:00
return $this->redirect($this->generateUrl('config') . '#set5');
2015-10-11 15:30:58 +00:00
}
return $this->render('WallabagCoreBundle:Config:index.html.twig', [
'form' => [
2015-03-28 13:27:45 +00:00
'config' => $configForm->createView(),
'rss' => $rssForm->createView(),
'pwd' => $pwdForm->createView(),
'user' => $userForm->createView(),
2015-10-11 15:30:58 +00:00
'new_tagging_rule' => $newTaggingRule->createView(),
],
'rss' => [
2015-03-28 13:27:45 +00:00
'username' => $user->getUsername(),
'token' => $config->getRssToken(),
],
2016-01-21 07:53:09 +00:00
'twofactor_auth' => $this->getParameter('twofactor_auth'),
'wallabag_url' => $this->getParameter('domain_name'),
'enabled_users' => $this->get('wallabag_user.user_repository')
->getSumEnabledUsers(),
]);
2015-02-16 20:28:49 +00:00
}
2015-03-28 13:27:45 +00:00
/**
* @param Request $request
*
* @Route("/generate-token", name="generate_token")
*
2016-02-12 11:24:30 +00:00
* @return RedirectResponse|JsonResponse
2015-03-28 13:27:45 +00:00
*/
public function generateTokenAction(Request $request)
{
$config = $this->getConfig();
$config->setRssToken(Utils::generateToken());
$em = $this->getDoctrine()->getManager();
$em->persist($config);
$em->flush();
if ($request->isXmlHttpRequest()) {
return new JsonResponse(['token' => $config->getRssToken()]);
2015-03-28 13:27:45 +00:00
}
$this->addFlash(
2016-02-12 11:00:26 +00:00
'notice',
2016-03-11 13:48:46 +00:00
'flashes.config.notice.rss_token_updated'
2016-02-12 11:00:26 +00:00
);
2017-07-01 07:52:38 +00:00
return $this->redirect($this->generateUrl('config') . '#set2');
2015-03-28 13:27:45 +00:00
}
2015-10-25 09:45:15 +00:00
/**
* Deletes a tagging rule and redirect to the config homepage.
*
* @param TaggingRule $rule
*
* @Route("/tagging-rule/delete/{id}", requirements={"id" = "\d+"}, name="delete_tagging_rule")
*
2016-02-12 11:24:30 +00:00
* @return RedirectResponse
2015-10-25 09:45:15 +00:00
*/
2016-01-20 16:16:17 +00:00
public function deleteTaggingRuleAction(TaggingRule $rule)
2015-10-25 09:45:15 +00:00
{
2016-10-01 15:24:24 +00:00
$this->validateRuleAction($rule);
2015-10-25 09:45:15 +00:00
$em = $this->getDoctrine()->getManager();
$em->remove($rule);
$em->flush();
$this->addFlash(
2015-10-25 09:45:15 +00:00
'notice',
2016-03-11 13:48:46 +00:00
'flashes.config.notice.tagging_rules_deleted'
2015-10-25 09:45:15 +00:00
);
2017-07-01 07:52:38 +00:00
return $this->redirect($this->generateUrl('config') . '#set5');
2015-10-25 09:45:15 +00:00
}
2016-10-01 14:47:48 +00:00
/**
* Edit a tagging rule.
*
* @param TaggingRule $rule
*
* @Route("/tagging-rule/edit/{id}", requirements={"id" = "\d+"}, name="edit_tagging_rule")
*
* @return RedirectResponse
*/
public function editTaggingRuleAction(TaggingRule $rule)
2016-10-01 15:24:24 +00:00
{
$this->validateRuleAction($rule);
2017-07-01 07:52:38 +00:00
return $this->redirect($this->generateUrl('config') . '?tagging-rule=' . $rule->getId() . '#set5');
2016-10-01 15:24:24 +00:00
}
/**
* Remove all annotations OR tags OR entries for the current user.
*
* @Route("/reset/{type}", requirements={"id" = "annotations|tags|entries"}, name="config_reset")
*
* @return RedirectResponse
*/
public function resetAction($type)
{
switch ($type) {
case 'annotations':
$this->getDoctrine()
->getRepository('WallabagAnnotationBundle:Annotation')
->removeAllByUserId($this->getUser()->getId());
break;
case 'tags':
$this->removeAllTagsByUserId($this->getUser()->getId());
break;
case 'entries':
// SQLite doesn't care about cascading remove, so we need to manually remove associated stuff
// otherwise they won't be removed ...
if ($this->get('doctrine')->getConnection()->getDatabasePlatform() instanceof \Doctrine\DBAL\Platforms\SqlitePlatform) {
$this->getDoctrine()->getRepository('WallabagAnnotationBundle:Annotation')->removeAllByUserId($this->getUser()->getId());
}
2016-10-08 09:14:09 +00:00
// manually remove tags to avoid orphan tag
2016-10-08 09:05:03 +00:00
$this->removeAllTagsByUserId($this->getUser()->getId());
$this->get('wallabag_core.entry_repository')->removeAllByUserId($this->getUser()->getId());
break;
case 'archived':
if ($this->get('doctrine')->getConnection()->getDatabasePlatform() instanceof \Doctrine\DBAL\Platforms\SqlitePlatform) {
$this->removeAnnotationsForArchivedByUserId($this->getUser()->getId());
}
// manually remove tags to avoid orphan tag
$this->removeTagsForArchivedByUserId($this->getUser()->getId());
$this->get('wallabag_core.entry_repository')->removeArchivedByUserId($this->getUser()->getId());
break;
}
$this->addFlash(
'notice',
2017-07-01 07:52:38 +00:00
'flashes.config.notice.' . $type . '_reset'
);
2017-07-01 07:52:38 +00:00
return $this->redirect($this->generateUrl('config') . '#set3');
}
/**
* Delete account for current user.
*
* @Route("/account/delete", name="delete_account")
*
* @param Request $request
*
* @throws AccessDeniedHttpException
*
* @return \Symfony\Component\HttpFoundation\RedirectResponse
*/
public function deleteAccountAction(Request $request)
{
$enabledUsers = $this->get('wallabag_user.user_repository')
->getSumEnabledUsers();
if ($enabledUsers <= 1) {
throw new AccessDeniedHttpException();
}
$user = $this->getUser();
// logout current user
$this->get('security.token_storage')->setToken(null);
$request->getSession()->invalidate();
$em = $this->get('fos_user.user_manager');
$em->deleteUser($user);
return $this->redirect($this->generateUrl('fos_user_security_login'));
}
/**
* Switch view mode for current user.
*
* @Route("/config/view-mode", name="switch_view_mode")
*
* @param Request $request
*
* @return \Symfony\Component\HttpFoundation\RedirectResponse
*/
public function changeViewModeAction(Request $request)
{
$user = $this->getUser();
$user->getConfig()->setListMode(!$user->getConfig()->getListMode());
$em = $this->getDoctrine()->getManager();
$em->persist($user);
$em->flush();
return $this->redirect($request->headers->get('referer'));
}
/**
* Change the locale for the current user.
*
* @param Request $request
* @param string $language
*
* @Route("/locale/{language}", name="changeLocale")
*
* @return \Symfony\Component\HttpFoundation\RedirectResponse
*/
public function setLocaleAction(Request $request, $language = null)
{
$errors = $this->get('validator')->validate($language, (new LocaleConstraint()));
if (0 === \count($errors)) {
$request->getSession()->set('_locale', $language);
}
return $this->redirect($request->headers->get('referer', $this->generateUrl('homepage')));
}
/**
2017-03-31 09:04:18 +00:00
* Remove all tags for given tags and a given user and cleanup orphan tags.
*
2017-03-31 09:04:18 +00:00
* @param array $tags
* @param int $userId
*/
2017-03-31 09:04:18 +00:00
private function removeAllTagsByStatusAndUserId($tags, $userId)
{
if (empty($tags)) {
return;
}
$this->get('wallabag_core.entry_repository')
->removeTags($userId, $tags);
2016-10-08 09:05:03 +00:00
2016-10-08 09:14:09 +00:00
// cleanup orphan tags
2016-10-08 09:05:03 +00:00
$em = $this->getDoctrine()->getManager();
foreach ($tags as $tag) {
if (0 === \count($tag->getEntries())) {
2016-10-08 09:05:03 +00:00
$em->remove($tag);
}
}
$em->flush();
}
2017-03-31 09:04:18 +00:00
/**
* Remove all tags for a given user and cleanup orphan tags.
*
* @param int $userId
*/
private function removeAllTagsByUserId($userId)
{
$tags = $this->get('wallabag_core.tag_repository')->findAllTags($userId);
2017-03-31 09:04:18 +00:00
$this->removeAllTagsByStatusAndUserId($tags, $userId);
}
/**
* Remove all tags for a given user and cleanup orphan tags.
*
* @param int $userId
*/
private function removeTagsForArchivedByUserId($userId)
{
$tags = $this->get('wallabag_core.tag_repository')->findForArchivedArticlesByUser($userId);
2017-03-31 09:04:18 +00:00
$this->removeAllTagsByStatusAndUserId($tags, $userId);
}
private function removeAnnotationsForArchivedByUserId($userId)
{
$em = $this->getDoctrine()->getManager();
$archivedEntriesAnnotations = $this->getDoctrine()
->getRepository('WallabagAnnotationBundle:Annotation')
2017-03-31 15:03:08 +00:00
->findAllArchivedEntriesByUser($userId);
foreach ($archivedEntriesAnnotations as $archivedEntriesAnnotation) {
$em->remove($archivedEntriesAnnotation);
}
$em->flush();
}
2016-10-01 15:24:24 +00:00
/**
2016-10-01 16:05:25 +00:00
* Validate that a rule can be edited/deleted by the current user.
2016-10-01 15:24:24 +00:00
*
2016-10-01 16:05:25 +00:00
* @param TaggingRule $rule
2016-10-01 15:24:24 +00:00
*/
private function validateRuleAction(TaggingRule $rule)
2016-10-01 14:47:48 +00:00
{
2017-07-01 07:52:38 +00:00
if ($this->getUser()->getId() !== $rule->getConfig()->getUser()->getId()) {
2016-10-01 14:47:48 +00:00
throw $this->createAccessDeniedException('You can not access this tagging rule.');
}
}
2015-02-17 20:03:23 +00:00
/**
* Retrieve config for the current user.
* If no config were found, create a new one.
*
* @return Config
2015-02-17 20:03:23 +00:00
*/
2015-02-16 20:28:49 +00:00
private function getConfig()
{
$config = $this->getDoctrine()
->getRepository('WallabagCoreBundle:Config')
->findOneByUser($this->getUser());
// should NEVER HAPPEN ...
2015-02-16 20:28:49 +00:00
if (!$config) {
$config = new Config($this->getUser());
}
return $config;
}
}