mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
83 lines
2.1 KiB
PHP
83 lines
2.1 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\ActivityBundle\Export\Aggregator;
|
|
|
|
use Chill\ActivityBundle\Export\Declarations;
|
|
use Chill\MainBundle\Export\AggregatorInterface;
|
|
use Chill\MainBundle\Repository\UserRepositoryInterface;
|
|
use Chill\MainBundle\Templating\Entity\UserRender;
|
|
use Doctrine\ORM\QueryBuilder;
|
|
use Symfony\Component\Form\FormBuilderInterface;
|
|
|
|
class ActivityUsersAggregator implements AggregatorInterface
|
|
{
|
|
public function __construct(private readonly UserRepositoryInterface $userRepository, private readonly UserRender $userRender) {}
|
|
|
|
public function addRole(): ?string
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public function alterQuery(QueryBuilder $qb, $data, \Chill\MainBundle\Export\ExportGenerationContext $exportGenerationContext)
|
|
{
|
|
if (!\in_array('actusers', $qb->getAllAliases(), true)) {
|
|
$qb->leftJoin('activity.users', 'actusers');
|
|
}
|
|
|
|
$qb
|
|
->addSelect('actusers.id AS activity_users_aggregator')
|
|
->addGroupBy('activity_users_aggregator');
|
|
}
|
|
|
|
public function applyOn(): string
|
|
{
|
|
return Declarations::ACTIVITY;
|
|
}
|
|
|
|
public function buildForm(FormBuilderInterface $builder)
|
|
{
|
|
// nothing to add on the form
|
|
}
|
|
|
|
public function getFormDefaultData(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function getLabels($key, array $values, $data)
|
|
{
|
|
return function ($value) {
|
|
if ('_header' === $value) {
|
|
return 'Activity users';
|
|
}
|
|
|
|
if (null === $value || '' === $value) {
|
|
return '';
|
|
}
|
|
|
|
$u = $this->userRepository->find($value);
|
|
|
|
return $this->userRender->renderString($u, []);
|
|
};
|
|
}
|
|
|
|
public function getQueryKeys($data)
|
|
{
|
|
return ['activity_users_aggregator'];
|
|
}
|
|
|
|
public function getTitle()
|
|
{
|
|
return 'Aggregate by activity users';
|
|
}
|
|
}
|