summaryrefslogtreecommitdiff
path: root/bridges/MozillaSecurityBridge.php
blob: 52672f5618bac35f0799358155816a75ee4e776a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?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;
		}
	}
}