mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
[InternetDownloadManagerBridge] add bridge
This commit is contained in:
parent
80c43f10d8
commit
07228a07aa
39
bridges/InternetDownloadManagerBridge.php
Normal file
39
bridges/InternetDownloadManagerBridge.php
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
class InternetDownloadManagerBridge extends BridgeAbstract
|
||||||
|
{
|
||||||
|
const NAME = 'Internet Download Manager News';
|
||||||
|
const URI = 'https://www.internetdownloadmanager.com/news.html';
|
||||||
|
const DESCRIPTION = 'IDM update changelog';
|
||||||
|
const MAINTAINER = 'tillcash';
|
||||||
|
const MAX_ITEMS = 10;
|
||||||
|
|
||||||
|
public function collectData()
|
||||||
|
{
|
||||||
|
$dom = getSimpleHTMLDOM(self::URI);
|
||||||
|
$elements = $dom->find('.col-center.with__nav > h3');
|
||||||
|
$count = 0;
|
||||||
|
|
||||||
|
foreach ($elements as $element) {
|
||||||
|
if ($count >= self::MAX_ITEMS) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Extract the release date information
|
||||||
|
$dateInfo = $element->next_sibling()->plaintext;
|
||||||
|
preg_match('/\(Released: (.*?)\)/', $dateInfo, $matches);
|
||||||
|
$date = $matches[1] ?? time();
|
||||||
|
|
||||||
|
// Extract the content of the changelog
|
||||||
|
$content = $element->next_sibling()->next_sibling()->outertext;
|
||||||
|
|
||||||
|
$this->items[] = [
|
||||||
|
'title' => $element->plaintext,
|
||||||
|
'timestamp' => $date,
|
||||||
|
'content' => $content,
|
||||||
|
];
|
||||||
|
|
||||||
|
$count++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user