ae40f7b388
* added unique UID + URI if UID is mandatory for RSS-Bridge, the unicity of the URI is also mandatory for some reader (like kriss feed).
29 lines
927 B
PHP
29 lines
927 B
PHP
<?php
|
|
class MozillaSecurityBridge extends BridgeAbstract {
|
|
|
|
const MAINTAINER = 'm0le.net';
|
|
const NAME = 'Mozilla Security Advisories';
|
|
const URI = 'https://www.mozilla.org/en-US/security/advisories/';
|
|
const CACHE_TIMEOUT = 7200; // 2h
|
|
const DESCRIPTION = 'Mozilla Security Advisories';
|
|
const WEBROOT = 'https://www.mozilla.org';
|
|
|
|
public function collectData(){
|
|
$html = getSimpleHTMLDOM(self::URI)
|
|
or returnServerError('Could not request MSA.');
|
|
|
|
$html = defaultLinkTo($html, self::WEBROOT);
|
|
|
|
$item = array();
|
|
$articles = $html->find('div[itemprop="articleBody"] h2');
|
|
|
|
foreach ($articles as $element) {
|
|
$item['title'] = $element->innertext;
|
|
$item['timestamp'] = strtotime($element->innertext);
|
|
$item['content'] = $element->next_sibling()->innertext;
|
|
$item['uri'] = self::URI . '?' . $item['timestamp'];
|
|
$item['uid'] = self::URI . '?' . $item['timestamp'];
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
}
|