2013-08-14 01:27:46 +02:00
|
|
|
<?php
|
|
|
|
class CryptomeBridge extends BridgeAbstract{
|
|
|
|
|
2015-11-05 16:50:18 +01:00
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "BoboTiG";
|
|
|
|
$this->name = "Cryptome";
|
|
|
|
$this->uri = "http://cryptome.org/";
|
|
|
|
$this->description = "Returns the N most recent documents.";
|
|
|
|
|
2016-08-22 01:25:56 +02:00
|
|
|
$this->parameters[] = array(
|
|
|
|
'n'=>array(
|
|
|
|
'name'=>'number of elements',
|
|
|
|
'type'=>'number',
|
|
|
|
'exampleValue'=>10
|
|
|
|
)
|
|
|
|
);
|
2015-11-05 16:50:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-14 01:27:46 +02:00
|
|
|
public function collectData(array $param){
|
|
|
|
$html = '';
|
2014-02-09 10:23:50 +01:00
|
|
|
$num = 20;
|
2013-08-14 14:37:57 +02:00
|
|
|
$link = 'http://cryptome.org/';
|
|
|
|
// If you want HTTPS access instead, uncomment the following line:
|
|
|
|
//$link = 'https://secure.netsolhost.com/cryptome.org/';
|
2013-08-14 01:27:46 +02:00
|
|
|
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request Cryptome.');
|
2014-02-08 18:18:09 +01:00
|
|
|
if (!empty($param['n'])) { /* number of documents */
|
2013-08-14 01:27:46 +02:00
|
|
|
$num = min(max(1, $param['n']+0), $num);
|
|
|
|
}
|
|
|
|
|
2014-02-08 18:18:09 +01:00
|
|
|
|
2013-08-14 01:27:46 +02:00
|
|
|
foreach($html->find('pre') as $element) {
|
|
|
|
for ( $i = 0; $i < $num; ++$i ) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = $link.substr($element->find('a', $i)->href, 20);
|
|
|
|
$item['title'] = substr($element->find('b', $i)->plaintext, 22);
|
|
|
|
$item['content'] = preg_replace('#http://cryptome.org/#', $link, $element->find('b', $i)->innertext);
|
2013-08-14 01:27:46 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 21600; // 6 hours
|
|
|
|
}
|
|
|
|
}
|