2014-07-22 14:59:55 +02:00
|
|
|
<?php
|
|
|
|
class ScoopItBridge extends BridgeAbstract{
|
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = "Pitchoule";
|
|
|
|
public $name = "ScoopIt";
|
|
|
|
public $uri = "http://www.scoop.it";
|
|
|
|
public $description = "Returns most recent results from ScoopIt.";
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $parameters = array( array(
|
|
|
|
'u'=>array(
|
2016-08-22 01:25:56 +02:00
|
|
|
'name'=>'keyword',
|
|
|
|
'required'=>true
|
2016-08-27 21:03:26 +02:00
|
|
|
)
|
|
|
|
));
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2014-07-22 14:59:55 +02:00
|
|
|
$html = '';
|
2016-08-28 01:25:33 +02:00
|
|
|
if ($this->getInput('u') != '') {
|
|
|
|
$this->request = $this->getInput('u');
|
2014-07-23 13:11:55 +02:00
|
|
|
$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) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = $element->find('a', 0)->href;
|
|
|
|
$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
|
|
|
|