bridges: Return parent::getURI by default

This commit is contained in:
logmanoriginal 2017-02-14 22:36:33 +01:00
parent c4169f1579
commit 512a4f292b
21 changed files with 100 additions and 38 deletions

View File

@ -65,6 +65,10 @@ class AskfmBridge extends BridgeAbstract {
} }
public function getURI(){ public function getURI(){
return self::URI . urlencode($this->getInput('u')) . '/answers/more?page=0'; if(!is_null($this->getInput('u'))){
return self::URI . urlencode($this->getInput('u')) . '/answers/more?page=0';
}
return parent::getURI();
} }
} }

View File

@ -46,7 +46,11 @@ class BandcampBridge extends BridgeAbstract {
} }
public function getURI(){ public function getURI(){
return self::URI . 'tag/' . urlencode($this->getInput('tag')) . '?sort_field=date'; if(!is_null($this->getInput('tag'))){
return self::URI . 'tag/' . urlencode($this->getInput('tag')) . '?sort_field=date';
}
return parent::getURI();
} }
public function getName(){ public function getName(){

View File

@ -28,7 +28,11 @@ class BooruprojectBridge extends GelbooruBridge {
const PIDBYPAGE = 20; const PIDBYPAGE = 20;
public function getURI(){ public function getURI(){
return 'http://' . $this->getInput('i') . '.booru.org/'; if(!is_null($this->getInput('i'))){
return 'http://' . $this->getInput('i') . '.booru.org/';
}
return parent::getURI();
} }
public function getName(){ public function getName(){

View File

@ -116,6 +116,7 @@ class DailymotionBridge extends BridgeAbstract {
$uri .= '/' . $this->getInput('pa'); $uri .= '/' . $this->getInput('pa');
} }
break; break;
default: return parent::getURI();
} }
return $uri; return $uri;
} }

View File

@ -20,7 +20,11 @@ class FourchanBridge extends BridgeAbstract {
)); ));
public function getURI(){ public function getURI(){
return static::URI . $this->getInput('c') . '/thread/' . $this->getInput('t'); if(!is_null($this->getInput('c')) && !is_null($this->getInput('t'))){
return static::URI . $this->getInput('c') . '/thread/' . $this->getInput('t');
}
return parent::getURI();
} }
public function collectData(){ public function collectData(){

View File

@ -53,13 +53,17 @@ class GithubIssueBridge extends BridgeAbstract {
} }
public function getURI(){ public function getURI(){
$uri = static::URI . $this->getInput('u') . '/' . $this->getInput('p') . '/issues'; if(!is_null($this->getInput('u')) && !is_null($this->getInput('p'))){
if($this->queriedContext === 'Issue comments'){ $uri = static::URI . $this->getInput('u') . '/' . $this->getInput('p') . '/issues';
$uri .= '/' . $this->getInput('i'); if($this->queriedContext === 'Issue comments'){
} elseif($this->getInput('c')){ $uri .= '/' . $this->getInput('i');
$uri .= '?q=is%3Aissue+sort%3Aupdated-desc'; } elseif($this->getInput('c')){
$uri .= '?q=is%3Aissue+sort%3Aupdated-desc';
}
return $uri;
} }
return $uri;
return parent::getURI();
} }
protected function extractIssueComment($issueNbr, $title, $comment){ protected function extractIssueComment($issueNbr, $title, $comment){

View File

@ -42,7 +42,11 @@ class GoComicsBridge extends BridgeAbstract {
} }
public function getURI(){ public function getURI(){
return self::URI . urlencode($this->getInput('comicname')); if(!is_null($this->getInput('comicname'))){
return self::URI . urlencode($this->getInput('comicname'));
}
return parent::getURI();
} }
public function getName(){ public function getName(){

View File

@ -97,6 +97,6 @@ class GooglePlusPostBridge extends BridgeAbstract{
} }
public function getURI(){ public function getURI(){
return $this->_url ?: self::URI; return $this->_url ?: parent::getURI();
} }
} }

View File

@ -43,6 +43,10 @@ class IdenticaBridge extends BridgeAbstract {
} }
public function getURI(){ public function getURI(){
return self::URI . urlencode($this->getInput('u')); if(!is_null($this->getInput('u'))){
return self::URI . urlencode($this->getInput('u'));
}
return parent::getURI();
} }
} }

View File

@ -61,6 +61,10 @@ class InstagramBridge extends BridgeAbstract {
} }
public function getURI(){ public function getURI(){
return self::URI . urlencode($this->getInput('u')); if(!is_null($this->getInput('u'))){
return self::URI . urlencode($this->getInput('u'));
}
return parent::getURI();
} }
} }

View File

