mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-06 16:46:30 +02:00
Merge branch 'constantine' of https://framagit.org/peetah/rss-bridge
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
<?php
|
||||
class CryptomeBridge extends BridgeAbstract{
|
||||
|
||||
public $maintainer = "BoboTiG";
|
||||
public $name = "Cryptome";
|
||||
public $uri = "https://cryptome.org/";
|
||||
public $description = "Returns the N most recent documents.";
|
||||
const MAINTAINER = "BoboTiG";
|
||||
const NAME = "Cryptome";
|
||||
const URI = "https://cryptome.org/";
|
||||
const DESCRIPTION = "Returns the N most recent documents.";
|
||||
|
||||
public $parameters = array( array(
|
||||
const PARAMETERS = array( array(
|
||||
'n'=>array(
|
||||
'name'=>'number of elements',
|
||||
'type'=>'number',
|
||||
@@ -16,7 +16,7 @@ class CryptomeBridge extends BridgeAbstract{
|
||||
));
|
||||
|
||||
public function collectData(){
|
||||
$html = $this->getSimpleHTMLDOM($this->uri)
|
||||
$html = $this->getSimpleHTMLDOM(self::URI)
|
||||
or $this->returnServerError('Could not request Cryptome.');
|
||||
$number=$this->getInput('n');
|
||||
if (!empty($number)) { /* number of documents */
|
||||
@@ -27,9 +27,9 @@ class CryptomeBridge extends BridgeAbstract{
|
||||
foreach($html->find('pre') as $element) {
|
||||
for ( $i = 0; $i < $num; ++$i ) {
|
||||
$item = array();
|
||||
$item['uri'] = $this->uri.substr($element->find('a', $i)->href, 20);
|
||||
$item['uri'] = self::URI.substr($element->find('a', $i)->href, 20);
|
||||
$item['title'] = substr($element->find('b', $i)->plaintext, 22);
|
||||
$item['content'] = preg_replace('#http://cryptome.org/#', $this->uri, $element->find('b', $i)->innertext);
|
||||
$item['content'] = preg_replace('#http://cryptome.org/#', self::URI, $element->find('b', $i)->innertext);
|
||||
$this->items[] = $item;
|
||||
}
|
||||
break;
|
||||
|
Reference in New Issue
Block a user