forked from blallo/rss-bridge
9a0da733ef
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
31 lines
1,008 B
PHP
31 lines
1,008 B
PHP
<?php
|
|
class DuckDuckGoBridge extends BridgeAbstract{
|
|
|
|
const MAINTAINER = "Astalaseven";
|
|
const NAME = "DuckDuckGo";
|
|
const URI = "https://duckduckgo.com/";
|
|
const DESCRIPTION = "Returns most recent results from DuckDuckGo.";
|
|
|
|
const PARAMETERS = array( array(
|
|
'u'=>array(
|
|
'name'=>'keyword',
|
|
'required'=>true)
|
|
));
|
|
|
|
public function collectData(){
|
|
$html = $this->getSimpleHTMLDOM(self::URI.'html/?q='.$this->getInput('u').'+sort:date')
|
|
or $this->returnServerError('Could not request DuckDuckGo.');
|
|
|
|
foreach($html->find('div.results_links') as $element) {
|
|
$item = array();
|
|
$item['uri'] = $element->find('a', 0)->href;
|
|
$item['title'] = $element->find('a', 1)->innertext;
|
|
$item['content'] = $element->find('div.snippet', 0)->plaintext;
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
|
|
public function getCacheDuration(){
|
|
return 21600; // 6 hours
|
|
}
|
|
}
|