]> git.mxchange.org Git - friendica-addons.git/commitdiff
This addon will replace "youtube.com" with the chosen Invidious instance
authorloma-one <loma-one@noreply.git.friendi.ca>
Tue, 5 Dec 2023 08:08:36 +0000 (09:08 +0100)
committerHypolite Petovan <hypolite@mrpetovan.com>
Fri, 8 Dec 2023 19:50:22 +0000 (20:50 +0100)
URL combine

invidious/invidious.php

index e6ac4ac38ce4d2aba6572d29b80e32e9736ab544..5c6250095aee6fb5c5048219f3a123c2d7023677 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Name: invidious
  * Description: Replaces links to youtube.com to an invidious instance in all displays of postings on a node.
- * Version: 0.1
+ * Version: 0.2
  * Author: Matthias Ebers <@feb@loma.ml>
  *
  */
@@ -46,14 +46,19 @@ function invidious_render(array &$b)
     // this needs to be a system setting
     $replaced = false;
     $invidious = DI::config()->get('invidious', 'server', 'https://invidio.us');
-    if (strstr($b['html'], 'https://www.youtube.com')) {
-        $b['html'] = str_replace('https://www.youtube.com', $invidious, $b['html']);
-        $replaced = true;
-    }
-    if (strstr($b['html'], 'https://youtube.com')) {
-        $b['html'] = str_replace('https://youtube.com', $invidious, $b['html']);
-        $replaced = true;
+
+    $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 ($replaced) {
         $b['html'] .= '<hr><p><small>' . DI::l10n()->t('(Invidious addon enabled: YouTube links via %s)', $invidious) . '</small></p>';
     }