|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
declare(strict_types=1); |
|
4
|
|
|
|
|
5
|
|
|
/* |
|
6
|
|
|
* This file is part of the TYPO3 CMS project. |
|
7
|
|
|
* |
|
8
|
|
|
* It is free software; you can redistribute it and/or modify it under |
|
9
|
|
|
* the terms of the GNU General Public License, either version 2 |
|
10
|
|
|
* of the License, or any later version. |
|
11
|
|
|
* |
|
12
|
|
|
* For the full copyright and license information, please read the |
|
13
|
|
|
* LICENSE.txt file that was distributed with this source code. |
|
14
|
|
|
* |
|
15
|
|
|
* The TYPO3 project - inspiring people to share! |
|
16
|
|
|
*/ |
|
17
|
|
|
|
|
18
|
|
|
namespace TYPO3\CMS\Install\SystemEnvironment\ServerResponse; |
|
19
|
|
|
|
|
20
|
|
|
/** |
|
21
|
|
|
* Evaluates a Content-Security-Policy HTTP header. |
|
22
|
|
|
* |
|
23
|
|
|
* @internal should only be used from within TYPO3 Core |
|
24
|
|
|
*/ |
|
25
|
|
|
class ContentSecurityPolicyDirective |
|
26
|
|
|
{ |
|
27
|
|
|
protected const RULE_PATTERN = '#(?:\'(?<instruction>[^\']+)\')|(?<source>[^\s]+)#'; |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* @var string |
|
31
|
|
|
*/ |
|
32
|
|
|
protected $name; |
|
33
|
|
|
|
|
34
|
|
|
/** |
|
35
|
|
|
* @var string[] |
|
36
|
|
|
*/ |
|
37
|
|
|
protected $instructions = []; |
|
38
|
|
|
|
|
39
|
|
|
/** |
|
40
|
|
|
* @var string[] |
|
41
|
|
|
*/ |
|
42
|
|
|
protected $sources = []; |
|
43
|
|
|
|
|
44
|
|
|
public function __construct(string $name, string $rule) |
|
45
|
|
|
{ |
|
46
|
|
|
$this->name = $name; |
|
47
|
|
|
if (preg_match_all(self::RULE_PATTERN, $rule, $matches)) { |
|
48
|
|
|
foreach (array_keys($matches[0]) as $index) { |
|
49
|
|
|
if ($matches['instruction'][$index] !== '') { |
|
50
|
|
|
$this->instructions[] = $matches['instruction'][$index]; |
|
51
|
|
|
} elseif ($matches['source'][$index] !== '') { |
|
52
|
|
|
$this->sources[] = $matches['source'][$index]; |
|
53
|
|
|
} |
|
54
|
|
|
} |
|
55
|
|
|
} |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
|
|
public function getName(): string |
|
59
|
|
|
{ |
|
60
|
|
|
return $this->name; |
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
|
|
/** |
|
64
|
|
|
* @return string[] |
|
65
|
|
|
*/ |
|
66
|
|
|
public function getInstructions(): array |
|
67
|
|
|
{ |
|
68
|
|
|
return $this->instructions; |
|
69
|
|
|
} |
|
70
|
|
|
|
|
71
|
|
|
/** |
|
72
|
|
|
* @return string[] |
|
73
|
|
|
*/ |
|
74
|
|
|
public function getSources(): array |
|
75
|
|
|
{ |
|
76
|
|
|
return $this->sources; |
|
77
|
|
|
} |
|
78
|
|
|
|
|
79
|
|
|
public function hasInstructions(string ...$instructions): bool |
|
80
|
|
|
{ |
|
81
|
|
|
return array_intersect($this->instructions, $instructions) !== []; |
|
82
|
|
|
} |
|
83
|
|
|
} |
|
84
|
|
|
|