Compare commits

...

1 commit

Author SHA1 Message Date
687381bc53 loma-one addons 2024-04-28 08:36:40 +02:00
10 changed files with 292 additions and 2 deletions

View file

@ -2,10 +2,10 @@
/* /*
* 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.4 * Version: 0.5
* Author: Matthias Ebers <https://loma.ml/profile/feb> * Author: Matthias Ebers <https://loma.ml/profile/feb>
* Author: Michael Vogel <https://pirati.ca/profile/heluecht> * Author: Michael Vogel <https://pirati.ca/profile/heluecht>
* Status: Unsupported * Status:
* Note: Please use the URL Replace addon instead * Note: Please use the URL Replace addon instead
*/ */
@ -96,6 +96,8 @@ function invidious_render(array &$b)
$b['html'] = preg_replace("~https?://(?:www\.)?youtube\.com/watch\?v=(.*?)~ism", $server . '/watch?v=$1', $b['html']); $b['html'] = preg_replace("~https?://(?:www\.)?youtube\.com/watch\?v=(.*?)~ism", $server . '/watch?v=$1', $b['html']);
$b['html'] = preg_replace("~https?://(?:www\.)?youtube\.com/embed/(.*?)~ism", $server . '/embed/$1', $b['html']); $b['html'] = preg_replace("~https?://(?:www\.)?youtube\.com/embed/(.*?)~ism", $server . '/embed/$1', $b['html']);
$b['html'] = preg_replace("~https?://(?:www\.)?youtube\.com/shorts/(.*?)~ism", $server . '/shorts/$1', $b['html']); $b['html'] = preg_replace("~https?://(?:www\.)?youtube\.com/shorts/(.*?)~ism", $server . '/shorts/$1', $b['html']);
$b['html'] = preg_replace ("/https?:\/\/music.youtube.com\/(.*?)/ism", $server . '/watch?v=$1', $b['html']);
$b['html'] = preg_replace ("/https?:\/\/m.youtube.com\/(.*?)/ism", $server . '/watch?v=$1', $b['html']);
$b['html'] = preg_replace("/https?:\/\/youtu.be\/(.*?)/ism", $server . '/watch?v=$1', $b['html']); $b['html'] = preg_replace("/https?:\/\/youtu.be\/(.*?)/ism", $server . '/watch?v=$1', $b['html']);
if ($original != $b['html']) { if ($original != $b['html']) {

4
piped/README.md Normal file
View file

@ -0,0 +1,4 @@
piped Addon for Friendica
==========================
This addon will replace "youtube.com" with the chosen Piped instance

58
piped/lang/C/messages.po Normal file
View file

@ -0,0 +1,58 @@
# ADDON piped
# Copyright (C)
# This file is distributed under the same license as the Friendica piped addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-27 08:25+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: piped.php:40
#, php-format
msgid ""
"Which Piped server shall be used for the replacements in the post bodies? "
"Use the URL with servername and protocol. See %s for a list of available "
"public Piped servers."
msgstr ""
#: piped.php:41 piped.php:58
msgid "Piped server"
msgstr ""
#: piped.php:41 piped.php:58
#, php-format
msgid "See %s for a list of available Piped servers."
msgstr ""
#: piped.php:42
msgid "Save Settings"
msgstr ""
#: piped.php:57
msgid "Replace Youtube links with links to an Piped server"
msgstr ""
#: piped.php:57
msgid ""
"If enabled, Youtube links are replaced with the links to the specified Piped "
"server."
msgstr ""
#: piped.php:63
msgid "Piped Settings"
msgstr ""
#: piped.php:104
#, php-format
msgid "(Piped addon enabled: YouTube links via %s)"
msgstr ""

106
piped/piped.php Normal file
View file

@ -0,0 +1,106 @@
<?php
/*
* Name: piped
* Description: Replaces links to youtube.com to an piped instance in all displays of postings on a node.
* Version: 0.1
* Author: Matthias Ebers <https://loma.ml/profile/feb>
* Author: Michael Vogel <https://pirati.ca/profile/heluecht>
* Status:
* Note:
*/
use Friendica\Core\Hook;
use Friendica\Core\Renderer;
use Friendica\DI;
CONST PIPED_DEFAULT = 'https://piped.video';
function piped_install()
{
Hook::register('prepare_body_final', __FILE__, 'piped_render');
Hook::register('addon_settings', __FILE__, 'piped_settings');
Hook::register('addon_settings_post', __FILE__, 'piped_settings_post');
}
/* Handle the send data from the admin settings
*/
function piped_addon_admin_post()
{
DI::config()->set('piped', 'server', trim($_POST['pipedserver'], " \n\r\t\v\x00/"));
}
/* Hook into the admin settings to let the admin choose an
* piped server to use for the replacement.
*/
function piped_addon_admin(string &$o)
{
$pipedserver = DI::config()->get('piped', 'server', PIPED_DEFAULT);
$t = Renderer::getMarkupTemplate('admin.tpl', 'addon/piped/');
$o = Renderer::replaceMacros($t, [
'$settingdescription' => DI::l10n()->t('Which Piped server shall be used for the replacements in the post bodies? Use the URL with servername and protocol. See %s for a list of available public Piped servers.', 'https://github.com/TeamPiped/Piped/wiki/Instances'),
'$pipedserver' => ['pipedserver', DI::l10n()->t('Piped server'), $pipedserver, DI::l10n()->t('See %s for a list of available Piped servers.', '<a href="https://github.com/TeamPiped/Piped/wiki/Instances/">https://github.com/TeamPiped/Piped/wiki/Instances/</a>')],
'$submit' => DI::l10n()->t('Save Settings'),
]);
}
function piped_settings(array &$data)
{
if (!DI::userSession()->getLocalUserId()) {
return;
}
$enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'piped', 'enabled');
$server = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'piped', 'server', DI::config()->get('piped', 'server', PIPED_DEFAULT));
$t = Renderer::getMarkupTemplate('settings.tpl', 'addon/piped/');
$html = Renderer::replaceMacros($t, [
'$enabled' => ['enabled', DI::l10n()->t('Replace Youtube links with links to an Piped server'), $enabled, DI::l10n()->t('If enabled, Youtube links are replaced with the links to the specified Piped server.')],
'$server' => ['server', DI::l10n()->t('Piped server'), $server, DI::l10n()->t('See %s for a list of available Piped servers.', '<a href="https://github.com/TeamPiped/Piped/wiki/Instances/">https://github.com/TeamPiped/Piped/wiki/Instances/</a>')],
]);
$data = [
'addon' => 'piped',
'title' => DI::l10n()->t('Piped Settings'),
'html' => $html,
];
}
function piped_settings_post(array &$b)
{
if (!DI::userSession()->getLocalUserId() || empty($_POST['piped-submit'])) {
return;
}
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'piped', 'enabled', (bool)$_POST['enabled']);
$server = trim($_POST['server'], " \n\r\t\v\x00/");
if ($server != DI::config()->get('piped', 'server', PIPED_DEFAULT) && !empty($server)) {
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'piped', 'server', $server);
} else {
DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'piped', 'server');
}
}
/*
* replace "youtube.com" with the chosen Piped instance
*/
function piped_render(array &$b)
{
if (!DI::userSession()->getLocalUserId() || !DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'piped', 'enabled')) {
return;
}
$original = $b['html'];
$server = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'piped', 'server', DI::config()->get('piped', 'server', PIPED_DEFAULT));
$b['html'] = preg_replace("~https?://(?:www\.)?youtube\.com/watch\?v=(.*?)~ism", $server . '/watch?v=$1', $b['html']);
$b['html'] = preg_replace("~https?://(?:www\.)?youtube\.com/embed/(.*?)~ism", $server . '/embed/$1', $b['html']);
$b['html'] = preg_replace("~https?://(?:www\.)?youtube\.com/shorts/(.*?)~ism", $server . '/shorts/$1', $b['html']);
$b['html'] = preg_replace ("/https?:\/\/music.youtube.com\/(.*?)/ism", $server . '/watch?v=$1', $b['html']);
$b['html'] = preg_replace ("/https?:\/\/m.youtube.com\/(.*?)/ism", $server . '/watch?v=$1', $b['html']);
$b['html'] = preg_replace("/https?:\/\/youtu.be\/(.*?)/ism", $server . '/watch?v=$1', $b['html']);
if ($original != $b['html']) {
$b['html'] .= '<hr><p><small>' . DI::l10n()->t('(Piped addon enabled: YouTube links via %s)', $server) . '</small></p>';
}
}

View file

@ -0,0 +1,5 @@
<p>{{$settingdescription}}</p>
{{include file="field_input.tpl" field=$pipedserver}}
<div class="submit"><input type="submit" name="page_site" value="{{$submit}}" /></div>

View file

@ -0,0 +1,2 @@
{{include file="field_checkbox.tpl" field=$enabled}}
{{include file="field_input.tpl" field=$server}}

4
proxigram/README.md Normal file
View file

@ -0,0 +1,4 @@
instagram Addon for Friendica
==========================
This addon will replace "instagram.com" with the chosen Proxigram instance

View file

@ -0,0 +1,39 @@
# ADDON invidious
# Copyright (C)
# This file is distributed under the same license as the Friendica invidious addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-12-03 20:21+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: invidious.php:35
#, php-format
msgid ""
"Which Invidious server shall be used for the replacements in the post "
"bodies? Use the URL with servername and protocol. See %s for a list of "
"available public Invidious servers."
msgstr ""
#: invidious.php:36
msgid "Invidious server"
msgstr ""
#: invidious.php:37
msgid "Save Settings"
msgstr ""
#: invidious.php:64
#, php-format
msgid "(Invidious addon enabled: YouTube links via %s)"
msgstr ""

65
proxigram/proxigram.php Normal file
View file

