-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathExternalVideoReplacer.php
More file actions
78 lines (64 loc) · 3.3 KB
/
ExternalVideoReplacer.php
File metadata and controls
78 lines (64 loc) · 3.3 KB
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
74
75
76
77
78
<?php
declare(strict_types=1);
namespace CustomGento\Cookiebot\Model;
class ExternalVideoReplacer
{
public function replaceIframeSources(string $content): string
{
$content = $this->replaceIframeTags($content);
$content = $this->replaceVideoBackgroundAttributes($content);
return $content;
}
private function replaceIframeTags(string $content): string
{
$iframePatterns = [
// YouTube patterns
'/<iframe([^>]*)\s+src=["\'](https?:\/\/(?:www\.)?(?:youtube\.com|youtube-nocookie\.com)\/embed\/[^"\']+)["\']([^>]*)>/i',
'/<iframe([^>]*)\s+src=["\'](https?:\/\/(?:www\.)?youtu\.be\/[^"\']+)["\']([^>]*)>/i',
// Vimeo patterns
'/<iframe([^>]*)\s+src=["\'](https?:\/\/(?:www\.)?vimeo\.com\/[^"\']+)["\']([^>]*)>/i',
'/<iframe([^>]*)\s+src=["\'](https?:\/\/(?:www\.)?player\.vimeo\.com\/[^"\']+)["\']([^>]*)>/i'
];
foreach ($iframePatterns as $pattern) {
$content = preg_replace_callback($pattern, function (array $matches) {
$beforeSrc = $matches[1];
$iframeUrl = $matches[2];
$afterSrc = $matches[3];
// Check if data-cookieconsent already exists
if (preg_match('/data-cookieconsent=["\'][^"\']*["\']/', $beforeSrc . $afterSrc)) {
// If data-cookieconsent already exists, just change src to data-cookieblock-src
return '<iframe' . $beforeSrc . ' data-cookieblock-src="' . $iframeUrl . '"' . $afterSrc . '>';
}
return '<iframe' . $beforeSrc . ' data-cookieblock-src="' . $iframeUrl
. '" data-cookieconsent="marketing"' . $afterSrc . '>';
}, $content);
}
return $content;
}
private function replaceVideoBackgroundAttributes(string $content): string
{
// Pattern to match elements with data-video-src attribute containing YouTube or Vimeo URLs
$videoBackgroundPatterns = [
// YouTube patterns in data-video-src
'/(<[^>]+)data-video-src=["\'](https?:\/\/(?:www\.)?(?:youtube\.com|youtube-nocookie\.com)\/embed\/[^"\']+)["\']([^>]*>)/i',
'/(<[^>]+)data-video-src=["\'](https?:\/\/(?:www\.)?youtu\.be\/[^"\']+)["\']([^>]*>)/i',
// Vimeo patterns in data-video-src
'/(<[^>]+)data-video-src=["\'](https?:\/\/(?:www\.)?vimeo\.com\/[^"\']+)["\']([^>]*>)/i',
'/(<[^>]+)data-video-src=["\'](https?:\/\/(?:www\.)?player\.vimeo\.com\/[^"\']+)["\']([^>]*>)/i'
];
foreach ($videoBackgroundPatterns as $pattern) {
$content = preg_replace_callback($pattern, function (array $matches) {
$beforeAttr = $matches[1];
$videoUrl = $matches[2];
$afterAttr = $matches[3];
// Check if data-cookieconsent already exists
if (preg_match('/data-cookieconsent=["\'][^"\']*["\']/', $beforeAttr . $afterAttr)) {
return $beforeAttr . 'data-cookieblock-src="' . $videoUrl . '"' . $afterAttr;
}
return $beforeAttr . 'data-cookieblock-src="' . $videoUrl
. '" data-cookieconsent="marketing"' . $afterAttr;
}, $content);
}
return $content;
}
}