move controller service logics into a service

This commit is contained in:
team2
2026-02-27 20:15:43 +01:00
parent f0dfdaf4a8
commit 8096ac0de9
2 changed files with 175 additions and 75 deletions

View File

@@ -5,107 +5,72 @@ declare(strict_types=1);
namespace App\Controller\Admin;
use App\Entity\IngestProfile;
use App\Index\IndexConfigurationProvider;
use App\Index\IndexMetaManager;
use App\Index\IndexStructureComparator;
use App\Repository\IngestProfileRepository;
use Doctrine\ORM\EntityManagerInterface;
use App\Service\Admin\IngestProfileAdminService;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
#[Route('/admin/ingest-profiles')]
class IngestProfileController extends AbstractController
final class IngestProfileController extends AbstractController
{
#[Route('/', name: 'admin_ingest_profile_list')]
public function list(
IngestProfileRepository $repo,
IndexMetaManager $metaManager,
IndexConfigurationProvider $provider,
IndexStructureComparator $comparator
): Response {
public function list(IngestProfileAdminService $svc): Response
{
$data = $svc->listData();
$profiles = $repo->findBy([], ['version' => 'DESC']);
$activeProfile = $repo->findActive();
$meta = $metaManager->readMeta();
$currentStructure = $provider->getConfiguration()->toStructureArray();
$diff = $comparator->compare($meta, $currentStructure);
$structureMismatch = false;
foreach ($diff as $row) {
if (!$row['equal']) {
$structureMismatch = true;
break;
}
}
return $this->render('admin/ingest_profile/list.html.twig', [
'profiles' => $profiles,
'activeProfile' => $activeProfile,
'indexMeta' => $meta,
'diff' => $diff,
'structureMismatch' => $structureMismatch,
]);
return $this->render('admin/ingest_profile/list.html.twig', $data);
}
#[Route('/create', name: 'admin_ingest_profile_create', methods: ['GET', 'POST'])]
public function create(
Request $request,
IngestProfileRepository $repo,
EntityManagerInterface $em
): Response {
public function create(Request $request, IngestProfileAdminService $svc): Response
{
if ($request->isMethod('POST')) {
try {
$svc->create([
'chunk_size' => $request->request->get('chunk_size'),
'chunk_overlap' => $request->request->get('chunk_overlap'),
'embedding_model' => $request->request->get('embedding_model'),
'embedding_dimension' => $request->request->get('embedding_dimension'),
'scoring_version' => $request->request->get('scoring_version'),
]);
$latest = $repo->findLatestVersion();
$nextVersion = $latest ? $latest->getVersion() + 1 : 1;
$profile = new IngestProfile(
$nextVersion,
(int)$request->request->get('chunk_size'),
(int)$request->request->get('chunk_overlap'),
(string)$request->request->get('embedding_model'),
(int)$request->request->get('embedding_dimension'),
(int)$request->request->get('scoring_version')
);
$em->persist($profile);
$em->flush();
return $this->redirectToRoute('admin_ingest_profile_list');
$this->addFlash('success', 'Ingest-Profil wurde erstellt.');
return $this->redirectToRoute('admin_ingest_profile_list');
} catch (\Throwable $e) {
$this->addFlash('danger', $e->getMessage());
// fallthrough -> render form again
}
}
return $this->render('admin/ingest_profile/create.html.twig');
}
#[Route('/activate/{id}', name: 'admin_ingest_profile_activate')]
#[Route('/activate/{id}', name: 'admin_ingest_profile_activate', methods: ['POST'])]
public function activate(
IngestProfile $profile,
IngestProfileRepository $repo,
EntityManagerInterface $em
IngestProfileAdminService $svc
): Response {
$active = $repo->findActive();
if ($active) {
$active->deactivate();
try {
$svc->activate($profile);
$this->addFlash('success', 'Ingest-Profil wurde aktiviert.');
} catch (\Throwable $e) {
$this->addFlash('danger', $e->getMessage());
}
$profile->activate();
$em->flush();
return $this->redirectToRoute('admin_ingest_profile_list');
}
#[Route('/remove/{id}', name: 'admin_ingest_profile_remove')]
public function remove(
IngestProfileRepository $repo,
string $id
): Response {
$repo->remove($id);
#[Route('/remove/{id}', name: 'admin_ingest_profile_remove', methods: ['POST', 'GET'])]
public function remove(string $id, IngestProfileAdminService $svc): Response
{
try {
$svc->remove($id);
$this->addFlash('success', 'Ingest-Profil wurde entfernt.');
} catch (\Throwable $e) {
$this->addFlash('danger', $e->getMessage());
}
return $this->redirectToRoute('admin_ingest_profile_list');
}
}
}