mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Issue 13819: Ensure to not use OEmbed if not wanted
This commit is contained in:
parent
ac087749e3
commit
e394a6b0fa
3 changed files with 3 additions and 11 deletions
|
@ -1788,7 +1788,7 @@ class BBCode
|
||||||
$text = self::normalizeVideoLinks($text);
|
$text = self::normalizeVideoLinks($text);
|
||||||
|
|
||||||
// Youtube extensions
|
// Youtube extensions
|
||||||
if ($try_oembed) {
|
if ($try_oembed && OEmbed::isAllowedURL('https://www.youtube.com')) {
|
||||||
$text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism", '<iframe width="' . $a->getThemeInfoValue('videowidth') . '" height="' . $a->getThemeInfoValue('videoheight') . '" src="https://www.youtube.com/embed/$1" frameborder="0" ></iframe>', $text);
|
$text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism", '<iframe width="' . $a->getThemeInfoValue('videowidth') . '" height="' . $a->getThemeInfoValue('videoheight') . '" src="https://www.youtube.com/embed/$1" frameborder="0" ></iframe>', $text);
|
||||||
} else {
|
} else {
|
||||||
$text = preg_replace(
|
$text = preg_replace(
|
||||||
|
@ -1799,7 +1799,7 @@ class BBCode
|
||||||
}
|
}
|
||||||
|
|
||||||
// Vimeo extensions
|
// Vimeo extensions
|
||||||
if ($try_oembed) {
|
if ($try_oembed && OEmbed::isAllowedURL('https://vimeo.com')) {
|
||||||
$text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism", '<iframe width="' . $a->getThemeInfoValue('videowidth') . '" height="' . $a->getThemeInfoValue('videoheight') . '" src="https://player.vimeo.com/video/$1" frameborder="0" ></iframe>', $text);
|
$text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism", '<iframe width="' . $a->getThemeInfoValue('videowidth') . '" height="' . $a->getThemeInfoValue('videoheight') . '" src="https://player.vimeo.com/video/$1" frameborder="0" ></iframe>', $text);
|
||||||
} else {
|
} else {
|
||||||
$text = preg_replace(
|
$text = preg_replace(
|
||||||
|
@ -2057,10 +2057,7 @@ class BBCode
|
||||||
);
|
);
|
||||||
|
|
||||||
// Default iframe allowed domains/path
|
// Default iframe allowed domains/path
|
||||||
$allowedIframeDomains = [
|
$allowedIframeDomains = DI::config()->get('system', 'no_oembed_rich_content') ? [] : ['www.youtube.com/embed/', 'player.vimeo.com/video/'];
|
||||||
'www.youtube.com/embed/',
|
|
||||||
'player.vimeo.com/video/',
|
|
||||||
];
|
|
||||||
|
|
||||||
$allowedIframeDomains = array_merge(
|
$allowedIframeDomains = array_merge(
|
||||||
$allowedIframeDomains,
|
$allowedIframeDomains,
|
||||||
|
|
|
@ -429,10 +429,6 @@ return [
|
||||||
// Don't do count calculations (currently only when showing photo albums).
|
// Don't do count calculations (currently only when showing photo albums).
|
||||||
'no_count' => false,
|
'no_count' => false,
|
||||||
|
|
||||||
// no_oembed (Boolean)
|
|
||||||
// Don't use OEmbed to fetch more information about a link.
|
|
||||||
'no_oembed' => false,
|
|
||||||
|
|
||||||
// no_redirect_list (Array)
|
// no_redirect_list (Array)
|
||||||
// List of domains where HTTP redirects should be ignored.
|
// List of domains where HTTP redirects should be ignored.
|
||||||
'no_redirect_list' => [],
|
'no_redirect_list' => [],
|
||||||
|
|
|
@ -35,7 +35,6 @@ class BBCodeTest extends FixtureTest
|
||||||
{
|
{
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
DI::config()->set('system', 'remove_multiplicated_lines', false);
|
DI::config()->set('system', 'remove_multiplicated_lines', false);
|
||||||
DI::config()->set('system', 'no_oembed', false);
|
|
||||||
DI::config()->set('system', 'allowed_link_protocols', []);
|
DI::config()->set('system', 'allowed_link_protocols', []);
|
||||||
DI::config()->set('system', 'url', 'https://friendica.local');
|
DI::config()->set('system', 'url', 'https://friendica.local');
|
||||||
DI::config()->set('system', 'no_smilies', false);
|
DI::config()->set('system', 'no_smilies', false);
|
||||||
|
|
Loading…
Reference in a new issue