aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/standalone/videos/embed.html
blob: e2dc02b60519df58f2d2e367f0d5354d73892e06 (plain) (tree)
1
2
3
4
5
6
7
8


               

                                                                        
                                          
                                                      
 











                                                                 




                                                                                       
                           




                                     
                                                                                 

         
                                                       
 
                          
                                                                                 
                                



                                    


                                                                                 
 
                                             
 
                                     
                                                                                                                     








                                                                                                                                                                                                         
                                  
 














                                                                                                             





                                                                                 

       





                                                                             







                                                             
         
       
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="robots" content="noindex">
    <meta property="og:platform" content="PeerTube" />

    <script type="text/javascript">
    // Thanks: https://mathiasbynens.be/notes/globalthis
    (function() {
      if (typeof globalThis === 'object') return;
      Object.prototype.__defineGetter__('__magic__', function() {
        return this;
      });
      __magic__.globalThis = __magic__
      delete Object.prototype.__magic__;
    }());
    </script>


    <!-- /!\ The following comment is used by the server to prerender some tags /!\ -->

    <!-- title tag -->
    <!-- description tag -->
    <!-- custom css tag -->
    <!-- meta tags -->
    <!-- server config -->

    <!-- /!\ Do not remove it /!\ -->

    <link rel="icon" type="image/png" href="/client/assets/images/favicon.png" />
  </head>

  <body id="custom-css" class="standalone-video-embed">

    <div id="error-block">
      <!-- eslint-disable-next-line @angular-eslint/template/elements-content -->
      <h1 id="error-title"></h1>

      <div id="error-content"></div>
    </div>

    <div id="video-password-block">
      <!-- eslint-disable-next-line @angular-eslint/template/elements-content -->
      <h1 id="video-password-title"></h1>

      <div id="video-password-content"></div>

      <form id="video-password-form">
        <input type="password" id="video-password-input" name="video-password" autocomplete="user-password" required>
        <button type="submit" id="video-password-submit"> </button>
      </form>

      <div id="video-password-error"></div>
      <svg xmlns="http://www.w3.org/2000/svg" width="4rem" height="4rem" viewBox="0 0 24 24">
        <g fill="none" stroke="#c4c4c4" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><rect width="18" height="11" x="3" y="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></g>
      </svg>
    </div>

    <div id="video-wrapper"></div>

    <script type="text/javascript">
      // Can be called in embed.ts
      window.displayIncompatibleBrowser = function () {
        const text = 'The player is not compatible with your web browser. Please try latest Firefox version.'

        document.title = 'Sorry' + ' - ' + text

        const errorBlock = document.getElementById('error-block')
        errorBlock.style.display = 'flex'

        const errorTitle = document.getElementById('error-title')
        errorTitle.innerHTML = 'Sorry'

        const errorText = document.getElementById('error-content')
        errorText.innerHTML = text

        const videoWrapper = document.getElementById('video-wrapper')
        if (videoWrapper) videoWrapper.style.display = 'none'

        const placeholderPreview = document.getElementById('placeholder-preview')
        if (placeholderPreview) placeholderPreview.style.display = 'none'
      }

      window.onerror = function (msg) {
        if (typeof msg === 'string' && msg.toLowerCase().includes(' ice ')) {
          console.warn(msg)
          return
        }

        window.displayIncompatibleBrowser()
      }

      if (/MSIE|Trident/.test(window.navigator.userAgent) ) {
        window.displayIncompatibleBrowser()
      }
    </script>

  </body>
</html>