referrer scope aggregator for social work actions

This commit is contained in:
Julie Lenaerts 2022-07-27 21:25:13 +02:00
parent 562a5678ef
commit 8085fe2c17
2 changed files with 93 additions and 0 deletions

View File

@ -0,0 +1,86 @@
<?php
/**
* 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.
*/
declare(strict_types=1);
namespace Chill\PersonBundle\Export\Aggregator;
use Chill\MainBundle\Export\AggregatorInterface;
use Chill\MainBundle\Repository\ScopeRepository;
use Chill\MainBundle\Templating\TranslatableStringHelper;
use Chill\PersonBundle\Export\Declarations;
use Doctrine\ORM\QueryBuilder;
use Symfony\Component\Form\FormBuilderInterface;
final class ReferrerScopeAggregator implements AggregatorInterface
{
private ScopeRepository $scopeRepository;
private TranslatableStringHelper $translatableStringHelper;
public function __construct(ScopeRepository $scopeRepository, TranslatableStringHelper $translatableStringHelper)
{
$this->scopeRepository = $scopeRepository;
$this->translatableStringHelper = $translatableStringHelper;
}
public function addRole()
{
return null;
}
public function alterQuery(QueryBuilder $qb, $data)
{
$qb->join('acpw.referrers', 'r');
$qb->addSelect('IDENTITY(r.mainScope) as referrer_scope_aggregator');
$groupBy = $qb->getDQLPart('groupBy');
if (!empty($groupBy)) {
$qb->addGroupBy('referrer_scope_aggregator');
} else {
$qb->groupBy('referrer_scope_aggregator');
}
}
public function applyOn()
{
return Declarations::SOCIAL_WORK_ACTION_TYPE;
}
public function buildForm(FormBuilderInterface $builder)
{
// no form
}
public function getLabels($key, array $values, $data)
{
return function ($value): string {
if ('_header' === $value) {
return 'User scope';
}
$s = $this->scopeRepository->find($value);
return $this->translatableStringHelper->localize(
$s->getName());
};
}
public function getQueryKeys($data)
{
return ['referrer_scope_aggregator'];
}
public function getTitle()
{
return 'Group social work actions by referrer scope';
}
}

View File

@ -50,3 +50,10 @@ services:
autoconfigure: true
tags:
- { name: chill.export_aggregator, alias: social_work_actions_referrer_job_aggregator }
chill.person.export.aggregator_referrer_scope:
class: Chill\PersonBundle\Export\Aggregator\ReferrerScopeAggregator
autowire: true
autoconfigure: true
tags:
- { name: chill.export_aggregator, alias: social_work_actions_referrer_scope_aggregator }