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

334 lines
11 KiB
PHP
Raw Normal View History

2015-02-16 20:28:49 +00:00
<?php
namespace Wallabag\CoreBundle\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
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;
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;
use Wallabag\CoreBundle\Form\Type\ConfigType;
2015-02-17 20:03:23 +00:00
use Wallabag\CoreBundle\Form\Type\ChangePasswordType;
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
2015-02-17 20:03:23 +00:00
if ($configForm->isValid()) {
2015-02-16 20:28:49 +00:00
$em->persist($config);
$em->flush();
// switch active theme
$activeTheme = $this->get('liip_theme.active_theme');
$activeTheme->setName($config->getTheme());
2015-02-16 20:28:49 +00:00
$this->get('session')->getFlashBag()->add(
'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
$pwdForm = $this->createForm(ChangePasswordType::class, null, ['action' => $this->generateUrl('config').'#set4']);
2015-02-17 20:03:23 +00:00
$pwdForm->handleRequest($request);
if ($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
2016-02-22 12:33:22 +00:00
$this->get('session')->getFlashBag()->add('notice', $message);
2016-02-12 11:00:26 +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'],
'action' => $this->generateUrl('config').'#set3',
]);
$userForm->handleRequest($request);
if ($userForm->isValid()) {
$userManager->updateUser($user, true);
$this->get('session')->getFlashBag()->add(
'notice',
2016-03-11 13:48:46 +00:00
'flashes.config.notice.user_updated'
);
2016-02-12 11:00:26 +00:00
return $this->redirect($this->generateUrl('config').'#set3');
}
2015-03-28 13:27:45 +00:00
// handle rss information
$rssForm = $this->createForm(RssType::class, $config, ['action' => $this->generateUrl('config').'#set2']);
2015-03-28 13:27:45 +00:00
$rssForm->handleRequest($request);
if ($rssForm->isValid()) {
$em->persist($config);
$em->flush();
$this->get('session')->getFlashBag()->add(
'notice',
2016-03-11 13:48:46 +00:00
'flashes.config.notice.rss_updated'
2015-03-28 13:27:45 +00:00
);
2016-02-12 11:00:26 +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();
2016-10-01 14:47:48 +00:00
$action = $this->generateUrl('config').'#set5';
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);
}
$action = $this->generateUrl('config').'?tagging-rule='.$taggingRule->getId().'#set5';
}
$newTaggingRule = $this->createForm(TaggingRuleType::class, $taggingRule, ['action' => $action]);
2015-10-11 15:30:58 +00:00
$newTaggingRule->handleRequest($request);
if ($newTaggingRule->isValid()) {
$taggingRule->setConfig($config);
$em->persist($taggingRule);
$em->flush();
$this->get('session')->getFlashBag()->add(
'notice',
2016-03-11 13:48:46 +00:00
'flashes.config.notice.tagging_rules_updated'
2015-10-11 15:30:58 +00:00
);
2016-02-12 11:00:26 +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'),
'enabled_users' => $this->getDoctrine()
->getRepository('WallabagUserBundle:User')
->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
}
2016-02-12 11:00:26 +00:00
$this->get('session')->getFlashBag()->add(
'notice',
2016-03-11 13:48:46 +00:00
'flashes.config.notice.rss_token_updated'
2016-02-12 11:00:26 +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->get('session')->getFlashBag()->add(
'notice',
2016-03-11 13:48:46 +00:00
'flashes.config.notice.tagging_rules_deleted'
2015-10-25 09:45:15 +00:00
);
2016-02-12 11:00:26 +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);
return $this->redirect($this->generateUrl('config').'?tagging-rule='.$rule->getId().'#set5');
}
/**
* 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)
{
$em = $this->getDoctrine()->getManager();
switch ($type) {
case 'annotations':
$em->createQuery('DELETE FROM Wallabag\AnnotationBundle\Entity\Annotation a WHERE a.user = '.$this->getUser()->getId())
->execute();
break;
case 'tags':
$tags = $this->getDoctrine()->getRepository('WallabagCoreBundle:Tag')->findAllTags($this->getUser()->getId());
if (empty($tags)) {
break;
}
$this->getDoctrine()
->getRepository('WallabagCoreBundle:Entry')
->removeTags($this->getUser()->getId(), $tags);
break;
case 'entries':
$em->createQuery('DELETE FROM Wallabag\CoreBundle\Entity\Entry e WHERE e.user = '.$this->getUser()->getId())
->execute();
}
$this->get('session')->getFlashBag()->add(
'notice',
'flashes.config.notice.'.$type.'_reset'
);
return $this->redirect($this->generateUrl('config').'#set3');
}
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
{
if ($this->getUser()->getId() != $rule->getConfig()->getUser()->getId()) {
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;
}
2016-06-26 11:36:53 +00:00
2016-10-08 18:35:16 +00:00
/**
* 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->getDoctrine()
->getRepository('WallabagUserBundle:User')
->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'));
}
2015-02-16 20:28:49 +00:00
}