|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* This file is part of the ZBateson\MailMimeParser project. |
|
4
|
|
|
* |
|
5
|
|
|
* @license http://opensource.org/licenses/bsd-license.php BSD |
|
6
|
|
|
*/ |
|
7
|
|
|
namespace ZBateson\MailMimeParser\Header\Consumer; |
|
8
|
|
|
|
|
9
|
|
|
use ZBateson\MailMimeParser\Header\Part\CommentPart; |
|
10
|
|
|
|
|
11
|
|
|
/** |
|
12
|
|
|
* Serves as a base-consumer for ID headers (like Message-ID and Content-ID). |
|
13
|
|
|
* |
|
14
|
|
|
* IdBaseConsumer handles invalidly-formatted IDs not within '<' and '>' |
|
15
|
|
|
* characters. Processing for validly-formatted IDs are passed on to its |
|
16
|
|
|
* sub-consumer, IdConsumer. |
|
17
|
|
|
* |
|
18
|
|
|
* @author Zaahid Bateson |
|
19
|
|
|
*/ |
|
20
|
|
|
class IdBaseConsumer extends AbstractConsumer |
|
21
|
|
|
{ |
|
22
|
|
|
/** |
|
23
|
|
|
* Returns the following as sub-consumers: |
|
24
|
|
|
* - \ZBateson\MailMimeParser\Header\Consumer\CommentConsumer |
|
25
|
|
|
* - \ZBateson\MailMimeParser\Header\Consumer\QuotedStringConsumer |
|
26
|
|
|
* - \ZBateson\MailMimeParser\Header\Consumer\IdConsumer |
|
27
|
|
|
* |
|
28
|
|
|
* @return AbstractConsumer[] the sub-consumers |
|
29
|
|
|
*/ |
|
30
|
3 |
|
protected function getSubConsumers() |
|
31
|
|
|
{ |
|
32
|
|
|
return [ |
|
33
|
3 |
|
$this->consumerService->getCommentConsumer(), |
|
34
|
3 |
|
$this->consumerService->getQuotedStringConsumer(), |
|
35
|
3 |
|
$this->consumerService->getIdConsumer() |
|
36
|
|
|
]; |
|
37
|
|
|
} |
|
38
|
|
|
|
|
39
|
|
|
/** |
|
40
|
|
|
* Returns '\s+' as a whitespace separator. |
|
41
|
|
|
* |
|
42
|
|
|
* @return string[] an array of regex pattern matchers |
|
43
|
|
|
*/ |
|
44
|
3 |
|
protected function getTokenSeparators() |
|
45
|
|
|
{ |
|
46
|
3 |
|
return ['\s+']; |
|
47
|
|
|
} |
|
48
|
|
|
|
|
49
|
|
|
/** |
|
50
|
|
|
* IdBaseConsumer doesn't have start/end tokens, and so always returns |
|
51
|
|
|
* false. |
|
52
|
|
|
* |
|
53
|
|
|
* @param string $token |
|
54
|
|
|
* @return boolean false |
|
55
|
|
|
*/ |
|
56
|
3 |
|
protected function isEndToken($token) |
|
57
|
|
|
{ |
|
58
|
3 |
|
return false; |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
|
|
/** |
|
62
|
|
|
* IdBaseConsumer doesn't have start/end tokens, and so always returns |
|
63
|
|
|
* false. |
|
64
|
|
|
* |
|
65
|
|
|
* @codeCoverageIgnore |
|
66
|
|
|
* @param string $token |
|
67
|
|
|
* @return boolean false |
|
68
|
|
|
*/ |
|
69
|
|
|
protected function isStartToken($token) |
|
70
|
|
|
{ |
|
71
|
|
|
return false; |
|
72
|
|
|
} |
|
73
|
|
|
|
|
74
|
|
|
/** |
|
75
|
|
|
* Returns null for whitespace, and LiteralPart for anything else. |
|
76
|
|
|
* |
|
77
|
|
|
* @param string $token the token |
|
78
|
|
|
* @param bool $isLiteral set to true if the token represents a literal - |
|
79
|
|
|
* e.g. an escaped token |
|
80
|
|
|
* @return \ZBateson\MailMimeParser\Header\Part\HeaderPart|null the |
|
81
|
|
|
* constructed header part or null if the token should be ignored |
|
82
|
|
|
*/ |
|
83
|
2 |
|
protected function getPartForToken($token, $isLiteral) |
|
84
|
|
|
{ |
|
85
|
2 |
|
if (preg_match('/^\s+$/', $token)) { |
|
86
|
2 |
|
return null; |
|
87
|
|
|
} |
|
88
|
|
|
return $this->partFactory->newLiteralPart($token); |
|
89
|
|
|
} |
|
90
|
|
|
|
|
91
|
|
|
/** |
|
92
|
|
|
* Overridden to filter out any found CommentPart objects. |
|
93
|
|
|
* |
|
94
|
|
|
* @param \ZBateson\MailMimeParser\Header\Part\HeaderPart[] $parts |
|
95
|
|
|
* @return \ZBateson\MailMimeParser\Header\Part\HeaderPart[] |
|
96
|
|
|
*/ |
|
97
|
|
|
protected function processParts(array $parts) |
|
98
|
|
|
{ |
|
99
|
3 |
|
return array_values(array_filter($parts, function ($part) { |
|
100
|
3 |
|
if (empty($part) || $part instanceof CommentPart) { |
|
101
|
2 |
|
return false; |
|
102
|
|
|
} |
|
103
|
3 |
|
return true; |
|
104
|
3 |
|
})); |
|
105
|
|
|
} |
|
106
|
|
|
} |
|
107
|
|
|
|