@ -17,7 +17,11 @@ class NovelUpdatesBridge extends BridgeAbstract {
private $seriesTitle = ''; private $seriesTitle = '';
public function getURI(){ public function getURI(){
return static::URI . '/series/' . $this->getInput('n') . '/'; if(!is_null($this->getInput('n'))){
return static::URI . '/series/' . $this->getInput('n') . '/';
}
return parent::getURI();
} }
public function collectData(){ public function collectData(){

View File

@ -27,7 +27,11 @@ class OpenClassroomsBridge extends BridgeAbstract {
)); ));
public function getURI(){ public function getURI(){
return self::URI . '/courses?categories=' . $this->getInput('u') . '&title=&sort=updatedAt+desc'; if(!is_null($this->getInput('u'))){
return self::URI . '/courses?categories=' . $this->getInput('u') . '&title=&sort=updatedAt+desc';
}
return parent::getURI();
} }
public function collectData(){ public function collectData(){

View File

@ -70,15 +70,19 @@ class PickyWallpapersBridge extends BridgeAbstract {
} }
public function getURI(){ public function getURI(){
$subcategory = $this->getInput('s'); if(!is_null($this->getInput('s')) && !is_null($this->getInput('r')) && !is_null($this->getInput('c'))){
$link = self::URI $subcategory = $this->getInput('s');
. $this->getInput('r') $link = self::URI
. '/' . $this->getInput('r')
. $this->getInput('c') . '/'
. '/' . $this->getInput('c')
. $subcategory; . '/'
. $subcategory;
return $link; return $link;
}
return parent::getURI();
} }
public function getName(){ public function getName(){

View File

@ -49,7 +49,11 @@ class RTBFBridge extends BridgeAbstract {
} }
public function getURI(){ public function getURI(){
return self::URI . 'detail?id=' . $this->getInput('c'); if(!is_null($this->getInput('c'))){
return self::URI . 'detail?id=' . $this->getInput('c');
}
return parent::getURI();
} }
public function getName(){ public function getName(){

View File

@ -62,6 +62,7 @@ class TwitterBridge extends BridgeAbstract {
return self::URI return self::URI
. urlencode($this->getInput('u')) . urlencode($this->getInput('u'))
. ($this->getInput('norep') ? '' : '/with_replies'); . ($this->getInput('norep') ? '' : '/with_replies');
default: return parent::getURI();
} }
} }

View File

@ -16,7 +16,11 @@ class VkBridge extends BridgeAbstract {
); );
public function getURI(){ public function getURI(){
return static::URI . urlencode($this->getInput('u')); if(!is_null($this->getInput('u'))){
return static::URI . urlencode($this->getInput('u'));
}
return parent::getURI();
} }
public function collectData(){ public function collectData(){

View File

@ -34,7 +34,7 @@ class WebfailBridge extends BridgeAbstract {
public function getURI(){ public function getURI(){
if(is_null($this->getInput('language'))) if(is_null($this->getInput('language')))
return self::URI; return parent::getURI();
// e.g.: https://en.webfail.com // e.g.: https://en.webfail.com
return 'https://' . $this->getInput('language') . '.webfail.com'; return 'https://' . $this->getInput('language') . '.webfail.com';

View File

@ -43,9 +43,13 @@ class WikipediaBridge extends BridgeAbstract {
)); ));
public function getURI(){ public function getURI(){
return 'https://' if(!is_null($this->getInput('language'))){
. strtolower($this->getInput('language')) return 'https://'
. '.wikipedia.org'; . strtolower($this->getInput('language'))
. '.wikipedia.org';
}
return parent::getURI();
} }
public function getName(){ public function getName(){

View File

@ -56,7 +56,7 @@ class WordPressBridge extends FeedExpander {
public function getURI(){ public function getURI(){
$url = $this->getInput('url'); $url = $this->getInput('url');
if(empty($url)){ if(empty($url)){
$url = static::URI; $url = parent::getURI();
} }
return $url; return $url;
} }

View File

@ -28,13 +28,17 @@ class WorldOfTanksBridge extends BridgeAbstract {
private $title = ''; private $title = '';
function getURI(){ public function getURI(){
$lang = $this->getInput('lang'); if(!is_null($this->getInput('lang'))){
$uri = self::URI . $lang . '/news/'; $lang = $this->getInput('lang');
if(!empty($this->getInput('category'))) { $uri = self::URI . $lang . '/news/';
$uri .= 'pc-browser/' . $this->getInput('category') . '/'; if(!empty($this->getInput('category'))) {
$uri .= 'pc-browser/' . $this->getInput('category') . '/';
}
return $uri;
} }
return $uri;
return parent::getURI();
} }
public function getName(){ public function getName(){

View File

@ -190,7 +190,7 @@ abstract class FeedExpander extends BridgeAbstract {
} }
public function getURI(){ public function getURI(){
return $this->uri; return $this->uri ?: parent::getURI();
} }
public function getName(){ public function getName(){