|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Egulias\EmailValidator\Parser; |
|
4
|
|
|
|
|
5
|
|
|
use Egulias\EmailValidator\EmailLexer; |
|
6
|
|
|
use Egulias\EmailValidator\Exception\CRLFAtTheEnd; |
|
7
|
|
|
use Egulias\EmailValidator\Exception\CRLFX2; |
|
8
|
|
|
use Egulias\EmailValidator\Exception\ExpectingQPair; |
|
9
|
|
|
use Egulias\EmailValidator\Exception\ExpectingATEXT; |
|
10
|
|
|
use Egulias\EmailValidator\Exception\UnclosedComment; |
|
11
|
|
|
use Egulias\EmailValidator\Result\InvalidEmail; |
|
12
|
|
|
use Egulias\EmailValidator\Result\Reason\ConsecutiveAt; |
|
13
|
|
|
use Egulias\EmailValidator\Result\Reason\ConsecutiveDot; |
|
14
|
|
|
use Egulias\EmailValidator\Result\Reason\ExpectingATEXT as ReasonExpectingATEXT; |
|
15
|
|
|
use Egulias\EmailValidator\Result\Result; |
|
16
|
|
|
use Egulias\EmailValidator\Result\ValidEmail; |
|
17
|
|
|
use Egulias\EmailValidator\Warning\CFWSNearAt; |
|
18
|
|
|
use Egulias\EmailValidator\Warning\Comment; |
|
|
|
|
|
|
19
|
|
|
use Egulias\EmailValidator\Warning\QuotedPart; |
|
20
|
|
|
|
|
21
|
|
|
abstract class Parser |
|
22
|
|
|
{ |
|
23
|
|
|
/** |
|
24
|
|
|
* @var \Egulias\EmailValidator\Warning\Warning[] |
|
25
|
|
|
*/ |
|
26
|
|
|
protected $warnings = []; |
|
27
|
|
|
|
|
28
|
|
|
/** |
|
29
|
|
|
* @var EmailLexer |
|
30
|
|
|
*/ |
|
31
|
|
|
protected $lexer; |
|
32
|
|
|
|
|
33
|
|
|
/** |
|
34
|
|
|
* @var int |
|
35
|
|
|
*/ |
|
36
|
|
|
protected $openedParenthesis = 0; |
|
37
|
|
|
|
|
38
|
|
|
public function __construct(EmailLexer $lexer) |
|
39
|
|
|
{ |
|
40
|
|
|
$this->lexer = $lexer; |
|
41
|
|
|
} |
|
42
|
|
|
|
|
43
|
|
|
/** |
|
44
|
|
|
* @return \Egulias\EmailValidator\Warning\Warning[] |
|
45
|
|
|
*/ |
|
46
|
|
|
public function getWarnings() |
|
47
|
|
|
{ |
|
48
|
|
|
return $this->warnings; |
|
49
|
|
|
} |
|
50
|
|
|
|
|
51
|
|
|
/** |
|
52
|
|
|
* @param string $str |
|
53
|
|
|
*/ |
|
54
|
|
|
abstract public function parse($str); |
|
55
|
|
|
|
|
56
|
|
|
/** @return int */ |
|
57
|
|
|
public function getOpenedParenthesis() |
|
58
|
|
|
{ |
|
59
|
|
|
return $this->openedParenthesis; |
|
60
|
|
|
} |
|
61
|
|
|
|
|
62
|
|
|
/** |
|
63
|
|
|
* validateQuotedPair |
|
64
|
|
|
*/ |
|
65
|
|
|
protected function validateQuotedPair() |
|
66
|
|
|
{ |
|
67
|
|
|
if (!($this->lexer->token['type'] === EmailLexer::INVALID |
|
68
|
|
|
|| $this->lexer->token['type'] === EmailLexer::C_DEL)) { |
|
69
|
|
|
throw new ExpectingQPair(); |
|
70
|
|
|
} |
|
71
|
|
|
|
|
72
|
|
|
$this->warnings[QuotedPart::CODE] = |
|
73
|
|
|
new QuotedPart($this->lexer->getPrevious()['type'], $this->lexer->token['type']); |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
|
|
protected function parseComments() |
|
77
|
|
|
{ |
|
78
|
|
|
$this->openedParenthesis = 1; |
|
79
|
|
|
$this->isUnclosedComment(); |
|
80
|
|
|
$this->warnings[Comment::CODE] = new Comment(); |
|
81
|
|
|
while (!$this->lexer->isNextToken(EmailLexer::S_CLOSEPARENTHESIS)) { |
|
82
|
|
|
if ($this->lexer->isNextToken(EmailLexer::S_OPENPARENTHESIS)) { |
|
83
|
|
|
$this->openedParenthesis++; |
|
84
|
|
|
} |
|
85
|
|
|
$this->warnEscaping(); |
|
86
|
|
|
$this->lexer->moveNext(); |
|
87
|
|
|
} |
|
88
|
|
|
|
|
89
|
|
|
$this->lexer->moveNext(); |
|
90
|
|
|
if ($this->lexer->isNextTokenAny(array(EmailLexer::GENERIC, EmailLexer::S_EMPTY))) { |
|
91
|
|
|
throw new ExpectingATEXT(); |
|
92
|
|
|
} |
|
93
|
|
|
|
|
94
|
|
|
if ($this->lexer->isNextToken(EmailLexer::S_AT)) { |
|
95
|
|
|
$this->warnings[CFWSNearAt::CODE] = new CFWSNearAt(); |
|
96
|
|
|
} |
|
97
|
|
|
} |
|
98
|
|
|
|
|
99
|
|
|
/** |
|
100
|
|
|
* @return bool |
|
101
|
|
|
*/ |
|
102
|
|
|
protected function isUnclosedComment() |
|
103
|
|
|
{ |
|
104
|
|
|
try { |
|
105
|
|
|
$this->lexer->find(EmailLexer::S_CLOSEPARENTHESIS); |
|
106
|
|
|
return true; |
|
107
|
|
|
} catch (\RuntimeException $e) { |
|
108
|
|
|
throw new UnclosedComment(); |
|
109
|
|
|
} |
|
110
|
|
|
} |
|
111
|
|
|
|
|
112
|
|
View Code Duplication |
protected function parseFWS() |
|
|
|
|
|
|
113
|
|
|
{ |
|
114
|
|
|
$foldingWS = new FoldingWhiteSpace($this->lexer); |
|
115
|
|
|
$resultFWS = $foldingWS->parse('remove'); |
|
116
|
|
|
//if ($resultFWS->isValid()) { |
|
117
|
|
|
$this->warnings = array_merge($this->warnings, $foldingWS->getWarnings()); |
|
118
|
|
|
//} |
|
119
|
|
|
return $resultFWS; |
|
120
|
|
|
} |
|
121
|
|
|
|
|
122
|
|
|
protected function checkConsecutiveDots() |
|
123
|
|
|
{ |
|
124
|
|
View Code Duplication |
if ($this->lexer->token['type'] === EmailLexer::S_DOT && $this->lexer->isNextToken(EmailLexer::S_DOT)) { |
|
|
|
|
|
|
125
|
|
|
return new InvalidEmail(new ConsecutiveDot(), $this->lexer->token['value']); |
|
126
|
|
|
} |
|
127
|
|
|
} |
|
128
|
|
|
|
|
129
|
|
|
/** |
|
130
|
|
|
* @return bool |
|
131
|
|
|
*/ |
|
132
|
|
View Code Duplication |
protected function isFWS() |
|
|
|
|
|
|
133
|
|
|
{ |
|
134
|
|
|
if ($this->escaped()) { |
|
135
|
|
|
return false; |
|
136
|
|
|
} |
|
137
|
|
|
|
|
138
|
|
|
return $this->lexer->token['type'] === EmailLexer::S_SP || |
|
139
|
|
|
$this->lexer->token['type'] === EmailLexer::S_HTAB || |
|
140
|
|
|
$this->lexer->token['type'] === EmailLexer::S_CR || |
|
141
|
|
|
$this->lexer->token['type'] === EmailLexer::S_LF || |
|
142
|
|
|
$this->lexer->token['type'] === EmailLexer::CRLF; |
|
143
|
|
|
} |
|
144
|
|
|
|
|
145
|
|
|
/** |
|
146
|
|
|
* @return bool |
|
147
|
|
|
*/ |
|
148
|
|
View Code Duplication |
protected function escaped() |
|
|
|
|
|
|
149
|
|
|
{ |
|
150
|
|
|
$previous = $this->lexer->getPrevious(); |
|
151
|
|
|
|
|
152
|
|
|
return $previous && $previous['type'] === EmailLexer::S_BACKSLASH |
|
|
|
|
|
|
153
|
|
|
&& |
|
154
|
|
|
$this->lexer->token['type'] !== EmailLexer::GENERIC; |
|
155
|
|
|
} |
|
156
|
|
|
|
|
157
|
|
|
/** |
|
158
|
|
|
* @return bool |
|
159
|
|
|
*/ |
|
160
|
|
|
protected function warnEscaping() : bool |
|
161
|
|
|
{ |
|
162
|
|
|
//Backslash found |
|
163
|
|
|
if ($this->lexer->token['type'] !== EmailLexer::S_BACKSLASH) { |
|
164
|
|
|
return false; |
|
165
|
|
|
} |
|
166
|
|
|
|
|
167
|
|
|
if ($this->lexer->isNextToken(EmailLexer::GENERIC)) { |
|
168
|
|
|
throw new ExpectingATEXT(); |
|
169
|
|
|
} |
|
170
|
|
|
|
|
171
|
|
View Code Duplication |
if (!$this->lexer->isNextTokenAny(array(EmailLexer::S_SP, EmailLexer::S_HTAB, EmailLexer::C_DEL))) { |
|
|
|
|
|
|
172
|
|
|
return false; |
|
173
|
|
|
} |
|
174
|
|
|
|
|
175
|
|
|
$this->warnings[QuotedPart::CODE] = |
|
176
|
|
|
new QuotedPart($this->lexer->getPrevious()['type'], $this->lexer->token['type']); |
|
177
|
|
|
return true; |
|
178
|
|
|
|
|
179
|
|
|
} |
|
180
|
|
|
|
|
181
|
|
|
protected function validateEscaping() : Result |
|
182
|
|
|
{ |
|
183
|
|
|
//Backslash found |
|
184
|
|
|
if ($this->lexer->token['type'] !== EmailLexer::S_BACKSLASH) { |
|
185
|
|
|
return new ValidEmail(); |
|
186
|
|
|
} |
|
187
|
|
|
|
|
188
|
|
|
if ($this->lexer->isNextToken(EmailLexer::GENERIC)) { |
|
189
|
|
|
return new InvalidEmail(new ReasonExpectingATEXT('Found ATOM after escaping'), $this->lexer->token['value']); |
|
190
|
|
|
} |
|
191
|
|
|
|
|
192
|
|
View Code Duplication |
if (!$this->lexer->isNextTokenAny(array(EmailLexer::S_SP, EmailLexer::S_HTAB, EmailLexer::C_DEL))) { |
|
|
|
|
|
|
193
|
|
|
return new ValidEmail(); |
|
194
|
|
|
} |
|
195
|
|
|
|
|
196
|
|
|
$this->warnings[QuotedPart::CODE] = |
|
197
|
|
|
new QuotedPart($this->lexer->getPrevious()['type'], $this->lexer->token['type']); |
|
198
|
|
|
|
|
199
|
|
|
return new ValidEmail(); |
|
200
|
|
|
|
|
201
|
|
|
} |
|
202
|
|
|
|
|
203
|
|
|
protected function checkCRLFInFWS() |
|
204
|
|
|
{ |
|
205
|
|
|
if ($this->lexer->token['type'] !== EmailLexer::CRLF) { |
|
206
|
|
|
return; |
|
207
|
|
|
} |
|
208
|
|
|
|
|
209
|
|
|
if (!$this->lexer->isNextTokenAny(array(EmailLexer::S_SP, EmailLexer::S_HTAB))) { |
|
210
|
|
|
throw new CRLFX2(); |
|
211
|
|
|
} |
|
212
|
|
|
|
|
213
|
|
|
if (!$this->lexer->isNextTokenAny(array(EmailLexer::S_SP, EmailLexer::S_HTAB))) { |
|
214
|
|
|
throw new CRLFAtTheEnd(); |
|
215
|
|
|
} |
|
216
|
|
|
} |
|
217
|
|
|
} |
|
218
|
|
|
|
Let’s assume that you have a directory layout like this:
. |-- OtherDir | |-- Bar.php | `-- Foo.php `-- SomeDir `-- Foo.phpand let’s assume the following content of
Bar.php:If both files
OtherDir/Foo.phpandSomeDir/Foo.phpare loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.phpHowever, as
OtherDir/Foo.phpdoes not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: