Af_Youtube_Embed: whitelist youtube iframes if enabled

This commit is contained in:
Andrew Dolgov 2019-11-27 22:46:43 +03:00
parent d15f0349bf
commit 219840341c
1 changed files with 6 additions and 1 deletions

View File

@ -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"]);
}
/**