2014-05-26 02:30:46 +04:00
|
|
|
<?php
|
2017-02-11 18:16:56 +03:00
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
class BastaBridge extends BridgeAbstract
|
|
|
|
{
|
|
|
|
const MAINTAINER = 'qwertygc';
|
|
|
|
const NAME = 'Bastamag Bridge';
|
|
|
|
const URI = 'https://www.bastamag.net/';
|
|
|
|
const CACHE_TIMEOUT = 7200; // 2h
|
|
|
|
const DESCRIPTION = 'Returns the newest articles.';
|
2016-07-08 20:06:35 +03:00
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
public function collectData()
|
|
|
|
{
|
|
|
|
$html = getSimpleHTMLDOM(self::URI . 'spip.php?page=backend');
|
2017-02-11 18:16:56 +03:00
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
$limit = 0;
|
2014-05-26 02:30:46 +04:00
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
foreach ($html->find('item') as $element) {
|
|
|
|
if ($limit < 10) {
|
|
|
|
$item = [];
|
|
|
|
$item['title'] = $element->find('title', 0)->innertext;
|
|
|
|
$item['uri'] = $element->find('guid', 0)->plaintext;
|
|
|
|
$item['timestamp'] = strtotime($element->find('dc:date', 0)->plaintext);
|
2020-11-23 21:49:25 +03:00
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
$html = getSimpleHTMLDOM($item['uri']);
|
|
|
|
$html = defaultLinkTo($html, self::URI);
|
2020-11-23 21:49:25 +03:00
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
$item['content'] = $html->find('div.texte', 0)->innertext;
|
|
|
|
$this->items[] = $item;
|
|
|
|
$limit++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-05-26 02:30:46 +04:00
|
|
|
}
|