You are here

Instagram.php in Video 8

Same filename and directory in other branches
  1. 8.2 src/Plugin/video/Provider/Instagram.php

File

src/Plugin/video/Provider/Instagram.php
View source
<?php

namespace Drupal\video\Plugin\video\Provider;

use Drupal\video\ProviderPluginBase;

/**
 * @VideoEmbeddableProvider(
 *   id = "instagram",
 *   label = @Translation("Instagram"),
 *   description = @Translation("Instagram Video Provider"),
 *   regular_expressions = {
 *     "@^.*?instagram\.com\/p\/(?<id>(.*?))[\/]?$@i",
 *   },
 *   mimetype = "video/instagram",
 *   stream_wrapper = "instagram"
 * )
 */
class Instagram extends ProviderPluginBase {

  /**
   * {@inheritdoc}
   */
  public function renderEmbedCode($settings) {
    $file = $this
      ->getVideoFile();
    $data = $this
      ->getVideoMetadata();
    return [
      '#type' => 'html_tag',
      '#tag' => 'iframe',
      '#attributes' => [
        'width' => $settings['width'],
        'height' => '100%',
        'frameborder' => '0',
        'allowfullscreen' => 'allowfullscreen',
        'src' => sprintf('//instagram.com/p/%s/embed/?autoplay=%d', $data['id'], $settings['autoplay']),
      ],
      '0' => [
        '#type' => 'html_tag',
        '#tag' => 'script',
        '#attributes' => [
          'type' => 'text/javascript',
          'src' => '//platform.instagram.com/en_US/embeds.js',
          'async',
          'defer',
        ],
        '#value' => '',
      ],
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function getRemoteThumbnailUrl() {
    $data = $this
      ->getVideoMetadata();
    return 'http://instagr.am/p/' . $data['id'] . '/media/?size=l';
  }

}

Classes

Namesort descending Description
Instagram Plugin annotation @VideoEmbeddableProvider( id = "instagram", label = @Translation("Instagram"), description = @Translation("Instagram Video Provider"), regular_expressions = { "@^.*?instagram\.com\/p\/(?<id>(.*?))[\/]?$@i", }, …