1 | <?php |
||
16 | class UUEncodeStreamFilter extends php_user_filter |
||
17 | { |
||
18 | /** |
||
19 | * Name used when registering with stream_filter_register. |
||
20 | */ |
||
21 | const STREAM_FILTER_NAME = 'mailmimeparser-uudecode'; |
||
22 | |||
23 | /** |
||
24 | * @var string Leftovers from the last incomplete line that was parsed, to |
||
25 | * be prepended to the next line read. |
||
26 | */ |
||
27 | private $leftover = ''; |
||
28 | |||
29 | /** |
||
30 | * Returns an array of complete lines (including line endings) from the |
||
31 | * passed $bucket object. |
||
32 | * |
||
33 | * If the last line on $bucket is incomplete, it's assigned to |
||
34 | * $this->leftover and prepended to the first element of the first line in |
||
35 | * the next call to getLines. |
||
36 | * |
||
37 | * @param object $bucket |
||
38 | * @return string[] |
||
39 | */ |
||
40 | private function getLines($bucket) |
||
58 | |||
59 | /** |
||
60 | * Returns true if the passed $line is empty or matches the beginning header |
||
61 | * pattern for a uuencoded message. |
||
62 | * |
||
63 | * @param string $line |
||
64 | * @return bool |
||
65 | */ |
||
66 | private function isEmptyOrStartLine($line) |
||
70 | |||
71 | /** |
||
72 | * Returns true if the passed $line is either a backtick character '`' or |
||
73 | * the string 'end' signifying the end of the uuencoded message. |
||
74 | * |
||
75 | * @param string $line |
||
76 | * @return bool |
||
77 | */ |
||
78 | private function isEndLine($line) |
||
82 | |||
83 | /** |
||
84 | * Filters a single line of encoded input. Returns NULL if the end has been |
||
85 | * reached. |
||
86 | * |
||
87 | * @param string $line |
||
88 | * @return string the decoded line |
||
89 | */ |
||
90 | private function filterLine($line) |
||
100 | |||
101 | /** |
||
102 | * Filters the lines in the passed $lines array, returning a concatenated |
||
103 | * string of decoded lines. |
||
104 | * |
||
105 | * @param array $lines |
||
106 | * @param int $consumed |
||
107 | * @return string |
||
108 | */ |
||
109 | private function filterBucketLines(array $lines, &$consumed) |
||
122 | |||
123 | /** |
||
124 | * Filter implementation converts encoding before returning PSFS_PASS_ON. |
||
125 | * |
||
126 | * @param resource $in |
||
127 | * @param resource $out |
||
128 | * @param int $consumed |
||
129 | * @param bool $closing |
||
130 | * @return int |
||
131 | */ |
||
132 | public function filter($in, $out, &$consumed, $closing) |
||
141 | } |
||
142 |