251 lines
8.4 KiB
PHP
251 lines
8.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Controller;
|
|
|
|
use App\Configuration\SystemConfiguration;
|
|
use App\Entity\User;
|
|
use App\Event\UserPreferenceDisplayEvent;
|
|
use App\Export\Spreadsheet\UserExporter;
|
|
use App\Export\Spreadsheet\Writer\BinaryFileResponseWriter;
|
|
use App\Export\Spreadsheet\Writer\XlsxWriter;
|
|
use App\Form\Toolbar\UserToolbarForm;
|
|
use App\Form\Type\UserType;
|
|
use App\Form\UserCreateType;
|
|
use App\Repository\Query\UserFormTypeQuery;
|
|
use App\Repository\Query\UserQuery;
|
|
use App\Repository\TimesheetRepository;
|
|
use App\Repository\UserRepository;
|
|
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security;
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
|
use Symfony\Component\Form\FormInterface;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
use Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface;
|
|
|
|
/**
|
|
* Controller used to manage users in the admin part of the site.
|
|
*
|
|
* @Route(path="/admin/user")
|
|
* @Security("is_granted('view_user')")
|
|
*/
|
|
final class UserController extends AbstractController
|
|
{
|
|
/**
|
|
* @var UserPasswordEncoderInterface
|
|
*/
|
|
private $encoder;
|
|
/**
|
|
* @var UserRepository
|
|
*/
|
|
private $repository;
|
|
/**
|
|
* @var EventDispatcherInterface
|
|
*/
|
|
private $dispatcher;
|
|
|
|
public function __construct(UserPasswordEncoderInterface $encoder, UserRepository $repository, EventDispatcherInterface $dispatcher)
|
|
{
|
|
$this->encoder = $encoder;
|
|
$this->repository = $repository;
|
|
$this->dispatcher = $dispatcher;
|
|
}
|
|
|
|
/**
|
|
* @return UserRepository
|
|
*/
|
|
protected function getRepository()
|
|
{
|
|
return $this->repository;
|
|
}
|
|
|
|
/**
|
|
* @Route(path="/", defaults={"page": 1}, name="admin_user", methods={"GET"})
|
|
* @Route(path="/page/{page}", requirements={"page": "[1-9]\d*"}, name="admin_user_paginated", methods={"GET"})
|
|
*/
|
|
public function indexAction($page, Request $request): Response
|
|
{
|
|
$query = new UserQuery();
|
|
$query->setCurrentUser($this->getUser());
|
|
$query->setPage($page);
|
|
|
|
$form = $this->getToolbarForm($query);
|
|
if ($this->handleSearch($form, $request)) {
|
|
return $this->redirectToRoute('admin_user');
|
|
}
|
|
|
|
$entries = $this->getRepository()->getPagerfantaForQuery($query);
|
|
|
|
$event = new UserPreferenceDisplayEvent(UserPreferenceDisplayEvent::USERS);
|
|
$this->dispatcher->dispatch($event);
|
|
|
|
return $this->render('user/index.html.twig', [
|
|
'entries' => $entries,
|
|
'query' => $query,
|
|
'toolbarForm' => $form->createView(),
|
|
'preferences' => $event->getPreferences(),
|
|
]);
|
|
}
|
|
|
|
private function createNewDefaultUser(SystemConfiguration $config): User
|
|
{
|
|
$user = new User();
|
|
$user->setEnabled(true);
|
|
$user->setRoles([User::DEFAULT_ROLE]);
|
|
$user->setTimezone($config->getUserDefaultTimezone());
|
|
$user->setLanguage($config->getUserDefaultLanguage());
|
|
|
|
return $user;
|
|
}
|
|
|
|
/**
|
|
* @Route(path="/create", name="admin_user_create", methods={"GET", "POST"})
|
|
* @Security("is_granted('create_user')")
|
|
*/
|
|
public function createAction(Request $request, SystemConfiguration $config): Response
|
|
{
|
|
$user = $this->createNewDefaultUser($config);
|
|
$editForm = $this->getCreateUserForm($user);
|
|
|
|
$editForm->handleRequest($request);
|
|
|
|
if ($editForm->isSubmitted() && $editForm->isValid()) {
|
|
$password = $this->encoder->encodePassword($user, $user->getPlainPassword());
|
|
$user->setPassword($password);
|
|
|
|
$entityManager = $this->getDoctrine()->getManager();
|
|
$entityManager->persist($user);
|
|
$entityManager->flush();
|
|
|
|
$this->flashSuccess('action.update.success');
|
|
|
|
if ($editForm->has('create_more') && $editForm->get('create_more')->getData() !== true) {
|
|
return $this->redirectToRoute('user_profile_edit', ['username' => $user->getUsername()]);
|
|
}
|
|
|
|
$firstUser = $user;
|
|
$user = $this->createNewDefaultUser($config);
|
|
$user->setLanguage($firstUser->getLanguage());
|
|
$user->setTimezone($firstUser->getTimezone());
|
|
|
|
$editForm = $this->getCreateUserForm($user);
|
|
if ($editForm->has('create_more')) {
|
|
$editForm->get('create_more')->setData(true);
|
|
}
|
|
}
|
|
|
|
return $this->render('user/create.html.twig', [
|
|
'user' => $user,
|
|
'form' => $editForm->createView()
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @Route(path="/{id}/delete", name="admin_user_delete", methods={"GET", "POST"})
|
|
* @Security("is_granted('delete', userToDelete)")
|
|
*/
|
|
public function deleteAction(User $userToDelete, Request $request, TimesheetRepository $repository): Response
|
|
{
|
|
// $userToDelete MUST not be called $user, as $user is always the current user!
|
|
$stats = $repository->getUserStatistics($userToDelete);
|
|
|
|
$deleteForm = $this->createFormBuilder(null, [
|
|
'attr' => [
|
|
'data-form-event' => 'kimai.userUpdate kimai.userDelete',
|
|
'data-msg-success' => 'action.delete.success',
|
|
'data-msg-error' => 'action.delete.error',
|
|
]
|
|
])
|
|
->add('user', UserType::class, [
|
|
'query_builder' => function (UserRepository $repo) use ($userToDelete) {
|
|
$query = new UserFormTypeQuery();
|
|
$query->addUserToIgnore($userToDelete);
|
|
$query->setUser($this->getUser());
|
|
|
|
return $repo->getQueryBuilderForFormType($query);
|
|
},
|
|
'required' => false,
|
|
])
|
|
->setAction($this->generateUrl('admin_user_delete', ['id' => $userToDelete->getId()]))
|
|
->setMethod('POST')
|
|
->getForm();
|
|
|
|
$deleteForm->handleRequest($request);
|
|
|
|
if ($deleteForm->isSubmitted() && $deleteForm->isValid()) {
|
|
try {
|
|
$this->getRepository()->deleteUser($userToDelete, $deleteForm->get('user')->getData());
|
|
$this->flashSuccess('action.delete.success');
|
|
} catch (\Exception $ex) {
|
|
$this->flashDeleteException($ex);
|
|
}
|
|
|
|
return $this->redirectToRoute('admin_user');
|
|
}
|
|
|
|
return $this->render('user/delete.html.twig', [
|
|
'user' => $userToDelete,
|
|
'stats' => $stats,
|
|
'form' => $deleteForm->createView(),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @Route(path="/export", name="user_export", methods={"GET"})
|
|
* @Security("is_granted('view_user')")
|
|
*/
|
|
public function exportAction(Request $request, UserExporter $exporter)
|
|
{
|
|
$query = new UserQuery();
|
|
$query->setCurrentUser($this->getUser());
|
|
|
|
$form = $this->getToolbarForm($query);
|
|
$form->setData($query);
|
|
$form->submit($request->query->all(), false);
|
|
|
|
if (!$form->isValid()) {
|
|
$query->resetByFormError($form->getErrors());
|
|
}
|
|
|
|
$entries = $this->getRepository()->getUsersForQuery($query);
|
|
|
|
$spreadsheet = $exporter->export(
|
|
$entries,
|
|
new UserPreferenceDisplayEvent(UserPreferenceDisplayEvent::EXPORT)
|
|
);
|
|
$writer = new BinaryFileResponseWriter(new XlsxWriter(), 'kimai-users');
|
|
|
|
return $writer->getFileResponse($spreadsheet);
|
|
}
|
|
|
|
protected function getToolbarForm(UserQuery $query): FormInterface
|
|
{
|
|
return $this->createForm(UserToolbarForm::class, $query, [
|
|
'action' => $this->generateUrl('admin_user', [
|
|
'page' => $query->getPage(),
|
|
]),
|
|
'method' => 'GET',
|
|
]);
|
|
}
|
|
|
|
private function getCreateUserForm(User $user): FormInterface
|
|
{
|
|
return $this->createForm(UserCreateType::class, $user, [
|
|
'action' => $this->generateUrl('admin_user_create'),
|
|
'method' => 'POST',
|
|
'include_active_flag' => true,
|
|
'include_preferences' => true,
|
|
'include_add_more' => true,
|
|
'include_teams' => $this->isGranted('teams_other_profile'),
|
|
'include_roles' => $this->isGranted('roles_other_profile'),
|
|
]);
|
|
}
|
|
}
|