mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-23 01:55:27 +03:00
42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
<?php
|
|
class StanfordSIRbookreviewBridge extends BridgeAbstract {
|
|
const MAINTAINER = 'Kidman1670';
|
|
const NAME = 'StanfordSIRbookreviewBridge';
|
|
const URI = 'https://ssir.org/books/';
|
|
const CACHE_TIMEOUT = 21600;
|
|
const DESCRIPTION = 'Return results from SSIR book review.';
|
|
const PARAMETERS = array( array(
|
|
'style' => array(
|
|
'name' => 'style',
|
|
'type' => 'list',
|
|
'values' => array(
|
|
'reviews' => 'reviews',
|
|
'excerpts' => 'excerpts',
|
|
)
|
|
)
|
|
)
|
|
);
|
|
|
|
public function collectData() {
|
|
switch($this->getInput('style')) {
|
|
case 'reviews':
|
|
$url = self::URI . 'reviews';
|
|
break;
|
|
case 'excerpts':
|
|
$url = self::URI . 'excerpts';
|
|
break;
|
|
}
|
|
|
|
$html = getSimpleHTMLDOM($url)
|
|
or returnServerError('Failed loading content!');
|
|
foreach($html->find('article') as $element) {
|
|
$item = array();
|
|
$item['title'] = $element->find('div > h4 > a', 0)->plaintext;
|
|
$item['uri'] = $element->find('div > h4 > a', 0)->href;
|
|
$item['content'] = $element->find('div > div.article-entry > p', 2)->plaintext;
|
|
$item['author'] = $element->find('div > div > p', 0)->plaintext;
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
}
|
|
}
|