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

252 lines
8.4 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;
use Wallabag\UserBundle\Entity\User;
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, array('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',
2015-10-01 14:28:38 +00:00
'Config saved. Some parameters will be considered after disconnection.'
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, array('action' => $this->generateUrl('config').'#set4'));
2015-02-17 20:03:23 +00:00
$pwdForm->handleRequest($request);
if ($pwdForm->isValid()) {
if ($this->getParameter('demo') === false) {
$user->setPlainPassword($pwdForm->get('new_password')->getData());
$userManager->updateUser($user, true);
$this->get('session')->getFlashBag()->add(
'notice',
'Password updated'
);
} else {
$this->get('session')->getFlashBag()->add(
'notice',
2016-02-17 16:08:43 +00:00
'In demonstration mode, you can\'t change password.'
);
}
2015-02-17 20:03:23 +00:00
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, array(
'validation_groups' => array('Profile'),
'action' => $this->generateUrl('config').'#set3',
));
$userForm->handleRequest($request);
if ($userForm->isValid()) {
$userManager->updateUser($user, true);
$this->get('session')->getFlashBag()->add(
'notice',
'Information 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, array('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',
'RSS information 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-11 15:30:58 +00:00
// handle tagging rule
$taggingRule = new TaggingRule();
$newTaggingRule = $this->createForm(TaggingRuleType::class, $taggingRule, array('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',
'Tagging rules updated'
);
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, array(
'validation_groups' => array('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'));
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',
2016-02-12 11:00:49 +00:00
$this->get('translator')->trans('User "%username%" added', array('%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
}
2015-02-16 20:28:49 +00:00
return $this->render('WallabagCoreBundle:Config:index.html.twig', array(
2015-03-28 13:27:45 +00:00
'form' => array(
'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(),
2015-03-28 13:27:45 +00:00
),
'rss' => array(
'username' => $user->getUsername(),
'token' => $config->getRssToken(),
2015-04-01 19:53:57 +00:00
),
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(array('token' => $config->getRssToken()));
}
2016-02-12 11:00:26 +00:00
$this->get('session')->getFlashBag()->add(
'notice',
'RSS token updated'
);
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 ryle.');
}
$em = $this->getDoctrine()->getManager();
$em->remove($rule);
$em->flush();
$this->get('session')->getFlashBag()->add(
'notice',
'Tagging rule deleted'
);
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 Wallabag\CoreBundle\Entity\Config
*/
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;
}
}