mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-03-14 20:21:14 +03:00
feat: new bridge MangaReader (#3795)
This commit is contained in:
parent
e76b0601b3
commit
b347a9268a
1 changed files with 44 additions and 0 deletions
44
bridges/MangaReaderBridge.php
Normal file
44
bridges/MangaReaderBridge.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?php
|
||||
|
||||
class MangaReaderBridge extends BridgeAbstract
|
||||
{
|
||||
const NAME = 'MangaReader Bridge';
|
||||
const URI = 'https://mangareader.to';
|
||||
const DESCRIPTION = 'Fetches the latest chapters from MangaReader.to.';
|
||||
const MAINTAINER = 'cubethethird';
|
||||
const PARAMETERS = [
|
||||
[
|
||||
'url' => [
|
||||
'name' => 'Manga URL',
|
||||
'type' => 'text',
|
||||
'required' => true,
|
||||
'title' => 'The URL of the manga on MangaReader',
|
||||
'pattern' => '^https:\/\/mangareader\.to\/[^\/]+$',
|
||||
'exampleValue' => 'https://mangareader.to/bleach-1623',
|
||||
],
|
||||
'lang' => [
|
||||
'name' => 'Chapter Language',
|
||||
'title' => 'two-letter language code (example "en", "jp", "fr")',
|
||||
'exampleValue' => 'en',
|
||||
'required' => true,
|
||||
'pattern' => '^[a-z][a-z]$',
|
||||
]
|
||||
]
|
||||
];
|
||||
|
||||
public function collectData()
|
||||
{
|
||||
$url = $this->getInput('url');
|
||||
$lang = $this->getInput('lang');
|
||||
$dom = getSimpleHTMLDOM($url);
|
||||
$chapters = $dom->getElementById($lang . '-chapters');
|
||||
|
||||
foreach ($chapters->getElementsByTagName('li') as $chapter) {
|
||||
$a = $chapter->getElementsByTagName('a')[0];
|
||||
$item = [];
|
||||
$item['title'] = $a->getAttribute('title');
|
||||
$item['uri'] = self::URI . $a->getAttribute('href');
|
||||
$this->items[] = $item;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue