mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-21 19:43:42 +00:00
This addon will replace "youtube.com" with the chosen Invidious instance
Suggestion from @heluecht for combined URLs adopted
This commit is contained in:
parent
90d897f4fa
commit
26983977c4
1 changed files with 4 additions and 13 deletions
|
@ -3,7 +3,7 @@
|
||||||
* Name: invidious
|
* Name: invidious
|
||||||
* Description: Replaces links to youtube.com to an invidious instance in all displays of postings on a node.
|
* Description: Replaces links to youtube.com to an invidious instance in all displays of postings on a node.
|
||||||
* Version: 0.2
|
* Version: 0.2
|
||||||
* Author: Matthias Ebers <@feb@loma.ml>
|
* Author: Matthias Ebers <https://loma.ml/profile/feb>
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -46,19 +46,10 @@ function invidious_render(array &$b)
|
||||||
// this needs to be a system setting
|
// this needs to be a system setting
|
||||||
$replaced = false;
|
$replaced = false;
|
||||||
$invidious = DI::config()->get('invidious', 'server', 'https://invidio.us');
|
$invidious = DI::config()->get('invidious', 'server', 'https://invidio.us');
|
||||||
|
if (strstr($b['html'], 'https://www.youtube.com')) {
|
||||||
$youtubeUrls = [
|
$b['html'] = str_replace(['https://www.youtube.com', 'https://youtube.com'], $invidious, $b['html']);
|
||||||
'https://www.youtube.com',
|
$replaced = true;
|
||||||
'https://youtube.com',
|
|
||||||
];
|
|
||||||
|
|
||||||
foreach ($youtubeUrls as $youtubeUrl) {
|
|
||||||
if (strstr($b['html'], $youtubeUrl)) {
|
|
||||||
$b['html'] = str_replace($youtubeUrl, $invidious, $b['html']);
|
|
||||||
$replaced = true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($replaced) {
|
if ($replaced) {
|
||||||
$b['html'] .= '<hr><p><small>' . DI::l10n()->t('(Invidious addon enabled: YouTube links via %s)', $invidious) . '</small></p>';
|
$b['html'] .= '<hr><p><small>' . DI::l10n()->t('(Invidious addon enabled: YouTube links via %s)', $invidious) . '</small></p>';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue