Resolve "Permettre de télécharger la liste des problématiques et la liste des actions en CSV"

This commit is contained in:
2025-02-19 11:18:04 +00:00
committed by Julien Fastré
parent 02f555efae
commit 51804b10c0
13 changed files with 463 additions and 152 deletions

View File

@@ -0,0 +1,104 @@
<?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\PersonBundle\Service\SocialWork;
use Chill\PersonBundle\Entity\SocialWork\Evaluation;
use Chill\PersonBundle\Entity\SocialWork\Goal;
use Chill\PersonBundle\Entity\SocialWork\Result;
use Chill\PersonBundle\Entity\SocialWork\SocialAction;
use Chill\PersonBundle\Templating\Entity\SocialActionRender;
use Chill\PersonBundle\Templating\Entity\SocialIssueRender;
use Chill\MainBundle\Templating\TranslatableStringHelperInterface;
use League\Csv\Writer;
use Symfony\Contracts\Translation\TranslatorInterface;
final readonly class SocialActionCSVExportService
{
public function __construct(
private SocialIssueRender $socialIssueRender,
private SocialActionRender $socialActionRender,
private TranslatableStringHelperInterface $stringHelper,
private TranslatorInterface $translator,
) {}
/**
* @param list<SocialAction> $actions
*/
public function generateCsv(array $actions): Writer
{
// CSV headers
$headers = array_map(
fn (string $tr) => $this->translator->trans('export.social_action_list.'.$tr),
array_keys($this->formatRow(new SocialAction()))
);
$csv = Writer::createFromPath('php://temp', 'w+');
$csv->insertOne($headers);
foreach ($actions as $action) {
if ($action->getGoals()->isEmpty() && $action->getResults()->isEmpty() && $action->getEvaluations()->isEmpty()) {
$csv->insertOne($this->formatRow($action));
}
foreach ($action->getGoals() as $goal) {
if ($goal->getResults()->isEmpty()) {
$csv->insertOne($this->formatRow($action, $goal));
}
foreach ($goal->getResults() as $goalResult) {
$csv->insertOne($this->formatRow($action, $goal, $goalResult));
}
}
foreach ($action->getResults() as $result) {
if ($result->getGoals()->isEmpty()) {
$csv->insertOne($this->formatRow($action, null, null, $result));
}
}
foreach ($action->getEvaluations() as $evaluation) {
$csv->insertOne($this->formatRow($action, evaluation: $evaluation));
}
}
return $csv;
}
private function formatRow(
SocialAction $action,
?Goal $goal = null,
?Result $goalResult = null,
?Result $resultWithoutGoal = null,
?Evaluation $evaluation = null,
): array {
return [
'action_id' => $action->getId(),
'social_issue_id' => $action->getIssue()?->getId(),
'problematique_label' => null !== $action->getIssue() ? $this->socialIssueRender->renderString($action->getIssue(), []) : null,
'social_issue_ordering' => null !== $action->getIssue() ? $action->getIssue()->getOrdering() : null,
'action_label' => $this->socialActionRender->renderString($action, []),
'action_ordering' => $action->getOrdering(),
'goal_label' => null !== $goal ? $this->stringHelper->localize($goal->getTitle()) : null,
'goal_id' => $goal?->getId(),
'goal_result_label' => null !== $goalResult ? $this->stringHelper->localize($goalResult->getTitle()) : null,
'goal_result_id' => $goalResult?->getId(),
'result_without_goal_label' => null !== $resultWithoutGoal ? $this->stringHelper->localize($resultWithoutGoal->getTitle()) : null,
'result_without_goal_id' => $resultWithoutGoal?->getId(),
'evaluation_title' => null !== $evaluation ? $this->stringHelper->localize($evaluation->getTitle()) : null,
'evaluation_id' => $evaluation?->getId(),
'evaluation_url' => $evaluation?->getUrl(),
'evaluation_delay_month' => $evaluation?->getDelay()?->format('%m'),
'evaluation_delay_week' => $evaluation?->getDelay()?->format('%w'),
'evaluation_delay_day' => $evaluation?->getDelay()?->format('%d'),
];
}
}

View File

@@ -0,0 +1,73 @@
<?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\PersonBundle\Service\SocialWork;
use Chill\PersonBundle\Entity\SocialWork\SocialIssue;
use Chill\PersonBundle\Templating\Entity\SocialIssueRender;
use Chill\MainBundle\Templating\TranslatableStringHelperInterface;
use League\Csv\CannotInsertRecord;
use League\Csv\Exception;
use League\Csv\UnavailableStream;
use League\Csv\Writer;
use Symfony\Contracts\Translation\TranslatorInterface;
readonly class SocialIssueCSVExportService
{
public function __construct(
private SocialIssueRender $socialIssueRender,
private TranslatableStringHelperInterface $stringHelper,
private TranslatorInterface $translator,
) {}
/**
* @throws UnavailableStream
* @throws CannotInsertRecord
* @throws Exception
*/
public function generateCsv(array $issues): Writer
{
// CSV headers
$csv = Writer::createFromPath('php://temp', 'r+');
$csv->insertOne(
array_map(
fn (string $e) => $this->translator->trans($e),
[
'Id',
'Label',
'Social issue',
'socialIssue.isParent?',
'socialIssue.Parent id',
]
)
);
foreach ($issues as $issue) {
$csv->insertOne($this->formatRow($issue));
}
return $csv;
}
private function formatRow(
SocialIssue $issue,
): array {
return
[
'id' => $issue->getId(),
'label' => $this->stringHelper->localize($issue->getTitle()),
'title' => $this->socialIssueRender->renderString($issue, []),
'isParent' => $issue->hasChildren() ? 'X' : '',
'parent_id' => null !== $issue->getParent() ? $issue->getParent()->getId() : '',
];
}
}