diff --git a/bridges/ABCTabsBridge.php b/bridges/ABCTabsBridge.php
index 8926102..6031d31 100644
--- a/bridges/ABCTabsBridge.php
+++ b/bridges/ABCTabsBridge.php
@@ -12,7 +12,7 @@ class ABCTabsBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
$html = '';
$html = $this->getSimpleHTMLDOM('http://www.abc-tabs.com/tablatures/nouveautes.html') or $this->returnClientError('No results for this query.');
$table = $html->find('table#myTable', 0)->children(1);
diff --git a/bridges/AcrimedBridge.php b/bridges/AcrimedBridge.php
index 6446dc3..8ddbc85 100644
--- a/bridges/AcrimedBridge.php
+++ b/bridges/AcrimedBridge.php
@@ -10,12 +10,12 @@ class AcrimedBridge extends RssExpander{
}
- public function collectData(array $param){
+ public function collectData(){
- parent::collectExpandableDatas($param, "http://www.acrimed.org/spip.php?page=backend");
+ parent::collectExpandableDatas("http://www.acrimed.org/spip.php?page=backend");
}
-
+
protected function parseRSSItem($newsItem) {
$hs = new HTMLSanitizer();
diff --git a/bridges/AllocineFRBridge.php b/bridges/AllocineFRBridge.php
index b1a2027..c9c0f0f 100644
--- a/bridges/AllocineFRBridge.php
+++ b/bridges/AllocineFRBridge.php
@@ -24,14 +24,15 @@ class AllocineFRBridge extends BridgeAbstract{
);
}
- public function collectData(array $params){
+ public function collectData(){
+ $params=$this->parameters[$this->queriedContext];
// Check all parameters
- if(!isset($params['category']))
+ if(!isset($params['category']['value']))
$this->returnClientError('You must specify a valid category (&category= )!');
$category = '';
- switch($params['category']){
+ switch($params['category']['value']){
case 'faux-raccord':
$this->uri = 'http://www.allocine.fr/video/programme-12284/saison-24580/';
$category = 'Faux Raccord';
diff --git a/bridges/AnimeUltimeBridge.php b/bridges/AnimeUltimeBridge.php
index c84ae09..3f0370c 100644
--- a/bridges/AnimeUltimeBridge.php
+++ b/bridges/AnimeUltimeBridge.php
@@ -24,13 +24,14 @@ class AnimeUltimeBridge extends BridgeAbstract {
);
}
- public function collectData(array $param) {
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
//Add type filter if provided
$typeFilter = '';
- if (!empty($param['type'])) {
- if ($param['type'] == 'A' || $param['type'] == 'D' || $param['type'] == 'T') {
- $typeFilter = $param['type'];
+ if (!empty($param['type']['value'])) {
+ if ($param['type']['value'] == 'A' || $param['type']['value'] == 'D' || $param['type']['value'] == 'T') {
+ $typeFilter = $param['type']['value'];
if ($typeFilter == 'A') { $this->filter = 'Anime'; }
if ($typeFilter == 'D') { $this->filter = 'Drama'; }
if ($typeFilter == 'T') { $this->filter = 'Tokusatsu'; }
diff --git a/bridges/ArstechnicaBridge.php b/bridges/ArstechnicaBridge.php
index 95ad678..6c5521f 100644
--- a/bridges/ArstechnicaBridge.php
+++ b/bridges/ArstechnicaBridge.php
@@ -42,7 +42,7 @@ class ArstechnicaBridge extends BridgeAbstract {
return $text;
}
- public function collectData(array $param) {
+ public function collectData(){
$html = $this->getSimpleHTMLDOM('http://feeds.arstechnica.com/arstechnica/index') or $this->returnServerError('Could not request NextInpact.');
$limit = 0;
diff --git a/bridges/Arte7Bridge.php b/bridges/Arte7Bridge.php
index 70c04e4..bc8725b 100644
--- a/bridges/Arte7Bridge.php
+++ b/bridges/Arte7Bridge.php
@@ -45,35 +45,31 @@ class Arte7Bridge extends BridgeAbstract{
);
}
-
- public function collectData(array $param){
-
- function extractVideoset($category='toutes-les-videos', $lang='fr')
- {
- $url = 'http://www.arte.tv/guide/'.$lang.'/plus7/'.$category;
- $input = $this->getContents($url) or die('Could not request ARTE.');
- if(strpos($input, 'categoryVideoSet') !== FALSE)
- {
+ protected function extractVideoset($category='toutes-les-videos', $lang='fr'){
+ $url = 'http://www.arte.tv/guide/'.$lang.'/plus7/'.$category;
+ $input = $this->getContents($url) or die('Could not request ARTE.');
+ if(strpos($input, 'categoryVideoSet') !== FALSE){
$input = explode('categoryVideoSet: ', $input);
$input = explode('}},', $input[1]);
$input = $input[0].'}}';
- }
- else
- {
+ }else{
$input = explode('videoSet: ', $input);
$input = explode('}]},', $input[1]);
$input = $input[0].'}]}';
- }
- $input = json_decode($input, TRUE);
- return $input;
- }
+ }
+ $input = json_decode($input, TRUE);
+ return $input;
+ }
+
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$category='toutes-les-videos'; $lang='fr';
- if (!empty($param['catfr']))
- $category=$param['catfr'];
- if (!empty($param['catde']))
- { $category=$param['catde']; $lang='de'; }
- $input_json = extractVideoset($category, $lang);
+ if (!empty($param['catfr']['value']))
+ $category=$param['catfr']['value'];
+ if (!empty($param['catde']['value']))
+ { $category=$param['catde']['value']; $lang='de'; }
+ $input_json = $this->extractVideoset($category, $lang);
foreach($input_json['videos'] as $element) {
$item = array();
diff --git a/bridges/AskfmBridge.php b/bridges/AskfmBridge.php
index 6ad7466..0ff3655 100644
--- a/bridges/AskfmBridge.php
+++ b/bridges/AskfmBridge.php
@@ -10,15 +10,17 @@ class AskfmBridge extends BridgeAbstract{
$this->parameters["Ask.fm username"] = array(
'u'=>array(
- 'name'=>'Username'
+ 'name'=>'Username',
+ 'required'=>true
)
);
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
- if (isset($param['u'])) {
- $this->request = $param['u'];
+ if (isset($param['u']['value'])) {
+ $this->request = $param['u']['value'];
$html = $this->getSimpleHTMLDOM('http://ask.fm/'.urlencode($this->request).'/answers/more?page=0') or $this->returnServerError('Requested username can\'t be found.');
}
else {
diff --git a/bridges/BandcampBridge.php b/bridges/BandcampBridge.php
index 87a6918..b9dbaa2 100644
--- a/bridges/BandcampBridge.php
+++ b/bridges/BandcampBridge.php
@@ -18,10 +18,11 @@ class BandcampBridge extends BridgeAbstract{
);
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
- if (isset($param['tag'])) {
- $this->request = $param['tag'];
+ if (isset($param['tag']['value'])) {
+ $this->request = $param['tag']['value'];
$html = $this->getSimpleHTMLDOM('http://bandcamp.com/tag/'.urlencode($this->request).'?sort_field=date') or $this->returnServerError('No results for this query.');
}
else {
diff --git a/bridges/BastaBridge.php b/bridges/BastaBridge.php
index 32758c1..ec46b5f 100644
--- a/bridges/BastaBridge.php
+++ b/bridges/BastaBridge.php
@@ -7,7 +7,7 @@ class BastaBridge extends BridgeAbstract{
$this->description = "Returns the newest articles.";
}
- public function collectData(array $param){
+ public function collectData(){
// Replaces all relative image URLs by absolute URLs. Relative URLs always start with 'local/'!
function ReplaceImageUrl($content){
return preg_replace('/src=["\']{1}([^"\']+)/ims', 'src=\'http://www.bastamag.net/$1\'', $content);
diff --git a/bridges/BlaguesDeMerdeBridge.php b/bridges/BlaguesDeMerdeBridge.php
index c137201..0f32467 100644
--- a/bridges/BlaguesDeMerdeBridge.php
+++ b/bridges/BlaguesDeMerdeBridge.php
@@ -10,7 +10,7 @@ class BlaguesDeMerdeBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
$html = $this->getSimpleHTMLDOM('http://www.blaguesdemerde.fr/') or $this->returnServerError('Could not request BDM.');
foreach($html->find('article.joke_contener') as $element) {
diff --git a/bridges/BooruprojectBridge.php b/bridges/BooruprojectBridge.php
index 972ab7b..a4e3aeb 100644
--- a/bridges/BooruprojectBridge.php
+++ b/bridges/BooruprojectBridge.php
@@ -19,29 +19,30 @@ class BooruprojectBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$page = 0; $tags = '';
- if (!empty($param['p'])) {
- $page = (int)preg_replace("/[^0-9]/",'', $param['p']);
+ if (!empty($param['p']['value'])) {
+ $page = (int)preg_replace("/[^0-9]/",'', $param['p']['value']);
$page = $page - 1;
$page = $page * 20;
}
- if (!empty($param['t'])) {
- $tags = '&tags='.urlencode($param['t']);
+ if (!empty($param['t']['value'])) {
+ $tags = '&tags='.urlencode($param['t']['value']);
}
- if (empty($param['i'])) {
+ if (empty($param['i']['value'])) {
$this->returnServerError('Please enter a ***.booru.org instance.');
}
- $html = $this->getSimpleHTMLDOM("http://".$param['i'].".booru.org/index.php?page=post&s=list&pid=".$page.$tags) or $this->returnServerError('Could not request Booruproject.');
+ $html = $this->getSimpleHTMLDOM("http://".$param['i']['value'].".booru.org/index.php?page=post&s=list&pid=".$page.$tags) or $this->returnServerError('Could not request Booruproject.');
foreach($html->find('div[class=content] span') as $element) {
$item = array();
- $item['uri'] = 'http://'.$param['i'].'.booru.org/'.$element->find('a', 0)->href;
+ $item['uri'] = 'http://'.$param['i']['value'].'.booru.org/'.$element->find('a', 0)->href;
$item['postid'] = (int)preg_replace("/[^0-9]/",'', $element->find('a', 0)->getAttribute('id'));
$item['timestamp'] = time();
$item['tags'] = $element->find('img', 0)->getAttribute('title');
- $item['title'] = 'Booruproject '.$param['i'].' | '.$item['postid'];
+ $item['title'] = 'Booruproject '.$param['i']['value'].' | '.$item['postid'];
$item['content'] = '
Tags: '.$item['tags'];
$this->items[] = $item;
}
diff --git a/bridges/CADBridge.php b/bridges/CADBridge.php
index d3d191e..4c695f0 100644
--- a/bridges/CADBridge.php
+++ b/bridges/CADBridge.php
@@ -34,7 +34,7 @@ class CADBridge extends BridgeAbstract{
return '';
}
- public function collectData(array $param){
+ public function collectData(){
function CADUrl($string) {
$html2 = explode("\"", $string);
$string = $html2[1];
diff --git a/bridges/CNETBridge.php b/bridges/CNETBridge.php
index 623a9fd..2fbed35 100644
--- a/bridges/CNETBridge.php
+++ b/bridges/CNETBridge.php
@@ -15,7 +15,8 @@ class CNETBridge extends BridgeAbstract {
);
}
- public function collectData(array $param) {
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
function ExtractFromDelimiters($string, $start, $end) {
if (strpos($string, $start) !== false) {
@@ -42,8 +43,8 @@ class CNETBridge extends BridgeAbstract {
return $article_html;
}
- if (!empty($param['topic']))
- $this->topicName = $param['topic'];
+ if (!empty($param['topic']['value']))
+ $this->topicName = $param['topic']['value'];
$pageUrl = 'http://www.cnet.com/'.(empty($this->topicName) ? '' : 'topics/'.$this->topicName.'/');
$html = $this->getSimpleHTMLDOM($pageUrl) or $this->returnServerError('Could not request CNET: '.$pageUrl);
diff --git a/bridges/CastorusBridge.php b/bridges/CastorusBridge.php
index a682ae0..73e8a1a 100644
--- a/bridges/CastorusBridge.php
+++ b/bridges/CastorusBridge.php
@@ -73,12 +73,13 @@ class CastorusBridge extends BridgeAbstract {
return $price->innertext;
}
- public function collectData(array $params){
- if(isset($params['zip']))
- $zip_filter = trim($params['zip']);
+ public function collectData(){
+ $params=$this->parameters[$this->queriedContext];
+ if(isset($params['zip']['value']))
+ $zip_filter = trim($params['zip']['value']);
- if(isset($params['city']))
- $city_filter = trim($params['city']);
+ if(isset($params['city']['value']))
+ $city_filter = trim($params['city']['value']);
$html = $this->getSimpleHTMLDOM($this->uri);
diff --git a/bridges/CollegeDeFranceBridge.php b/bridges/CollegeDeFranceBridge.php
index d9b7266..241e6f3 100644
--- a/bridges/CollegeDeFranceBridge.php
+++ b/bridges/CollegeDeFranceBridge.php
@@ -8,7 +8,7 @@ class CollegeDeFranceBridge extends BridgeAbstract{
$this->description = "Returns the latest audio and video from CollegeDeFrance";
}
- public function collectData(array $param) {
+ public function collectData(){
$months = array(
'01' => 'janv.',
'02' => 'févr.',
diff --git a/bridges/CommonDreamsBridge.php b/bridges/CommonDreamsBridge.php
index d10748c..21dfcbe 100644
--- a/bridges/CommonDreamsBridge.php
+++ b/bridges/CommonDreamsBridge.php
@@ -16,7 +16,7 @@ class CommonDreamsBridge extends BridgeAbstract{
return $text;
}
- public function collectData(array $param){
+ public function collectData(){
function CommonDreamsUrl($string) {
$html2 = explode(" ", $string);
diff --git a/bridges/CopieDoubleBridge.php b/bridges/CopieDoubleBridge.php
index 80fcd45..a4420e6 100644
--- a/bridges/CopieDoubleBridge.php
+++ b/bridges/CopieDoubleBridge.php
@@ -11,7 +11,7 @@ class CopieDoubleBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
$html = $this->getSimpleHTMLDOM('http://www.copie-double.com/') or $this->returnServerError('Could not request CopieDouble.');
$table = $html->find('table table', 2);
diff --git a/bridges/CourrierInternationalBridge.php b/bridges/CourrierInternationalBridge.php
index e921d81..62c8fee 100644
--- a/bridges/CourrierInternationalBridge.php
+++ b/bridges/CourrierInternationalBridge.php
@@ -10,7 +10,7 @@ class CourrierInternationalBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
$html = '';
diff --git a/bridges/CpasbienBridge.php b/bridges/CpasbienBridge.php
index 1f47045..d41d442 100644
--- a/bridges/CpasbienBridge.php
+++ b/bridges/CpasbienBridge.php
@@ -1,23 +1,6 @@
MAX_FILE_SIZE)
- {
- return false;
- }
- // The second parameter can force the selectors to all be lowercase.
- $dom->load($contents, $lowercase, $stripRN);
- return $dom;
-}
-
class CpasbienBridge extends HttpCachingBridgeAbstract{
- private $request;
-
public function loadMetadatas() {
$this->maintainer = "lagaisse";
@@ -36,14 +19,13 @@ class CpasbienBridge extends HttpCachingBridgeAbstract{
}
- public function collectData(array $param){
- $this->loadMetadatas();
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
- if (isset($param['q'])) { /* keyword search mode */
- $this->request = str_replace(" ","-",trim($param['q']));
- $html = $this->getSimpleHTMLDOM($this->uri.'/recherche/'.urlencode($this->request).'.html') or $this->returnServerError('No results for this query.');
- }
- else {
+ if (isset($param['q']['value'])) { /* keyword search mode */
+ $request = str_replace(" ","-",trim($param['q']['value']));
+ $html = $this->getSimpleHTMLDOM($this->uri.'/recherche/'.urlencode($request).'.html') or $this->returnServerError('No results for this query.');
+ } else {
$this->returnClientError('You must specify a keyword (?q=...).');
}
@@ -51,7 +33,7 @@ class CpasbienBridge extends HttpCachingBridgeAbstract{
if ($episode->getAttribute('class')=='ligne0' || $episode->getAttribute('class')=='ligne1')
{
- $htmlepisode=content_get_html($this->get_cached($episode->find('a', 0)->getAttribute('href')));
+ $htmlepisode=str_get_html($this->get_cached($episode->find('a', 0)->getAttribute('href')));
$item = array();
$item['author'] = $episode->find('a', 0)->text();
@@ -60,9 +42,11 @@ class CpasbienBridge extends HttpCachingBridgeAbstract{
$textefiche=$htmlepisode->find('#textefiche', 0)->find('p',1);
if (isset($textefiche)) {
$item['content'] = $textefiche->text();
- }
- else {
- $item['content'] = $htmlepisode->find('#textefiche', 0)->find('p',0)->text();
+ } else {
+ $p=$htmlepisode->find('#textefiche',0)->find('p');
+ if(!empty($p)){
+ $item['content'] = $htmlepisode->find('#textefiche', 0)->find('p',0)->text();
+ }
}
$item['id'] = $episode->find('a', 0)->getAttribute('href');
@@ -70,13 +54,12 @@ class CpasbienBridge extends HttpCachingBridgeAbstract{
$this->items[] = $item;
}
}
-
-
}
public function getName(){
- return (!empty($this->request) ? $this->request .' - ' : '') . $this->name;
+ return $this->parameters[$this->queriedContext]['q']['value']
+ .' : '.$this->name;
}
public function getCacheDuration(){
diff --git a/bridges/CryptomeBridge.php b/bridges/CryptomeBridge.php
index 4f40d61..daf404f 100644
--- a/bridges/CryptomeBridge.php
+++ b/bridges/CryptomeBridge.php
@@ -18,7 +18,8 @@ class CryptomeBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
$num = 20;
$link = 'http://cryptome.org/';
@@ -26,8 +27,8 @@ class CryptomeBridge extends BridgeAbstract{
//$link = 'https://secure.netsolhost.com/cryptome.org/';
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request Cryptome.');
- if (!empty($param['n'])) { /* number of documents */
- $num = min(max(1, $param['n']+0), $num);
+ if (!empty($param['n']['value'])) { /* number of documents */
+ $num = min(max(1, $param['n']['value']+0), $num);
}
diff --git a/bridges/DailymotionBridge.php b/bridges/DailymotionBridge.php
index ead3763..0a73df8 100644
--- a/bridges/DailymotionBridge.php
+++ b/bridges/DailymotionBridge.php
@@ -17,11 +17,16 @@ class DailymotionBridge extends BridgeAbstract{
$this->parameters["By playlist id"] = array(
'p'=>array(
'name'=>'playlist id',
- 'type'=>'text')
+ 'type'=>'text',
+ 'required'=>true
+ )
);
$this->parameters["From search results"] = array(
- 's'=>array('name'=>'Search keyword'),
+ 's'=>array(
+ 'name'=>'Search keyword',
+ 'required'=>true
+ ),
'pa'=>array(
'name'=>'Page',
'type'=>'number'
@@ -40,21 +45,22 @@ class DailymotionBridge extends BridgeAbstract{
return $metadata;
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
$limit = 5;
$count = 0;
- if (isset($param['u'])) { // user timeline mode
- $this->request = $param['u'];
+ if (isset($param['u']['value'])) { // user timeline mode
+ $this->request = $param['u']['value'];
$html = $this->getSimpleHTMLDOM('http://www.dailymotion.com/user/'.urlencode($this->request).'/1') or $this->returnServerError('Could not request Dailymotion.');
}
- else if (isset($param['p'])) { // playlist mode
- $this->request = strtok($param['p'], '_');
+ else if (isset($param['p']['value'])) { // playlist mode
+ $this->request = strtok($param['p']['value'], '_');
$html = $this->getSimpleHTMLDOM('http://www.dailymotion.com/playlist/'.urlencode($this->request).'') or $this->returnServerError('Could not request Dailymotion.');
}
- else if (isset($param['s'])) { // search mode
- $this->request = $param['s']; $page = 1; if (isset($param['pa'])) $page = (int)preg_replace("/[^0-9]/",'', $param['pa']);
+ else if (isset($param['s']['value'])) { // search mode
+ $this->request = $param['s']['value']; $page = 1; if (isset($param['pa']['value'])) $page = (int)preg_replace("/[^0-9]/",'', $param['pa']['value']);
$html = $this->getSimpleHTMLDOM('http://www.dailymotion.com/search/'.urlencode($this->request).'/'.$page.'') or $this->returnServerError('Could not request Dailymotion.');
}
else {
diff --git a/bridges/DanbooruBridge.php b/bridges/DanbooruBridge.php
index 7b451de..f41bc77 100644
--- a/bridges/DanbooruBridge.php
+++ b/bridges/DanbooruBridge.php
@@ -14,13 +14,14 @@ class DanbooruBridge extends BridgeAbstract{
);
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$page = 1;$tags='';
- if (isset($param['p'])) {
- $page = (int)preg_replace("/[^0-9]/",'', $param['p']);
+ if (isset($param['p']['value'])) {
+ $page = (int)preg_replace("/[^0-9]/",'', $param['p']['value']);
}
- if (isset($param['t'])) {
- $tags = urlencode($param['t']);
+ if (isset($param['t']['value'])) {
+ $tags = urlencode($param['t']['value']);
}
$html = $this->getSimpleHTMLDOM("http://donmai.us/posts?&page=$page&tags=$tags") or $this->returnServerError('Could not request Danbooru.');
foreach($html->find('div[id=posts] article') as $element) {
diff --git a/bridges/DansTonChatBridge.php b/bridges/DansTonChatBridge.php
index 1492c19..83f6cd2 100644
--- a/bridges/DansTonChatBridge.php
+++ b/bridges/DansTonChatBridge.php
@@ -10,7 +10,7 @@ class DansTonChatBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
$html = '';
$link = 'http://danstonchat.com/latest.html';
diff --git a/bridges/DauphineLibereBridge.php b/bridges/DauphineLibereBridge.php
index f765274..d97a0a5 100644
--- a/bridges/DauphineLibereBridge.php
+++ b/bridges/DauphineLibereBridge.php
@@ -40,7 +40,8 @@ class DauphineLibereBridge extends BridgeAbstract {
return $text;
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
// Simulate Mozilla user-agent to fix error 403 (Forbidden)
$opts = array('http' =>
@@ -52,8 +53,8 @@ class DauphineLibereBridge extends BridgeAbstract {
$context = stream_context_create($opts);
- if (isset($param['u'])) { /* user timeline mode */
- $this->request = $param['u'];
+ if (isset($param['u']['value'])) { /* user timeline mode */
+ $this->request = $param['u']['value'];
$html = $this->getSimpleHTMLDOM('http://www.ledauphine.com/'.$this->request.'/rss',false,$context) or $this->returnServerError('Could not request DauphineLibere.');
}
else {
diff --git a/bridges/DemoBridge.php b/bridges/DemoBridge.php
index 6ffb80a..f6d6efb 100644
--- a/bridges/DemoBridge.php
+++ b/bridges/DemoBridge.php
@@ -35,7 +35,7 @@ class DemoBridge extends BridgeAbstract{
);
}
- public function collectData(array $param){
+ public function collectData(){
$item = array();
$item['author'] = "Me!";
diff --git a/bridges/DeveloppezDotComBridge.php b/bridges/DeveloppezDotComBridge.php
index a4c2a52..ca18fe3 100644
--- a/bridges/DeveloppezDotComBridge.php
+++ b/bridges/DeveloppezDotComBridge.php
@@ -40,7 +40,7 @@ class DeveloppezDotComBridge extends BridgeAbstract{
return trim($text);
}
- public function collectData(array $param){
+ public function collectData(){
$rssFeed = $this->getSimpleHTMLDOM('http://www.developpez.com/index/rss') or $this->returnServerError('Could not request http://www.developpez.com/index/rss');
$limit = 0;
diff --git a/bridges/DilbertBridge.php b/bridges/DilbertBridge.php
index 426343c..e0c23e6 100644
--- a/bridges/DilbertBridge.php
+++ b/bridges/DilbertBridge.php
@@ -10,7 +10,7 @@ class DilbertBridge extends BridgeAbstract {
}
- public function collectData(array $param) {
+ public function collectData(){
$html = $this->getSimpleHTMLDOM($this->getURI()) or $this->returnServerError('Could not request Dilbert: '.$this->getURI());
diff --git a/bridges/DollbooruBridge.php b/bridges/DollbooruBridge.php
index 865fbff..fb3a5da 100644
--- a/bridges/DollbooruBridge.php
+++ b/bridges/DollbooruBridge.php
@@ -18,13 +18,14 @@ class DollbooruBridge extends BridgeAbstract{
);
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$page = 0;$tags='';
- if (isset($param['p'])) {
- $page = (int)preg_replace("/[^0-9]/",'', $param['p']);
+ if (isset($param['p']['value'])) {
+ $page = (int)preg_replace("/[^0-9]/",'', $param['p']['value']);
}
- if (isset($param['t'])) {
- $tags = urlencode($param['t']);
+ if (isset($param['t']['value'])) {
+ $tags = urlencode($param['t']['value']);
}
$html = $this->getSimpleHTMLDOM("http://dollbooru.org/post/list/$tags/$page") or $this->returnServerError('Could not request Dollbooru.');
diff --git a/bridges/DuckDuckGoBridge.php b/bridges/DuckDuckGoBridge.php
index 3028202..1522978 100644
--- a/bridges/DuckDuckGoBridge.php
+++ b/bridges/DuckDuckGoBridge.php
@@ -15,9 +15,10 @@ class DuckDuckGoBridge extends BridgeAbstract{
);
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
- $link = 'http://duckduckgo.com/html/?q='.$param['u'].'+sort:date';
+ $link = 'http://duckduckgo.com/html/?q='.$param['u']['value'].'+sort:date';
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request DuckDuckGo.');
diff --git a/bridges/EZTVBridge.php b/bridges/EZTVBridge.php
index 847e70a..83b93d1 100644
--- a/bridges/EZTVBridge.php
+++ b/bridges/EZTVBridge.php
@@ -17,7 +17,8 @@ class EZTVBridge extends BridgeAbstract{
);
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
// Make timestamp from relative released time in table
function makeTimestamp($relativeReleaseTime){
@@ -33,11 +34,11 @@ class EZTVBridge extends BridgeAbstract{
}
// Check for ID provided
- if (!isset($param['i']))
+ if (!isset($param['i']['value']))
$this->returnClientError('You must provide a list of ID (?i=showID1,showID2,...)');
// Loop on show ids
- $showList = explode(",",$param['i']);
+ $showList = explode(",",$param['i']['value']);
foreach($showList as $showID){
// Get show page
diff --git a/bridges/EliteDangerousGalnetBridge.php b/bridges/EliteDangerousGalnetBridge.php
index 13dcf50..9e9400d 100644
--- a/bridges/EliteDangerousGalnetBridge.php
+++ b/bridges/EliteDangerousGalnetBridge.php
@@ -10,7 +10,7 @@ class EliteDangerousGalnetBridge extends BridgeAbstract
$this->description = "Returns the latest page of news from Galnet";
}
- public function collectData(array $param)
+ public function collectData()
{
$html = $this->getSimpleHTMLDOM('https://community.elitedangerous.com/galnet') or $this->returnServerError('Error while downloading the website content');
foreach($html->find('div.article') as $element) {
diff --git a/bridges/ElsevierBridge.php b/bridges/ElsevierBridge.php
index b336f4c..25a9446 100644
--- a/bridges/ElsevierBridge.php
+++ b/bridges/ElsevierBridge.php
@@ -58,9 +58,10 @@ class ElsevierBridge extends BridgeAbstract{
return '';
}
- public function collectData(array $param){
- $uri = 'http://www.journals.elsevier.com/' . $param['j'] . '/recent-articles/';
- $html = $this->getSimpleHTMLDOM($uri) or $this->returnServerError('No results for Elsevier journal '.$param['j']);
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
+ $uri = 'http://www.journals.elsevier.com/' . $param['j']['value'] . '/recent-articles/';
+ $html = $this->getSimpleHTMLDOM($uri) or $this->returnServerError('No results for Elsevier journal '.$param['j']['value']);
foreach($html->find('.pod-listing') as $article){
$item = array();
diff --git a/bridges/EstCeQuonMetEnProdBridge.php b/bridges/EstCeQuonMetEnProdBridge.php
index be1fe1a..383d771 100644
--- a/bridges/EstCeQuonMetEnProdBridge.php
+++ b/bridges/EstCeQuonMetEnProdBridge.php
@@ -8,7 +8,7 @@ class EstCeQuonMetEnProdBridge extends BridgeAbstract {
$this->description = 'Should we put a website in production today? (French)';
}
- public function collectData(array $param) {
+ public function collectData(){
function ExtractFromDelimiters($string, $start, $end) {
if (strpos($string, $start) !== false) {
$section_retrieved = substr($string, strpos($string, $start) + strlen($start));
diff --git a/bridges/FacebookBridge.php b/bridges/FacebookBridge.php
index efa49f0..4c67c50 100644
--- a/bridges/FacebookBridge.php
+++ b/bridges/FacebookBridge.php
@@ -16,7 +16,8 @@ class FacebookBridge extends BridgeAbstract{
);
}
- public function collectData(array $param) {
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
//Extract a string using start and end delimiters
function ExtractFromDelimiters($string, $start, $end) {
@@ -104,11 +105,11 @@ class FacebookBridge extends BridgeAbstract{
//Retrieve page contents
if (is_null($html)) {
- if (isset($param['u'])) {
- if (!strpos($param['u'], "/")) {
- $html = $this->getSimpleHTMLDOM('https://www.facebook.com/'.urlencode($param['u']).'?_fb_noscript=1') or $this->returnServerError('No results for this query.');
+ if (isset($param['u']['value'])) {
+ if (!strpos($param['u']['value'], "/")) {
+ $html = $this->getSimpleHTMLDOM('https://www.facebook.com/'.urlencode($param['u']['value']).'?_fb_noscript=1') or $this->returnServerError('No results for this query.');
} else {
- $html = $this->getSimpleHTMLDOM('https://www.facebook.com/pages/'.$param['u'].'?_fb_noscript=1') or $this->returnServerError('No results for this query.');
+ $html = $this->getSimpleHTMLDOM('https://www.facebook.com/pages/'.$param['u']['value'].'?_fb_noscript=1') or $this->returnServerError('No results for this query.');
}
} else {
$this->returnClientError('You must specify a Facebook username.');
@@ -148,7 +149,7 @@ class FacebookBridge extends BridgeAbstract{
if(isset($element)) {
$author = str_replace(' | Facebook', '', $html->find('title#pageTitle', 0)->innertext);
- $profilePic = 'https://graph.facebook.com/'.$param['u'].'/picture?width=200&height=200';
+ $profilePic = 'https://graph.facebook.com/'.$param['u']['value'].'/picture?width=200&height=200';
$this->name = $author;
foreach($element->children() as $post) {
@@ -207,8 +208,8 @@ class FacebookBridge extends BridgeAbstract{
}
public function setDatas(array $param){
- if (isset($param['captcha_response']))
- unset($param['captcha_response']);
+ if (isset($param['captcha_response']['value']))
+ unset($param['captcha_response']['value']);
parent::setDatas($param);
}
diff --git a/bridges/FierPandaBridge.php b/bridges/FierPandaBridge.php
index 5a432fc..44a792a 100644
--- a/bridges/FierPandaBridge.php
+++ b/bridges/FierPandaBridge.php
@@ -10,7 +10,7 @@ Class FierPandaBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
$link = 'http://www.fier-panda.fr/';
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request Fier Panda.');
diff --git a/bridges/FlickrExploreBridge.php b/bridges/FlickrExploreBridge.php
index 25760fd..09f946e 100644
--- a/bridges/FlickrExploreBridge.php
+++ b/bridges/FlickrExploreBridge.php
@@ -10,7 +10,7 @@ class FlickrExploreBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
$html = $this->getSimpleHTMLDOM('https://www.flickr.com/explore') or $this->returnServerError('Could not request Flickr.');
foreach($html->find('.photo-list-photo-view') as $element) {
diff --git a/bridges/FlickrTagBridge.php b/bridges/FlickrTagBridge.php
index 424f989..2c6158d 100644
--- a/bridges/FlickrTagBridge.php
+++ b/bridges/FlickrTagBridge.php
@@ -17,14 +17,15 @@ class FlickrTagBridge extends BridgeAbstract{
);
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = $this->getSimpleHTMLDOM('http://www.flickr.com/search/?q=vendee&s=rec') or $this->returnServerError('Could not request Flickr.');
- if (isset($param['q'])) { /* keyword search mode */
- $this->request = $param['q'];
+ if (isset($param['q']['value'])) { /* keyword search mode */
+ $this->request = $param['q']['value'];
$html = $this->getSimpleHTMLDOM('http://www.flickr.com/search/?q='.urlencode($this->request).'&s=rec') or $this->returnServerError('No results for this query.');
}
- elseif (isset($param['u'])) { /* user timeline mode */
- $this->request = $param['u'];
+ elseif (isset($param['u']['value'])) { /* user timeline mode */
+ $this->request = $param['u']['value'];
$html = $this->getSimpleHTMLDOM('http://www.flickr.com/photos/'.urlencode($this->request).'/') or $this->returnServerError('Requested username can\'t be found.');
}
diff --git a/bridges/FootitoBridge.php b/bridges/FootitoBridge.php
index 525aa9e..326cbd5 100644
--- a/bridges/FootitoBridge.php
+++ b/bridges/FootitoBridge.php
@@ -10,7 +10,7 @@ class FootitoBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
$html = $this->getSimpleHTMLDOM('http://www.footito.fr/') or $this->returnServerError('Could not request Footito.');
foreach($html->find('div.post') as $element) {
diff --git a/bridges/FourchanBridge.php b/bridges/FourchanBridge.php
index 4b3a9b0..976d8db 100644
--- a/bridges/FourchanBridge.php
+++ b/bridges/FourchanBridge.php
@@ -14,12 +14,13 @@ class FourchanBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
- if (!isset($param['t']))
+ if (!isset($param['t']['value']))
$this->returnClientError('You must specify the thread URL (?t=...)');
- $thread = parse_url($param['t']) or $this->returnClientError('This URL seems malformed, please check it.');
+ $thread = parse_url($param['t']['value']) or $this->returnClientError('This URL seems malformed, please check it.');
if($thread['host'] !== 'boards.4chan.org')
$this->returnClientError('4chan thread URL only.');
diff --git a/bridges/FreenewsBridge.php b/bridges/FreenewsBridge.php
index 871d10b..727f9f5 100644
--- a/bridges/FreenewsBridge.php
+++ b/bridges/FreenewsBridge.php
@@ -8,14 +8,10 @@ class FreenewsBridge extends RssExpander {
$this->name = "Freenews";
$this->uri = "http://freenews.fr";
$this->description = "Un site d'actualité pour les freenautes (mais ne parlant pas que de la freebox). Ne rentrez pas d'id si vous voulez accéder aux actualités générales.";
-
- $this->parameters[] = array(
- 'id'=>array('name'=>'Id de la rubrique (sans le \'-\')')
- );
}
- public function collectData(array $param){
- parent::collectExpandableDatas($param, FREENEWS_RSS);
+ public function collectData(){
+ parent::collectExpandableDatas(FREENEWS_RSS);
}
protected function parseRSSItem($newsItem) {
diff --git a/bridges/FuturaSciencesBridge.php b/bridges/FuturaSciencesBridge.php
index 2d0869c..0603393 100644
--- a/bridges/FuturaSciencesBridge.php
+++ b/bridges/FuturaSciencesBridge.php
@@ -81,7 +81,8 @@ class FuturaSciencesBridge extends BridgeAbstract {
);
}
- public function collectData(array $param) {
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
function StripCDATA($string) {
$string = str_replace('getURI().'rss/'.$param['feed'].'.xml';
- if (empty($param['feed']))
+ $url = $this->getURI().'rss/'.$param['feed']['value'].'.xml';
+ if (empty($param['feed']['value']))
$this->returnClientError('Please select a feed to display.'.$url);
- if ($param['feed'] !== preg_replace('/[^a-zA-Z-\/]+/', '', $param['feed']) || substr_count($param['feed'], '/') > 1 || strlen($param['feed'] > 64))
+ if ($param['feed']['value'] !== preg_replace('/[^a-zA-Z-\/]+/', '', $param['feed']['value']) || substr_count($param['feed']['value'], '/') > 1 || strlen($param['feed']['value'] > 64))
$this->returnClientError('Invalid "feed" parameter.'.$url);
$html = $this->getSimpleHTMLDOM($url) or $this->returnServerError('Could not request Futura-Sciences: '.$url);
diff --git a/bridges/GBAtempBridge.php b/bridges/GBAtempBridge.php
index 4c1bf21..f8fc9ff 100644
--- a/bridges/GBAtempBridge.php
+++ b/bridges/GBAtempBridge.php
@@ -63,11 +63,12 @@ class GBAtempBridge extends BridgeAbstract {
return $this->cleanup_post_content($content, $site_url);
}
- public function collectData(array $param) {
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$typeFilter = '';
- if (!empty($param['type'])) {
- if ($param['type'] == 'N' || $param['type'] == 'R' || $param['type'] == 'T' || $param['type'] == 'F') {
- $typeFilter = $param['type'];
+ if (!empty($param['type']['value'])) {
+ if ($param['type']['value'] == 'N' || $param['type']['value'] == 'R' || $param['type']['value'] == 'T' || $param['type']['value'] == 'F') {
+ $typeFilter = $param['type']['value'];
if ($typeFilter == 'N') { $this->filter = 'News'; }
if ($typeFilter == 'R') { $this->filter = 'Review'; }
if ($typeFilter == 'T') { $this->filter = 'Tutorial'; }
diff --git a/bridges/GawkerBridge.php b/bridges/GawkerBridge.php
index ea89af3..6012220 100644
--- a/bridges/GawkerBridge.php
+++ b/bridges/GawkerBridge.php
@@ -12,7 +12,10 @@ class GawkerBridge extends RssExpander{
$this->description = "A bridge allowing access to any of the numerous Gawker media blogs (Lifehacker, deadspin, Kotaku, Jezebel, and so on. Notice you have to give its id to find the RSS stream in gawker maze";
$this->parameters[] = array(
- 'site'=>array('name'=>'site id to put in uri between feeds.gawker.com and /full .. which is obviously not full AT ALL')
+ 'site'=>array(
+ 'name'=>'site id to put in uri between feeds.gawker.com and /full .. which is obviously not full AT ALL',
+ 'required'=>true
+ )
);
}
@@ -21,15 +24,16 @@ class GawkerBridge extends RssExpander{
return RSS_PREFIX.$name.RSS_SUFFIX;
}
- public function collectData(array $param){
- if (empty($param['site'])) {
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
+ if (empty($param['site']['value'])) {
trigger_error("If no site is provided, nothing is gonna happen", E_USER_ERROR);
} else {
- $this->name = $param['site'];
- $url = $this->toURI(strtolower($param['site']));
+ $this->name = $param['site']['value'];
+ $url = $this->toURI(strtolower($param['site']['value']));
}
$this->debugMessage("loading feed from ".$this->getURI());
- parent::collectExpandableDatas($param, $url);
+ parent::collectExpandableDatas($url);
}
protected function parseRSSItem($newsItem) {
diff --git a/bridges/GelbooruBridge.php b/bridges/GelbooruBridge.php
index d463975..94d3594 100644
--- a/bridges/GelbooruBridge.php
+++ b/bridges/GelbooruBridge.php
@@ -18,15 +18,16 @@ class GelbooruBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$page = 0;
- if (isset($param['p'])) {
- $page = (int)preg_replace("/[^0-9]/",'', $param['p']);
+ if (isset($param['p']['value'])) {
+ $page = (int)preg_replace("/[^0-9]/",'', $param['p']['value']);
$page = $page - 1;
$page = $page * 63;
}
- if (isset($param['t'])) {
- $tags = urlencode($param['t']);
+ if (isset($param['t']['value'])) {
+ $tags = urlencode($param['t']['value']);
}
$html = $this->getSimpleHTMLDOM("http://gelbooru.com/index.php?page=post&s=list&tags=$tags&pid=$page") or $this->returnServerError('Could not request Gelbooru.');
diff --git a/bridges/GiphyBridge.php b/bridges/GiphyBridge.php
index 16c8f8c..b294969 100644
--- a/bridges/GiphyBridge.php
+++ b/bridges/GiphyBridge.php
@@ -10,35 +10,34 @@ class GiphyBridge extends BridgeAbstract{
$this->uri = "http://giphy.com/";
$this->description = "Bridge for giphy.com";
- $this->parameters["By tag"] = array(
- 's'=>array('name'=>'search tag')
+ $this->parameters[] = array(
+ 's'=>array('name'=>'search tag'),
+ 'n'=>array(
+ 'name'=>'max number of returned items',
+ 'type'=>'number'
+ )
);
- $this->parameters["Without tag"] = array(
- 'n'=>array(
- 'name'=>'max number of returned items',
- 'type'=>'number'
- )
- );
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
$base_url = 'http://giphy.com';
- if (isset($param['s'])) { /* keyword search mode */
- $html = $this->getSimpleHTMLDOM($base_url.'/search/'.urlencode($param['s'].'/')) or $this->returnServerError('No results for this query.');
+ if (isset($param['s']['value'])) { /* keyword search mode */
+ $html = $this->getSimpleHTMLDOM($base_url.'/search/'.urlencode($param['s']['value'].'/')) or $this->returnServerError('No results for this query.');
}
else {
$this->returnClientError('You must specify a search worf (?s=...).');
}
$max = GIPHY_LIMIT;
- if (isset($param['n'])) {
- $max = (integer) $param['n'];
+ if (isset($param['n']['value'])) {
+ $max = (integer) $param['n']['value'];
}
$limit = 0;
- $kw = urlencode($param['s']);
+ $kw = urlencode($param['s']['value']);
foreach($html->find('div.hoverable-gif') as $entry) {
if($limit < $max) {
$node = $entry->first_child();
diff --git a/bridges/GithubIssueBridge.php b/bridges/GithubIssueBridge.php
index 9bfddb8..3374ed8 100644
--- a/bridges/GithubIssueBridge.php
+++ b/bridges/GithubIssueBridge.php
@@ -28,12 +28,13 @@ class GithubIssueBridge extends BridgeAbstract{
);
}
- public function collectData(array $param){
- $uri = 'https://github.com/'.$param['u'].'/'.$param['p'].'/issues/'.(isset($param['i'])?$param['i']:'');
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
+ $uri = 'https://github.com/'.$param['u']['value'].'/'.$param['p']['value'].'/issues/'.(isset($param['i']['value'])?$param['i']['value']:'');
$html = $this->getSimpleHTMLDOM($uri)
- or $this->returnServerError('No results for Github Issue '.$param['i'].' in project '.$param['u'].'/'.$param['p']);
+ or $this->returnServerError('No results for Github Issue '.$param['i']['value'].' in project '.$param['u']['value'].'/'.$param['p']['value']);
- if(isset($param['i'])){
+ if(isset($param['i']['value'])){
foreach($html->find('.js-comment-container') as $comment){
$item = array();
diff --git a/bridges/GitlabCommitsBridge.php b/bridges/GitlabCommitsBridge.php
index 762e642..61c15b5 100644
--- a/bridges/GitlabCommitsBridge.php
+++ b/bridges/GitlabCommitsBridge.php
@@ -33,29 +33,30 @@ class GitlabCommitsBridge extends BridgeAbstract{
);
}
- public function collectData(array $param){
- $uri = $param['uri'].'/'.$param['u'].'/'.$param['p'].'/commits/';
- if(isset($param['b'])){
- $uri.=$param['b'];
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
+ $uri = $param['uri']['value'].'/'.$param['u']['value'].'/'.$param['p']['value'].'/commits/';
+ if(isset($param['b']['value'])){
+ $uri.=$param['b']['value'];
}else{
$uri.='master';
}
$html = $this->getSimpleHTMLDOM($uri)
- or $this->returnServerError('No results for Gitlab Commits of project '.$param['uri'].'/'.$param['u'].'/'.$param['p']);
+ or $this->returnServerError('No results for Gitlab Commits of project '.$param['uri']['value'].'/'.$param['u']['value'].'/'.$param['p']['value']);
foreach($html->find('li.commit') as $commit){
$item = array();
- $item['uri']=$param['uri'];
+ $item['uri']=$param['uri']['value'];
foreach($commit->getElementsByTagName('a') as $a){
$classes=explode(' ',$a->getAttribute("class"));
if(in_array('commit-short-id',$classes) ||
in_array('commit_short_id',$classes)){
$href=$a->getAttribute('href');
- $item['uri'].=substr($href,strpos($href,'/'.$param['u'].'/'.$param['p']));
+ $item['uri'].=substr($href,strpos($href,'/'.$param['u']['value'].'/'.$param['p']['value']));
}
if(in_array('commit-row-message',$classes)){
$item['title']=$a->plaintext;
diff --git a/bridges/GizmodoFRBridge.php b/bridges/GizmodoFRBridge.php
index 8bd3217..ce4e96d 100644
--- a/bridges/GizmodoFRBridge.php
+++ b/bridges/GizmodoFRBridge.php
@@ -10,7 +10,7 @@ class GizmodoFRBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
function GizmodoFRExtractContent($url) {
$articleHTMLContent = $this->getSimpleHTMLDOM($url);
diff --git a/bridges/GooglePlusPostBridge.php b/bridges/GooglePlusPostBridge.php
index 2b35c9b..56af452 100644
--- a/bridges/GooglePlusPostBridge.php
+++ b/bridges/GooglePlusPostBridge.php
@@ -12,21 +12,24 @@ class GooglePlusPostBridge extends BridgeAbstract
$this->description = "Returns user public post (without API).";
$this->parameters[] = array(
- 'username'=>array('name'=>'username or Id')
+ 'username'=>array(
+ 'name'=>'username or Id',
+ 'required'=>true
+ )
);
}
const GOOGLE_PLUS_BASE_URL = 'https://plus.google.com/';
- public function collectData(array $param)
+ public function collectData()
{
- if (!isset($param['username']))
+ if (!isset($param['username']['value']))
{
$this->returnClientError('You must specify a username (?username=...).');
}
- $this->request = $param['username'];
+ $this->request = $param['username']['value'];
// get content parsed
// $html = $this->getSimpleHTMLDOM(__DIR__ . '/../posts2.html'
$html = $this->getSimpleHTMLDOM(self::GOOGLE_PLUS_BASE_URL . urlencode($this->request) . '/posts'
diff --git a/bridges/GoogleSearchBridge.php b/bridges/GoogleSearchBridge.php
index a374640..5585cea 100644
--- a/bridges/GoogleSearchBridge.php
+++ b/bridges/GoogleSearchBridge.php
@@ -25,11 +25,12 @@ class GoogleSearchBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
- if (isset($param['q'])) { /* keyword search mode */
- $this->request = $param['q'];
+ if (isset($param['q']['value'])) { /* keyword search mode */
+ $this->request = $param['q']['value'];
$html = $this->getSimpleHTMLDOM('https://www.google.com/search?q=' . urlencode($this->request) . '&num=100&complete=0&tbs=qdr:y,sbd:1') or $this->returnServerError('No results for this query.');
}
else{
diff --git a/bridges/GuruMedBridge.php b/bridges/GuruMedBridge.php
index a58ee64..6561755 100644
--- a/bridges/GuruMedBridge.php
+++ b/bridges/GuruMedBridge.php
@@ -14,7 +14,7 @@ class GuruMedBridge extends BridgeAbstract{
return $string;
}
- public function collectData(array $param){
+ public function collectData(){
$html = $this->getSimpleHTMLDOM('http://gurumed.org/feed') or $this->returnServerError('Could not request Gurumed.');
$limit = 0;
diff --git a/bridges/HDWallpapersBridge.php b/bridges/HDWallpapersBridge.php
index 1aa8ff7..4aeb596 100644
--- a/bridges/HDWallpapersBridge.php
+++ b/bridges/HDWallpapersBridge.php
@@ -21,12 +21,13 @@ class HDWallpapersBridge extends BridgeAbstract {
);
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
$baseUri = 'http://www.hdwallpapers.in';
- $this->category = $param['c'] ?: 'latest_wallpapers'; // Latest default
- $this->resolution = $param['r'] ?: '1920x1200'; // Wide wallpaper default
+ $this->category = $param['c']['value'] ?: 'latest_wallpapers'; // Latest default
+ $this->resolution = $param['r']['value'] ?: '1920x1200'; // Wide wallpaper default
$category = $this->category;
if (strrpos($category, 'wallpapers') !== strlen($category)-strlen('wallpapers')) {
@@ -34,7 +35,7 @@ class HDWallpapersBridge extends BridgeAbstract {
}
$num = 0;
- $max = $param['m'] ?: 14;
+ $max = $param['m']['value'] ?: 14;
$lastpage = 1;
for ($page = 1; $page <= $lastpage; $page++) {
diff --git a/bridges/HentaiHavenBridge.php b/bridges/HentaiHavenBridge.php
index 28f6975..2238192 100644
--- a/bridges/HentaiHavenBridge.php
+++ b/bridges/HentaiHavenBridge.php
@@ -10,7 +10,7 @@ class HentaiHavenBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
$html = $this->getSimpleHTMLDOM('http://hentaihaven.org/') or $this->returnServerError('Could not request Hentai Haven.');
foreach($html->find('div.zoe-grid') as $element) {
$item = array();
diff --git a/bridges/IdenticaBridge.php b/bridges/IdenticaBridge.php
index 0a6d8be..a9d3017 100644
--- a/bridges/IdenticaBridge.php
+++ b/bridges/IdenticaBridge.php
@@ -11,15 +11,19 @@ class IdenticaBridge extends BridgeAbstract{
$this->description = "Returns user timelines";
$this->parameters[] = array(
- 'u'=>array('name'=>'username')
+ 'u'=>array(
+ 'name'=>'username',
+ 'required'=>true
+ )
);
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
- if (isset($param['u'])) { /* user timeline mode */
- $this->request = $param['u'];
+ if (isset($param['u']['value'])) { /* user timeline mode */
+ $this->request = $param['u']['value'];
$html = $this->getSimpleHTMLDOM('https://identi.ca/'.urlencode($this->request)) or $this->returnServerError('Requested username can\'t be found.');
}
else {
@@ -31,7 +35,7 @@ class IdenticaBridge extends BridgeAbstract{
$item['uri'] = html_entity_decode($dent->find('a', 0)->href); // get dent link
$item['timestamp'] = strtotime($dent->find('abbr.easydate', 0)->plaintext); // extract dent timestamp
$item['content'] = trim($dent->find('div.activity-content', 0)->innertext); // extract dent text
- $item['title'] = $param['u'] . ' | ' . $item['content'];
+ $item['title'] = $param['u']['value'] . ' | ' . $item['content'];
$this->items[] = $item;
}
}
diff --git a/bridges/InstagramBridge.php b/bridges/InstagramBridge.php
index 9e99dc4..8570947 100644
--- a/bridges/InstagramBridge.php
+++ b/bridges/InstagramBridge.php
@@ -16,10 +16,11 @@ class InstagramBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
- if (isset($param['u'])) { /* user timeline mode */
- $this->request = $param['u'];
+ if (isset($param['u']['value'])) { /* user timeline mode */
+ $this->request = $param['u']['value'];
$html = $this->getSimpleHTMLDOM('http://instagram.com/'.urlencode($this->request)) or $this->returnServerError('Could not request Instagram.');
}
else {
diff --git a/bridges/IsoHuntBridge.php b/bridges/IsoHuntBridge.php
index ac32752..bfeb2fd 100644
--- a/bridges/IsoHuntBridge.php
+++ b/bridges/IsoHuntBridge.php
@@ -89,23 +89,24 @@ class IsoHuntBridge extends BridgeAbstract{
);
}
- public function collectData(array $params){
+ public function collectData(){
+ $params=$this->parameters[$this->queriedContext];
$request_path = '/'; // We'll request the main page by default
- if(isset($params['latest_category'])){ // Requesting one of the latest categories
- $this->request_latest_category($params['latest_category']);
- } elseif(isset($params['torrent_category'])){ // Requesting one of the torrent categories
+ if(isset($params['latest_category']['value'])){ // Requesting one of the latest categories
+ $this->request_latest_category($params['latest_category']['value']);
+ } elseif(isset($params['torrent_category']['value'])){ // Requesting one of the torrent categories
$order_popularity = false;
- if(isset($params['torrent_popularity']))
- $order_popularity = $params['torrent_popularity'] === "on";
+ if(isset($params['torrent_popularity']['value']))
+ $order_popularity = $params['torrent_popularity']['value'];
- $this->request_torrent_category($params['torrent_category'], $order_popularity);
- } else if(isset($params['search_name'])){ // Requesting search
- if(isset($params['search_category']))
- $this->request_search($params['search_name'], $params['search_category']);
+ $this->request_torrent_category($params['torrent_category']['value'], $order_popularity);
+ } else if(isset($params['search_name']['value'])){ // Requesting search
+ if(isset($params['search_category']['value']))
+ $this->request_search($params['search_name']['value'], $params['search_category']['value']);
else
- $this->request_search($params['search_name']);
+ $this->request_search($params['search_name']['value']);
} else {
$this->returnClientError('Unknown request!');
}
diff --git a/bridges/JapanExpoBridge.php b/bridges/JapanExpoBridge.php
index 125261f..7ac1f8a 100644
--- a/bridges/JapanExpoBridge.php
+++ b/bridges/JapanExpoBridge.php
@@ -18,7 +18,8 @@ class JapanExpoBridge extends BridgeAbstract{
);
}
- public function collectData(array $param) {
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
function french_pubdate_to_timestamp($date_to_parse) {
return strtotime(
@@ -50,7 +51,7 @@ class JapanExpoBridge extends BridgeAbstract{
$link = 'http://www.japan-expo-paris.com/fr/actualites';
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request JapanExpo: '.$link);
- $fullcontent = (!empty($param['mode']) && $param['mode'] == 'full');
+ $fullcontent = (!empty($param['mode']['value']) && $param['mode']['value'] == 'full');
$count = 0;
foreach ($html->find('a._tile2') as $element) {
diff --git a/bridges/KonachanBridge.php b/bridges/KonachanBridge.php
index b9ef307..1ae4fff 100644
--- a/bridges/KonachanBridge.php
+++ b/bridges/KonachanBridge.php
@@ -17,13 +17,14 @@ class KonachanBridge extends BridgeAbstract{
);
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$page = 1;$tags='';
- if (isset($param['p'])) {
- $page = (int)preg_replace("/[^0-9]/",'', $param['p']);
+ if (isset($param['p']['value'])) {
+ $page = (int)preg_replace("/[^0-9]/",'', $param['p']['value']);
}
- if (isset($param['t'])) {
- $tags = urlencode($param['t']);
+ if (isset($param['t']['value'])) {
+ $tags = urlencode($param['t']['value']);
}
$html = $this->getSimpleHTMLDOM("http://konachan.com/post?page=$page&tags=$tags") or $this->returnServerError('Could not request Konachan.');
$input_json = explode('Post.register(', $html);
diff --git a/bridges/KoreusBridge.php b/bridges/KoreusBridge.php
index d211edf..66fe373 100644
--- a/bridges/KoreusBridge.php
+++ b/bridges/KoreusBridge.php
@@ -21,7 +21,7 @@ class KoreusBridge extends BridgeAbstract{
return $text;
}
- public function collectData(array $param){
+ public function collectData(){
$html = $this->getSimpleHTMLDOM('http://feeds.feedburner.com/Koreus-articles') or $this->returnServerError('Could not request Koreus.');
$limit = 0;
diff --git a/bridges/KununuBridge.php b/bridges/KununuBridge.php
index 0902d20..e81917d 100644
--- a/bridges/KununuBridge.php
+++ b/bridges/KununuBridge.php
@@ -39,21 +39,22 @@ class KununuBridge extends BridgeAbstract{
);
}
- public function collectData(array $params){
+ public function collectData(){
+ $params=$this->parameters[$this->queriedContext];
// Get Site
- $site = strtolower(trim($params['site']));
+ $site = strtolower(trim($params['site']['value']));
if(!isset($site) || empty($site) || !$this->site_is_valid($site))
$this->returnClientError('You must specify a valid site (&site=...)!');
// Get Company (fixing whitespace and umlauts)
- $company = $this->encode_umlauts(strtolower(str_replace(' ', '-', trim($params['company']))));
+ $company = $this->encode_umlauts(strtolower(str_replace(' ', '-', trim($params['company']['value']))));
if(!isset($company) || empty($company))
$this->returnClientError('You must specify a company (&company=...)!');
$full = false; // By default we'll load only short article
- if(isset($params['full']))
- $full = strtolower(trim($params['full'])) === 'on';
+ if(isset($params['full']['value']))
+ $full = strtolower(trim($params['full']['value']));
// Get reviews section name (depends on site)
$section = '';
diff --git a/bridges/LWNprevBridge.php b/bridges/LWNprevBridge.php
index fc61d05..32a7944 100644
--- a/bridges/LWNprevBridge.php
+++ b/bridges/LWNprevBridge.php
@@ -35,7 +35,7 @@ class LWNprevBridge extends BridgeAbstract{
}
}
- public function collectData(array $param){
+ public function collectData(){
// Because the LWN page is written in loose HTML and not XHTML,
// Simple HTML Dom is not accurate enough for the job
diff --git a/bridges/LeBonCoinBridge.php b/bridges/LeBonCoinBridge.php
index e71ba4a..855600f 100755
--- a/bridges/LeBonCoinBridge.php
+++ b/bridges/LeBonCoinBridge.php
@@ -138,14 +138,15 @@ class LeBonCoinBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
- if (empty($param['c'])) {
- $link = 'http://www.leboncoin.fr/annonces/offres/' . $param['r'] . '/?f=a&th=1&q=' . urlencode($param['k']);
+ if (empty($param['c']['value'])) {
+ $link = 'http://www.leboncoin.fr/annonces/offres/' . $param['r']['value'] . '/?f=a&th=1&q=' . urlencode($param['k']['value']);
}
else {
- $link = 'http://www.leboncoin.fr/' . $param['c'] . '/offres/' . $param['r'] . '/?f=a&th=1&q=' . urlencode($param['k']);
+ $link = 'http://www.leboncoin.fr/' . $param['c']['value'] . '/offres/' . $param['r']['value'] . '/?f=a&th=1&q=' . urlencode($param['k']['value']);
}
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request LeBonCoin.');
diff --git a/bridges/LeJournalDuGeekBridge.php b/bridges/LeJournalDuGeekBridge.php
index 84a829a..19f06e1 100644
--- a/bridges/LeJournalDuGeekBridge.php
+++ b/bridges/LeJournalDuGeekBridge.php
@@ -36,7 +36,7 @@ class LeJournalDuGeekBridge extends BridgeAbstract{
return $text;
}
- public function collectData(array $param){
+ public function collectData(){
$rssFeed = $this->getSimpleHTMLDOM('http://www.journaldugeek.com/rss') or $this->returnServerError('Could not request http://www.journaldugeek.com/rss');
$limit = 0;
diff --git a/bridges/LeMondeInformatiqueBridge.php b/bridges/LeMondeInformatiqueBridge.php
index 3465be4..e4fbdbc 100644
--- a/bridges/LeMondeInformatiqueBridge.php
+++ b/bridges/LeMondeInformatiqueBridge.php
@@ -10,7 +10,7 @@ class LeMondeInformatiqueBridge extends BridgeAbstract {
}
- public function collectData(array $param) {
+ public function collectData(){
function StripCDATA($string) {
$string = str_replace('title);
diff --git a/bridges/LesJoiesDuCodeBridge.php b/bridges/LesJoiesDuCodeBridge.php
index e9986d8..d329939 100644
--- a/bridges/LesJoiesDuCodeBridge.php
+++ b/bridges/LesJoiesDuCodeBridge.php
@@ -10,7 +10,7 @@ class LesJoiesDuCodeBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
$html = $this->getSimpleHTMLDOM('http://lesjoiesducode.fr/') or $this->returnServerError('Could not request LesJoiesDuCode.');
foreach($html->find('div.blog-post') as $element) {
diff --git a/bridges/LichessBridge.php b/bridges/LichessBridge.php
index 252fbae..839b183 100644
--- a/bridges/LichessBridge.php
+++ b/bridges/LichessBridge.php
@@ -10,7 +10,7 @@ class LichessBridge extends BridgeAbstract
$this->description = 'Returns the 5 newest posts from the Lichess blog (full text)';
}
- public function collectData(array $param)
+ public function collectData()
{
$xml_feed = $this->getSimpleHTMLDOM('http://fr.lichess.org/blog.atom') or $this->returnServerError('Could not retrieve Lichess blog feed.');
diff --git a/bridges/LinkedInCompany.php b/bridges/LinkedInCompany.php
index bf8fd6a..7640d15 100644
--- a/bridges/LinkedInCompany.php
+++ b/bridges/LinkedInCompany.php
@@ -16,9 +16,10 @@ class LinkedInCompany extends BridgeAbstract{
);
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
- $link = 'https://www.linkedin.com/company/'.$param['c'];
+ $link = 'https://www.linkedin.com/company/'.$param['c']['value'];
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request LinkedIn.');
diff --git a/bridges/LolibooruBridge.php b/bridges/LolibooruBridge.php
index b91168a..6689216 100644
--- a/bridges/LolibooruBridge.php
+++ b/bridges/LolibooruBridge.php
@@ -17,13 +17,14 @@ class LolibooruBridge extends BridgeAbstract{
);
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$page = 1; $tags = '';
- if (isset($param['p'])) {
- $page = (int)preg_replace("/[^0-9]/",'', $param['p']);
+ if (isset($param['p']['value'])) {
+ $page = (int)preg_replace("/[^0-9]/",'', $param['p']['value']);
}
- if (isset($param['t'])) {
- $tags = urlencode($param['t']);
+ if (isset($param['t']['value'])) {
+ $tags = urlencode($param['t']['value']);
}
$html = $this->getSimpleHTMLDOM("http://lolibooru.moe/post?page=$page&tags=$tags") or $this->returnServerError('Could not request Lolibooru.');
$input_json = explode('Post.register(', $html);
diff --git a/bridges/MangareaderBridge.php b/bridges/MangareaderBridge.php
index b2b5902..59cb064 100644
--- a/bridges/MangareaderBridge.php
+++ b/bridges/MangareaderBridge.php
@@ -76,7 +76,8 @@ class MangareaderBridge extends BridgeAbstract{
);
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$this->request = '';
@@ -84,21 +85,21 @@ class MangareaderBridge extends BridgeAbstract{
$path = "latest";
$limit = MANGAREADER_LIMIT;
- if(isset($param['category'])){ // Get popular updates
+ if(isset($param['category']['value'])){ // Get popular updates
$type = "popular";
$path = "popular";
- if($param['category'] !== "all"){
- $path .= "/" . $param['category'];
+ if($param['category']['value'] !== "all"){
+ $path .= "/" . $param['category']['value'];
}
}
- if(isset($param['path'])){ // Get manga updates
+ if(isset($param['path']['value'])){ // Get manga updates
$type = "path";
- $path = $param['path'];
+ $path = $param['path']['value'];
}
- if(isset($param['limit']) && $param['limit'] !== ""){ // Get manga updates (optional parameter)
- $limit = $param['limit'];
+ if(isset($param['limit']['value']) && $param['limit']['value'] !== ""){ // Get manga updates (optional parameter)
+ $limit = $param['limit']['value'];
}
// We'll use the DOM parser for this as it makes navigation easier
diff --git a/bridges/MilbooruBridge.php b/bridges/MilbooruBridge.php
index 8c08171..58b539f 100644
--- a/bridges/MilbooruBridge.php
+++ b/bridges/MilbooruBridge.php
@@ -17,13 +17,14 @@ class MilbooruBridge extends BridgeAbstract{
);
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$page = 0;$tags='';
- if (isset($param['p'])) {
- $page = (int)preg_replace("/[^0-9]/",'', $param['p']);
+ if (isset($param['p']['value'])) {
+ $page = (int)preg_replace("/[^0-9]/",'', $param['p']['value']);
}
- if (isset($param['t'])) {
- $tags = urlencode($param['t']);
+ if (isset($param['t']['value'])) {
+ $tags = urlencode($param['t']['value']);
}
$html = $this->getSimpleHTMLDOM("http://sheslostcontrol.net/moe/shimmie/index.php?q=/post/list/$tags/$page") or $this->returnServerError('Could not request Milbooru.');
diff --git a/bridges/MondeDiploBridge.php b/bridges/MondeDiploBridge.php
index bc03334..0bbab2a 100644
--- a/bridges/MondeDiploBridge.php
+++ b/bridges/MondeDiploBridge.php
@@ -8,7 +8,7 @@ class MondeDiploBridge extends BridgeAbstract{
$this->description = "Returns most recent results from MondeDiplo.";
}
- public function collectData(array $param){
+ public function collectData(){
$html = $this->getSimpleHTMLDOM($this->uri) or $this->returnServerError('Could not request MondeDiplo. for : ' . $link);
foreach($html->find('div.unarticle') as $article) {
diff --git a/bridges/MsnMondeBridge.php b/bridges/MsnMondeBridge.php
index 5d7d48d..e4af137 100644
--- a/bridges/MsnMondeBridge.php
+++ b/bridges/MsnMondeBridge.php
@@ -14,7 +14,7 @@ class MsnMondeBridge extends BridgeAbstract{
$item['timestamp'] = strtotime($html2->find('.authorinfo-txt', 0)->find('time', 0)->datetime);
}
- public function collectData(array $param){
+ public function collectData(){
$html = $this->getSimpleHTMLDOM($this->uri) or $this->returnServerError('Could not request MsnMonde.');
$limit = 0;
foreach($html->find('.smalla') as $article) {
diff --git a/bridges/MspabooruBridge.php b/bridges/MspabooruBridge.php
index 6528b3c..5a7f8a2 100644
--- a/bridges/MspabooruBridge.php
+++ b/bridges/MspabooruBridge.php
@@ -18,15 +18,16 @@ class MspabooruBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$page = 0;$tags='';
- if (isset($param['p'])) {
- $page = (int)preg_replace("/[^0-9]/",'', $param['p']);
+ if (isset($param['p']['value'])) {
+ $page = (int)preg_replace("/[^0-9]/",'', $param['p']['value']);
$page = $page - 1;
$page = $page * 50;
}
- if (isset($param['t'])) {
- $tags = urlencode($param['t']);
+ if (isset($param['t']['value'])) {
+ $tags = urlencode($param['t']['value']);
}
$html = $this->getSimpleHTMLDOM("http://mspabooru.com/index.php?page=post&s=list&tags=$tags&pid=$page") or $this->returnServerError('Could not request Mspabooru.');
diff --git a/bridges/NakedSecurityBridge.php b/bridges/NakedSecurityBridge.php
index 4020b70..0ad8370 100644
--- a/bridges/NakedSecurityBridge.php
+++ b/bridges/NakedSecurityBridge.php
@@ -8,7 +8,7 @@ class NakedSecurityBridge extends BridgeAbstract {
$this->description = 'Returns the newest articles.';
}
- public function collectData(array $param) {
+ public function collectData(){
function StripRecursiveHTMLSection($string, $tag_name, $tag_start) {
$open_tag = '<'.$tag_name;
diff --git a/bridges/NasaApodBridge.php b/bridges/NasaApodBridge.php
index c8b36c3..2209c4d 100644
--- a/bridges/NasaApodBridge.php
+++ b/bridges/NasaApodBridge.php
@@ -10,7 +10,7 @@ class NasaApodBridge extends BridgeAbstract{
}
- public function collectData(array $param) {
+ public function collectData(){
$html = $this->getSimpleHTMLDOM('http://apod.nasa.gov/apod/archivepix.html') or $this->returnServerError('Error while downloading the website content');
$list = explode("
", $html->find('b', 0)->innertext);
diff --git a/bridges/NeuviemeArtBridge.php b/bridges/NeuviemeArtBridge.php
index fa6c8c7..0d7ae98 100644
--- a/bridges/NeuviemeArtBridge.php
+++ b/bridges/NeuviemeArtBridge.php
@@ -8,7 +8,7 @@ class NeuviemeArtBridge extends BridgeAbstract {
$this->description = "Returns the newest articles.";
}
- public function collectData(array $param) {
+ public function collectData(){
function StripWithDelimiters($string, $start, $end) {
while (strpos($string, $start) !== false) {
diff --git a/bridges/NextInpactBridge.php b/bridges/NextInpactBridge.php
index b04b972..93b3a81 100644
--- a/bridges/NextInpactBridge.php
+++ b/bridges/NextInpactBridge.php
@@ -25,7 +25,7 @@ class NextInpactBridge extends BridgeAbstract {
return $text;
}
- public function collectData(array $param) {
+ public function collectData(){
$html = $this->getSimpleHTMLDOM('http://www.nextinpact.com/rss/news.xml') or $this->returnServerError('Could not request NextInpact.');
$limit = 0;
diff --git a/bridges/NextgovBridge.php b/bridges/NextgovBridge.php
index 684df8b..196c0fa 100644
--- a/bridges/NextgovBridge.php
+++ b/bridges/NextgovBridge.php
@@ -28,7 +28,8 @@ class NextgovBridge extends BridgeAbstract {
);
}
- public function collectData(array $param) {
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
function ExtractFromDelimiters($string, $start, $end) {
if (strpos($string, $start) !== false) {
@@ -46,7 +47,7 @@ class NextgovBridge extends BridgeAbstract {
} return $string;
}
- $category = $param['category'];
+ $category = $param['category']['value'];
if (empty($category))
$category = 'all';
if ($category !== preg_replace('/[^a-z-]+/', '', $category) || strlen($category > 32))
diff --git a/bridges/NiceMatinBridge.php b/bridges/NiceMatinBridge.php
index 30a1f34..d56fc27 100644
--- a/bridges/NiceMatinBridge.php
+++ b/bridges/NiceMatinBridge.php
@@ -22,7 +22,7 @@ class NiceMatinBridge extends BridgeAbstract{
return $text;
}
- public function collectData(array $param){
+ public function collectData(){
$html = $this->getSimpleHTMLDOM('http://www.nicematin.com/derniere-minute/rss') or $this->returnServerError('Could not request NiceMatin.');
$limit = 0;
diff --git a/bridges/NovelUpdatesBridge.php b/bridges/NovelUpdatesBridge.php
index 0bf451a..84da2a9 100644
--- a/bridges/NovelUpdatesBridge.php
+++ b/bridges/NovelUpdatesBridge.php
@@ -15,10 +15,11 @@ class NovelUpdatesBridge extends BridgeAbstract{
);
}
- public function collectData(array $param){
- if (!isset($param['n']))
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
+ if (!isset($param['n']['value']))
$this->returnClientError('You must specify the novel URL (/series/...)');
- $thread = parse_url($param['n']) or $this->returnClientError('This URL seems malformed, please check it.');
+ $thread = parse_url($param['n']['value']) or $this->returnClientError('This URL seems malformed, please check it.');
if($thread['host'] !== 'www.novelupdates.com')
$this->returnClientError('NovelUpdates URL only.');
if(strpos($thread['path'], 'series/') === FALSE)
diff --git a/bridges/NumeramaBridge.php b/bridges/NumeramaBridge.php
index d3bf548..d9ae083 100644
--- a/bridges/NumeramaBridge.php
+++ b/bridges/NumeramaBridge.php
@@ -10,7 +10,7 @@ class NumeramaBridge extends BridgeAbstract{
}
- public function collectData(array $param) {
+ public function collectData(){
function NumeramaStripCDATA($string) {
$string = str_replace('parameters[$this->queriedContext];
+ if (empty($param['u']['value']))
{
$this->returnServerError('Error: You must chose a category.');
}
$html = '';
- $link = 'https://openclassrooms.com/courses?categories='.$param['u'].'&title=&sort=updatedAt+desc';
+ $link = 'https://openclassrooms.com/courses?categories='.$param['u']['value'].'&title=&sort=updatedAt+desc';
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request OpenClassrooms.');
diff --git a/bridges/ParuVenduImmoBridge.php b/bridges/ParuVenduImmoBridge.php
index 528cde1..345ef97 100644
--- a/bridges/ParuVenduImmoBridge.php
+++ b/bridges/ParuVenduImmoBridge.php
@@ -29,7 +29,7 @@ class ParuVenduImmoBridge extends BridgeAbstract
);
}
- public function collectData(array $param)
+ public function collectData()
{
$html = '';
$num = 20;
@@ -37,22 +37,22 @@ class ParuVenduImmoBridge extends BridgeAbstract
$maison = '&tbMai=1&tbVil=1&tbCha=1&tbPro=1&tbHot=1&tbMou=1&tbFer=1';
$link = $this->uri.'/immobilier/annonceimmofo/liste/listeAnnonces?tt=1'.$appartment.$maison;
- if (isset($param['minarea'])) {
- $this->request .= ' '.$param['minarea'].' m2';
- $link .= '&sur0='.urlencode($param['minarea']);
+ if (isset($param['minarea']['value'])) {
+ $this->request .= ' '.$param['minarea']['value'].' m2';
+ $link .= '&sur0='.urlencode($param['minarea']['value']);
}
- if (isset($param['maxprice'])) {
- $link .= '&px1='.urlencode($param['maxprice']);
+ if (isset($param['maxprice']['value'])) {
+ $link .= '&px1='.urlencode($param['maxprice']['value']);
}
- if (isset($param['pa'])) {
- $link .= '&pa='.urlencode($param['pa']);
+ if (isset($param['pa']['value'])) {
+ $link .= '&pa='.urlencode($param['pa']['value']);
}
- if (isset($param['lo'])) {
- $this->request .= ' In: '.$param['lo'];
- $link .= '&lo='.urlencode($param['lo']);
+ if (isset($param['lo']['value'])) {
+ $this->request .= ' In: '.$param['lo']['value'];
+ $link .= '&lo='.urlencode($param['lo']['value']);
}
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request paruvendu.');
diff --git a/bridges/PickyWallpapersBridge.php b/bridges/PickyWallpapersBridge.php
index b351291..b35c9c3 100644
--- a/bridges/PickyWallpapersBridge.php
+++ b/bridges/PickyWallpapersBridge.php
@@ -28,19 +28,20 @@ class PickyWallpapersBridge extends BridgeAbstract {
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
- if (!isset($param['c'])) {
+ if (!isset($param['c']['value'])) {
$this->returnClientError('You must specify at least a category (?c=...).');
} else {
$baseUri = 'http://www.pickywallpapers.com';
- $this->category = $param['c'];
- $this->subcategory = $param['s'] ?: '';
- $this->resolution = $param['r'] ?: '1920x1200'; // Wide wallpaper default
+ $this->category = $param['c']['value'];
+ $this->subcategory = $param['s']['value'] ?: '';
+ $this->resolution = $param['r']['value'] ?: '1920x1200'; // Wide wallpaper default
$num = 0;
- $max = $param['m'] ?: 12;
+ $max = $param['m']['value'] ?: 12;
$lastpage = 1;
for ($page = 1; $page <= $lastpage; $page++) {
diff --git a/bridges/PinterestBridge.php b/bridges/PinterestBridge.php
index eb33607..f82c7c7 100644
--- a/bridges/PinterestBridge.php
+++ b/bridges/PinterestBridge.php
@@ -22,27 +22,28 @@ class PinterestBridge extends BridgeAbstract{
);
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
- if (isset($param['u']) || isset($param['b'])) {
+ if (isset($param['u']['value']) || isset($param['b']['value'])) {
- if (empty($param['u']))
+ if (empty($param['u']['value']))
{
$this->returnClientError('You must specify a Pinterest username (?u=...).');
}
- if (empty($param['b']))
+ if (empty($param['b']['value']))
{
$this->returnClientError('You must specify a Pinterest board for this username (?b=...).');
}
- $this->username = $param['u'];
- $this->board = $param['b'];
+ $this->username = $param['u']['value'];
+ $this->board = $param['b']['value'];
$html = $this->getSimpleHTMLDOM($this->getURI().'/'.urlencode($this->username).'/'.urlencode($this->board)) or $this->returnServerError('Username and/or board not found');
- } else if (isset($param['q']))
+ } else if (isset($param['q']['value']))
{
- $this->query = $param['q'];
+ $this->query = $param['q']['value'];
$html = $this->getSimpleHTMLDOM($this->getURI().'/search/?q='.urlencode($this->query)) or $this->returnServerError('Could not request Pinterest.');
}
diff --git a/bridges/PlanetLibreBridge.php b/bridges/PlanetLibreBridge.php
index 5c1c9bb..02e9535 100644
--- a/bridges/PlanetLibreBridge.php
+++ b/bridges/PlanetLibreBridge.php
@@ -14,7 +14,7 @@ class PlanetLibreBridge extends BridgeAbstract{
return $text;
}
- public function collectData(array $param){
+ public function collectData(){
$html = $this->getSimpleHTMLDOM('http://www.planet-libre.org/') or $this->returnServerError('Could not request PlanetLibre.');
$limit = 0;
foreach($html->find('div.post') as $element) {
diff --git a/bridges/ProjectMGameBridge.php b/bridges/ProjectMGameBridge.php
index 02fc621..b6dacbd 100644
--- a/bridges/ProjectMGameBridge.php
+++ b/bridges/ProjectMGameBridge.php
@@ -11,7 +11,7 @@ class ProjectMGameBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
$html = '';
$html = $this->getSimpleHTMLDOM('http://projectmgame.com/en/') or $this->returnServerError('Error while downloading the Project M homepage');
diff --git a/bridges/RTBFBridge.php b/bridges/RTBFBridge.php
index 5abea30..561bcc5 100644
--- a/bridges/RTBFBridge.php
+++ b/bridges/RTBFBridge.php
@@ -15,13 +15,14 @@ class RTBFBridge extends BridgeAbstract {
);
}
- public function collectData(array $param) {
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
$limit = 10;
$count = 0;
- if (isset($param['c'])) {
- $html = $this->getSimpleHTMLDOM('http://www.rtbf.be/auvio/emissions/detail?id='.$param['c']) or $this->returnServerError('Could not request RTBF.');
+ if (isset($param['c']['value'])) {
+ $html = $this->getSimpleHTMLDOM('http://www.rtbf.be/auvio/emissions/detail?id='.$param['c']['value']) or $this->returnServerError('Could not request RTBF.');
foreach($html->find('section[id!=widget-ml-avoiraussi-] .rtbf-media-grid article') as $element) {
if($count < $limit) {
diff --git a/bridges/Releases3DSBridge.php b/bridges/Releases3DSBridge.php
index 2cff757..fb85fcb 100644
--- a/bridges/Releases3DSBridge.php
+++ b/bridges/Releases3DSBridge.php
@@ -10,7 +10,7 @@ class Releases3DSBridge extends BridgeAbstract {
}
- public function collectData(array $param) {
+ public function collectData(){
function ExtractFromDelimiters($string, $start, $end) {
if (strpos($string, $start) !== false) {
diff --git a/bridges/ReporterreBridge.php b/bridges/ReporterreBridge.php
index 3c1672b..e310344 100644
--- a/bridges/ReporterreBridge.php
+++ b/bridges/ReporterreBridge.php
@@ -25,7 +25,7 @@ class ReporterreBridge extends BridgeAbstract{
return $text;
}
- public function collectData(array $param){
+ public function collectData(){
$html = $this->getSimpleHTMLDOM('http://www.reporterre.net/spip.php?page=backend') or $this->returnServerError('Could not request Reporterre.');
$limit = 0;
diff --git a/bridges/Rue89Bridge.php b/bridges/Rue89Bridge.php
index 76da28e..39c6c4f 100644
--- a/bridges/Rue89Bridge.php
+++ b/bridges/Rue89Bridge.php
@@ -19,7 +19,7 @@ class Rue89Bridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
$html = $this->getSimpleHTMLDOM('http://api.rue89.nouvelobs.com/feed') or $this->returnServerError('Could not request Rue89.');
diff --git a/bridges/Rule34Bridge.php b/bridges/Rule34Bridge.php
index e0bc4f1..12c6925 100644
--- a/bridges/Rule34Bridge.php
+++ b/bridges/Rule34Bridge.php
@@ -18,15 +18,16 @@ class Rule34Bridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$page = 0;$tags='';
- if (isset($param['p'])) {
- $page = (int)preg_replace("/[^0-9]/",'', $param['p']);
+ if (isset($param['p']['value'])) {
+ $page = (int)preg_replace("/[^0-9]/",'', $param['p']['value']);
$page = $page - 1;
$page = $page * 50;
}
- if (isset($param['t'])) {
- $tags = urlencode($param['t']);
+ if (isset($param['t']['value'])) {
+ $tags = urlencode($param['t']['value']);
}
$html = $this->getSimpleHTMLDOM("http://rule34.xxx/index.php?page=post&s=list&tags=$tags&pid=$page") or $this->returnServerError('Could not request Rule34.');
diff --git a/bridges/Rule34pahealBridge.php b/bridges/Rule34pahealBridge.php
index dc56965..76605c6 100644
--- a/bridges/Rule34pahealBridge.php
+++ b/bridges/Rule34pahealBridge.php
@@ -18,13 +18,14 @@ class Rule34pahealBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$page = 0;$tags='';
- if (isset($param['p'])) {
- $page = (int)preg_replace("/[^0-9]/",'', $param['p']);
+ if (isset($param['p']['value'])) {
+ $page = (int)preg_replace("/[^0-9]/",'', $param['p']['value']);
}
- if (isset($param['t'])) {
- $tags = urlencode($param['t']);
+ if (isset($param['t']['value'])) {
+ $tags = urlencode($param['t']['value']);
}
$html = $this->getSimpleHTMLDOM("http://rule34.paheal.net/post/list/$tags/$page") or $this->returnServerError('Could not request Rule34paheal.');
diff --git a/bridges/SafebooruBridge.php b/bridges/SafebooruBridge.php
index 3d3b638..a6d9891 100644
--- a/bridges/SafebooruBridge.php
+++ b/bridges/SafebooruBridge.php
@@ -18,15 +18,16 @@ class SafebooruBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$page = 0;$tags='';
- if (isset($param['p'])) {
- $page = (int)preg_replace("/[^0-9]/",'', $param['p']);
+ if (isset($param['p']['value'])) {
+ $page = (int)preg_replace("/[^0-9]/",'', $param['p']['value']);
$page = $page - 1;
$page = $page * 40;
}
- if (isset($param['t'])) {
- $tags = urlencode($param['t']);
+ if (isset($param['t']['value'])) {
+ $tags = urlencode($param['t']['value']);
}
$html = $this->getSimpleHTMLDOM("http://safebooru.org/index.php?page=post&s=list&tags=$tags&pid=$page") or $this->returnServerError('Could not request Safebooru.');
diff --git a/bridges/SakugabooruBridge.php b/bridges/SakugabooruBridge.php
index 03e44ac..2a38601 100644
--- a/bridges/SakugabooruBridge.php
+++ b/bridges/SakugabooruBridge.php
@@ -18,13 +18,14 @@ class SakugabooruBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$page = 1;$tags='';
- if (isset($param['p'])) {
- $page = (int)preg_replace("/[^0-9]/",'', $param['p']);
+ if (isset($param['p']['value'])) {
+ $page = (int)preg_replace("/[^0-9]/",'', $param['p']['value']);
}
- if (isset($param['t'])) {
- $tags = urlencode($param['t']);
+ if (isset($param['t']['value'])) {
+ $tags = urlencode($param['t']['value']);
}
$html = $this->getSimpleHTMLDOM("http://sakuga.yshi.org/post?page=$page&tags=$tags") or $this->returnServerError('Could not request Sakugabooru.');
$input_json = explode('Post.register(', $html);
diff --git a/bridges/ScmbBridge.php b/bridges/ScmbBridge.php
index 13286f9..c1d6031 100644
--- a/bridges/ScmbBridge.php
+++ b/bridges/ScmbBridge.php
@@ -10,7 +10,7 @@ class ScmbBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
$html = '';
$html = $this->getSimpleHTMLDOM('http://secouchermoinsbete.fr/') or $this->returnServerError('Could not request Se Coucher Moins Bete.');
diff --git a/bridges/ScoopItBridge.php b/bridges/ScoopItBridge.php
index adb49ee..6a233d4 100644
--- a/bridges/ScoopItBridge.php
+++ b/bridges/ScoopItBridge.php
@@ -17,10 +17,11 @@ class ScoopItBridge extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
$html = '';
- if ($param['u'] != '') {
- $this->request = $param['u'];
+ if ($param['u']['value'] != '') {
+ $this->request = $param['u']['value'];
$link = 'http://scoop.it/search?q=' .urlencode($this->request);
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request ScoopIt. for : ' . $link);
diff --git a/bridges/SensCritiqueBridge.php b/bridges/SensCritiqueBridge.php
index c400106..0e44bdc 100644
--- a/bridges/SensCritiqueBridge.php
+++ b/bridges/SensCritiqueBridge.php
@@ -37,18 +37,19 @@ class SensCritiqueBridge extends BridgeAbstract {
);
}
- public function collectData(array $param) {
- if ((isset($param['m']) && $param['m'])) {
+ public function collectData(){
+ $param=$this->parameters[$this->queriedContext];
+ if ((isset($param['m']['value']) && $param['m']['value'])) {
$this->collectMoviesData();
- } else if ((isset($param['s']) && $param['s'])) {
+ } else if ((isset($param['s']['value']) && $param['s']['value'])) {
$this->collectSeriesData();
- } else if ((isset($param['g']) && $param['g'])) {
+ } else if ((isset($param['g']['value']) && $param['g']['value'])) {
$this->collectGamesData();
- } else if ((isset($param['b']) && $param['b'])) {
+ } else if ((isset($param['b']['value']) && $param['b']['value'])) {
$this->collectBooksData();
- } else if ((isset($param['bd']) && $param['bd'])) {
+ } else if ((isset($param['bd']['value']) && $param['bd']['value'])) {
$this->collectBDsData();
- } else if ((isset($param['mu']) && $param['mu'])) {
+ } else if ((isset($param['mu']['value']) && $param['mu']['value'])) {
$this->collectMusicsData();
} else {
$this->returnClientError('You must choose a category');
diff --git a/bridges/Sexactu.php b/bridges/Sexactu.php
index 65305c7..839f6dd 100644
--- a/bridges/Sexactu.php
+++ b/bridges/Sexactu.php
@@ -10,7 +10,7 @@ class Sexactu extends BridgeAbstract{
}
- public function collectData(array $param){
+ public function collectData(){
$find = array('janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', 'novembre', 'décembre');
$replace = array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
diff --git a/bridges/ShanaprojectBridge.php b/bridges/ShanaprojectBridge.php
index 641e4fa..5abc31f 100644
--- a/bridges/ShanaprojectBridge.php
+++ b/bridges/ShanaprojectBridge.php
@@ -91,7 +91,7 @@ class ShanaprojectBridge extends BridgeAbstract {