Rss-Bridge/bridges/ScoopItBridge.php

47 lines
1.4 KiB
PHP
Raw Normal View History

<?php
class ScoopItBridge extends BridgeAbstract{
public function loadMetadatas() {
$this->maintainer = "Pitchoule";
$this->name = "ScoopIt";
$this->uri = "http://www.scoop.it";
$this->description = "Returns most recent results from ScoopIt.";
$this->update = '2016-08-17';
$this->parameters[] =
'[
{
"name" : "keyword",
"identifier" : "u"
}
]';
}
public function collectData(array $param){
$html = '';
2014-07-23 13:11:55 +02:00
if ($param['u'] != '') {
$this->request = $param['u'];
$link = 'http://scoop.it/search?q=' .urlencode($this->request);
$html = $this->file_get_html($link) or $this->returnServerError('Could not request ScoopIt. for : ' . $link);
2014-07-23 13:11:55 +02:00
foreach($html->find('div.post-view') as $element) {
$item = new Item();
$item->uri = $element->find('a', 0)->href;
2014-07-23 13:11:55 +02:00
$item->title = preg_replace('~[[:cntrl:]]~', '', $element->find('div.tCustomization_post_title',0)->plaintext);
$item->content = preg_replace('~[[:cntrl:]]~', '', $element->find('div.tCustomization_post_description', 0)->plaintext);
$this->items[] = $item;
2014-07-23 13:11:55 +02:00
}
} else {
$this->returnServerError('You must specify a keyword');
}
}
public function getCacheDuration(){
return 21600; // 6 hours
}
}
2014-07-23 13:11:55 +02:00