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(){
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(){
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(){

View file

@ -28,7 +28,11 @@ class BooruprojectBridge extends GelbooruBridge {
const PIDBYPAGE = 20;
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(){

View file

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

View file

@ -20,7 +20,11 @@ class FourchanBridge extends BridgeAbstract {
));
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(){

View file

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

View file

@ -42,7 +42,11 @@ class GoComicsBridge extends BridgeAbstract {
}
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(){

View file

@ -97,6 +97,6 @@ class GooglePlusPostBridge extends BridgeAbstract{
}
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(){
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(){
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 = '';
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(){

View file

@ -27,7 +27,11 @@ class OpenClassroomsBridge extends BridgeAbstract {
));
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(){

View file

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

View file

@ -49,7 +49,11 @@ class RTBFBridge extends BridgeAbstract {
}
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(){

View file

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

View file

@ -16,7 +16,11 @@ class VkBridge extends BridgeAbstract {
);
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(){

View file

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

View file

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

View file

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

View file

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

View file

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