]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Controller/ConfigController.php
Merge remote-tracking branch 'origin/master' into 2.1
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Controller / ConfigController.php
CommitLineData
4d85d7e9
J
1<?php
2
3namespace Wallabag\CoreBundle\Controller;
4
5use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
6use Symfony\Bundle\FrameworkBundle\Controller\Controller;
0c83fd59 7use Symfony\Component\HttpFoundation\JsonResponse;
98568055 8use Symfony\Component\HttpFoundation\RedirectResponse;
619cc453 9use Symfony\Component\HttpFoundation\Request;
4d85d7e9 10use Wallabag\CoreBundle\Entity\Config;
f19f9f62 11use Wallabag\CoreBundle\Entity\TaggingRule;
5c895a7f 12use Wallabag\CoreBundle\Form\Type\ConfigType;
d9085c63 13use Wallabag\CoreBundle\Form\Type\ChangePasswordType;
e4977b8a 14use Wallabag\CoreBundle\Form\Type\NewUserType;
0c83fd59 15use Wallabag\CoreBundle\Form\Type\RssType;
619cc453
JB
16use Wallabag\CoreBundle\Form\Type\TaggingRuleType;
17use Wallabag\CoreBundle\Form\Type\UserInformationType;
0c83fd59 18use Wallabag\CoreBundle\Tools\Utils;
4d85d7e9
J
19
20class ConfigController extends Controller
21{
22 /**
23 * @param Request $request
24 *
25 * @Route("/config", name="config")
4d85d7e9
J
26 */
27 public function indexAction(Request $request)
28 {
d9085c63 29 $em = $this->getDoctrine()->getManager();
4d85d7e9 30 $config = $this->getConfig();
fcb1fba5 31 $userManager = $this->container->get('fos_user.user_manager');
c0d9eba0 32 $user = $this->getUser();
4d85d7e9 33
32da2a70 34 // handle basic config detail (this form is defined as a service)
4094ea47 35 $configForm = $this->createForm(ConfigType::class, $config, ['action' => $this->generateUrl('config')]);
d9085c63 36 $configForm->handleRequest($request);
4d85d7e9 37
d9085c63 38 if ($configForm->isValid()) {
4d85d7e9
J
39 $em->persist($config);
40 $em->flush();
41
32da2a70
J
42 // switch active theme
43 $activeTheme = $this->get('liip_theme.active_theme');
44 $activeTheme->setName($config->getTheme());
45
4d85d7e9
J
46 $this->get('session')->getFlashBag()->add(
47 'notice',
4204a06b 48 'flashes.config.notice.config_saved'
4d85d7e9
J
49 );
50
51 return $this->redirect($this->generateUrl('config'));
52 }
53
d9085c63 54 // handle changing password
4094ea47 55 $pwdForm = $this->createForm(ChangePasswordType::class, null, ['action' => $this->generateUrl('config').'#set4']);
d9085c63
J
56 $pwdForm->handleRequest($request);
57
58 if ($pwdForm->isValid()) {
a4f42c59 59 if ($this->get('craue_config')->get('demo_mode_enabled') && $this->get('craue_config')->get('demo_mode_username') === $user->getUsername()) {
4204a06b 60 $message = 'flashes.config.notice.password_not_updated_demo';
6c9f50a6 61 } else {
4204a06b 62 $message = 'flashes.config.notice.password_updated';
b6c00b0b 63
d8d56448
NL
64 $user->setPlainPassword($pwdForm->get('new_password')->getData());
65 $userManager->updateUser($user, true);
6c9f50a6 66 }
d9085c63 67
b6c00b0b
JB
68 $this->get('session')->getFlashBag()->add('notice', $message);
69
c7a4f74f 70 return $this->redirect($this->generateUrl('config').'#set4');
d9085c63
J
71 }
72
c0d9eba0 73 // handle changing user information
4094ea47
JB
74 $userForm = $this->createForm(UserInformationType::class, $user, [
75 'validation_groups' => ['Profile'],
33fe61f9 76 'action' => $this->generateUrl('config').'#set3',
4094ea47 77 ]);
c0d9eba0
J
78 $userForm->handleRequest($request);
79
80 if ($userForm->isValid()) {
fcb1fba5 81 $userManager->updateUser($user, true);
c0d9eba0
J
82
83 $this->get('session')->getFlashBag()->add(
84 'notice',
4204a06b 85 'flashes.config.notice.user_updated'
c0d9eba0
J
86 );
87
c7a4f74f 88 return $this->redirect($this->generateUrl('config').'#set3');
c0d9eba0
J
89 }
90
0c83fd59 91 // handle rss information
4094ea47 92 $rssForm = $this->createForm(RssType::class, $config, ['action' => $this->generateUrl('config').'#set2']);
0c83fd59
J
93 $rssForm->handleRequest($request);
94
95 if ($rssForm->isValid()) {
96 $em->persist($config);
97 $em->flush();
98
99 $this->get('session')->getFlashBag()->add(
100 'notice',
4204a06b 101 'flashes.config.notice.rss_updated'
0c83fd59
J
102 );
103
c7a4f74f 104 return $this->redirect($this->generateUrl('config').'#set2');
0c83fd59
J
105 }
106
f19f9f62
KG
107 // handle tagging rule
108 $taggingRule = new TaggingRule();
4094ea47 109 $newTaggingRule = $this->createForm(TaggingRuleType::class, $taggingRule, ['action' => $this->generateUrl('config').'#set5']);
f19f9f62
KG
110 $newTaggingRule->handleRequest($request);
111
112 if ($newTaggingRule->isValid()) {
113 $taggingRule->setConfig($config);
114 $em->persist($taggingRule);
115 $em->flush();
116
117 $this->get('session')->getFlashBag()->add(
118 'notice',
4204a06b 119 'flashes.config.notice.tagging_rules_updated'
f19f9f62
KG
120 );
121
c7a4f74f 122 return $this->redirect($this->generateUrl('config').'#set5');
f19f9f62
KG
123 }
124
e4977b8a 125 // handle adding new user
fcb1fba5 126 $newUser = $userManager->createUser();
0f30f48b
JB
127 // enable created user by default
128 $newUser->setEnabled(true);
4094ea47
JB
129 $newUserForm = $this->createForm(NewUserType::class, $newUser, [
130 'validation_groups' => ['Profile'],
e56983af 131 'action' => $this->generateUrl('config').'#set6',
4094ea47 132 ]);
e4977b8a
J
133 $newUserForm->handleRequest($request);
134
fcb1fba5
NL
135 if ($newUserForm->isValid() && $this->get('security.authorization_checker')->isGranted('ROLE_SUPER_ADMIN')) {
136 $userManager->updateUser($newUser, true);
0bd2cb1e
J
137
138 $config = new Config($newUser);
67c99849
JB
139 $config->setTheme($this->getParameter('wallabag_core.theme'));
140 $config->setItemsPerPage($this->getParameter('wallabag_core.items_on_page'));
141 $config->setRssLimit($this->getParameter('wallabag_core.rss_limit'));
142 $config->setLanguage($this->getParameter('wallabag_core.language'));
823397f2 143 $config->setReadingSpeed($this->getParameter('wallabag_core.reading_speed'));
0bd2cb1e
J
144
145 $em->persist($config);
146
e4977b8a
J
147 $em->flush();
148
149 $this->get('session')->getFlashBag()->add(
150 'notice',
4094ea47 151 $this->get('translator')->trans('flashes.config.notice.user_added', ['%username%' => $newUser->getUsername()])
e4977b8a
J
152 );
153
c7a4f74f 154 return $this->redirect($this->generateUrl('config').'#set6');
e4977b8a
J
155 }
156
4094ea47
JB
157 return $this->render('WallabagCoreBundle:Config:index.html.twig', [
158 'form' => [
0c83fd59
J
159 'config' => $configForm->createView(),
160 'rss' => $rssForm->createView(),
161 'pwd' => $pwdForm->createView(),
162 'user' => $userForm->createView(),
163 'new_user' => $newUserForm->createView(),
f19f9f62 164 'new_tagging_rule' => $newTaggingRule->createView(),
4094ea47
JB
165 ],
166 'rss' => [
0c83fd59
J
167 'username' => $user->getUsername(),
168 'token' => $config->getRssToken(),
4094ea47 169 ],
63e40f2d 170 'twofactor_auth' => $this->getParameter('twofactor_auth'),
4094ea47 171 ]);
4d85d7e9
J
172 }
173
0c83fd59
J
174 /**
175 * @param Request $request
176 *
177 * @Route("/generate-token", name="generate_token")
178 *
98568055 179 * @return RedirectResponse|JsonResponse
0c83fd59
J
180 */
181 public function generateTokenAction(Request $request)
182 {
183 $config = $this->getConfig();
184 $config->setRssToken(Utils::generateToken());
185
186 $em = $this->getDoctrine()->getManager();
187 $em->persist($config);
188 $em->flush();
189
190 if ($request->isXmlHttpRequest()) {
4094ea47 191 return new JsonResponse(['token' => $config->getRssToken()]);
0c83fd59
J
192 }
193
c7a4f74f
JB
194 $this->get('session')->getFlashBag()->add(
195 'notice',
4204a06b 196 'flashes.config.notice.rss_token_updated'
c7a4f74f
JB
197 );
198
199 return $this->redirect($this->generateUrl('config').'#set2');
0c83fd59
J
200 }
201
52e423f3
KG
202 /**
203 * Deletes a tagging rule and redirect to the config homepage.
204 *
205 * @param TaggingRule $rule
206 *
207 * @Route("/tagging-rule/delete/{id}", requirements={"id" = "\d+"}, name="delete_tagging_rule")
208 *
98568055 209 * @return RedirectResponse
52e423f3 210 */
5f8a7857 211 public function deleteTaggingRuleAction(TaggingRule $rule)
52e423f3
KG
212 {
213 if ($this->getUser()->getId() != $rule->getConfig()->getUser()->getId()) {
4f9cf232 214 throw $this->createAccessDeniedException('You can not access this tagging rule.');
52e423f3
KG
215 }
216
217 $em = $this->getDoctrine()->getManager();
218 $em->remove($rule);
219 $em->flush();
220
221 $this->get('session')->getFlashBag()->add(
222 'notice',
4204a06b 223 'flashes.config.notice.tagging_rules_deleted'
52e423f3
KG
224 );
225
c7a4f74f 226 return $this->redirect($this->generateUrl('config').'#set5');
52e423f3
KG
227 }
228
d9085c63
J
229 /**
230 * Retrieve config for the current user.
231 * If no config were found, create a new one.
232 *
4094ea47 233 * @return Config
d9085c63 234 */
4d85d7e9
J
235 private function getConfig()
236 {
237 $config = $this->getDoctrine()
238 ->getRepository('WallabagCoreBundle:Config')
239 ->findOneByUser($this->getUser());
240
241 if (!$config) {
242 $config = new Config($this->getUser());
243 }
244
245 return $config;
246 }
247}