2014-05-26 02:30:46 +04:00
|
|
|
<?php
|
2017-02-11 18:16:56 +03:00
|
|
|
class BastaBridge extends BridgeAbstract {
|
|
|
|
|
|
|
|
const MAINTAINER = 'qwertygc';
|
|
|
|
const NAME = 'Bastamag Bridge';
|
2019-10-16 22:34:28 +03:00
|
|
|
const URI = 'https://www.bastamag.net/';
|
2016-09-25 18:04:28 +03:00
|
|
|
const CACHE_TIMEOUT = 7200; // 2h
|
2017-02-11 18:16:56 +03:00
|
|
|
const DESCRIPTION = 'Returns the newest articles.';
|
2016-07-08 20:06:35 +03:00
|
|
|
|
2016-08-25 02:24:53 +03:00
|
|
|
public function collectData(){
|
2022-01-02 12:36:09 +03:00
|
|
|
$html = getSimpleHTMLDOM(self::URI . 'spip.php?page=backend');
|
2017-02-11 18:16:56 +03:00
|
|
|
|
2014-05-26 02:30:46 +04:00
|
|
|
$limit = 0;
|
|
|
|
|
2017-07-29 20:28:00 +03:00
|
|
|
foreach($html->find('item') as $element) {
|
|
|
|
if($limit < 10) {
|
2016-08-22 19:55:59 +03:00
|
|
|
$item = array();
|
|
|
|
$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
|
|
|
|
|
|
|
$html = getSimpleHTMLDOM($item['uri']);
|
|
|
|
$html = defaultLinkTo($html, self::URI);
|
|
|
|
|
|
|
|
$item['content'] = $html->find('div.texte', 0)->innertext;
|
2016-08-02 13:27:44 +03:00
|
|
|
$this->items[] = $item;
|
|
|
|
$limit++;
|
2016-08-02 12:28:11 +03:00
|
|
|
}
|
2014-05-26 02:30:46 +04:00
|
|
|
}
|
2016-08-02 12:28:11 +03:00
|
|
|
}
|
2014-05-26 02:30:46 +04:00
|
|
|
}
|