- show form error when trying to load invalid user - added non-breaking space to first table cells to allow copy&paste to excel - added several css classes to allow customizations - remove team assignment check for user selection
323 lines
10 KiB
PHP
323 lines
10 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\Model\Statistic\Day;
|
|
use App\Reporting\MonthByUser;
|
|
use App\Reporting\MonthByUserForm;
|
|
use App\Reporting\MonthlyUserList;
|
|
use App\Reporting\MonthlyUserListForm;
|
|
use App\Reporting\WeekByUser;
|
|
use App\Reporting\WeekByUserForm;
|
|
use App\Repository\Query\UserQuery;
|
|
use App\Repository\TimesheetRepository;
|
|
use App\Repository\UserRepository;
|
|
use Exception;
|
|
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
use Symfony\Component\Security\Core\Exception\AccessDeniedException;
|
|
|
|
/**
|
|
* Controller used to render reports.
|
|
*
|
|
* @Route(path="/reporting")
|
|
* @Security("is_granted('view_reporting')")
|
|
*/
|
|
final class ReportingController extends AbstractController
|
|
{
|
|
/**
|
|
* @var TimesheetRepository
|
|
*/
|
|
private $timesheetRepository;
|
|
/**
|
|
* @var UserRepository
|
|
*/
|
|
private $userRepository;
|
|
|
|
public function __construct(TimesheetRepository $timesheetRepository, UserRepository $userRepository)
|
|
{
|
|
$this->timesheetRepository = $timesheetRepository;
|
|
$this->userRepository = $userRepository;
|
|
}
|
|
|
|
/**
|
|
* @Route(path="/", name="reporting", methods={"GET"})
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function defaultReport(): Response
|
|
{
|
|
return $this->redirectToRoute('report_user_week');
|
|
}
|
|
|
|
private function canSelectUser(): bool
|
|
{
|
|
if (!$this->isGranted('view_other_timesheet')) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @Route(path="/month_by_user", name="report_user_month", methods={"GET","POST"})
|
|
*
|
|
* @param Request $request
|
|
* @return Response
|
|
* @throws Exception
|
|
*/
|
|
public function monthByUser(Request $request): Response
|
|
{
|
|
$currentUser = $this->getUser();
|
|
$dateTimeFactory = $this->getDateTimeFactory($currentUser);
|
|
$localeFormats = $this->getLocaleFormats($request->getLocale());
|
|
$canChangeUser = $this->canSelectUser();
|
|
|
|
$values = new MonthByUser();
|
|
$values->setUser($currentUser);
|
|
$values->setDate($dateTimeFactory->getStartOfMonth());
|
|
|
|
$form = $this->createForm(MonthByUserForm::class, $values, [
|
|
'include_user' => $canChangeUser,
|
|
'timezone' => $dateTimeFactory->getTimezone()->getName(),
|
|
'start_date' => $values->getDate(),
|
|
'format' => $localeFormats->getDateTypeFormat(),
|
|
]);
|
|
|
|
$form->submit($request->query->all(), false);
|
|
|
|
if ($values->getUser() === null) {
|
|
$values->setUser($currentUser);
|
|
}
|
|
|
|
if ($currentUser !== $values->getUser() && !$canChangeUser) {
|
|
throw new AccessDeniedException('User is not allowed to see other users timesheet');
|
|
}
|
|
|
|
if ($values->getDate() === null) {
|
|
$values->setDate($dateTimeFactory->getStartOfMonth());
|
|
}
|
|
|
|
$start = $values->getDate();
|
|
$start->modify('first day of 00:00:00');
|
|
|
|
$end = clone $start;
|
|
$end->modify('last day of 23:59:59');
|
|
|
|
$selectedUser = $values->getUser();
|
|
|
|
$previousMonth = clone $start;
|
|
$previousMonth->modify('-1 month');
|
|
|
|
$nextMonth = clone $start;
|
|
$nextMonth->modify('+1 month');
|
|
|
|
$data = $this->timesheetRepository->getDailyStats($selectedUser, $start, $end);
|
|
$rows = $this->prepareMonthlyData($data);
|
|
|
|
return $this->render('reporting/month_by_user.html.twig', [
|
|
'form' => $form->createView(),
|
|
'days' => $data,
|
|
'rows' => $rows,
|
|
'user' => $selectedUser,
|
|
'current' => $start,
|
|
'next' => $nextMonth,
|
|
'previous' => $previousMonth,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @Route(path="/week_by_user", name="report_user_week", methods={"GET","POST"})
|
|
*
|
|
* @param Request $request
|
|
* @return Response
|
|
* @throws Exception
|
|
*/
|
|
public function weekByUser(Request $request): Response
|
|
{
|
|
$currentUser = $this->getUser();
|
|
$dateTimeFactory = $this->getDateTimeFactory($currentUser);
|
|
$localeFormats = $this->getLocaleFormats($request->getLocale());
|
|
$canChangeUser = $this->canSelectUser();
|
|
|
|
$values = new WeekByUser();
|
|
$values->setUser($currentUser);
|
|
$values->setDate($dateTimeFactory->getStartOfWeek());
|
|
|
|
$form = $this->createForm(WeekByUserForm::class, $values, [
|
|
'include_user' => $canChangeUser,
|
|
'timezone' => $dateTimeFactory->getTimezone()->getName(),
|
|
'start_date' => $values->getDate(),
|
|
'format' => $localeFormats->getDateTypeFormat(),
|
|
]);
|
|
|
|
$form->submit($request->query->all(), false);
|
|
|
|
if ($values->getUser() === null) {
|
|
$values->setUser($currentUser);
|
|
}
|
|
|
|
if ($currentUser !== $values->getUser() && !$canChangeUser) {
|
|
throw new AccessDeniedException('User is not allowed to see other users timesheet');
|
|
}
|
|
|
|
if ($values->getDate() === null) {
|
|
$values->setDate($dateTimeFactory->getStartOfWeek());
|
|
}
|
|
|
|
$start = $dateTimeFactory->getStartOfWeek($values->getDate());
|
|
$end = $dateTimeFactory->getEndOfWeek($values->getDate());
|
|
|
|
$selectedUser = $values->getUser();
|
|
|
|
$previous = clone $start;
|
|
$previous->modify('-1 week');
|
|
|
|
$next = clone $start;
|
|
$next->modify('+1 week');
|
|
|
|
$data = $this->timesheetRepository->getDailyStats($selectedUser, $start, $end);
|
|
$rows = $this->prepareMonthlyData($data);
|
|
|
|
return $this->render('reporting/week_by_user.html.twig', [
|
|
'form' => $form->createView(),
|
|
'days' => $data,
|
|
'rows' => $rows,
|
|
'user' => $selectedUser,
|
|
'current' => $start,
|
|
'next' => $next,
|
|
'previous' => $previous,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @Route(path="/monthly_users_list", name="report_monthly_users", methods={"GET","POST"})
|
|
* @Security("is_granted('view_other_timesheet')")
|
|
*
|
|
* @param Request $request
|
|
* @return Response
|
|
* @throws Exception
|
|
*/
|
|
public function monthlyUsersList(Request $request): Response
|
|
{
|
|
$currentUser = $this->getUser();
|
|
$dateTimeFactory = $this->getDateTimeFactory();
|
|
$localeFormats = $this->getLocaleFormats($request->getLocale());
|
|
|
|
$query = new UserQuery();
|
|
$query->setCurrentUser($currentUser);
|
|
$allUsers = $this->userRepository->getUsersForQuery($query);
|
|
|
|
$rows = [];
|
|
|
|
$values = new MonthlyUserList();
|
|
$values->setDate($dateTimeFactory->getStartOfMonth());
|
|
|
|
$form = $this->createForm(MonthlyUserListForm::class, $values, [
|
|
'timezone' => $dateTimeFactory->getTimezone()->getName(),
|
|
'start_date' => $values->getDate(),
|
|
'format' => $localeFormats->getDateTypeFormat(),
|
|
]);
|
|
|
|
$form->submit($request->query->all(), false);
|
|
|
|
if ($form->isSubmitted() && !$form->isValid()) {
|
|
$values->setDate($dateTimeFactory->getStartOfMonth());
|
|
}
|
|
|
|
if ($values->getDate() === null) {
|
|
$values->setDate($dateTimeFactory->getStartOfMonth());
|
|
}
|
|
|
|
$start = $values->getDate();
|
|
$start->modify('first day of 00:00:00');
|
|
|
|
$end = clone $start;
|
|
$end->modify('last day of 23:59:59');
|
|
|
|
$previousMonth = clone $start;
|
|
$previousMonth->modify('-1 month');
|
|
|
|
$nextMonth = clone $start;
|
|
$nextMonth->modify('+1 month');
|
|
|
|
foreach ($allUsers as $user) {
|
|
$rows[] = [
|
|
'days' => $this->timesheetRepository->getDailyStats($user, $start, $end),
|
|
'user' => $user
|
|
];
|
|
}
|
|
|
|
$days = [];
|
|
|
|
if (isset($rows[0])) {
|
|
/** @var Day $day */
|
|
foreach ($rows[0]['days'] as $day) {
|
|
$days[$day->getDay()->format('Ymd')] = $day->getDay();
|
|
}
|
|
}
|
|
|
|
return $this->render('reporting/monthly_user_list.html.twig', [
|
|
'form' => $form->createView(),
|
|
'rows' => $rows,
|
|
'days' => $days,
|
|
'current' => $start,
|
|
'next' => $nextMonth,
|
|
'previous' => $previousMonth,
|
|
]);
|
|
}
|
|
|
|
private function prepareMonthlyData(array $data): array
|
|
{
|
|
$days = [];
|
|
|
|
foreach ($data as $day) {
|
|
$days[$day->getDay()->format('Ymd')] = ['date' => $day->getDay(), 'duration' => 0];
|
|
}
|
|
|
|
$rows = [];
|
|
|
|
/** @var Day $day */
|
|
foreach ($data as $day) {
|
|
$dayId = $day->getDay()->format('Ymd');
|
|
foreach ($day->getDetails() as $id => $detail) {
|
|
$projectId = $detail['project']->getId();
|
|
if (!\array_key_exists($projectId, $rows)) {
|
|
$rows[$projectId] = [
|
|
'project' => $detail['project'],
|
|
'duration' => 0,
|
|
'days' => $days,
|
|
'activities' => [],
|
|
];
|
|
}
|
|
|
|
$rows[$projectId]['duration'] += $detail['duration'];
|
|
$rows[$projectId]['days'][$dayId]['duration'] += $detail['duration'];
|
|
|
|
$activityId = $detail['activity']->getId();
|
|
if (!\array_key_exists($activityId, $rows[$projectId]['activities'])) {
|
|
$rows[$projectId]['activities'][$activityId] = [
|
|
'activity' => $detail['activity'],
|
|
'duration' => 0,
|
|
'days' => $days,
|
|
];
|
|
}
|
|
|
|
$rows[$projectId]['activities'][$activityId]['duration'] += $detail['duration'];
|
|
$rows[$projectId]['activities'][$activityId]['days'][$dayId]['duration'] += $detail['duration'];
|
|
}
|
|
}
|
|
|
|
return $rows;
|
|
}
|
|
}
|