From 26983977c4e5453e72912d54dcd984c793ee1f8f Mon Sep 17 00:00:00 2001 From: loma-one Date: Tue, 5 Dec 2023 22:40:49 +0100 Subject: [PATCH] This addon will replace "youtube.com" with the chosen Invidious instance Suggestion from @heluecht for combined URLs adopted --- invidious/invidious.php | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/invidious/invidious.php b/invidious/invidious.php index 5c625009..a92c49a6 100644 --- a/invidious/invidious.php +++ b/invidious/invidious.php @@ -3,7 +3,7 @@ * Name: invidious * Description: Replaces links to youtube.com to an invidious instance in all displays of postings on a node. * Version: 0.2 - * Author: Matthias Ebers <@feb@loma.ml> + * Author: Matthias Ebers * */ @@ -46,19 +46,10 @@ function invidious_render(array &$b) // this needs to be a system setting $replaced = false; $invidious = DI::config()->get('invidious', 'server', 'https://invidio.us'); - - $youtubeUrls = [ - 'https://www.youtube.com', - 'https://youtube.com', - ]; - - foreach ($youtubeUrls as $youtubeUrl) { - if (strstr($b['html'], $youtubeUrl)) { - $b['html'] = str_replace($youtubeUrl, $invidious, $b['html']); - $replaced = true; - } + if (strstr($b['html'], 'https://www.youtube.com')) { + $b['html'] = str_replace(['https://www.youtube.com', 'https://youtube.com'], $invidious, $b['html']); + $replaced = true; } - if ($replaced) { $b['html'] .= '

' . DI::l10n()->t('(Invidious addon enabled: YouTube links via %s)', $invidious) . '

'; }