@ -0,0 +1,65 @@
<?php
/*
* Name: proxigram
* Description: Replaces links to instagram to an proxigram instance in all displays of postings on a node.
* Version: 0.1
* Author: Matthias Ebers <@feb@loma.ml>
*
*/
use Friendica\App;
use Friendica\Core\Hook;
use Friendica\Core\Renderer;
use Friendica\DI;
function proxigram_install()
{
Hook::register('prepare_body_final', 'addon/proxigram/proxigram.php', 'proxigram_render');
}
/* Handle the send data from the admin settings
*/
function proxigram_addon_admin_post()
{
DI::config()->set('proxigram', 'server', rtrim(trim($_POST['proxigramserver']), '/'));
}
/* Hook into the admin settings to let the admin choose an
* proxigram server to use for the replacement.
*/
function proxigram_addon_admin(string &$o)
{
$proxigramserver = DI::config()->get('proxigram', 'server');
$t = Renderer::getMarkupTemplate('admin.tpl', 'addon/proxigram/');
$o = Renderer::replaceMacros($t, [
'$settingdescription' => DI::l10n()->t('Which proxigram server shall be used for the replacements in the post bodies? Use the URL with servername and protocol. See %s for a list of available public proxigram servers.', 'https://codeberg.org/ThePenguinDev/proxigram/wiki/Instances#user-content-public'),
'$proxigramserver' => ['proxigramserver', DI::l10n()->t('proxigram server'), $proxigramserver, 'https://example.com'],
'$submit' => DI::l10n()->t('Save Settings'),
]);
}
/*
* replace "instagram" with the chosen proxigram instance
*/
function proxigram_render(array &$b)
{
// this needs to be a system setting
$replaced = false;
$proxigram = DI::config()->get('proxigram', 'server', 'https://proxigram.lunar.icu');
$instagramUrls = [
'https://www.instagram.com',
'https://ig.me',
];
foreach ($instagramUrls as $instagramUrl) {
if (strstr($b['html'], $instagramUrl)) {
$b['html'] = str_replace($instagramUrl, $proxigram, $b['html']);
$replaced = true;
}
}
if ($replaced) {
$b['html'] .= '<hr><p><small>' . DI::l10n()->t('(proxigram addon enabled: Instagram links via %s)', $proxigram) . '</small></p>';
}
}

View file

@ -0,0 +1,5 @@
<p>{{$settingdescription}}</p>
{{include file="field_input.tpl" field=$proxigramserver}}
<div class="submit"><input type="submit" name="page_site" value="{{$submit}}" /></div>