PageRenderTime 245ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 1ms

/modules/email/vendor/swift/classes/Swift/Encoder/QpEncoder.php

https://bitbucket.org/seyar/parshin.local
PHP | 273 lines | 160 code | 22 blank | 91 comment | 11 complexity | 14b3ca5570d355d659696c87da246eee MD5 | raw file
Possible License(s): BSD-3-Clause, LGPL-2.1
  1. <?php
  2. /*
  3. The Quoted Printable encoder in Swift Mailer.
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. //@require 'Swift/Encoder.php';
  16. //@require 'Swift/CharacterStream.php';
  17. /**
  18. * Handles Quoted Printable (QP) Encoding in Swift Mailer.
  19. * Possibly the most accurate RFC 2045 QP implementation found in PHP.
  20. * @package Swift
  21. * @subpackage Encoder
  22. * @author Chris Corbyn
  23. */
  24. class Swift_Encoder_QpEncoder implements Swift_Encoder
  25. {
  26. /**
  27. * The CharacterStream used for reading characters (as opposed to bytes).
  28. * @var Swift_CharacterStream
  29. * @access protected
  30. */
  31. protected $_charStream;
  32. /**
  33. * A filter used if input should be canonicalized.
  34. * @var Swift_StreamFilter
  35. * @access protected
  36. */
  37. protected $_filter;
  38. /**
  39. * Pre-computed QP for HUGE optmization.
  40. * @var string[]
  41. * @access protected
  42. */
  43. protected static $_qpMap = array(
  44. 0 => '=00', 1 => '=01', 2 => '=02', 3 => '=03', 4 => '=04',
  45. 5 => '=05', 6 => '=06', 7 => '=07', 8 => '=08', 9 => '=09',
  46. 10 => '=0A', 11 => '=0B', 12 => '=0C', 13 => '=0D', 14 => '=0E',
  47. 15 => '=0F', 16 => '=10', 17 => '=11', 18 => '=12', 19 => '=13',
  48. 20 => '=14', 21 => '=15', 22 => '=16', 23 => '=17', 24 => '=18',
  49. 25 => '=19', 26 => '=1A', 27 => '=1B', 28 => '=1C', 29 => '=1D',
  50. 30 => '=1E', 31 => '=1F', 32 => '=20', 33 => '=21', 34 => '=22',
  51. 35 => '=23', 36 => '=24', 37 => '=25', 38 => '=26', 39 => '=27',
  52. 40 => '=28', 41 => '=29', 42 => '=2A', 43 => '=2B', 44 => '=2C',
  53. 45 => '=2D', 46 => '=2E', 47 => '=2F', 48 => '=30', 49 => '=31',
  54. 50 => '=32', 51 => '=33', 52 => '=34', 53 => '=35', 54 => '=36',
  55. 55 => '=37', 56 => '=38', 57 => '=39', 58 => '=3A', 59 => '=3B',
  56. 60 => '=3C', 61 => '=3D', 62 => '=3E', 63 => '=3F', 64 => '=40',
  57. 65 => '=41', 66 => '=42', 67 => '=43', 68 => '=44', 69 => '=45',
  58. 70 => '=46', 71 => '=47', 72 => '=48', 73 => '=49', 74 => '=4A',
  59. 75 => '=4B', 76 => '=4C', 77 => '=4D', 78 => '=4E', 79 => '=4F',
  60. 80 => '=50', 81 => '=51', 82 => '=52', 83 => '=53', 84 => '=54',
  61. 85 => '=55', 86 => '=56', 87 => '=57', 88 => '=58', 89 => '=59',
  62. 90 => '=5A', 91 => '=5B', 92 => '=5C', 93 => '=5D', 94 => '=5E',
  63. 95 => '=5F', 96 => '=60', 97 => '=61', 98 => '=62', 99 => '=63',
  64. 100 => '=64', 101 => '=65', 102 => '=66', 103 => '=67', 104 => '=68',
  65. 105 => '=69', 106 => '=6A', 107 => '=6B', 108 => '=6C', 109 => '=6D',
  66. 110 => '=6E', 111 => '=6F', 112 => '=70', 113 => '=71', 114 => '=72',
  67. 115 => '=73', 116 => '=74', 117 => '=75', 118 => '=76', 119 => '=77',
  68. 120 => '=78', 121 => '=79', 122 => '=7A', 123 => '=7B', 124 => '=7C',
  69. 125 => '=7D', 126 => '=7E', 127 => '=7F', 128 => '=80', 129 => '=81',
  70. 130 => '=82', 131 => '=83', 132 => '=84', 133 => '=85', 134 => '=86',
  71. 135 => '=87', 136 => '=88', 137 => '=89', 138 => '=8A', 139 => '=8B',
  72. 140 => '=8C', 141 => '=8D', 142 => '=8E', 143 => '=8F', 144 => '=90',
  73. 145 => '=91', 146 => '=92', 147 => '=93', 148 => '=94', 149 => '=95',
  74. 150 => '=96', 151 => '=97', 152 => '=98', 153 => '=99', 154 => '=9A',
  75. 155 => '=9B', 156 => '=9C', 157 => '=9D', 158 => '=9E', 159 => '=9F',
  76. 160 => '=A0', 161 => '=A1', 162 => '=A2', 163 => '=A3', 164 => '=A4',
  77. 165 => '=A5', 166 => '=A6', 167 => '=A7', 168 => '=A8', 169 => '=A9',
  78. 170 => '=AA', 171 => '=AB', 172 => '=AC', 173 => '=AD', 174 => '=AE',
  79. 175 => '=AF', 176 => '=B0', 177 => '=B1', 178 => '=B2', 179 => '=B3',
  80. 180 => '=B4', 181 => '=B5', 182 => '=B6', 183 => '=B7', 184 => '=B8',
  81. 185 => '=B9', 186 => '=BA', 187 => '=BB', 188 => '=BC', 189 => '=BD',
  82. 190 => '=BE', 191 => '=BF', 192 => '=C0', 193 => '=C1', 194 => '=C2',
  83. 195 => '=C3', 196 => '=C4', 197 => '=C5', 198 => '=C6', 199 => '=C7',
  84. 200 => '=C8', 201 => '=C9', 202 => '=CA', 203 => '=CB', 204 => '=CC',
  85. 205 => '=CD', 206 => '=CE', 207 => '=CF', 208 => '=D0', 209 => '=D1',
  86. 210 => '=D2', 211 => '=D3', 212 => '=D4', 213 => '=D5', 214 => '=D6',
  87. 215 => '=D7', 216 => '=D8', 217 => '=D9', 218 => '=DA', 219 => '=DB',
  88. 220 => '=DC', 221 => '=DD', 222 => '=DE', 223 => '=DF', 224 => '=E0',
  89. 225 => '=E1', 226 => '=E2', 227 => '=E3', 228 => '=E4', 229 => '=E5',
  90. 230 => '=E6', 231 => '=E7', 232 => '=E8', 233 => '=E9', 234 => '=EA',
  91. 235 => '=EB', 236 => '=EC', 237 => '=ED', 238 => '=EE', 239 => '=EF',
  92. 240 => '=F0', 241 => '=F1', 242 => '=F2', 243 => '=F3', 244 => '=F4',
  93. 245 => '=F5', 246 => '=F6', 247 => '=F7', 248 => '=F8', 249 => '=F9',
  94. 250 => '=FA', 251 => '=FB', 252 => '=FC', 253 => '=FD', 254 => '=FE',
  95. 255 => '=FF'
  96. );
  97. /**
  98. * A map of non-encoded ascii characters.
  99. * @var string[]
  100. * @access protected
  101. */
  102. protected static $_safeMap = array();
  103. /**
  104. * Creates a new QpEncoder for the given CharacterStream.
  105. * @param Swift_CharacterStream $charStream to use for reading characters
  106. * @param Swift_StreamFilter $filter if input should be canonicalized
  107. */
  108. public function __construct(Swift_CharacterStream $charStream,
  109. Swift_StreamFilter $filter = null)
  110. {
  111. $this->_charStream = $charStream;
  112. if (empty(self::$_safeMap))
  113. {
  114. foreach (array_merge(
  115. array(0x09, 0x20), range(0x21, 0x3C), range(0x3E, 0x7E)) as $byte)
  116. {
  117. self::$_safeMap[$byte] = chr($byte);
  118. }
  119. }
  120. $this->_filter = $filter;
  121. }
  122. /**
  123. * Takes an unencoded string and produces a QP encoded string from it.
  124. * QP encoded strings have a maximum line length of 76 characters.
  125. * If the first line needs to be shorter, indicate the difference with
  126. * $firstLineOffset.
  127. * @param string $string to encode
  128. * @param int $firstLineOffset, optional
  129. * @param int $maxLineLength, optional, 0 indicates the default of 76 chars
  130. * @return string
  131. */
  132. public function encodeString($string, $firstLineOffset = 0,
  133. $maxLineLength = 0)
  134. {
  135. if ($maxLineLength > 76 || $maxLineLength <= 0)
  136. {
  137. $maxLineLength = 76;
  138. }
  139. $thisLineLength = $maxLineLength - $firstLineOffset;
  140. $lines = array();
  141. $lNo = 0;
  142. $lines[$lNo] = '';
  143. $currentLine =& $lines[$lNo++];
  144. $size=$lineLen=0;
  145. $this->_charStream->flushContents();
  146. $this->_charStream->importString($string);
  147. //Fetching more than 4 chars at one is slower, as is fetching fewer bytes
  148. // Conveniently 4 chars is the UTF-8 safe number since UTF-8 has up to 6
  149. // bytes per char and (6 * 4 * 3 = 72 chars per line) * =NN is 3 bytes
  150. while (false !== $bytes = $this->_nextSequence())
  151. {
  152. //If we're filtering the input
  153. if (isset($this->_filter))
  154. {
  155. //If we can't filter because we need more bytes
  156. while ($this->_filter->shouldBuffer($bytes))
  157. {
  158. //Then collect bytes into the buffer
  159. if (false === $moreBytes = $this->_nextSequence(1))
  160. {
  161. break;
  162. }
  163. foreach ($moreBytes as $b)
  164. {
  165. $bytes[] = $b;
  166. }
  167. }
  168. //And filter them
  169. $bytes = $this->_filter->filter($bytes);
  170. }
  171. $enc = $this->_encodeByteSequence($bytes, $size);
  172. if ($currentLine && $lineLen+$size >= $thisLineLength)
  173. {
  174. $lines[$lNo] = '';
  175. $currentLine =& $lines[$lNo++];
  176. $thisLineLength = $maxLineLength;
  177. $lineLen=0;
  178. }
  179. $lineLen+=$size;
  180. $currentLine .= $enc;
  181. }
  182. return $this->_standardize(implode("=\r\n", $lines));
  183. }
  184. /**
  185. * Updates the charset used.
  186. * @param string $charset
  187. */
  188. public function charsetChanged($charset)
  189. {
  190. $this->_charStream->setCharacterSet($charset);
  191. }
  192. // -- Protected methods
  193. /**
  194. * Encode the given byte array into a verbatim QP form.
  195. * @param int[] $bytes
  196. * @return string
  197. * @access protected
  198. */
  199. protected function _encodeByteSequence(array $bytes, &$size)
  200. {
  201. $ret = '';
  202. $size=0;
  203. foreach ($bytes as $b)
  204. {
  205. if (isset(self::$_safeMap[$b]))
  206. {
  207. $ret .= self::$_safeMap[$b];
  208. ++$size;
  209. }
  210. else
  211. {
  212. $ret .= self::$_qpMap[$b];
  213. $size+=3;
  214. }
  215. }
  216. return $ret;
  217. }
  218. /**
  219. * Get the next sequence of bytes to read from the char stream.
  220. * @param int $size number of bytes to read
  221. * @return int[]
  222. * @access protected
  223. */
  224. protected function _nextSequence($size = 4)
  225. {
  226. return $this->_charStream->readBytes($size);
  227. }
  228. /**
  229. * Make sure CRLF is correct and HT/SPACE are in valid places.
  230. * @param string $string
  231. * @return string
  232. * @access protected
  233. */
  234. protected function _standardize($string)
  235. {
  236. $string = str_replace(array("\t=0D=0A", " =0D=0A", "=0D=0A"),
  237. array("=09\r\n", "=20\r\n", "\r\n"), $string
  238. );
  239. switch ($end = ord(substr($string, -1)))
  240. {
  241. case 0x09:
  242. case 0x20:
  243. $string = substr_replace($string, self::$_qpMap[$end], -1);
  244. }
  245. return $string;
  246. }
  247. }