From 219840341c54e3db02dfaf62a88e40fea9badfb5 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 27 Nov 2019 22:46:43 +0300 Subject: Af_Youtube_Embed: whitelist youtube iframes if enabled --- plugins/af_youtube_embed/init.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plugins/af_youtube_embed/init.php b/plugins/af_youtube_embed/init.php index 16dcc926c..0a6160752 100644 --- a/plugins/af_youtube_embed/init.php +++ b/plugins/af_youtube_embed/init.php @@ -4,7 +4,7 @@ class Af_Youtube_Embed extends Plugin { function about() { return array(1.0, - "Embed videos in Youtube RSS feeds", + "Embed videos in Youtube RSS feeds (and whitelist Youtube iframes)", "fox"); } @@ -12,6 +12,11 @@ class Af_Youtube_Embed extends Plugin { $this->host = $host; $host->add_hook($host::HOOK_RENDER_ENCLOSURE, $this); + $host->add_hook($host::HOOK_IFRAME_WHITELISTED, $this); + } + + function hook_iframe_whitelisted($src) { + return in_array($src, ["www.youtube.com", "youtube.com", "youtu.be"]); } /** -- cgit v1.2.3