2014-07-22 14:59:55 +02:00
|
|
|
<?php
|
|
|
|
class ScoopItBridge extends BridgeAbstract{
|
|
|
|
|
2015-11-05 16:50:18 +01:00
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "Pitchoule";
|
|
|
|
$this->name = "ScoopIt";
|
|
|
|
$this->uri = "http://www.scoop.it";
|
|
|
|
$this->description = "Returns most recent results from ScoopIt.";
|
|
|
|
|
2016-08-22 01:25:56 +02:00
|
|
|
$this->parameters[] = array(
|
|
|
|
'u'=>array(
|
|
|
|
'name'=>'keyword',
|
|
|
|
'required'=>true
|
|
|
|
)
|
|
|
|
);
|
2015-11-05 16:50:18 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-07-22 14:59:55 +02:00
|
|
|
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);
|
2016-07-08 19:06:35 +02:00
|
|
|
|
|
|
|
$html = $this->getSimpleHTMLDOM($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) {
|
2014-07-22 14:59:55 +02:00
|
|
|
$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);
|
2014-07-22 14:59:55 +02:00
|
|
|
$this->items[] = $item;
|
2014-07-23 13:11:55 +02:00
|
|
|
}
|
|
|
|
} else {
|
2016-08-17 14:45:08 +02:00
|
|
|
$this->returnServerError('You must specify a keyword');
|
2014-07-22 14:59:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 21600; // 6 hours
|
|
|
|
}
|
|
|
|
}
|
2014-07-23 13:11:55 +02:00
|
|
|
|