Add special handling for YouTube content in RSS feed

This commit is contained in:
Markus Koch 2020-01-02 23:17:22 +01:00
parent 086c0c3931
commit 7371902fd1
1 changed files with 3 additions and 1 deletions

View File

@ -132,7 +132,9 @@
echo '<videoframe><div class="videoframe" style="width:' . $width . 'px;height:' . $width*9/16 . 'px">';
if (isset($youtube)) {
if (opted_in('y')) {
if (isset($CMS_RSS)) {
echo '<div style="width:100%;height:100%;"><table border=0 style="height:100%;width:100%;"><tr><td style="text-align:center;">Embedded Content<br><br><a href="' . $youtube['link'] . '">Click here to watch the video on YouTube.</a></td></tr></table></div>';
} else if (opted_in('y')) {
echo '<iframe width="100%" height="100%" src="' . $url . '" frameborder="0" allowfullscreen></iframe>';
} else {
echo "<div style='width:100%;height:100%;background-color:black;background-image: url(" . YT_PREVIEW . $youtube['vid'] . ".jpg);background-size:contain;'><table border=0 style='height:100%;width:100%;backdrop-filter:blur(3px);background-color:rgba(0,0,0,0.55);text-shadow:1px 1px black;'><tr><td style='text-align:center;'>Embedded content has been disabled to protect your privacy.<br><br><br><strong><form action='' method='post'><input type='hidden' name='optin-once' value='y' /><input type='submit' value='Click here to load the videos on this site once,'/></form></strong><br><br><strong><a href='/?p=privacy-controls'>or click here to allow them permanently,</a><br><br><a href=\"" . $youtube['link'] . "\">" . "or click here to watch the video on YouTube:<br>" . $youtube['link'] . "</a></strong><br><br><br>Please note that, by enabling this video, data is transferred <br>to YouTube LLC, and is subject to their privacy policy.</td></tr></table></div>";