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

248 lines
8.5 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;
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-02-22 08:30:25 +00:00
use Wallabag\CoreBundle\Form\Type\NewUserType;
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();
$newTaggingRule = $this->createForm(TaggingRuleType::class, $taggingRule, ['action' => $this->generateUrl('config').'#set5']);
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
}
2015-02-22 08:30:25 +00:00
// handle adding new user
$newUser = $userManager->createUser();
// enable created user by default
$newUser->setEnabled(true);
$newUserForm = $this->createForm(NewUserType::class, $newUser, [
'validation_groups' => ['Profile'],
'action' => $this->generateUrl('config').'#set6',
]);
2015-02-22 08:30:25 +00:00
$newUserForm->handleRequest($request);
if ($newUserForm->isValid() && $this->get('security.authorization_checker')->isGranted('ROLE_SUPER_ADMIN')) {
$userManager->updateUser($newUser, true);
2015-02-22 09:50:27 +00:00
$config = new Config($newUser);
2016-01-21 11:24:27 +00:00
$config->setTheme($this->getParameter('wallabag_core.theme'));
$config->setItemsPerPage($this->getParameter('wallabag_core.items_on_page'));
$config->setRssLimit($this->getParameter('wallabag_core.rss_limit'));
$config->setLanguage($this->getParameter('wallabag_core.language'));
$config->setReadingSpeed($this->getParameter('wallabag_core.reading_speed'));
2015-02-22 09:50:27 +00:00
$em->persist($config);
2015-02-22 08:30:25 +00:00
$em->flush();
$this->get('session')->getFlashBag()->add(
'notice',
$this->get('translator')->trans('flashes.config.notice.user_added', ['%username%' => $newUser->getUsername()])
2015-02-22 08:30:25 +00:00
);
2016-02-12 11:00:26 +00:00
return $this->redirect($this->generateUrl('config').'#set6');
2015-02-22 08:30:25 +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(),
'new_user' => $newUserForm->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'),
]);
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
{
if ($this->getUser()->getId() != $rule->getConfig()->getUser()->getId()) {
throw $this->createAccessDeniedException('You can not access this tagging 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
}
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());
if (!$config) {
$config = new Config($this->getUser());
}
return $config;
}
}