forked from blallo/rss-bridge
78c9dcc705
Signed-off-by: teromene <teromene@teromene.fr>
47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
class DuckDuckGoBridge extends BridgeAbstract{
|
|
|
|
public function loadMetadatas() {
|
|
|
|
$this->maintainer = "Astalaseven";
|
|
$this->name = "DuckDuckGo";
|
|
$this->uri = "https://duckduckgo.com/";
|
|
$this->description = "Returns most recent results from DuckDuckGo.";
|
|
$this->update = "2014-05-25";
|
|
|
|
$this->parameters[] =
|
|
'[
|
|
{
|
|
"name" : "keyword",
|
|
"identifier" : "u"
|
|
}
|
|
]';
|
|
}
|
|
|
|
public function collectData(array $param){
|
|
$html = '';
|
|
$link = 'http://duckduckgo.com/html/?q='.$param[u].'+sort:date';
|
|
|
|
$html = file_get_html($link) or $this->returnError('Could not request DuckDuckGo.', 404);
|
|
|
|
foreach($html->find('div.results_links') as $element) {
|
|
$item = new \Item();
|
|
$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 getName(){
|
|
return 'DuckDuckGo';
|
|
}
|
|
|
|
public function getURI(){
|
|
return 'https://duckduckgo.com';
|
|
}
|
|
|
|
public function getCacheDuration(){
|
|
return 21600; // 6 hours
|
|
}
|
|
}
|