mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
437afd67e0
* fix: symfonycasts * various fixes
39 lines
1.3 KiB
PHP
39 lines
1.3 KiB
PHP
<?php
|
|
|
|
class SymfonyCastsBridge extends BridgeAbstract
|
|
{
|
|
const NAME = 'SymfonyCasts Bridge';
|
|
const URI = 'https://symfonycasts.com/';
|
|
const DESCRIPTION = 'Follow new updates on symfonycasts.com';
|
|
const MAINTAINER = 'Park0';
|
|
const CACHE_TIMEOUT = 3600;
|
|
|
|
public function collectData()
|
|
{
|
|
$url = 'https://symfonycasts.com/updates/find';
|
|
$html = getSimpleHTMLDOM($url);
|
|
|
|
/** @var simple_html_dom_node[] $dives */
|
|
$dives = $html->find('div.user-notification-not-viewed');
|
|
|
|
foreach ($dives as $div) {
|
|
$type = $div->find('h5', 0);
|
|
$title = $div->find('a', 0);
|
|
$dateString = $div->find('h5.font-gray', 0);
|
|
$href = $div->find('a', 0);
|
|
$hrefAttribute = $href->getAttribute('href');
|
|
$url = 'https://symfonycasts.com' . $hrefAttribute;
|
|
|
|
$item = [];
|
|
$item['uid'] = $div->getAttribute('data-mark-update-update-url-value');
|
|
$item['title'] = $title->innertext;
|
|
|
|
// this natural language date string does not work
|
|
$item['timestamp'] = $dateString->innertext;
|
|
|
|
$item['content'] = $type->plaintext . '<a href="' . $url . '">' . $title . '</a>';
|
|
$item['uri'] = $url;
|
|
$this->items[] = $item; // Add item to the list
|
|
}
|
|
}
|
|
}
|