forked from blallo/rss-bridge
[CryptomeBridge] use https source + code simplification
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
a80246a2b3
commit
f1a3ed297e
1 changed files with 7 additions and 11 deletions
|
@ -3,36 +3,32 @@ class CryptomeBridge extends BridgeAbstract{
|
||||||
|
|
||||||
public $maintainer = "BoboTiG";
|
public $maintainer = "BoboTiG";
|
||||||
public $name = "Cryptome";
|
public $name = "Cryptome";
|
||||||
public $uri = "http://cryptome.org/";
|
public $uri = "https://cryptome.org/";
|
||||||
public $description = "Returns the N most recent documents.";
|
public $description = "Returns the N most recent documents.";
|
||||||
|
|
||||||
public $parameters = array( array(
|
public $parameters = array( array(
|
||||||
'n'=>array(
|
'n'=>array(
|
||||||
'name'=>'number of elements',
|
'name'=>'number of elements',
|
||||||
'type'=>'number',
|
'type'=>'number',
|
||||||
|
'defaultValue'=>20,
|
||||||
'exampleValue'=>10
|
'exampleValue'=>10
|
||||||
)
|
)
|
||||||
));
|
));
|
||||||
|
|
||||||
public function collectData(){
|
public function collectData(){
|
||||||
$html = '';
|
$html = $this->getSimpleHTMLDOM($this->uri)
|
||||||
$num = 20;
|
or $this->returnServerError('Could not request Cryptome.');
|
||||||
$link = 'http://cryptome.org/';
|
|
||||||
// If you want HTTPS access instead, uncomment the following line:
|
|
||||||
//$link = 'https://secure.netsolhost.com/cryptome.org/';
|
|
||||||
|
|
||||||
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request Cryptome.');
|
|
||||||
if (!empty($this->getInput('n'))) { /* number of documents */
|
if (!empty($this->getInput('n'))) { /* number of documents */
|
||||||
$num = min(max(1, $this->getInput('n')+0), $num);
|
$num = min($this->getInput('n'), 20);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
foreach($html->find('pre') as $element) {
|
foreach($html->find('pre') as $element) {
|
||||||
for ( $i = 0; $i < $num; ++$i ) {
|
for ( $i = 0; $i < $num; ++$i ) {
|
||||||
$item = array();
|
$item = array();
|
||||||
$item['uri'] = $link.substr($element->find('a', $i)->href, 20);
|
$item['uri'] = $this->uri.substr($element->find('a', $i)->href, 20);
|
||||||
$item['title'] = substr($element->find('b', $i)->plaintext, 22);
|
$item['title'] = substr($element->find('b', $i)->plaintext, 22);
|
||||||
$item['content'] = preg_replace('#http://cryptome.org/#', $link, $element->find('b', $i)->innertext);
|
$item['content'] = preg_replace('#http://cryptome.org/#', $this->uri, $element->find('b', $i)->innertext);
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue