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.";
|
|
|
|
$this->update = "2014-06-13";
|
|
|
|
|
|
|
|
$this->parameters[] =
|
|
|
|
'[
|
|
|
|
{
|
|
|
|
"name" : "keyword",
|
|
|
|
"identifier" : "u"
|
|
|
|
}
|
|
|
|
]';
|
|
|
|
|
|
|
|
}
|
|
|
|
|
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-06-25 23:17:42 +02:00
|
|
|
$html = $this->file_get_html($link) or $this->returnError('Could not request ScoopIt. for : ' . $link , 404);
|
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 {
|
|
|
|
$this->returnError('You must specify a keyword', 404);
|
2014-07-22 14:59:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
|
|
|
return 'ScooptIt';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getURI(){
|
|
|
|
return 'http://Scoop.it';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 21600; // 6 hours
|
|
|
|
}
|
|
|
|
}
|
2014-07-23 13:11:55 +02:00
|
|
|
|