]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/UserBundle/Controller/ManageController.php
Add a real configuration for CS-Fixer
[github/wallabag/wallabag.git] / src / Wallabag / UserBundle / Controller / ManageController.php
1 <?php
2
3 namespace Wallabag\UserBundle\Controller;
4
5 use FOS\UserBundle\Event\UserEvent;
6 use FOS\UserBundle\FOSUserEvents;
7 use Pagerfanta\Adapter\DoctrineORMAdapter;
8 use Pagerfanta\Exception\OutOfRangeCurrentPageException;
9 use Pagerfanta\Pagerfanta;
10 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
11 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
12 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
13 use Symfony\Component\HttpFoundation\Request;
14 use Wallabag\UserBundle\Entity\User;
15 use Wallabag\UserBundle\Form\SearchUserType;
16
17 /**
18 * User controller.
19 */
20 class ManageController extends Controller
21 {
22 /**
23 * Creates a new User entity.
24 *
25 * @Route("/new", name="user_new")
26 * @Method({"GET", "POST"})
27 */
28 public function newAction(Request $request)
29 {
30 $userManager = $this->container->get('fos_user.user_manager');
31
32 $user = $userManager->createUser();
33 // enable created user by default
34 $user->setEnabled(true);
35
36 $form = $this->createForm('Wallabag\UserBundle\Form\NewUserType', $user);
37 $form->handleRequest($request);
38
39 if ($form->isSubmitted() && $form->isValid()) {
40 $userManager->updateUser($user);
41
42 // dispatch a created event so the associated config will be created
43 $event = new UserEvent($user, $request);
44 $this->get('event_dispatcher')->dispatch(FOSUserEvents::USER_CREATED, $event);
45
46 $this->get('session')->getFlashBag()->add(
47 'notice',
48 $this->get('translator')->trans('flashes.user.notice.added', ['%username%' => $user->getUsername()])
49 );
50
51 return $this->redirectToRoute('user_edit', ['id' => $user->getId()]);
52 }
53
54 return $this->render('WallabagUserBundle:Manage:new.html.twig', [
55 'user' => $user,
56 'form' => $form->createView(),
57 ]);
58 }
59
60 /**
61 * Displays a form to edit an existing User entity.
62 *
63 * @Route("/{id}/edit", name="user_edit")
64 * @Method({"GET", "POST"})
65 */
66 public function editAction(Request $request, User $user)
67 {
68 $deleteForm = $this->createDeleteForm($user);
69 $editForm = $this->createForm('Wallabag\UserBundle\Form\UserType', $user);
70 $editForm->handleRequest($request);
71
72 if ($editForm->isSubmitted() && $editForm->isValid()) {
73 $em = $this->getDoctrine()->getManager();
74 $em->persist($user);
75 $em->flush();
76
77 $this->get('session')->getFlashBag()->add(
78 'notice',
79 $this->get('translator')->trans('flashes.user.notice.updated', ['%username%' => $user->getUsername()])
80 );
81
82 return $this->redirectToRoute('user_edit', ['id' => $user->getId()]);
83 }
84
85 return $this->render('WallabagUserBundle:Manage:edit.html.twig', [
86 'user' => $user,
87 'edit_form' => $editForm->createView(),
88 'delete_form' => $deleteForm->createView(),
89 'twofactor_auth' => $this->getParameter('twofactor_auth'),
90 ]);
91 }
92
93 /**
94 * Deletes a User entity.
95 *
96 * @Route("/{id}", name="user_delete")
97 * @Method("DELETE")
98 */
99 public function deleteAction(Request $request, User $user)
100 {
101 $form = $this->createDeleteForm($user);
102 $form->handleRequest($request);
103
104 if ($form->isSubmitted() && $form->isValid()) {
105 $this->get('session')->getFlashBag()->add(
106 'notice',
107 $this->get('translator')->trans('flashes.user.notice.deleted', ['%username%' => $user->getUsername()])
108 );
109
110 $em = $this->getDoctrine()->getManager();
111 $em->remove($user);
112 $em->flush();
113 }
114
115 return $this->redirectToRoute('user_index');
116 }
117
118 /**
119 * @param Request $request
120 * @param int $page
121 *
122 * @Route("/list/{page}", name="user_index", defaults={"page" = 1})
123 *
124 * Default parameter for page is hardcoded (in duplication of the defaults from the Route)
125 * because this controller is also called inside the layout template without any page as argument
126 *
127 * @return \Symfony\Component\HttpFoundation\Response
128 */
129 public function searchFormAction(Request $request, $page = 1)
130 {
131 $em = $this->getDoctrine()->getManager();
132 $qb = $em->getRepository('WallabagUserBundle:User')->createQueryBuilder('u');
133
134 $form = $this->createForm(SearchUserType::class);
135 $form->handleRequest($request);
136
137 if ($form->isSubmitted() && $form->isValid()) {
138 $this->get('logger')->info('searching users');
139
140 $searchTerm = (isset($request->get('search_user')['term']) ? $request->get('search_user')['term'] : '');
141
142 $qb = $em->getRepository('WallabagUserBundle:User')->getQueryBuilderForSearch($searchTerm);
143 }
144
145 $pagerAdapter = new DoctrineORMAdapter($qb->getQuery(), true, false);
146 $pagerFanta = new Pagerfanta($pagerAdapter);
147 $pagerFanta->setMaxPerPage(50);
148
149 try {
150 $pagerFanta->setCurrentPage($page);
151 } catch (OutOfRangeCurrentPageException $e) {
152 if ($page > 1) {
153 return $this->redirect($this->generateUrl('user_index', ['page' => $pagerFanta->getNbPages()]), 302);
154 }
155 }
156
157 return $this->render('WallabagUserBundle:Manage:index.html.twig', [
158 'searchForm' => $form->createView(),
159 'users' => $pagerFanta,
160 ]);
161 }
162
163 /**
164 * Creates a form to delete a User entity.
165 *
166 * @param User $user The User entity
167 *
168 * @return \Symfony\Component\Form\Form The form
169 */
170 private function createDeleteForm(User $user)
171 {
172 return $this->createFormBuilder()
173 ->setAction($this->generateUrl('user_delete', ['id' => $user->getId()]))
174 ->setMethod('DELETE')
175 ->getForm()
176 ;
177 }
178 }