1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-11 02:54:10 +02:00

[Core] Add getKey function (#3275)

* [Core] Add getKey function
This commit is contained in:
Bocki
2023-03-02 13:25:57 +01:00
committed by GitHub
parent f0d8cfd4d4
commit f3f98a117c
2 changed files with 27 additions and 17 deletions

View File

@@ -204,26 +204,10 @@ class JustWatchBridge extends BridgeAbstract
return 'https://www.justwatch.com/' . $this->getInput('country');
}
protected function getKeyName($input = '')
{
$parameters = $this->getParameters();
if (strlen($input) < 2) {
return array_search((int)$input, $parameters[0]['mediatype']['values'], true);
} else {
$returnkey = '';
foreach ($parameters[0]['country']['values'] as $valuearray) {
if (strlen($returnkey) < 2) {
$returnkey = array_search($input, $valuearray, true);
}
}
return $returnkey;
}
}
public function getName()
{
if (!is_null($this->getInput('country'))) {
return 'JustWatch - ' . $this->getKeyName($this->getInput('country')) . ' - ' . $this->getKeyName($this->getInput('mediatype'));
return 'JustWatch - ' . $this->getKey('country') . ' - ' . $this->getKey('mediatype');
}
return parent::getName();
}