- FileSystemManager.php refactoring of all write/read actions on filesystem

Deleted:
- old ToolbarManager.php
This commit is contained in:
Jérémy Guillot
2024-07-24 17:21:44 +02:00
parent 7068bd1a34
commit 7eba0981c8
10 changed files with 142 additions and 197 deletions

View File

@@ -45,23 +45,15 @@ services:
arguments: arguments:
$projectDir: '%kernel.project_dir%' $projectDir: '%kernel.project_dir%'
App\Service\MangaImportService:
arguments:
$projectDir: '%kernel.project_dir%'
App\Controller\ImportController:
arguments:
$projectDir: '%kernel.project_dir%'
App\Controller\TestController: App\Controller\TestController:
arguments: arguments:
$projectDir: '%kernel.project_dir%' $projectDir: '%kernel.project_dir%'
App\Controller\MangaController: App\Service\CbrToCbzConverter:
arguments: arguments:
$projectDir: '%kernel.project_dir%' $projectDir: '%kernel.project_dir%'
App\Service\CbrToCbzConverter: App\Manager\FileSystemManager:
arguments: arguments:
$projectDir: '%kernel.project_dir%' $projectDir: '%kernel.project_dir%'
@@ -83,18 +75,12 @@ services:
# Scrapers # Scrapers
App\Service\Scraper\HtmlScraper: App\Service\Scraper\HtmlScraper:
arguments:
$projectDir: '%kernel.project_dir%'
tags: [ 'app.scraper' ] tags: [ 'app.scraper' ]
App\Service\Scraper\JavascriptScraper: App\Service\Scraper\JavascriptScraper:
arguments:
$projectDir: '%kernel.project_dir%'
tags: [ 'app.scraper' ] tags: [ 'app.scraper' ]
App\Service\Scraper\MangadexScraper: App\Service\Scraper\MangadexScraper:
arguments:
$projectDir: '%kernel.project_dir%'
tags: [ 'app.scraper' ] tags: [ 'app.scraper' ]
# Scraper Factory # Scraper Factory

View File

@@ -2,6 +2,7 @@
namespace App\Controller; namespace App\Controller;
use App\Manager\FileSystemManager;
use App\Repository\ChapterRepository; use App\Repository\ChapterRepository;
use App\Repository\MangaRepository; use App\Repository\MangaRepository;
use App\Service\CbrToCbzConverter; use App\Service\CbrToCbzConverter;
@@ -19,10 +20,8 @@ use Symfony\Component\String\Slugger\SluggerInterface;
class ImportController extends AbstractController class ImportController extends AbstractController
{ {
private const string UPLOADS_DIRECTORY = 'public/uploads';
public function __construct( public function __construct(
private readonly string $projectDir, private readonly FileSystemManager $fileSystemManager,
private readonly CbzService $cbzService, private readonly CbzService $cbzService,
private readonly MangaImportService $mangaImportService, private readonly MangaImportService $mangaImportService,
private readonly NotificationService $notificationService, private readonly NotificationService $notificationService,
@@ -43,13 +42,16 @@ class ImportController extends AbstractController
foreach ($files as $file) { foreach ($files as $file) {
if ($file && in_array($file->getClientOriginalExtension(), ['cbz', 'cbr'])) { if ($file && in_array($file->getClientOriginalExtension(), ['cbz', 'cbr'])) {
$originalFileName = $file->getClientOriginalName(); $originalFileName = $file->getClientOriginalName();
$filename = uniqid() . '.' . $file->getClientOriginalExtension();
try { try {
$file->move($this->projectDir . '/' . self::UPLOADS_DIRECTORY, $filename); $tmpPath = $this->fileSystemManager->moveUploadedFile(
$file->getPathname(),
$this->fileSystemManager->getUploadsDirectory(),
$file->getClientOriginalName()
);
$importFiles[] = [ $importFiles[] = [
'id' => uniqid(), 'id' => uniqid(),
'path' => $this->projectDir . '/' . self::UPLOADS_DIRECTORY . '/' . $filename, 'path' => $tmpPath,
'original_name' => $originalFileName, 'original_name' => $originalFileName,
]; ];
} catch (FileException $e) { } catch (FileException $e) {
@@ -85,7 +87,7 @@ class ImportController extends AbstractController
* @throws Exception * @throws Exception
*/ */
#[Route('/import/match', name: 'import_match')] #[Route('/import/match', name: 'import_match')]
public function match(Request $request, SessionInterface $session): Response public function match(SessionInterface $session): Response
{ {
$files = $session->get('import_files', []); $files = $session->get('import_files', []);
if (empty($files)) { if (empty($files)) {
@@ -137,7 +139,8 @@ class ImportController extends AbstractController
]); ]);
} }
private function formatBytes($bytes, $precision = 2) { private function formatBytes($bytes, $precision = 2)
{
$units = ['B', 'KB', 'MB', 'GB', 'TB']; $units = ['B', 'KB', 'MB', 'GB', 'TB'];
$bytes = max($bytes, 0); $bytes = max($bytes, 0);
$pow = floor(($bytes ? log($bytes) : 0) / log(1024)); $pow = floor(($bytes ? log($bytes) : 0) / log(1024));
@@ -174,7 +177,7 @@ class ImportController extends AbstractController
throw new \Exception('Manga non trouvé.'); throw new \Exception('Manga non trouvé.');
} }
if(!is_null($chapter)){ if (!is_null($chapter)) {
$chapter = $manga->getChapterByNumber($chapter); $chapter = $manga->getChapterByNumber($chapter);
if (!$chapter) { if (!$chapter) {
throw new \Exception('Chapitre non trouvé.'); throw new \Exception('Chapitre non trouvé.');
@@ -182,17 +185,15 @@ class ImportController extends AbstractController
} }
$importedFiles[] = $file['original_name']; $importedFiles[] = $file['original_name'];
$this->mangaImportService->importFile($manga, $volume, $chapter,$file['path']); $this->mangaImportService->importFile($manga, $volume, $chapter, $file['path']);
} catch (\Exception $e) { } catch (\Exception $e) {
$errors[] = "Erreur lors de l'import de {$file['original_name']} : " . $e->getMessage(); $errors[] = "Erreur lors de l'import de {$file['original_name']} : " . $e->getMessage();
} }
} }
// Nettoyer les fichiers temporaires non importés // Nettoyer les fichiers temporaires non importés
foreach ($files as $fileId => $file) { foreach ($files as $file) {
if (!in_array($fileId, (array)$selectedFiles) && file_exists($file['path'])) { $this->fileSystemManager->deleteFile($file['path']);
unlink($file['path']);
}
} }
// Nettoyer la session // Nettoyer la session

View File

@@ -5,6 +5,7 @@ namespace App\Controller;
use App\Entity\Chapter; use App\Entity\Chapter;
use App\Entity\Manga; use App\Entity\Manga;
use App\Form\MangaEditType; use App\Form\MangaEditType;
use App\Manager\FileSystemManager;
use App\Manager\Toolbar\Factory\ToolbarFactory; use App\Manager\Toolbar\Factory\ToolbarFactory;
use App\Message\DownloadChapter; use App\Message\DownloadChapter;
use App\Message\RefreshMetadata; use App\Message\RefreshMetadata;
@@ -38,7 +39,7 @@ class MangaController extends AbstractController
private ImageManager $imageManager; private ImageManager $imageManager;
public function __construct( public function __construct(
private readonly string $projectDir, private readonly FileSystemManager $fileSystemManager,
private readonly MangaRepository $mangaRepository, private readonly MangaRepository $mangaRepository,
private readonly ChapterRepository $chapterRepository, private readonly ChapterRepository $chapterRepository,
private readonly MessageBusInterface $bus, private readonly MessageBusInterface $bus,
@@ -47,7 +48,6 @@ class MangaController extends AbstractController
private readonly MangadexProvider $mangadexProvider, private readonly MangadexProvider $mangadexProvider,
private readonly EntityManagerInterface $entityManager, private readonly EntityManagerInterface $entityManager,
private readonly NotificationService $notificationService, private readonly NotificationService $notificationService,
private readonly SluggerInterface $slugger,
private readonly ContentSourceRepository $contentSourceRepository private readonly ContentSourceRepository $contentSourceRepository
) )
{ {
@@ -213,39 +213,6 @@ class MangaController extends AbstractController
return new JsonResponse(['success' => 'Chapter hidden.'], 200); return new JsonResponse(['success' => 'Chapter hidden.'], 200);
} }
// #[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) {
// throw $this->createNotFoundException("Le manga demandé n'existe pas.");
// }
//
// $chapter = $manga->getChapterByNumber($chapterNumber);
// if (!$chapter) {
// throw $this->createNotFoundException("Le chapitre demandé n'existe pas.");
// }
//
// if (is_null($chapter->getCbzPath())) {
// throw $this->createNotFoundException("Le chapitre demandé n'a pas été scrapé.");
// }
//
// $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,
// 'currentPage' => $pageNumber,
// 'totalPages' => $totalPages,
// 'pageContent' => base64_encode($pageContent),
// ]);
// }
#[Route('/manga/search/{query}', name: 'app_manga_search')] #[Route('/manga/search/{query}', name: 'app_manga_search')]
public function search(string $query = ''): Response public function search(string $query = ''): Response
{ {
@@ -273,8 +240,7 @@ class MangaController extends AbstractController
->setPublicationYear($request->request->get('publicationYear')) ->setPublicationYear($request->request->get('publicationYear'))
->setRating($request->request->get('rating')) ->setRating($request->request->get('rating'))
->setExternalId($request->request->get('externalId')) ->setExternalId($request->request->get('externalId'))
->setMonitored(false) ->setMonitored(false);
;
// Traitement de l'image // Traitement de l'image
$imageUrl = $request->request->get('imageUrl'); $imageUrl = $request->request->get('imageUrl');
@@ -322,25 +288,24 @@ class MangaController extends AbstractController
// Générer un nom de fichier unique // Générer un nom de fichier unique
$originalFilename = pathinfo($imageUrl, PATHINFO_FILENAME); $originalFilename = pathinfo($imageUrl, PATHINFO_FILENAME);
$safeFilename = $this->slugger->slug($originalFilename); $newFilename = $this->fileSystemManager->generateUniqueImageFilename($imageUrl);
$newFilename = $safeFilename . '-' . uniqid() . '.' . 'jpg';
try { try {
// Créer et sauvegarder la miniature // Créer et sauvegarder la miniature
$thumbnail = $this->imageManager->read($tempImagePath); $thumbnail = $this->imageManager->read($tempImagePath);
$thumbnail->cover(300, 440); $thumbnail->cover(300, 440);
$thumbnail->save($this->projectDir . '/public/images/thumbnails/' . $newFilename, quality: 85); $thumbnail->save($this->fileSystemManager->getImagePath('thumbnails') . '/' . $newFilename, quality: 85);
// Sauvegarder l'image en taille réelle // Sauvegarder l'image en taille réelle
$fullImage = $this->imageManager->read($tempImagePath); $fullImage = $this->imageManager->read($tempImagePath);
$fullImage->save($this->projectDir . '/public/images/full/' . $newFilename, quality: 90); $fullImage->save($this->fileSystemManager->getImagePath('full') . '/' . $newFilename, quality: 90);
// Fermer et supprimer le fichier temporaire // Fermer et supprimer le fichier temporaire
fclose($tempImage); fclose($tempImage);
return [ return [
'full' => '/images/full/' . $newFilename, 'full' => $this->fileSystemManager->getImagePath('full') . '/' . $newFilename,
'thumbnail' => '/images/thumbnails/' . $newFilename 'thumbnail' => $this->fileSystemManager->getImagePath('thumbnails') . '/' . $newFilename
]; ];
} catch (FileException $e) { } catch (FileException $e) {

View File

@@ -0,0 +1,89 @@
<?php
namespace App\Manager;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\String\Slugger\SluggerInterface;
class FileSystemManager
{
private const string CBZ_DIRECTORY = 'public/cbz';
private const string UPLOADS_DIRECTORY = 'public/tmp';
private const string IMAGES_DIRECTORY = 'public/images';
public function __construct(
private readonly string $projectDir,
private readonly Filesystem $filesystem,
private readonly SluggerInterface $slugger
) {
}
public function createMangaDirectory(string $mangaSlug, ?int $year): string
{
$year = $year ?? 'unknown';
$directoryPath = $this->projectDir . '/' . self::CBZ_DIRECTORY . '/' . ucfirst($mangaSlug) . " ($year)";
$this->filesystem->mkdir($directoryPath, 0755);
return $directoryPath;
}
public function createVolumeDirectory(string $mangaDir, int $volume): string
{
$volumeDir = sprintf('%s/volume_%02d', $mangaDir, $volume);
$this->filesystem->mkdir($volumeDir, 0755);
return $volumeDir;
}
public function moveUploadedFile(string $sourcePath, string $destinationDir, string $originalFilename): string
{
$newFilename = $this->generateUniqueFilename($originalFilename);
$destinationPath = $destinationDir . '/' . $newFilename;
$this->filesystem->rename($sourcePath, $destinationPath, true);
return $destinationPath;
}
public function deleteFile(string $filePath): void
{
if ($this->filesystem->exists($filePath)) {
$this->filesystem->remove($filePath);
}
}
public function deleteDirectory(string $directoryPath): void
{
if ($this->filesystem->exists($directoryPath)) {
$this->filesystem->remove($directoryPath);
}
}
public function fileExists(string $filePath): bool
{
return $this->filesystem->exists($filePath);
}
public function moveFile(string $sourcePath, string $destinationPath): void
{
$this->filesystem->rename($sourcePath, $destinationPath, true);
}
public function getUploadsDirectory(): string
{
return $this->projectDir . '/' . self::UPLOADS_DIRECTORY;
}
private function generateUniqueFilename(string $originalFilename): string
{
$safeFilename = $this->slugger->slug(pathinfo($originalFilename, PATHINFO_FILENAME));
return $safeFilename . '-' . uniqid() . '.' . pathinfo($originalFilename, PATHINFO_EXTENSION);
}
public function getImagePath(string $subDir = ''): string
{
return $this->projectDir . '/' . self::IMAGES_DIRECTORY . ($subDir ? "/$subDir" : '');
}
public function generateUniqueImageFilename(string $originalFilename): string
{
$safeFilename = $this->slugger->slug(pathinfo($originalFilename, PATHINFO_FILENAME));
return $safeFilename . '-' . uniqid() . '.jpg';
}
}

View File

@@ -1,42 +0,0 @@
<?php
namespace App\Manager;
class ToolbarManager
{
public function getToolbarItems(): array
{
return [
'sortItems' => $this->getSortItems(),
'filterItems' => $this->getFilterItems(),
'viewOptions' => $this->getViewOptions()
];
}
private function getSortItems(): array
{
return [
['text' => 'Par titre', 'action' => 'sort', 'data' => ['sort-option' => 'title']],
['text' => 'Par année de publication', 'action' => 'sort', 'data' => ['sort-option' => 'publicationYear']],
['text' => 'Par date d\'ajout', 'action' => 'sort', 'data' => ['sort-option' => 'createdAt']]
];
}
private function getFilterItems(): array
{
return [
['text' => 'Tous les mangas', 'action' => 'filter', 'data' => ['filter-option' => 'all']],
['text' => 'Mangas en cours', 'action' => 'filter', 'data' => ['filter-option' => 'ongoing']],
['text' => 'Mangas terminés', 'action' => 'filter', 'data' => ['filter-option' => 'completed']]
];
}
private function getViewOptions(): array
{
return [
['text' => 'Vue poster', 'action' => 'changeView', 'data' => ['view-option' => 'poster']],
['text' => 'Vue résumé', 'action' => 'changeView', 'data' => ['view-option' => 'resume']],
['text' => 'Vue table', 'action' => 'changeView', 'data' => ['view-option' => 'table']]
];
}
}

View File

@@ -4,23 +4,19 @@ namespace App\Service;
use App\Entity\Chapter; use App\Entity\Chapter;
use App\Entity\Manga; use App\Entity\Manga;
use App\Manager\FileSystemManager;
use App\Repository\ChapterRepository; use App\Repository\ChapterRepository;
use Doctrine\ORM\EntityManagerInterface; use Doctrine\ORM\EntityManagerInterface;
use Exception; use Exception;
use JetBrains\PhpStorm\NoReturn;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\String\Slugger\SluggerInterface; use Symfony\Component\String\Slugger\SluggerInterface;
class MangaImportService readonly class MangaImportService
{ {
private const string CBZ_DIRECTORY = 'public/cbz';
public function __construct( public function __construct(
private readonly string $projectDir, private FileSystemManager $fileSystemManager,
private readonly EntityManagerInterface $entityManager, private EntityManagerInterface $entityManager,
private readonly ChapterRepository $chapterRepository, private ChapterRepository $chapterRepository,
private readonly Filesystem $filesystem, private SluggerInterface $slugger
private readonly SluggerInterface $slugger
) )
{ {
} }
@@ -45,18 +41,17 @@ class MangaImportService
private function importVolume(Manga $manga, int $volume, string $tempFilePath): void private function importVolume(Manga $manga, int $volume, string $tempFilePath): void
{ {
$permanentFileName = $this->createPermanentFileName($manga, $volume); $permanentFileName = $this->createPermanentFileName($manga, $volume);
$mangaDirectory = $this->createMangaDirectory($manga); $mangaDirectory = $this->fileSystemManager->createMangaDirectory($manga->getSlug(), $manga->getPublicationYear());
$permanentFilePath = $this->projectDir . '/' . $mangaDirectory .'/volume_' . sprintf('%02d', $volume) . '/' . $permanentFileName; $volumeDirectory = $this->fileSystemManager->createVolumeDirectory($mangaDirectory, $volume);
$permanentFilePath = $volumeDirectory . '/' . $permanentFileName;
if ($this->filesystem->exists($permanentFilePath)) { if ($this->fileSystemManager->fileExists($permanentFilePath)) {
throw new \RuntimeException("Un fichier pour ce volume existe déjà."); throw new \RuntimeException("Un fichier pour ce volume existe déjà.");
} }
$this->filesystem->mkdir(dirname($permanentFilePath), 0755); $this->fileSystemManager->moveFile($tempFilePath, $permanentFilePath);
$this->filesystem->rename($tempFilePath, $permanentFilePath, true);
$this->updateVolumeChapters($manga, $volume, $permanentFilePath); $this->updateVolumeChapters($manga, $volume, $permanentFilePath);
$this->entityManager->flush(); $this->entityManager->flush();
} }
@@ -67,15 +62,15 @@ class MangaImportService
{ {
$volume = $chapter->getVolume(); $volume = $chapter->getVolume();
$permanentFileName = $this->createPermanentFileName($manga, $volume, $chapter->getNumber()); $permanentFileName = $this->createPermanentFileName($manga, $volume, $chapter->getNumber());
$mangaDirectory = $this->createMangaDirectory($manga); $mangaDirectory = $this->fileSystemManager->createMangaDirectory($manga->getSlug(), $manga->getPublicationYear());
$permanentFilePath = $this->projectDir . '/' . $mangaDirectory .'/volume_' . sprintf('%02d', $volume) . '/' . $permanentFileName; $volumeDirectory = $this->fileSystemManager->createVolumeDirectory($mangaDirectory, $chapter->getVolume());
$permanentFilePath = $volumeDirectory . '/' . $permanentFileName;
if ($this->filesystem->exists($permanentFilePath)) { if ($this->fileSystemManager->fileExists($permanentFilePath)) {
throw new \RuntimeException("Un fichier pour ce chapitre existe déjà."); throw new \RuntimeException("Un fichier pour ce chapitre existe déjà.");
} }
$this->filesystem->mkdir(dirname($permanentFilePath), 0755); $this->fileSystemManager->moveFile($tempFilePath, $permanentFilePath);
$this->filesystem->rename($tempFilePath, $permanentFilePath, true);
$chapter->setCbzPath($permanentFilePath); $chapter->setCbzPath($permanentFilePath);
@@ -91,15 +86,6 @@ class MangaImportService
return $baseFileName . '.cbz'; 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 updateVolumeChapters(Manga $manga, int $volume, string $cbzPath): void private function updateVolumeChapters(Manga $manga, int $volume, string $cbzPath): void
{ {
$chapters = $this->chapterRepository->findBy([ $chapters = $this->chapterRepository->findBy([

View File

@@ -6,6 +6,7 @@ use App\Entity\Chapter;
use App\Entity\ContentSource; use App\Entity\ContentSource;
use App\Entity\Manga; use App\Entity\Manga;
use App\Event\PageScrappingProgressEvent; use App\Event\PageScrappingProgressEvent;
use App\Manager\FileSystemManager;
use Doctrine\ORM\EntityManagerInterface; use Doctrine\ORM\EntityManagerInterface;
use Exception; use Exception;
use GuzzleHttp\Client; use GuzzleHttp\Client;
@@ -15,11 +16,10 @@ use Symfony\Component\EventDispatcher\EventDispatcherInterface;
abstract class AbstractScraper implements ScraperInterface abstract class AbstractScraper implements ScraperInterface
{ {
const string PUBLIC_CBZ = '/public/cbz';
protected Client $httpClient; protected Client $httpClient;
public function __construct( public function __construct(
protected string $projectDir, protected FileSystemManager $fileSystemManager,
protected EventDispatcherInterface $eventDispatcher, protected EventDispatcherInterface $eventDispatcher,
protected EntityManagerInterface $entityManager protected EntityManagerInterface $entityManager
) )
@@ -53,7 +53,8 @@ abstract class AbstractScraper implements ScraperInterface
protected function generateCbzPath(Manga $manga, Chapter $chapter): string protected function generateCbzPath(Manga $manga, Chapter $chapter): string
{ {
$volumeDir = $this->createDirectories($manga, $chapter->getVolume()); $mangaDir = $this->fileSystemManager->createMangaDirectory($manga->getSlug(), $manga->getPublicationYear());
$volumeDir = $this->fileSystemManager->createVolumeDirectory($mangaDir, $chapter->getVolume());
$fileName = sprintf('%s_vol%d_ch%s.cbz', $fileName = sprintf('%s_vol%d_ch%s.cbz',
$manga->getSlug(), $manga->getSlug(),
$chapter->getVolume(), $chapter->getVolume(),
@@ -62,7 +63,7 @@ abstract class AbstractScraper implements ScraperInterface
return $volumeDir . '/' . $fileName; return $volumeDir . '/' . $fileName;
} }
protected function createCbzFile(string $tempDir, array $pageData, string $cbzFilePath): void protected function createCbzFile(array $pageData, string $cbzFilePath): void
{ {
$zip = new \ZipArchive(); $zip = new \ZipArchive();
@@ -76,26 +77,7 @@ abstract class AbstractScraper implements ScraperInterface
protected function cleanupTempFiles(string $directory): void protected function cleanupTempFiles(string $directory): void
{ {
$files = glob($directory . '/*'); $this->fileSystemManager->deleteDirectory($directory);
foreach ($files as $file) {
if (is_file($file)) {
unlink($file);
}
}
rmdir($directory);
}
protected 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;
} }
protected function cleanImageUrl(string $url): string protected function cleanImageUrl(string $url): string

View File

@@ -13,17 +13,6 @@ use Symfony\Component\DomCrawler\Crawler;
class HtmlScraper extends AbstractScraper class HtmlScraper extends AbstractScraper
{ {
private Client $client;
public function __construct(
string $projectDir,
EventDispatcherInterface $eventDispatcher,
EntityManagerInterface $entityManager
) {
parent::__construct($projectDir, $eventDispatcher, $entityManager);
$this->client = new Client();
}
/** /**
* @throws Exception * @throws Exception
* @throws GuzzleException * @throws GuzzleException
@@ -64,7 +53,7 @@ class HtmlScraper extends AbstractScraper
} }
$cbzFilePath = $this->generateCbzPath($manga, $chapter); $cbzFilePath = $this->generateCbzPath($manga, $chapter);
$this->createCbzFile($tempDir, $pageData, $cbzFilePath); $this->createCbzFile($pageData, $cbzFilePath);
$chapter->setCbzPath($cbzFilePath); $chapter->setCbzPath($cbzFilePath);
$this->entityManager->persist($chapter); $this->entityManager->persist($chapter);
@@ -144,7 +133,7 @@ class HtmlScraper extends AbstractScraper
private function fetchHtml(string $url): string private function fetchHtml(string $url): string
{ {
try { try {
$response = $this->client->get($url, [ $response = $this->httpClient->get($url, [
'http_errors' => true, 'http_errors' => true,
'allow_redirects' => false 'allow_redirects' => false
]); ]);

View File

@@ -47,7 +47,7 @@ class JavascriptScraper extends AbstractScraper
} }
$cbzFilePath = $this->generateCbzPath($manga, $chapter); $cbzFilePath = $this->generateCbzPath($manga, $chapter);
$this->createCbzFile($tempDir, $pageData, $cbzFilePath); $this->createCbzFile($pageData, $cbzFilePath);
$chapter->setCbzPath($cbzFilePath); $chapter->setCbzPath($cbzFilePath);
$this->entityManager->persist($chapter); $this->entityManager->persist($chapter);

View File

@@ -10,17 +10,6 @@ use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class MangadexScraper extends AbstractScraper class MangadexScraper extends AbstractScraper
{ {
private Client $client;
public function __construct(
string $projectDir,
EventDispatcherInterface $eventDispatcher,
EntityManagerInterface $entityManager
) {
parent::__construct($projectDir, $eventDispatcher, $entityManager);
$this->client = new Client();
}
public function scrapeChapter(Chapter $chapter, ContentSource $contentSource): array|bool public function scrapeChapter(Chapter $chapter, ContentSource $contentSource): array|bool
{ {
$chapterUrl = $contentSource->getBaseUrl() . sprintf($contentSource->getChapterUrlFormat(), $chapter->getExternalId()); $chapterUrl = $contentSource->getBaseUrl() . sprintf($contentSource->getChapterUrlFormat(), $chapter->getExternalId());
@@ -28,7 +17,7 @@ class MangadexScraper extends AbstractScraper
$pageData = []; $pageData = [];
try { try {
$response = $this->client->get($chapterUrl); $response = $this->httpClient->get($chapterUrl);
$results = json_decode($response->getBody()->getContents(), true); $results = json_decode($response->getBody()->getContents(), true);
if ($results['result'] !== 'ok' || count($results['chapter']['dataSaver']) === 0) { if ($results['result'] !== 'ok' || count($results['chapter']['dataSaver']) === 0) {
@@ -54,7 +43,7 @@ class MangadexScraper extends AbstractScraper
} }
$cbzFilePath = $this->generateCbzPath($manga, $chapter); $cbzFilePath = $this->generateCbzPath($manga, $chapter);
$this->createCbzFile($tempDir, $pageData, $cbzFilePath); $this->createCbzFile($pageData, $cbzFilePath);
$chapter->setCbzPath($cbzFilePath); $chapter->setCbzPath($cbzFilePath);
$this->entityManager->persist($chapter); $this->entityManager->persist($chapter);