-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathContentSecurityPolicyIssueDetails.php
More file actions
98 lines (86 loc) · 2.52 KB
/
ContentSecurityPolicyIssueDetails.php
File metadata and controls
98 lines (86 loc) · 2.52 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
namespace ChromeDevtoolsProtocol\Model\Audits;
/**
* Named type Audits.ContentSecurityPolicyIssueDetails.
*
* @generated This file has been auto-generated, do not edit.
*
* @author Jakub Kulhan <jakub.kulhan@gmail.com>
*/
final class ContentSecurityPolicyIssueDetails implements \JsonSerializable
{
/**
* The url not included in allowed sources.
*
* @var string|null
*/
public $blockedURL;
/**
* Specific directive that is violated, causing the CSP issue.
*
* @var string
*/
public $violatedDirective;
/** @var bool */
public $isReportOnly;
/** @var string */
public $contentSecurityPolicyViolationType;
/** @var AffectedFrame|null */
public $frameAncestor;
/** @var SourceCodeLocation|null */
public $sourceCodeLocation;
/** @var int */
public $violatingNodeId;
public static function fromJson($data)
{
$instance = new static();
if (isset($data->blockedURL)) {
$instance->blockedURL = (string)$data->blockedURL;
}
if (isset($data->violatedDirective)) {
$instance->violatedDirective = (string)$data->violatedDirective;
}
if (isset($data->isReportOnly)) {
$instance->isReportOnly = (bool)$data->isReportOnly;
}
if (isset($data->contentSecurityPolicyViolationType)) {
$instance->contentSecurityPolicyViolationType = (string)$data->contentSecurityPolicyViolationType;
}
if (isset($data->frameAncestor)) {
$instance->frameAncestor = AffectedFrame::fromJson($data->frameAncestor);
}
if (isset($data->sourceCodeLocation)) {
$instance->sourceCodeLocation = SourceCodeLocation::fromJson($data->sourceCodeLocation);
}
if (isset($data->violatingNodeId)) {
$instance->violatingNodeId = (int)$data->violatingNodeId;
}
return $instance;
}
public function jsonSerialize(): mixed
{
$data = new \stdClass();
if ($this->blockedURL !== null) {
$data->blockedURL = $this->blockedURL;
}
if ($this->violatedDirective !== null) {
$data->violatedDirective = $this->violatedDirective;
}
if ($this->isReportOnly !== null) {
$data->isReportOnly = $this->isReportOnly;
}
if ($this->contentSecurityPolicyViolationType !== null) {
$data->contentSecurityPolicyViolationType = $this->contentSecurityPolicyViolationType;
}
if ($this->frameAncestor !== null) {
$data->frameAncestor = $this->frameAncestor->jsonSerialize();
}
if ($this->sourceCodeLocation !== null) {
$data->sourceCodeLocation = $this->sourceCodeLocation->jsonSerialize();
}
if ($this->violatingNodeId !== null) {
$data->violatingNodeId = $this->violatingNodeId;
}
return $data;
}
}