- trop de trucs d'un coup... je vais faire attention ensuite ^^'
This commit is contained in:
100
src/Entity/ContentSource.php
Normal file
100
src/Entity/ContentSource.php
Normal file
@@ -0,0 +1,100 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entity;
|
||||
|
||||
use App\Repository\ContentSourceRepository;
|
||||
use Doctrine\ORM\Mapping as ORM;
|
||||
|
||||
#[ORM\Entity(repositoryClass: ContentSourceRepository::class)]
|
||||
class ContentSource
|
||||
{
|
||||
#[ORM\Id]
|
||||
#[ORM\GeneratedValue]
|
||||
#[ORM\Column]
|
||||
private ?int $id = null;
|
||||
|
||||
#[ORM\Column(length: 255)]
|
||||
private ?string $baseUrl = null;
|
||||
|
||||
#[ORM\Column(length: 255)]
|
||||
private ?string $imageSelector = null;
|
||||
|
||||
#[ORM\Column(length: 255)]
|
||||
private ?string $NextPageSelector = null;
|
||||
|
||||
#[ORM\Column(length: 255)]
|
||||
private ?string $chapterUrlFormat = null;
|
||||
|
||||
#[ORM\Column(length: 255)]
|
||||
private ?string $scrapingType = null;
|
||||
|
||||
public function getId(): ?int
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
|
||||
public function getBaseUrl(): ?string
|
||||
{
|
||||
return $this->baseUrl;
|
||||
}
|
||||
|
||||
public function setBaseUrl(string $baseUrl): static
|
||||
{
|
||||
$this->baseUrl = $baseUrl;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getImageSelector(): ?string
|
||||
{
|
||||
return $this->imageSelector;
|
||||
}
|
||||
|
||||
public function setImageSelector(string $imageSelector): static
|
||||
{
|
||||
$this->imageSelector = $imageSelector;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getNextPageSelector(): ?string
|
||||
{
|
||||
return $this->NextPageSelector;
|
||||
}
|
||||
|
||||
public function setNextPageSelector(string $NextPageSelector): static
|
||||
{
|
||||
$this->NextPageSelector = $NextPageSelector;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getChapterUrlFormat(): ?string
|
||||
{
|
||||
return $this->chapterUrlFormat;
|
||||
}
|
||||
|
||||
public function setChapterUrlFormat(string $chapterUrlFormat): static
|
||||
{
|
||||
$this->chapterUrlFormat = $chapterUrlFormat;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getChapterUrl(string $mangaTitle, float $chapterNumber): string
|
||||
{
|
||||
return sprintf($this->chapterUrlFormat, $mangaTitle, $chapterNumber);
|
||||
}
|
||||
|
||||
public function getScrapingType(): ?string
|
||||
{
|
||||
return $this->scrapingType;
|
||||
}
|
||||
|
||||
public function setScrapingType(string $scrapingType): static
|
||||
{
|
||||
$this->scrapingType = $scrapingType;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user