mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-09 16:38:50 +00:00
[FreeTelechargerBridge] Update to the new URL (#3856)
* [FreeTelechargerBridge] Update to the new URL Website has changed URL and some design : this bridge is now adapted to thoses changes * [FreeTelechargerBridge] Fix example value Example valuse seems to use an "old" template, switch to a newer example that use the new template * [FreeTelechargerBridge] Fix notice Fix notice
This commit is contained in:
parent
98dafb61ae
commit
9f163ab7c6
@ -3,7 +3,7 @@
|
|||||||
class FreeTelechargerBridge extends BridgeAbstract
|
class FreeTelechargerBridge extends BridgeAbstract
|
||||||
{
|
{
|
||||||
const NAME = 'Free-Telecharger';
|
const NAME = 'Free-Telecharger';
|
||||||
const URI = 'https://www.free-telecharger.live/';
|
const URI = 'https://www.free-telecharger.art/';
|
||||||
const DESCRIPTION = 'Suivi de série sur Free-Telecharger';
|
const DESCRIPTION = 'Suivi de série sur Free-Telecharger';
|
||||||
const MAINTAINER = 'sysadminstory';
|
const MAINTAINER = 'sysadminstory';
|
||||||
const PARAMETERS = [
|
const PARAMETERS = [
|
||||||
@ -12,43 +12,46 @@ class FreeTelechargerBridge extends BridgeAbstract
|
|||||||
'name' => 'URL de la série',
|
'name' => 'URL de la série',
|
||||||
'type' => 'text',
|
'type' => 'text',
|
||||||
'required' => true,
|
'required' => true,
|
||||||
'title' => 'URL d\'une série sans le https://www.free-telecharger.live/',
|
'title' => 'URL d\'une série sans le https://www.free-telecharger.art/',
|
||||||
'pattern' => 'series.*\.html',
|
'pattern' => 'series.*\.html',
|
||||||
'exampleValue' => 'series-vf-hd/145458-the-last-of-us-saison-1-web-dl-720p.html'
|
'exampleValue' => 'series-vf-hd/151432-wolf-saison-1-complete-web-dl-720p.html'
|
||||||
],
|
],
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
const CACHE_TIMEOUT = 3600;
|
const CACHE_TIMEOUT = 3600;
|
||||||
|
private string $showTitle;
|
||||||
|
private string $showTechDetails;
|
||||||
|
|
||||||
public function collectData()
|
public function collectData()
|
||||||
{
|
{
|
||||||
$html = getSimpleHTMLDOM(self::URI . $this->getInput('url'));
|
$html = getSimpleHTMLDOM(self::URI . $this->getInput('url'));
|
||||||
|
|
||||||
// Find all block content of the page
|
// Find all block content of the page
|
||||||
$blocks = $html->find('div[class=block1]');
|
$blocks = $html->find('div[class=block1]');
|
||||||
|
|
||||||
// Global Infos block
|
// Global Infos block
|
||||||
$infosBlock = $blocks[0];
|
$infosBlock = $blocks[0];
|
||||||
// Links block
|
// Links block
|
||||||
$linksBlock = $blocks[2];
|
$linksBlock = $blocks[2];
|
||||||
|
|
||||||
// Extract Global Show infos
|
// Extract Global Show infos
|
||||||
$this->showTitle = trim($infosBlock->find('div[class=titre1]', 0)->find('font', 0)->plaintext);
|
$this->showTitle = trim($infosBlock->find('div[class=titre1]', 0)->find('font', 0)->plaintext);
|
||||||
$this->showTechDetails = trim($infosBlock->find('div[align=center]', 0)->find('b', 0)->plaintext);
|
$this->showTechDetails = trim($infosBlock->find('div[align=center]', 0)->find('b', 0)->plaintext);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Get Episodes names and links
|
// Get Episodes names and links
|
||||||
$episodes = $linksBlock->find('div[id=link]', 0)->find('font[color=#ff6600]');
|
$episodes = $linksBlock->find('div[id=link]', 0)->find('font[color=#e93100]');
|
||||||
$links = $linksBlock->find('div[id=link]', 0)->find('a');
|
$links = $linksBlock->find('div[id=link]', 0)->find('a');
|
||||||
|
|
||||||
foreach ($episodes as $index => $episode) {
|
foreach ($episodes as $index => $episode) {
|
||||||
$item = []; // Create an empty item
|
$item = []; // Create an empty item
|
||||||
$item['title'] = $this->showTitle . ' ' . $this->showTechDetails . ' - ' . ltrim(trim($episode->plaintext), '-');
|
$item['title'] = $this->showTitle . ' ' . $this->showTechDetails . ' - ' . ltrim(trim($episode->plaintext), '-');
|
||||||
$item['uri'] = $links[$index]->href;
|
$item['uri'] = $links[$index]->href;
|
||||||
$item['content'] = '<a href="' . $item['uri'] . '">' . $item['title'] . '</a>';
|
$item['content'] = '<a href="' . $item['uri'] . '">' . $item['title'] . '</a>';
|
||||||
$item['uid'] = hash('md5', $item['uri']);
|
$item['uid'] = hash('md5', $item['uri']);
|
||||||
|
|
||||||
$this->items[] = $item; // Add this item to the list
|
$this->items[] = $item; // Add this item to the list
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -57,7 +60,7 @@ class FreeTelechargerBridge extends BridgeAbstract
|
|||||||
switch ($this->queriedContext) {
|
switch ($this->queriedContext) {
|
||||||
case 'Suivi de publication de série':
|
case 'Suivi de publication de série':
|
||||||
return $this->showTitle . ' ' . $this->showTechDetails . ' - ' . self::NAME;
|
return $this->showTitle . ' ' . $this->showTechDetails . ' - ' . self::NAME;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return self::NAME;
|
return self::NAME;
|
||||||
}
|
}
|
||||||
@ -68,7 +71,7 @@ class FreeTelechargerBridge extends BridgeAbstract
|
|||||||
switch ($this->queriedContext) {
|
switch ($this->queriedContext) {
|
||||||
case 'Suivi de publication de série':
|
case 'Suivi de publication de série':
|
||||||
return self::URI . $this->getInput('url');
|
return self::URI . $this->getInput('url');
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return self::URI;
|
return self::URI;
|
||||||
}
|
}
|
||||||
@ -76,14 +79,14 @@ class FreeTelechargerBridge extends BridgeAbstract
|
|||||||
|
|
||||||
public function detectParameters($url)
|
public function detectParameters($url)
|
||||||
{
|
{
|
||||||
// Example: https://www.free-telecharger.live/series-vf-hd/145458-the-last-of-us-saison-1-web-dl-720p.html
|
// Example: https://www.free-telecharger.art/series-vf-hd/151432-wolf-saison-1-complete-web-dl-720p.html
|
||||||
|
|
||||||
$params = [];
|
$params = [];
|
||||||
$regex = '/^https:\/\/www.*\.free-telecharger\.live\/(series.*\.html)/';
|
$regex = '/^https:\/\/www.*\.free-telecharger\.art\/(series.*\.html)/';
|
||||||
if (preg_match($regex, $url, $matches) > 0) {
|
if (preg_match($regex, $url, $matches) > 0) {
|
||||||
$params['context'] = 'Suivi de publication de série';
|
$params['context'] = 'Suivi de publication de série';
|
||||||
$params['url'] = urldecode($matches[1]);
|
$params['url'] = urldecode($matches[1]);
|
||||||
return $params;
|
return $params;
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
Loading…
Reference in New Issue
Block a user