diff --git a/assets/controllers/menu_controller.js b/assets/controllers/menu_controller.js
deleted file mode 100644
index 638efe9..0000000
--- a/assets/controllers/menu_controller.js
+++ /dev/null
@@ -1,12 +0,0 @@
-// assets/controllers/menu_controller.js
-import { Controller } from '@hotwired/stimulus';
-
-export default class extends Controller {
- static targets = ['menu'];
-
- toggleMenu(event) {
- this.menuTargets.forEach(menu => {
- menu.classList.toggle('hidden', menu !== event.currentTarget);
- });
- }
-}
diff --git a/assets/controllers/table_controller.js b/assets/controllers/table_controller.js
index ae125bc..534bdd5 100644
--- a/assets/controllers/table_controller.js
+++ b/assets/controllers/table_controller.js
@@ -6,19 +6,30 @@ import {Controller} from '@hotwired/stimulus';
*/
/* stimulusFetch: 'lazy' */
export default class extends Controller {
- static targets = ['body']
+ static targets = ["body", "toggleIcon"]
+ static values = { open: Boolean }
- // ...
- collapse(event) {
- if (this.bodyTarget.style.display === "none") {
- this.bodyTarget.style.display = "block";
- event.currentTarget.classList.remove('fa-chevron-up');
- event.currentTarget.classList.add('fa-chevron-down');
- } else {
- this.bodyTarget.style.display = "none";
- event.currentTarget.classList.remove('fa-chevron-down');
- event.currentTarget.classList.add('fa-chevron-up');
+ connect() {
+ if (!this.openValue) {
+ this.close()
}
+ }
+ toggle() {
+ if (this.bodyTarget.style.display === "none") {
+ this.open()
+ } else {
+ this.close()
+ }
+ }
+
+ open() {
+ this.bodyTarget.style.display = "block"
+ this.toggleIconTarget.classList.replace("fa-chevron-down", "fa-chevron-up")
+ }
+
+ close() {
+ this.bodyTarget.style.display = "none"
+ this.toggleIconTarget.classList.replace("fa-chevron-up", "fa-chevron-down")
}
}
diff --git a/config/services.yaml b/config/services.yaml
index cf6e775..68e7b42 100644
--- a/config/services.yaml
+++ b/config/services.yaml
@@ -52,6 +52,14 @@ services:
App\Service\MangaExportService:
arguments:
$projectDir: '%kernel.project_dir%'
+
+ App\Service\MangaImportService:
+ arguments:
+ $projectDir: '%kernel.project_dir%'
+
+ App\Controller\ImportController:
+ arguments:
+ $projectDir: '%kernel.project_dir%'
App\EventListener\MangaScrapedListener:
tags:
diff --git a/frankenphp/conf.d/app.ini b/frankenphp/conf.d/app.ini
index 044c070..8fc8459 100644
--- a/frankenphp/conf.d/app.ini
+++ b/frankenphp/conf.d/app.ini
@@ -1,3 +1,7 @@
+upload_max_filesize = 512M
+post_max_size = 512M
+memory_limit = 512M
+
expose_php = 0
date.timezone = UTC
apc.enable_cli = 1
diff --git a/migrations/Version20240626162522.php b/migrations/Version20240626162522.php
new file mode 100644
index 0000000..2c99eb0
--- /dev/null
+++ b/migrations/Version20240626162522.php
@@ -0,0 +1,32 @@
+addSql('ALTER TABLE chapter ADD cbz_path VARCHAR(255) DEFAULT NULL');
+ }
+
+ public function down(Schema $schema): void
+ {
+ // this down() migration is auto-generated, please modify it to your needs
+ $this->addSql('CREATE SCHEMA public');
+ $this->addSql('ALTER TABLE chapter DROP cbz_path');
+ }
+}
diff --git a/src/Controller/CalendarController.php b/src/Controller/CalendarController.php
new file mode 100644
index 0000000..2e2ca99
--- /dev/null
+++ b/src/Controller/CalendarController.php
@@ -0,0 +1,18 @@
+render('calendar/index.html.twig', [
+ 'controller_name' => 'CalendarController',
+ ]);
+ }
+}
diff --git a/src/Controller/ImportController.php b/src/Controller/ImportController.php
new file mode 100644
index 0000000..6996d4d
--- /dev/null
+++ b/src/Controller/ImportController.php
@@ -0,0 +1,197 @@
+isMethod('post')) {
+ $file = $request->files->get('file');
+ if ($file && $file->getClientOriginalExtension() === 'cbz') {
+ $originalFileName = pathinfo($file->getClientOriginalName(), PATHINFO_FILENAME);
+ $filename = uniqid() . '.' . $file->getClientOriginalExtension();
+
+ try {
+ $file->move($this->projectDir . '/' . self::UPLOADS_DIRECTORY, $filename);
+ $session->set('import_file_path', $this->projectDir . '/' .self::UPLOADS_DIRECTORY . '/' . $filename);
+ $session->set('import_original_file_name', $originalFileName);
+ return $this->redirectToRoute('import_match');
+ } catch (FileException $e) {
+ $this->notificationService->sendUpdate([
+ 'type' => 'error',
+ 'message' => 'Une erreur est survenue lors de l\'import du fichier.'
+ ]);
+ }
+ } else {
+ $this->notificationService->sendUpdate([
+ 'type' => 'error',
+ 'message' => 'Le fichier doit être au format CBZ.'
+ ]);
+ }
+ }
+
+ return $this->render('import/index.html.twig');
+ }
+
+ /**
+ * @throws Exception
+ */
+ #[Route('/import/match', name: 'import_match')]
+ public function match(Request $request, SessionInterface $session): Response
+ {
+ $filePath = $session->get('import_file_path');
+ $originalFileName = $session->get('import_original_file_name');
+ if (!$filePath || !$originalFileName) {
+ return $this->redirectToRoute('app_import');
+ }
+
+ $metadata = $this->cbzService->extractMetadata($filePath, $originalFileName);
+ if($metadata['title'] === '' || is_null($metadata['title'])){
+ $this->notificationService->sendUpdate([
+ 'type' => 'error',
+ 'message' => 'Impossible de détecter le titre du manga.'
+ ]);
+ return $this->redirectToRoute('app_import');
+ }
+
+ $mangas = $this->mangaRepository->findBySlug($metadata['title']);
+
+ $mangasChapters = [];
+ foreach ($mangas as $manga) {
+ if(!is_null($metadata['chapter'])){
+ $chapters = $this->chapterRepository->findBy([
+ 'manga' => $manga,
+ 'number' => $metadata['chapter']
+ ]);
+ $chapters = [$chapters[0]->getVolume() => $chapters];
+ }else{
+ $chapters = $this->chapterRepository->findBy([
+ 'manga' => $manga,
+ 'volume' => (int) $metadata['volume']
+ ]);
+
+ $chapters = [$metadata['volume'] => $chapters];
+ }
+ $mangasChapters[$manga->getSlug()] = $chapters;
+ }
+
+ if(empty($mangas)) {
+ $this->notificationService->sendUpdate([
+ 'type' => 'error',
+ 'message' => 'Aucun manga trouvé avec ce titre.'
+ ]);
+ return $this->redirectToRoute('app_manga_new', ['query' => $metadata['title']]);
+ }
+
+ if ($request->isMethod('post')) {
+ $session->set('import_metadata', $request->request->all());
+ return $this->redirectToRoute('import_confirm');
+ }
+
+ return $this->render('import/match.html.twig', [
+ 'mangas' => $mangas,
+ 'volume' => $metadata['volume'],
+ 'chapters' => $mangasChapters
+ ]);
+ }
+
+ #[Route('/import/confirm', name: 'import_confirm')]
+ public function confirm(Request $request, SessionInterface $session): Response
+ {
+ if (!$request->isMethod('POST')) {
+ return $this->redirectToRoute('app_import');
+ }
+
+ $action = $request->request->get('action');
+ $mangaSlug = $request->request->get('manga_slug');
+ $volume = $request->request->get('volume');
+
+ if ($action === 'confirm') {
+ // Logique de confirmation
+ $manga = $this->mangaRepository->findOneBy(['slug' => $mangaSlug]);
+ if (!$manga) {
+ $this->notificationService->sendUpdate([
+ 'type' => 'error',
+ 'message' => 'Manga non trouvé.'
+ ]);
+ return $this->redirectToRoute('app_import');
+ }
+
+ $filePath = $session->get('import_file_path');
+ if (!$filePath) {
+ $this->notificationService->sendUpdate([
+ 'type' => 'error',
+ 'message' => 'Fichier d\'import non trouvé.'
+ ]);
+ return $this->redirectToRoute('app_import');
+ }
+ $originalFileName = $session->get('import_original_file_name');
+
+ // Ici, vous pouvez ajouter la logique pour importer effectivement le fichier
+ // Par exemple :
+ // $this->mangaImportService->importVolume($manga, $volume, $filePath);
+
+ try {
+ $this->mangaImportService->importVolume($manga, (int)$volume, $filePath, $originalFileName);
+ } catch (\Exception $e) {
+ $this->notificationService->sendUpdate([
+ 'type' => 'error',
+ 'message' => 'Erreur lors de l\'import : ' . $e->getMessage()
+ ]);
+ }
+
+ $this->notificationService->sendUpdate([
+ 'type' => 'success',
+ 'message' => 'Import confirmé avec succès.'
+ ]);
+
+ return $this->redirectToRoute('app_manga_show', ['mangaSlug' => $mangaSlug]);
+ } elseif ($action === 'refuse') {
+ // Logique de refus
+ $filePath = $session->get('import_file_path');
+ if ($filePath && file_exists($filePath)) {
+ unlink($filePath); // Supprime le fichier temporaire
+ }
+ $session->remove('import_file_path');
+ $session->remove('import_original_file_name');
+
+ $this->notificationService->sendUpdate([
+ 'type' => 'info',
+ 'message' => 'Import refusé. Le fichier a été supprimé.'
+ ]);
+ }
+
+ return $this->redirectToRoute('app_import');
+ }
+}
diff --git a/src/Controller/MangaController.php b/src/Controller/MangaController.php
index e5c6d05..94b4cbd 100644
--- a/src/Controller/MangaController.php
+++ b/src/Controller/MangaController.php
@@ -6,6 +6,7 @@ use App\Entity\Manga;
use App\Message\DownloadChapter;
use App\Repository\ChapterRepository;
use App\Repository\MangaRepository;
+use App\Service\CbzService;
use App\Service\MangaExportService;
use App\Service\LelScansProviderService;
use App\Service\MangaScraperServiceOld;
@@ -19,19 +20,20 @@ use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\ResponseHeaderBag;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\Messenger\MessageBusInterface;
-use Symfony\Component\Routing\Annotation\Route;
+use Symfony\Component\Routing\Attribute\Route;
use Symfony\Component\String\Slugger\AsciiSlugger;
class MangaController extends AbstractController
{
public function __construct(
- private readonly MangaScraperServiceOld $mangaScraperService,
- private readonly MangaExportService $mangaExportService,
- private readonly LelScansProviderService $mangaProviderService,
- private readonly MangaRepository $mangaRepository,
- private ChapterRepository $chapterRepository,
- private MangaUpdatesMetadataProvider $mangaUpdatesDbProvider,
- private MessageBusInterface $bus
+ private readonly MangaScraperServiceOld $mangaScraperService,
+ private readonly MangaExportService $mangaExportService,
+ private readonly LelScansProviderService $mangaProviderService,
+ private readonly MangaRepository $mangaRepository,
+ private readonly ChapterRepository $chapterRepository,
+ private readonly MangaUpdatesMetadataProvider $mangaUpdatesDbProvider,
+ private readonly MessageBusInterface $bus,
+ private readonly CbzService $cbzService
)
{
}
@@ -39,6 +41,7 @@ class MangaController extends AbstractController
#[Route('/manga', name: 'app_manga')]
public function index(): Response
{
+// phpinfo();
$mangas = $this->mangaRepository->findAll();
return $this->render('manga/index.html.twig', [
'controller_name' => 'MangaController',
@@ -49,7 +52,7 @@ class MangaController extends AbstractController
/**
* @throws NonUniqueResultException
*/
- #[Route('/manga/{mangaSlug}', name: 'manga_show')]
+ #[Route('/manga/chapters/{mangaSlug}', name: 'app_manga_show')]
public function showChapters(string $mangaSlug): Response
{
// $manga = $this->mangaRepository->findOneWithChapterBy(['slug' => $mangaSlug]);
@@ -88,8 +91,8 @@ class MangaController extends AbstractController
]);
}
- #[Route('/manga/{mangaSlug}/{chapterNumber}/{pageNumber}', name: 'read_chapter_page')]
- public function readChapterPage(string $mangaSlug, float $chapterNumber, int $pageNumber = 0): Response
+ #[Route('/manga/read/{mangaSlug}/{chapterNumber}/{pageNumber}', name: 'app_manga_read')]
+ public function readChapterPage(string $mangaSlug, float $chapterNumber, int $pageNumber = 1): Response
{
$manga = $this->mangaRepository->findOneBy(['slug' => $mangaSlug]);
if (!$manga) {
@@ -101,20 +104,37 @@ class MangaController extends AbstractController
throw $this->createNotFoundException("Le chapitre demandé n'existe pas.");
}
- $currentPage = $chapter->getPageByNumber($pageNumber);
- if (!$currentPage) {
+ if (is_null($chapter->getCbzPath())) {
+ $currentPage = $chapter->getPageByNumber($pageNumber);
+ if (!$currentPage) {
+ throw $this->createNotFoundException("La page demandée n'existe pas.");
+ }
+
+ return $this->render('manga/manga_reader.html.twig', [
+ 'manga' => $manga,
+ 'chapter' => $chapter,
+ 'pages' => $chapter->getPagesLink(),
+ 'currentPage' => $currentPage,
+ ]);
+ }
+
+ $pageContent = $this->cbzService->getPageContent($chapter->getCbzPath(), $pageNumber);
+ if (!$pageContent) {
throw $this->createNotFoundException("La page demandée n'existe pas.");
}
+ $totalPages = $this->cbzService->getPageCount($chapter->getCbzPath());
+
return $this->render('manga/manga_reader.html.twig', [
'manga' => $manga,
'chapter' => $chapter,
- 'pages' => $chapter->getPagesLink(),
- 'currentPage' => $currentPage,
+ 'currentPage' => $pageNumber,
+ 'totalPages' => $totalPages,
+ 'pageContent' => base64_encode($pageContent),
]);
}
- #[Route('/addNew/{query}', name: 'add_new_manga')]
+ #[Route('/manga/new/{query}', name: 'app_manga_new')]
public function addNew(string $query = ''): Response
{
return $this->render('manga/add_new.html.twig', [
@@ -137,7 +157,7 @@ class MangaController extends AbstractController
$chapter = $this->chapterRepository->find($id);
if (!$chapter) {
return new JsonResponse(['error' => 'Chapter Not Found.'], 400);
- } elseif ($chapter->getLocalPath() !== null) {
+ } elseif ($chapter->getCbzPath() !== null) {
return new JsonResponse(['error' => 'Chapter already scraped.'], 400);
}
@@ -198,7 +218,7 @@ class MangaController extends AbstractController
$availableChapters = $this->mangaProviderService->getChapterList($mangaSlug);
- return $this->redirectToRoute('manga_show', ['mangaSlug' => $mangaSlug, 'availableChapters' => $availableChapters]);
+ return $this->redirectToRoute('app_manga_show', ['mangaSlug' => $mangaSlug, 'availableChapters' => $availableChapters]);
}
#[Route('/manga/exportFrom/{mangaSlug}/{chapterNumber}', name: 'manga_export')]
diff --git a/src/Controller/SettingsController.php b/src/Controller/SettingsController.php
new file mode 100644
index 0000000..e8b058e
--- /dev/null
+++ b/src/Controller/SettingsController.php
@@ -0,0 +1,50 @@
+render('settings/index.html.twig', [
+ 'controller_name' => 'SettingsController',
+ ]);
+ }
+
+ #[Route('/settings/general', name: 'app_settings_general')]
+ public function general(): Response
+ {
+ return $this->render('settings/index.html.twig', [
+ 'controller_name' => 'SettingsController',
+ ]);
+ }
+
+ #[Route('/settings/folders', name: 'app_settings_folders')]
+ public function folders(): Response
+ {
+ return $this->render('settings/index.html.twig', [
+ 'controller_name' => 'SettingsController',
+ ]);
+ }
+
+ #[Route('/settings/scrappers', name: 'app_settings_scrappers')]
+ public function scrappers(): Response
+ {
+ return $this->render('settings/index.html.twig', [
+ 'controller_name' => 'SettingsController',
+ ]);
+ }
+
+ #[Route('/settings/ui', name: 'app_settings_ui')]
+ public function ui(): Response
+ {
+ return $this->render('settings/index.html.twig', [
+ 'controller_name' => 'SettingsController',
+ ]);
+ }
+}
diff --git a/src/Controller/SystemController.php b/src/Controller/SystemController.php
new file mode 100644
index 0000000..c2b4fa8
--- /dev/null
+++ b/src/Controller/SystemController.php
@@ -0,0 +1,50 @@
+render('system/index.html.twig', [
+ 'controller_name' => 'SystemController',
+ ]);
+ }
+
+ #[Route('/system/status', name: 'app_system_status')]
+ public function status(): Response
+ {
+ return $this->render('system/index.html.twig', [
+ 'controller_name' => 'SettingsController',
+ ]);
+ }
+
+ #[Route('/system/backup', name: 'app_system_backup')]
+ public function backup(): Response
+ {
+ return $this->render('system/index.html.twig', [
+ 'controller_name' => 'SettingsController',
+ ]);
+ }
+
+ #[Route('/system/logs', name: 'app_system_logs')]
+ public function logs(): Response
+ {
+ return $this->render('system/index.html.twig', [
+ 'controller_name' => 'SettingsController',
+ ]);
+ }
+
+ #[Route('/system/updates', name: 'app_system_updates')]
+ public function update(): Response
+ {
+ return $this->render('system/index.html.twig', [
+ 'controller_name' => 'SettingsController',
+ ]);
+ }
+}
diff --git a/src/Entity/Chapter.php b/src/Entity/Chapter.php
index 1117bca..0045d18 100644
--- a/src/Entity/Chapter.php
+++ b/src/Entity/Chapter.php
@@ -40,6 +40,9 @@ class Chapter
#[ORM\Column(length: 255, nullable: true)]
private ?string $externalId = null;
+ #[ORM\Column(length: 255, nullable: true)]
+ private ?string $cbzPath = null;
+
public function __construct()
{
$this->pagesLink = new ArrayCollection();
@@ -177,4 +180,16 @@ class Chapter
return $this;
}
+
+ public function getCbzPath(): ?string
+ {
+ return $this->cbzPath;
+ }
+
+ public function setCbzPath(?string $cbzPath): static
+ {
+ $this->cbzPath = $cbzPath;
+
+ return $this;
+ }
}
diff --git a/src/MessageHandler/DownloadChapterHandler.php b/src/MessageHandler/DownloadChapterHandler.php
index 895dee6..69995f9 100644
--- a/src/MessageHandler/DownloadChapterHandler.php
+++ b/src/MessageHandler/DownloadChapterHandler.php
@@ -35,7 +35,7 @@ readonly class DownloadChapterHandler
if (!$chapter) {
$this->notificationService->sendUpdate(['status' => 'error', 'message' => 'Chapter not found.']);
throw new BadRequestHttpException('Chapter not found');
- } elseif ($chapter->getLocalPath() !== null) {
+ } elseif ($chapter->getCbzPath() !== null) {
$this->notificationService->sendUpdate(['status' => 'error', 'message' => 'Chapter already scraped.']);
throw new BadRequestHttpException('Chapter already downloaded');
}
diff --git a/src/Repository/MangaRepository.php b/src/Repository/MangaRepository.php
index 5647bfd..2499f77 100644
--- a/src/Repository/MangaRepository.php
+++ b/src/Repository/MangaRepository.php
@@ -49,6 +49,49 @@ class MangaRepository extends ServiceEntityRepository
->getResult();
}
+ public function findBySlug(string $slug): array
+ {
+ $this->getEntityManager()->getConnection()->executeStatement('CREATE EXTENSION IF NOT EXISTS fuzzystrmatch');
+
+ $conn = $this->getEntityManager()->getConnection();
+
+ $sql = '
+ SELECT m.*, levenshtein(LOWER(m.slug), LOWER(:slug)) as distance
+ FROM manga m
+ WHERE levenshtein(LOWER(m.slug), LOWER(:slug)) <= :max_distance
+ ORDER BY distance
+ LIMIT 10
+ ';
+
+ $stmt = $conn->prepare($sql);
+ $resultSet = $stmt->executeQuery([
+ 'slug' => $slug,
+ 'max_distance' => strlen($slug) / 3
+ ]);
+
+ $results = $resultSet->fetchAllAssociative();
+
+ $ids = array_column($results, 'id');
+ $entities = $this->findBy(['id' => $ids]);
+
+ $sortedEntities = [];
+ foreach ($results as $result) {
+ foreach ($entities as $entity) {
+ if ($entity->getId() == $result['id']) {
+ $sortedEntities[] = $entity;
+ break;
+ }
+ }
+ }
+
+ return $sortedEntities;
+ }
+
+ private function normalizeSlug(string $slug): string
+ {
+ return strtolower(preg_replace('/[^a-z0-9]+/i', '', $slug));
+ }
+
/**
* @throws NonUniqueResultException
*/
diff --git a/src/Service/CbzService.php b/src/Service/CbzService.php
new file mode 100644
index 0000000..29eb9f6
--- /dev/null
+++ b/src/Service/CbzService.php
@@ -0,0 +1,136 @@
+extractInfoFromFileName($originalFileName);
+
+ $metadata['title'] = $fileInfo['title'];
+ $metadata['volume'] = $fileInfo['volume'] !== null ? (int)$fileInfo['volume'] : null;
+ $metadata['chapter'] = $fileInfo['chapter'] !== null ? (int)$fileInfo['chapter'] : null;
+
+ if (is_null($metadata['chapter'])) {
+ try {
+ $zip->open($filePath);
+ $chapterNumbers = [];
+
+ for ($i = 0; $i < $zip->numFiles; $i++) {
+ $stat = $zip->statIndex($i);
+ $fileName = $stat['name'];
+
+ $chapterNumbers[] = $this->extractChapter($fileName);
+ }
+
+ $chapterNumbers = array_unique($chapterNumbers);
+
+ if (count($chapterNumbers) === 1) {
+ $metadata['chapter'] = array_values($chapterNumbers)[0] === '' ? null : (int)array_values($chapterNumbers)[0];
+ } elseif (count($chapterNumbers) > 1) {
+ $metadata['chapter'] = min($chapterNumbers);
+ }
+
+ $zip->close();
+ } catch (Exception $e) {
+ throw new Exception("Impossible d'ouvrir le fichier CBZ. " . $e->getMessage());
+ }
+ }
+
+ return $metadata;
+ }
+
+ public function getPageContent(string $cbzPath, int $pageNumber): ?string
+ {
+ $zip = new ZipArchive();
+ if ($zip->open($cbzPath) === TRUE) {
+ $images = $this->getImageList($zip);
+ if (isset($images[$pageNumber - 1])) {
+ $content = $zip->getFromName($images[$pageNumber - 1]);
+ $zip->close();
+ return $content;
+ }
+ $zip->close();
+ }
+ return null;
+ }
+
+ public function getPageCount(string $cbzPath): int
+ {
+ $zip = new ZipArchive();
+ if ($zip->open($cbzPath) === TRUE) {
+ $count = count($this->getImageList($zip));
+ $zip->close();
+ return $count;
+ }
+ return 0;
+ }
+
+ private function extractInfoFromFileName(string $fileName): array
+ {
+ $title = $this->extractTitle($fileName);
+ $volume = $this->extractVolume($fileName);
+ $chapter = $this->extractChapter($fileName);
+
+ return [
+ 'title' => $title === '' ? null : $title,
+ 'volume' => $volume === '' ? null : $volume,
+ 'chapter' => $chapter === '' ? null : $chapter,
+ ];
+ }
+
+ private function extractTitle(string $fileName): string
+ {
+ $titlePattern = '/^(?P
.+?)(?:\s*-\s*|\s+)?(?:(?:[Tt]ome|[Vv]ol\.?|[Tt]|[Cc]hap(?:itre|ter)?)\s*\d+)/';
+ if (preg_match($titlePattern, $fileName, $matches)) {
+ return $this->slugger->slug(trim($matches['title']), '-')->lower()->toString();
+ }
+ return '';
+ }
+
+ private function extractVolume(string $fileName): string
+ {
+ $volumePattern = '/(?:[Tt]ome|[Vv]ol\.?|[Tt])\s*(?P\d+)/';
+ if (preg_match($volumePattern, $fileName, $matches)) {
+ return str_pad($matches['volume'], 2, '0', STR_PAD_LEFT);
+ }
+ return '';
+ }
+
+ private function extractChapter(string $fileName): string
+ {
+ $chapterPattern = '/[Cc]hap(?:itre|ter)?\s*(?P\d+)/';
+ if (preg_match($chapterPattern, $fileName, $matches)) {
+ return $matches['chapter'];
+ }
+ return '';
+ }
+
+ private function getImageList(ZipArchive $zip): array
+ {
+ $images = [];
+ for ($i = 0; $i < $zip->numFiles; $i++) {
+ $filename = $zip->getNameIndex($i);
+ if (preg_match('/\.(jpg|jpeg|png|gif)$/i', $filename)) {
+ $images[] = $filename;
+ }
+ }
+ sort($images);
+ return $images;
+ }
+}
diff --git a/src/Service/MangaImportService.php b/src/Service/MangaImportService.php
new file mode 100644
index 0000000..bcf63b9
--- /dev/null
+++ b/src/Service/MangaImportService.php
@@ -0,0 +1,110 @@
+cbzService->extractMetadata($tempFilePath, $originalFileName);
+
+ // Créer le nom de fichier et le chemin pour le stockage permanent
+ $permanentFileName = $this->createPermanentFileName($manga, $volume, $metadata);
+ $mangaDirectory = $this->createMangaDirectory($manga);
+ $permanentFilePath = $this->projectDir . '/' . $mangaDirectory .'/volume_' . sprintf('%02d', $volume) . '/' . $permanentFileName;
+
+ // Vérifier si le fichier existe déjà
+ if ($this->filesystem->exists($permanentFilePath)) {
+ throw new \RuntimeException("Un fichier pour ce volume/chapitre existe déjà.");
+ }
+
+ // Déplacer le fichier vers l'emplacement permanent
+ $this->filesystem->mkdir(dirname($permanentFilePath), 0755);
+ $this->filesystem->rename($tempFilePath, $permanentFilePath, true);
+
+ // Mettre à jour ou créer les entités Chapter
+ if (isset($metadata['chapter'])) {
+ // Si c'est un chapitre spécifique
+ $this->updateChapter($manga, $volume, $metadata['chapter'], $permanentFilePath);
+ } else {
+ // Si c'est un volume entier, mettre à jour tous les chapitres du volume
+ $this->updateVolumeChapters($manga, $volume, $permanentFilePath);
+ }
+
+ $this->entityManager->flush();
+ }
+
+ private function createPermanentFileName(Manga $manga, int $volume, array $metadata): string
+ {
+ $baseFileName = $this->slugger->slug($manga->getTitle()) . '_vol' . sprintf('%02d', $volume);
+ if (isset($metadata['chapter'])) {
+ $baseFileName .= '_ch' . $metadata['chapter'];
+ }
+ return $baseFileName . '.cbz';
+ }
+
+ private function createMangaDirectory(Manga $manga): string
+ {
+ $mangaYear = $manga->getPublicationYear() ?? 'unknown';
+ $directoryPath = self::CBZ_DIRECTORY . '/' . ucfirst($manga->getSlug()) . ' (' . $mangaYear . ')';
+
+ $this->filesystem->mkdir($directoryPath, 0755);
+ return $directoryPath;
+ }
+
+ private function updateChapter(Manga $manga, int $volume, float $chapterNumber, string $cbzPath): void
+ {
+ $chapter = $this->chapterRepository->findOneBy([
+ 'manga' => $manga,
+ 'volume' => $volume,
+ 'number' => $chapterNumber
+ ]);
+
+ if (!$chapter) {
+ throw new \RuntimeException("Le chapitre $chapterNumber du volume $volume n'existe pas en base de données.");
+ }
+
+ $chapter->setCbzPath($cbzPath);
+ }
+
+ private function updateVolumeChapters(Manga $manga, int $volume, string $cbzPath): void
+ {
+ $chapters = $this->chapterRepository->findBy([
+ 'manga' => $manga,
+ 'volume' => $volume
+ ]);
+
+ if (empty($chapters)) {
+ throw new \RuntimeException("Aucun chapitre trouvé pour le volume $volume en base de données.");
+ }
+
+ foreach ($chapters as $chapter) {
+ $chapter->setCbzPath($cbzPath);
+ }
+ }
+}
diff --git a/src/Service/MangaScraperService.php b/src/Service/MangaScraperService.php
index e33fc18..4f77858 100644
--- a/src/Service/MangaScraperService.php
+++ b/src/Service/MangaScraperService.php
@@ -7,6 +7,7 @@ use App\Entity\Manga;
use App\Entity\ContentSource;
use App\Event\PageScrappingProgressEvent;
use App\EventSubscriber\MangaScrapedEvent;
+use Doctrine\ORM\EntityManagerInterface;
use Exception;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
@@ -23,15 +24,14 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
class MangaScraperService
{
- const string IMG_BASE_DIR = '/public/manga-images';
- private string $projectDir;
- private EventDispatcherInterface $eventDispatcher;
- private string $scrapingType = '';
+ const string PUBLIC_CBZ = '/public/cbz';
- public function __construct($projectDir, EventDispatcherInterface $eventDispatcher)
+ public function __construct(
+ private readonly string $projectDir,
+ private readonly EventDispatcherInterface $eventDispatcher,
+ private readonly EntityManagerInterface $entityManager
+ )
{
- $this->projectDir = $projectDir;
- $this->eventDispatcher = $eventDispatcher;
}
private function extractMangaPageData(string $html, ContentSource $mangaSource): array
@@ -94,71 +94,54 @@ class MangaScraperService
};
}
-// private function scrapeChapterHtml(Manga $manga, Chapter $chapter, MangaSource $mangaSource): array|bool
-// {
-// $chapterUrl = $mangaSource->getChapterUrl($manga->getTitle(), $chapter->getChapterNumber());
-// $html = $this->fetchHtml($chapterUrl);
-// $imgUrls = $this->extractMangaPageData($html);
-//
-// return $this->saveChapterImages($manga, $chapter, $imgUrls);
-// }
-
/**
* @throws GuzzleException
* @throws Exception
*/
- private function scrapeChapterMangadex(Chapter $chapter, ContentSource $mangaSource): array|bool
+ private function scrapeChapterMangadex(Chapter $chapter, ContentSource $mangaSource): bool
{
- $this->scrapingType = 'mangadex';
$client = new Client();
$chapterUrl = $mangaSource->getBaseUrl() . sprintf($mangaSource->getChapterUrlFormat(), $chapter->getExternalId());
- $mangaTitle = $chapter->getManga()->getTitle();
- $chapterNumber = $chapter->getNumber();
+ $manga = $chapter->getManga();
$pageData = [];
$response = $client->get($chapterUrl);
$results = json_decode($response->getBody()->getContents(), true);
- $mangaDir = sprintf('%s/%s', $this->projectDir . self::IMG_BASE_DIR, $mangaTitle);
- if (!is_dir($mangaDir)) {
- mkdir($mangaDir, 0755, true);
- }
- $chapterDir = sprintf('%s/%s', $mangaDir, $chapterNumber);
- if (!is_dir($chapterDir)) {
- mkdir($chapterDir, 0755, true);
+ if ($results['result'] !== 'ok' || count($results['chapter']['dataSaver']) === 0) {
+ throw new Exception('Error while fetching chapter data from Mangadex ' . $manga->getTitle() . ' ' . $chapter->getNumber());
}
- if(count($results['chapter']['dataSaver']) === 0){
- throw new Exception('Error while fetching chapter data from Mangadex ' . $chapter->getManga()->getTitle() . ' ' . $chapter->getNumber());
+ $tempDir = sys_get_temp_dir() . '/' . uniqid('manga_scraper_');
+ mkdir($tempDir);
+
+ foreach ($results['chapter']['dataSaver'] as $index => $page) {
+ $pageUrl = $results['baseUrl'] . '/data-saver/' . $results['chapter']['hash'] . '/' . $page;
+ $imagePath = $tempDir . '/' . sprintf('%03d.%s', $index + 1, pathinfo($page, PATHINFO_EXTENSION));
+
+ $this->downloadAndSaveImage($pageUrl, $imagePath);
+
+ $event = new PageScrappingProgressEvent($chapter->getId(), $index + 1, count($results['chapter']['dataSaver']));
+ $this->eventDispatcher->dispatch($event, PageScrappingProgressEvent::NAME);
+
+ $pageData[] = [
+ 'image_url' => $pageUrl,
+ 'local_image_url' => $imagePath,
+ 'page_number' => $index + 1,
+ ];
}
- if ($results['result'] === 'ok') {
- foreach ($results['chapter']['dataSaver'] as $page) {
- $pageUrl = $results['baseUrl'] . '/data-saver/' . $results['chapter']['hash'] . '/' . $page;
- // Déterminer l'extension de l'image
- $imageExtension = pathinfo(parse_url($pageUrl, PHP_URL_PATH), PATHINFO_EXTENSION);
+ $cbzFilePath = $this->generateCbzPath($manga, $chapter);
+ $this->createCbzFile($tempDir, $pageData, $cbzFilePath);
- // Construire le nom de fichier de l'image
- $imageName = sprintf('%03d.%s', count($pageData) + 1, $imageExtension);
- $imagePath = sprintf('%s/%s', $chapterDir, $imageName);
+ $chapter->setCbzPath($cbzFilePath);
+ $this->entityManager->persist($chapter);
+ $this->entityManager->flush();
- $this->downloadAndSaveImage($pageUrl, $imagePath);
+ // Nettoyage du répertoire temporaire
+ $this->cleanupTempFiles($tempDir);
- $event = new PageScrappingProgressEvent($chapter->getId(), count($pageData) + 1, count($results['chapter']['dataSaver']));
- $this->eventDispatcher->dispatch($event, PageScrappingProgressEvent::NAME);
-
- $pageData[] = [
- 'image_url' => $pageUrl,
- 'local_image_url' => sprintf('/manga-images/%s/%s/%s', $mangaTitle, $chapterNumber, $imageName),
- 'page_number' => count($pageData) + 1,
- ];
- }
- }
-
- $event = new MangaScrapedEvent($mangaTitle, $chapterNumber, $pageData, $chapterDir);
- $this->eventDispatcher->dispatch($event, MangaScrapedEvent::NAME);
-
- return $pageData;
+ return true;
}
private function scrapeChapterJavaScript(Manga $manga, Chapter $chapter, ContentSource $mangaSource): array|bool
@@ -166,7 +149,7 @@ class MangaScraperService
$chapterUrl = $mangaSource->getChapterUrl($manga->getTitle(), $chapter->getNumber());
$imgUrls = $this->fetchImagesUsingPuppeteer($chapterUrl, $mangaSource->getImageSelector(), $mangaSource->getNextPageSelector());
- return $this->saveChapterImages($manga, $chapter, $imgUrls);
+ return false;
}
private function fetchImagesUsingPuppeteer(string $url, string $imageSelector, string $nextButtonSelector): array
@@ -188,34 +171,20 @@ class MangaScraperService
*/
private function scrapeChapterHtml(Manga $manga, Chapter $chapter, ContentSource $mangaSource): array|bool
{
- $this->scrapingType = 'html';
$chapterUrl = $mangaSource->getChapterUrl($manga->getSlug(), $chapter->getNumber());
$pageData = [];
$currentPageUrl = $chapterUrl;
- $mangaTitle = $manga->getTitle();
- $chapterNumber = $chapter->getNumber();
- $mangaDir = sprintf('%s/%s', $this->projectDir . self::IMG_BASE_DIR, $mangaTitle);
- if (!is_dir($mangaDir)) {
- mkdir($mangaDir, 0755, true);
- }
-
- $chapterDir = sprintf('%s/%s', $mangaDir, $chapterNumber);
- if (!is_dir($chapterDir)) {
- mkdir($chapterDir, 0755, true);
- }
+ $tempDir = sys_get_temp_dir() . '/' . uniqid('manga_scraper_');
+ mkdir($tempDir);
do {
$html = $this->fetchHtml($currentPageUrl);
$page = $this->extractMangaPageData($html, $mangaSource);
- // Déterminer l'extension de l'image
- $imageExtension = pathinfo(parse_url($page['image_url'], PHP_URL_PATH), PATHINFO_EXTENSION);
-
- // Construire le nom de fichier de l'image
- $imageName = sprintf('%03d.%s', count($pageData) + 1, $imageExtension);
- $imagePath = sprintf('%s/%s', $chapterDir, $imageName);
+ $imageName = sprintf('%03d.%s', count($pageData) + 1, pathinfo(parse_url($page['image_url'], PHP_URL_PATH), PATHINFO_EXTENSION));
+ $imagePath = $tempDir . '/' . $imageName;
$this->downloadAndSaveImage($page['image_url'], $imagePath);
@@ -224,17 +193,24 @@ class MangaScraperService
$pageData[] = [
'image_url' => $page['image_url'],
- 'local_image_url' => sprintf('/manga-images/%s/%s/%s', $mangaTitle, $chapterNumber, $imageName),
+ 'local_image_url' => $imagePath,
'page_number' => count($pageData) + 1,
];
$currentPageUrl = $page['next_page_url'];
} while ($currentPageUrl);
- $event = new MangaScrapedEvent($mangaTitle, $chapterNumber, $pageData, $chapterDir);
- $this->eventDispatcher->dispatch($event, MangaScrapedEvent::NAME);
+ $cbzFilePath = $this->generateCbzPath($manga, $chapter);
+ $this->createCbzFile($tempDir, $pageData, $cbzFilePath);
- return $pageData;
+ $chapter->setCbzPath($cbzFilePath);
+ $this->entityManager->persist($chapter);
+ $this->entityManager->flush();
+
+ // Nettoyage du répertoire temporaire
+ $this->cleanupTempFiles($tempDir);
+
+ return true;
}
/**
@@ -283,13 +259,13 @@ class MangaScraperService
if (str_starts_with($contentType, 'image/')) {
file_put_contents($destinationPath, $response->getBody()->getContents());
- if ($this->scrapingType === 'mangadex') {
- $this->sendReport($imageUrl, true, $isCached, (int)$contentLength, ($endTime - $startTime) * 1000);
- }
+// if ($this->scrapingType === 'mangadex') {
+// $this->sendReport($imageUrl, true, $isCached, (int)$contentLength, ($endTime - $startTime) * 1000);
+// }
} else {
- if ($this->scrapingType === 'mangadex') {
- $this->sendReport($imageUrl, false, $isCached, (int)$contentLength, ($endTime - $startTime) * 1000);
- }
+// if ($this->scrapingType === 'mangadex') {
+// $this->sendReport($imageUrl, false, $isCached, (int)$contentLength, ($endTime - $startTime) * 1000);
+// }
throw new \Exception('Le contenu récupéré n\'est pas une image. Type de contenu : ' . $contentType);
}
} catch
@@ -298,41 +274,6 @@ class MangaScraperService
}
}
- private function saveChapterImages(Manga $manga, Chapter $chapter, array $imgUrls): array
- {
- $mangaTitle = $manga->getTitle();
- $chapterNumber = $chapter->getNumber();
-
- $mangaDir = sprintf('%s/%s', $this->projectDir . self::IMG_BASE_DIR, $mangaTitle);
- if (!is_dir($mangaDir)) {
- mkdir($mangaDir, 0755, true);
- }
-
- $chapterDir = sprintf('%s/%s', $mangaDir, $chapterNumber);
- if (!is_dir($chapterDir)) {
- mkdir($chapterDir, 0755, true);
- }
-
- $pageData = [];
- foreach ($imgUrls as $index => $imgUrl) {
- $imageName = sprintf('%03d.%s', $index + 1, pathinfo(parse_url($imgUrl, PHP_URL_PATH), PATHINFO_EXTENSION));
- $imagePath = sprintf('%s/%s', $chapterDir, $imageName);
-
- $this->downloadAndSaveImage($imgUrl, $imagePath);
-
- $pageData[] = [
- 'image_url' => $imgUrl,
- 'local_image_url' => sprintf('/manga-images/%s/%s/%s', $mangaTitle, $chapterNumber, $imageName),
- 'page_number' => $index + 1,
- ];
- }
-
- $event = new MangaScrapedEvent($mangaTitle, $chapterNumber, $pageData, $chapterDir);
- $this->eventDispatcher->dispatch($event, MangaScrapedEvent::NAME);
-
- return $pageData;
- }
-
/**
* @throws GuzzleException
*/
@@ -379,4 +320,51 @@ class MangaScraperService
throw new \Exception('Erreur lors de l\'envoi du rapport : ' . $e->getMessage());
}
}
+
+ private function createCbzFile(string $tempDir, array $pageData, string $cbzFilePath): void
+ {
+ $zip = new \ZipArchive();
+
+ if ($zip->open($cbzFilePath, \ZipArchive::CREATE) === TRUE) {
+ foreach ($pageData as $page) {
+ $zip->addFile($page['local_image_url'], basename($page['local_image_url']));
+ }
+ $zip->close();
+ }
+ }
+
+ private function generateCbzPath(Manga $manga, Chapter $chapter): string
+ {
+ $volumeDir = $this->createDirectories($manga, $chapter->getVolume());
+ $fileName = sprintf('%s_vol%d_ch%s.cbz',
+ $manga->getSlug(),
+ $chapter->getVolume(),
+ $chapter->getNumber()
+ );
+ return $volumeDir . '/' . $fileName;
+ }
+
+ private function createDirectories(Manga $manga, int $volume): string
+ {
+ $mangaYear = $manga->getPublicationYear() ?? 'unknown';
+ $mangaDir = sprintf('%s/%s (%s)', $this->projectDir . self::PUBLIC_CBZ, ucfirst($manga->getSlug()), $mangaYear);
+ $volumeDir = sprintf('%s/volume_%d', $mangaDir, sprintf('%02d', $volume));
+
+ if (!is_dir($volumeDir)) {
+ mkdir($volumeDir, 0755, true);
+ }
+
+ return $volumeDir;
+ }
+
+ private function cleanupTempFiles(string $directory): void
+ {
+ $files = glob($directory . '/*');
+ foreach ($files as $file) {
+ if (is_file($file)) {
+ unlink($file);
+ }
+ }
+ rmdir($directory);
+ }
}
diff --git a/templates/activity/index.html.twig b/templates/activity/index.html.twig
index fc5217d..a7f9c23 100644
--- a/templates/activity/index.html.twig
+++ b/templates/activity/index.html.twig
@@ -16,40 +16,50 @@
{% endblock %}
{% block body %}
-{# TODO styliser cette page #}
-
-
-
Total records: {{ status|length }}
+{#
#}
+{# Total des enregistrements: {{ status|length }}#}
+{#
#}
{% endblock %}
diff --git a/templates/base.html.twig b/templates/base.html.twig
index c4caf14..eebe243 100644
--- a/templates/base.html.twig
+++ b/templates/base.html.twig
@@ -12,7 +12,7 @@
{{ encore_entry_script_tags('app') }}
{% endblock %}
-
+
@@ -25,6 +25,9 @@
+
{# #}
@@ -55,12 +58,12 @@
-