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;
|
2015-12-22 09:16:34 +00:00
|
|
|
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;
|
2015-12-22 12:00:37 +00:00
|
|
|
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;
|
2015-12-22 09:16:34 +00:00
|
|
|
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-12-22 09:16:34 +00:00
|
|
|
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();
|
2015-09-29 12:31:52 +00:00
|
|
|
$userManager = $this->container->get('fos_user.user_manager');
|
2015-02-17 21:45:20 +00:00
|
|
|
$user = $this->getUser();
|
2015-02-16 20:28:49 +00:00
|
|
|
|
2015-02-23 21:55:06 +00:00
|
|
|
// handle basic config detail (this form is defined as a service)
|
2015-12-22 12:00:37 +00:00
|
|
|
$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();
|
|
|
|
|
2015-02-23 21:55:06 +00:00
|
|
|
// 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
|
2015-12-22 12:00:37 +00:00
|
|
|
$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()) {
|
2015-09-29 12:31:52 +00:00
|
|
|
$user->setPlainPassword($pwdForm->get('new_password')->getData());
|
|
|
|
$userManager->updateUser($user, true);
|
2015-02-17 20:03:23 +00:00
|
|
|
|
|
|
|
$this->get('session')->getFlashBag()->add(
|
|
|
|
'notice',
|
|
|
|
'Password updated'
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->redirect($this->generateUrl('config'));
|
|
|
|
}
|
|
|
|
|
2015-02-17 21:45:20 +00:00
|
|
|
// handle changing user information
|
2015-12-22 12:00:37 +00:00
|
|
|
$userForm = $this->createForm(UserInformationType::class, $user, array(
|
2015-11-06 23:18:06 +00:00
|
|
|
'validation_groups' => array('Profile'),
|
|
|
|
'action' => $this->generateUrl('config').'#set3',
|
|
|
|
));
|
2015-02-17 21:45:20 +00:00
|
|
|
$userForm->handleRequest($request);
|
|
|
|
|
|
|
|
if ($userForm->isValid()) {
|
2015-09-29 12:31:52 +00:00
|
|
|
$userManager->updateUser($user, true);
|
2015-02-17 21:45:20 +00:00
|
|
|
|
|
|
|
$this->get('session')->getFlashBag()->add(
|
|
|
|
'notice',
|
|
|
|
'Information updated'
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->redirect($this->generateUrl('config'));
|
|
|
|
}
|
|
|
|
|
2015-03-28 13:27:45 +00:00
|
|
|
// handle rss information
|
2015-12-22 12:00:37 +00:00
|
|
|
$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'
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->redirect($this->generateUrl('config'));
|
|
|
|
}
|
|
|
|
|
2015-10-11 15:30:58 +00:00
|
|
|
// handle tagging rule
|
|
|
|
$taggingRule = new TaggingRule();
|
2015-12-22 12:00:37 +00:00
|
|
|
$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'
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->redirect($this->generateUrl('config'));
|
|
|
|
}
|
|
|
|
|
2015-02-22 08:30:25 +00:00
|
|
|
// handle adding new user
|
2015-09-29 12:31:52 +00:00
|
|
|
$newUser = $userManager->createUser();
|
2015-09-26 17:35:00 +00:00
|
|
|
// enable created user by default
|
|
|
|
$newUser->setEnabled(true);
|
2015-12-22 12:00:37 +00:00
|
|
|
$newUserForm = $this->createForm(NewUserType::class, $newUser, array(
|
2015-11-06 23:18:06 +00:00
|
|
|
'validation_groups' => array('Profile'),
|
|
|
|
'action' => $this->generateUrl('config').'#set5',
|
|
|
|
));
|
2015-02-22 08:30:25 +00:00
|
|
|
$newUserForm->handleRequest($request);
|
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
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);
|
|
|
|
$config->setTheme($this->container->getParameter('theme'));
|
|
|
|
$config->setItemsPerPage($this->container->getParameter('items_on_page'));
|
2015-03-28 20:43:49 +00:00
|
|
|
$config->setRssLimit($this->container->getParameter('rss_limit'));
|
2015-02-22 09:50:27 +00:00
|
|
|
$config->setLanguage($this->container->getParameter('language'));
|
|
|
|
|
|
|
|
$em->persist($config);
|
|
|
|
|
2015-02-22 08:30:25 +00:00
|
|
|
$em->flush();
|
|
|
|
|
|
|
|
$this->get('session')->getFlashBag()->add(
|
|
|
|
'notice',
|
|
|
|
sprintf('User "%s" added', $newUser->getUsername())
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->redirect($this->generateUrl('config'));
|
|
|
|
}
|
|
|
|
|
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
|
|
|
),
|
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")
|
|
|
|
*
|
|
|
|
* @return JsonResponse
|
|
|
|
*/
|
|
|
|
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()));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $request->headers->get('referer') ? $this->redirect($request->headers->get('referer')) : $this->redirectToRoute('config');
|
|
|
|
}
|
|
|
|
|
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")
|
|
|
|
*
|
|
|
|
* @return \Symfony\Component\HttpFoundation\RedirectResponse
|
|
|
|
*/
|
|
|
|
public function deleteTaggingRule(TaggingRule $rule)
|
|
|
|
{
|
|
|
|
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'
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->redirect($this->generateUrl('config'));
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|