mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-12 03:46:16 +00:00
125 lines
3.2 KiB
PHP
125 lines
3.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Chill\CalendarBundle\Export\Export;
|
|
|
|
use Chill\CalendarBundle\Export\Declarations;
|
|
use Chill\CalendarBundle\Repository\CalendarRepository;
|
|
use Chill\MainBundle\Export\AccompanyingCourseExportHelper;
|
|
use Chill\MainBundle\Export\ExportInterface;
|
|
use Chill\MainBundle\Export\FormatterInterface;
|
|
use Chill\MainBundle\Export\GroupedExportInterface;
|
|
use Chill\PersonBundle\Security\Authorization\AccompanyingPeriodVoter;
|
|
use Doctrine\ORM\Query;
|
|
use Doctrine\ORM\QueryBuilder;
|
|
use Symfony\Component\Form\FormBuilderInterface;
|
|
|
|
class StatCalendarSumDuration implements ExportInterface, GroupedExportInterface
|
|
{
|
|
public function __construct(private readonly CalendarRepository $calendarRepository) {}
|
|
|
|
public function buildForm(FormBuilderInterface $builder): void
|
|
{
|
|
// no form needed
|
|
}
|
|
|
|
public function getNormalizationVersion(): int
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
public function normalizeFormData(array $formData): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function denormalizeFormData(array $formData, int $fromVersion): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function getFormDefaultData(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function getAllowedFormattersTypes(): array
|
|
{
|
|
return [FormatterInterface::TYPE_TABULAR];
|
|
}
|
|
|
|
public function getDescription(): string
|
|
{
|
|
return 'Get the sum of calendar durations according to various filters';
|
|
}
|
|
|
|
public function getGroup(): string
|
|
{
|
|
return 'Exports of calendar';
|
|
}
|
|
|
|
public function getLabels($key, array $values, $data)
|
|
{
|
|
if ('export_result' !== $key) {
|
|
throw new \LogicException("the key {$key} is not used by this export");
|
|
}
|
|
|
|
$labels = array_combine($values, $values);
|
|
$labels['_header'] = $this->getTitle();
|
|
|
|
return static fn ($value) => $labels[$value];
|
|
}
|
|
|
|
public function getQueryKeys($data): array
|
|
{
|
|
return ['export_result'];
|
|
}
|
|
|
|
public function getResult($query, $data, \Chill\MainBundle\Export\ExportGenerationContext $context): array
|
|
{
|
|
return $query->getQuery()->getResult(Query::HYDRATE_SCALAR);
|
|
}
|
|
|
|
public function getTitle(): string
|
|
{
|
|
return 'Sum of calendar durations';
|
|
}
|
|
|
|
public function getType(): string
|
|
{
|
|
return Declarations::CALENDAR_TYPE;
|
|
}
|
|
|
|
public function initiateQuery(array $requiredModifiers, array $acl, array $data, \Chill\MainBundle\Export\ExportGenerationContext $context): QueryBuilder
|
|
{
|
|
$qb = $this->calendarRepository->createQueryBuilder('cal');
|
|
|
|
$qb->select('SUM(cal.endDate - cal.startDate) AS export_result');
|
|
$qb->join('cal.accompanyingPeriod', 'acp');
|
|
|
|
AccompanyingCourseExportHelper::addClosingMotiveExclusionClause($qb);
|
|
|
|
return $qb;
|
|
}
|
|
|
|
public function requiredRole(): string
|
|
{
|
|
return AccompanyingPeriodVoter::STATS;
|
|
}
|
|
|
|
public function supportsModifiers(): array
|
|
{
|
|
return [
|
|
Declarations::CALENDAR_TYPE,
|
|
];
|
|
}
|
|
}
|