-
Notifications
You must be signed in to change notification settings - Fork 8
/
YoutubeConverter.php
73 lines (62 loc) · 2.18 KB
/
YoutubeConverter.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
namespace Predmond\HtmlToAmp\Converter\Extensions;
use League\Event\EventInterface;
use League\Event\EmitterInterface as Emitter;
use Predmond\HtmlToAmp\ElementInterface;
use Predmond\HtmlToAmp\Converter\ConverterInterface;
class YoutubeConverter implements ConverterInterface
{
public function handleIframe(EventInterface $event, ElementInterface $element)
{
$src = $element->getAttribute('src');
if (1 === preg_match('/youtube\.com\/(?:v|embed)\/([a-zA-z0-9_-]+)/i', $src, $match)) {
$container = $element->createWritableElement('div', ['class' => 'youtube-container']);
$container->appendChild($this->createAmpTag($element, $match[1]));
$element->replaceWith($container);
$event->stopPropagation();
}
}
public function handleObject(EventInterface $event, ElementInterface $element)
{
$embedCode = false;
/** @var ElementInterface $child */
foreach ($element->getChildren() as $child) {
if (1 === preg_match('/youtube\.com\/(?:v|embed)\/([a-zA-z0-9_-]+)/i', $child->getAttribute('value'), $match)) {
$embedCode = $match[1];
}
}
if ($embedCode !== false) {
$container = $element->createWritableElement('div', [
'class' => 'youtube-container'
]);
$container->appendChild($this->createAmpTag($element, $embedCode));
$element->replaceWith($container);
$event->stopPropagation();
}
}
/**
* @param ElementInterface $element
* @param $embedCode
* @return ElementInterface
*/
private function createAmpTag(ElementInterface $element, $embedCode)
{
return $element->createWritableElement('amp-youtube', [
'data-videoid' => $embedCode,
'layout' => 'responsive',
// 16:9 Ratio
'width' => '560',
'height' => '315'
]);
}
/**
* @return array
*/
public function getSubscribedEvents()
{
return [
'iframe' => ['handleIframe', Emitter::P_HIGH],
'object' => ['handleObject', Emitter::P_HIGH]
];
}
}