mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-23 01:55:27 +03:00
[SymfonyCasts] Added new bridge (#2000)
This commit is contained in:
parent
569276f4ef
commit
a5f2175531
1 changed files with 34 additions and 0 deletions
34
bridges/SymfonyCastsBridge.php
Normal file
34
bridges/SymfonyCastsBridge.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?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() {
|
||||
$html = getSimpleHTMLDOM('https://symfonycasts.com/updates/find')
|
||||
or returnServerError('Unable to get page.');
|
||||
$dives = $html->find('div');
|
||||
|
||||
/* @var simple_html_dom $div */
|
||||
foreach ($dives as $div) {
|
||||
$id = $div->getAttribute('data-mark-update-id-value');
|
||||
$type = $div->find('h5', 0);
|
||||
$title = $div->find('span', 0);
|
||||
$dateString = $div->find('h5.font-gray', 0);
|
||||
$href = $div->find('a', 0);
|
||||
$url = 'https://symfonycasts.com' . $href->getAttribute('href');
|
||||
|
||||
$item = array(); // Create an empty item
|
||||
$item['uid'] = $id;
|
||||
$item['title'] = $title->innertext;
|
||||
$item['timestamp'] = $dateString->innertext;
|
||||
$item['content'] = $type->plaintext . '<a href="' . $url . '">' . $title . '</a>';
|
||||
$item['uri'] = $url;
|
||||
$this->items[] = $item; // Add item to the list
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue