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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442
|
<?php
require_once 'Horde/String.php';
require_once dirname(__FILE__) . '/../MIME.php';
/**
* The character(s) used internally for EOLs.
*/
define('MIME_PART_EOL', "\n");
/**
* The character string designated by RFCs 822/2045 to designate EOLs in MIME
* messages.
*/
define('MIME_PART_RFC_EOL', "\r\n");
/* Default MIME parameters. */
/**
* The default MIME character set.
*/
define('MIME_DEFAULT_CHARSET', 'us-ascii');
/**
* The default MIME description.
*/
define('MIME_DEFAULT_DESCRIPTION', _("unnamed"));
/**
* The default MIME disposition.
*/
define('MIME_DEFAULT_DISPOSITION', 'inline');
/**
* The default MIME encoding.
*/
define('MIME_DEFAULT_ENCODING', '7bit');
/**
* The MIME_Part:: class provides a wrapper around MIME parts and methods
* for dealing with them.
*
* $Horde: framework/MIME/MIME/Part.php,v 1.177.4.20 2006/03/09 21:59:31 chuck Exp $
*
* Copyright 1999-2006 Chuck Hagenbuch <chuck@horde.org>
* Copyright 2002-2006 Michael Slusarz <slusarz@bigworm.colorado.edu>
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @author Michael Slusarz <slusarz@bigworm.colorado.edu>
* @since Horde 1.3
* @package Horde_MIME
*/
class MIME_Part {
/**
* The type (ex.: text) of this part.
* Per RFC 2045, the default is 'application'.
*
* @var string
*/
var $_type = 'application';
/**
* The subtype (ex.: plain) of this part.
* Per RFC 2045, the default is 'octet-stream'.
*
* @var string
*/
var $_subtype = 'octet-stream';
/**
* The body of the part.
*
* @var string
*/
var $_contents = '';
/**
* The desired transfer encoding of this part.
*
* @var string
*/
var $_transferEncoding = MIME_DEFAULT_ENCODING;
/**
* The current transfer encoding of the contents of this part.
*
* @var string
*/
var $_currentEncoding = null;
/**
* Should the message be encoded via 7-bit?
*
* @var boolean
*/
var $_encode7bit = true;
/**
* The description of this part.
*
* @var string
*/
var $_description = '';
/**
* The disposition of this part (inline or attachment).
*
* @var string
*/
var $_disposition = MIME_DEFAULT_DISPOSITION;
/**
* The disposition parameters of this part.
*
* @var array
*/
var $_dispositionParameters = array();
/**
* The content type parameters of this part.
*
* @var array
*/
var $_contentTypeParameters = array();
/**
* The subparts of this part.
*
* @var array
*/
var $_parts = array();
/**
* Information/Statistics on the subpart.
*
* @var array
*/
var $_information = array();
/**
* The list of CIDs for this part.
*
* @var array
*/
var $_cids = array();
/**
* The MIME ID of this part.
*
* @var string
*/
var $_mimeid = null;
/**
* The sequence to use as EOL for this part.
* The default is currently to output the EOL sequence internally as
* just "\n" instead of the canonical "\r\n" required in RFC 822 & 2045.
* To be RFC complaint, the full <CR><LF> EOL combination should be used
* when sending a message.
* It is not crucial here since the PHP/PEAR mailing functions will handle
* the EOL details.
*
* @var string
*/
var $_eol = MIME_PART_EOL;
/**
* Internal class flags.
*
* @var array
*/
var $_flags = array();
/**
* Part -> ID mapping cache.
*
* @var array
*/
var $_idmap = array();
/**
* Unique MIME_Part boundary string.
*
* @var string
*/
var $_boundary = null;
/**
* Default value for this Part's size.
*
* @var integer
*/
var $_bytes = 0;
/**
* The content-ID for this part.
*
* @var string
*/
var $_contentid = null;
/**
* MIME_Part constructor.
*
* @param string $mimetype The content type of the part.
* @param string $contents The body of the part.
* @param string $charset The character set of the part.
* @param string $disposition The content disposition of the part.
* @param string $encoding The content encoding of the contents.
*/
function MIME_Part($mimetype = null, $contents = null,
$charset = MIME_DEFAULT_CHARSET, $disposition = null,
$encoding = null)
{
/* Create the unique MIME_Part boundary string. */
$this->_generateBoundary();
/* The character set should always be set, even if we are dealing
* with Content-Types other than text/*. */
$this->setCharset($charset);
if (!is_null($mimetype)) {
$this->setType($mimetype);
}
if (!is_null($contents)) {
$this->setContents($contents, $encoding);
}
if (!is_null($disposition)) {
$this->setDisposition($disposition);
}
}
/**
* Set the content-disposition of this part.
*
* @param string $disposition The content-disposition to set (inline or
* attachment).
*/
function setDisposition($disposition)
{
$disposition = String::lower($disposition);
if (($disposition == 'inline') || ($disposition == 'attachment')) {
$this->_disposition = $disposition;
}
}
/**
* Get the content-disposition of this part.
*
* @return string The part's content-disposition.
*/
function getDisposition()
{
return $this->_disposition;
}
/**
* Set the name of this part.
*
* @param string $name The name to set.
*/
function setName($name)
{
$this->setContentTypeParameter('name', $name);
}
/**
* Get the name of this part.
*
* @param boolean $decode MIME decode description?
* @param boolean $default If the name parameter doesn't exist, should we
* use the default name from the description
* parameter?
*
* @return string The name of the part.
*/
function getName($decode = false, $default = false)
{
$name = $this->getContentTypeParameter('name');
if ($default && empty($name)) {
$name = preg_replace('|\W|', '_', $this->getDescription(false, true));
}
if ($decode) {
return trim(MIME::decode($name));
} else {
return $name;
}
}
/**
* Set the body contents of this part.
*
* @param string $contents The part body.
* @param string $encoding The current encoding of the contents.
*/
function setContents($contents, $encoding = null)
{
$this->_contents = $contents;
$this->_flags['contentsSet'] = true;
$this->_currentEncoding = (is_null($encoding)) ? $this->getCurrentEncoding() : MIME::encoding($encoding, MIME_STRING);
}
/**
* Add to the body contents of this part.
*
* @param string $contents The contents to append to the current part
* body.
* @param string $encoding The current encoding of the contents. If not
* specified, will try to auto determine the
* encoding.
*/
function appendContents($contents, $encoding = null)
{
$this->setContents($this->_contents . $contents, $encoding);
}
/**
* Clears the body contents of this part.
*/
function clearContents()
{
$this->_contents = '';
$this->_flags['contentsSet'] = false;
$this->_currentEncoding = null;
}
/**
* Return the body of the part.
*
* @return string The raw body of the part.
*/
function getContents()
{
return $this->_contents;
}
/**
* Returns the contents in strict RFC 822 & 2045 output - namely, all
* newlines end with the canonical <CR><LF> sequence.
*
* @return string The entire MIME part.
*/
function getCanonicalContents()
{
return $this->replaceEOL($this->_contents, MIME_PART_RFC_EOL);
}
/**
* Transfer encode the contents (to the transfer encoding identified via
* getTransferEncoding()) and set as the part's new contents.
*/
function transferEncodeContents()
{
$contents = $this->transferEncode();
$this->_currentEncoding = $this->_flags['lastTransferEncode'];
$this->setContents($contents, $this->_currentEncoding);
$this->setTransferEncoding($this->_currentEncoding);
}
/**
* Transfer decode the contents and set them as the new contents.
*/
function transferDecodeContents()
{
$contents = $this->transferDecode();
$this->_currentEncoding = $this->_flags['lastTransferDecode'];
$this->setTransferEncoding($this->_currentEncoding);
/* Don't set contents if they are empty, because this will do stuff
like reset the internal bytes field, even though we shouldn't do
that (the user has their reasons to set the bytes field to a
non-zero value without putting the contents into this part. */
if (strlen($contents)) {
$this->setContents($contents, $this->_currentEncoding);
}
}
/**
* Set the mimetype of this part.
*
* @param string $mimetype The mimetype to set (ex.: text/plain).
*/
function setType($mimetype)
{
/* RFC 2045: Any entity with unrecognized encoding must be treated
as if it has a Content-Type of "application/octet-stream"
regardless of what the Content-Type field actually says. */
if ($this->_transferEncoding == 'x-unknown') {
return;
}
/* Set the 'setType' flag. */
$this->_flags['setType'] = true;
list($this->_type, $this->_subtype) = explode('/', String::lower($mimetype));
if (($type = MIME::type($this->_type, MIME_STRING))) {
$this->_type = $type;
/* Set the boundary string for 'multipart/*' parts. */
if ($type == 'multipart') {
if (!$this->getContentTypeParameter('boundary')) {
$this->setContentTypeParameter('boundary', $this->_generateBoundary());
}
} else {
$this->clearContentTypeParameter('boundary');
}
} else {
$this->_type = 'x-unknown';
$this->clearContentTypeParameter('boundary');
}
}
/**
* Get the full MIME Content-Type of this part.
*
* @param boolean $charset Append character set information to the end of
* the content type if this is a text/* part.
*
* @return string The mimetype of this part
* (ex.: text/plain; charset=us-ascii).
*/
function getType($charset = false)
{
if (!isset($this->_type) || !isset($this->_subtype)) {
return false;
}
$ptype = $this->getPrimaryType();
$type = $ptype . '/' . $this->getSubType();
if ($charset && ($ptype == 'text')) {
$type .= '; charset=' . $this->getCharset();
}
return $type;
}
/**
* If the subtype of a MIME part is unrecognized by an application, the
* default type should be used instead (See RFC 2046). This method
* returns the default subtype for a particular primary MIME Type.
*
* @return string The default mimetype of this part (ex.: text/plain).
*/
function getDefaultType()
{
switch ($this->getPrimaryType()) {
case 'text':
/* RFC 2046 (4.1.4): text parts default to text/plain. */
return 'text/plain';
case 'multipart':
/* RFC 2046 (5.1.3): multipart parts default to multipart/mixed. */
return 'multipart/mixed';
default:
/* RFC 2046 (4.2, 4.3, 4.4, 4.5.3, 5.2.4): all others default to
application/octet-stream. */
return 'application/octet-stream';
}
}
/**
* Get the primary type of this part.
*
* @return string The primary MIME type of this part.
*/
function getPrimaryType()
{
return $this->_type;
}
/**
* Get the subtype of this part.
*
* @return string The MIME subtype of this part.
*/
function getSubType()
{
return $this->_subtype;
}
/**
* Set the character set of this part.
*
* @param string $charset The character set of this part.
*/
function setCharset($charset)
{
$this->setContentTypeParameter('charset', $charset);
}
/**
* Get the character set to use for of this part. Returns a charset for
* all types (not just 'text/*') since we use this charset to determine
* how to encode text in MIME headers.
*
* @return string The character set of this part. Returns null if there
* is no character set.
*/
function getCharset()
{
$charset = $this->getContentTypeParameter('charset');
return (empty($charset)) ? null : $charset;
}
/**
* Set the description of this part.
*
* @param string $description The description of this part.
*/
function setDescription($description)
{
$this->_description = MIME::encode($description, $this->getCharset());
}
/**
* Get the description of this part.
*
* @param boolean $decode MIME decode description?
* @param boolean $default If the name parameter doesn't exist, should we
* use the default name from the description
* parameter?
*
* @return string The description of this part.
*/
function getDescription($decode = false, $default = false)
{
$desc = $this->_description;
if ($default && empty($desc)) {
$desc = $this->getName();
if (empty($desc)) {
$desc = MIME_DEFAULT_DESCRIPTION;
}
}
if ($decode) {
return MIME::decode($desc);
} else {
return $desc;
}
}
/**
* Set the transfer encoding to use for this part.
*
* @param string $encoding The transfer encoding to use.
*/
function setTransferEncoding($encoding)
{
if (($mime_encoding = MIME::encoding($encoding, MIME_STRING))) {
$this->_transferEncoding = $mime_encoding;
} else {
/* RFC 2045: Any entity with unrecognized encoding must be treated
as if it has a Content-Type of "application/octet-stream"
regardless of what the Content-Type field actually says. */
$this->setType('application/octet-stream');
$this->_transferEncoding = 'x-unknown';
}
}
/**
* Add a MIME subpart.
*
* @param MIME_Part $mime_part Add a MIME_Part subpart to the current
* MIME_Part.
* @param string $index The index of the added MIME_Part.
*/
function addPart($mime_part, $index = null)
{
/* Add the part to the parts list. */
if (is_null($index)) {
end($this->_parts);
$id = key($this->_parts) + 1;
$ptr = &$this->_parts;
} else {
$ptr = &$this->_partFind($index, $this->_parts, true);
if (($pos = strrpos($index, '.'))) {
$id = substr($index, $pos + 1);
} else {
$id = $index;
}
}
/* Set the MIME ID if it has not already been set. */
if ($mime_part->getMIMEId() === null) {
$mime_part->setMIMEId($id);
}
/* Store the part now. */
$ptr[$id] = $mime_part;
/* Clear the ID -> Part mapping cache. */
$this->_idmap = array();
}
/**
* Get a list of all MIME subparts.
*
* @return array An array of the MIME_Part subparts.
*/
function getParts()
{
return $this->_parts;
}
/**
* Retrieve a specific MIME part.
*
* @param string $id The MIME_Part ID string.
*
* @return MIME_Part The MIME_Part requested, or false if the part
* doesn't exist.
*/
function getPart($id)
{
$mimeid = $this->getMIMEId();
/* This will convert '#.0' to simply '#', which is how the part is
* internally stored. */
$search_id = $id;
if (($str = strrchr($id, '.')) &&
($str == '.0')) {
$search_id = substr($search_id, 0, -2);
}
/* Return this part if:
1) There is only one part (e.g. the MIME ID is 0, or the
MIME ID is 1 and there are no subparts.
2) $id matches this parts MIME ID. */
if (($search_id == 0) ||
(($search_id == 1) && !count($this->_parts)) ||
(!empty($mimeid) && ($search_id == $mimeid))) {
$part = $this;
} else {
$part = $this->_partFind($id, $this->_parts);
}
if ($part &&
($search_id != $id) &&
($part->getType() == 'message/rfc822')) {
$ret_part = Util::cloneObject($part);
$ret_part->_parts = array();
return $ret_part;
}
return $part;
}
/**
* Remove a MIME_Part subpart.
*
* @param string $id The MIME Part to delete.
*/
function removePart($id)
{
if (($ptr = &$this->_partFind($id, $this->_parts))) {
unset($ptr);
$this->_idmap = array();
}
}
/**
* Alter a current MIME subpart.
*
* @param string $id The MIME Part ID to alter.
* @param MIME_Part $mime_part The MIME Part to store.
*/
function alterPart($id, $mime_part)
{
if (($ptr = &$this->_partFind($id, $this->_parts))) {
$ptr = $mime_part;
$this->_idmap = array();
}
}
/**
* Function used to find a specific MIME Part by ID.
*
* @access private
*
* @param string $id The MIME_Part ID string.
* @param array &$parts A list of MIME_Part objects.
* @param boolean $retarray Return a pointer to the array that stores
* (would store) the part rather than the part
* itself?
*/
function &_partFind($id, &$parts, $retarray = false)
{
/* Pointers don't persist through sessions; therefore, we must make
* sure that the IdMap is destroyed at the end of each request.
* How can we do this? We check to see if $_idmap contains an array
* of MIME_Parts or an array of arrays. */
$check = reset($this->_idmap);
if (empty($check) || !is_a($check, 'MIME_Part')) {
$this->_idmap = array();
$this->_generateIdMap($this->_parts);
}
if ($retarray) {
if ($pos = strrpos($id, '.')) {
$id = substr($id, 0, $pos);
} else {
return $parts;
}
}
if (isset($this->_idmap[$id])) {
return $this->_idmap[$id];
} else {
$part = false;
return $part;
}
}
/**
* Generates a mapping of MIME_Parts with their MIME IDs.
*
* @access private
*
* @param array &$parts An array of MIME_Parts to map.
*/
function _generateIdMap(&$parts)
{
if (!empty($parts)) {
foreach (array_keys($parts) as $key) {
$ptr = &$parts[$key];
$this->_idmap[$ptr->getMIMEId()] = &$ptr;
$this->_generateIdMap($ptr->_parts);
}
}
}
/**
* Add information about the MIME_Part.
*
* @param string $label The information label.
* @param mixed $data The information to store.
*/
function setInformation($label, $data)
{
$this->_information[$label] = $data;
}
/**
* Retrieve information about the MIME_Part.
*
* @param string $label The information label.
*
* @return mixed The information requested.
* Returns false if $label is not set.
*/
function getInformation($label)
{
return (isset($this->_information[$label])) ? $this->_information[$label] : false;
}
/**
* Add a disposition parameter to this part.
*
* @param string $label The disposition parameter label.
* @param string $data The disposition parameter data.
*/
function setDispositionParameter($label, $data)
{
$this->_dispositionParameters[$label] = $data;
}
/**
* Get a disposition parameter from this part.
*
* @param string $label The disposition parameter label.
*
* @return string The data requested.
* Returns false if $label is not set.
*/
function getDispositionParameter($label)
{
return (isset($this->_dispositionParameters[$label])) ? $this->_dispositionParameters[$label] : false;
}
/**
* Get all parameters from the Content-Disposition header.
*
* @return array An array of all the parameters
* Returns the empty array if no parameters set.
*/
function getAllDispositionParameters()
{
return $this->_dispositionParameters;
}
/**
* Add a content type parameter to this part.
*
* @param string $label The disposition parameter label.
* @param string $data The disposition parameter data.
*/
function setContentTypeParameter($label, $data)
{
$this->_contentTypeParameters[$label] = $data;
}
/**
* Clears a content type parameter from this part.
*
* @param string $label The disposition parameter label.
* @param string $data The disposition parameter data.
*/
function clearContentTypeParameter($label)
{
unset($this->_contentTypeParameters[$label]);
}
/**
* Get a content type parameter from this part.
*
* @param string $label The content type parameter label.
*
* @return string The data requested.
* Returns false if $label is not set.
*/
function getContentTypeParameter($label)
{
return (isset($this->_contentTypeParameters[$label])) ? $this->_contentTypeParameters[$label] : false;
}
/**
* Get all parameters from the Content-Type header.
*
* @return array An array of all the parameters
* Returns the empty array if no parameters set.
*/
function getAllContentTypeParameters()
{
return $this->_contentTypeParameters;
}
/**
* Sets a new string to use for EOLs.
*
* @param string $eol The string to use for EOLs.
*/
function setEOL($eol)
{
$this->_eol = $eol;
}
/**
* Get the string to use for EOLs.
*
* @return string The string to use for EOLs.
*/
function getEOL()
{
return $this->_eol;
}
/**
* Add the appropriate MIME headers for this part to an existing array.
*
* @param array $headers An array of any other headers for the part.
*
* @return array The headers, with the MIME headers added.
*/
function header($headers = array())
{
$eol = $this->getEOL();
$ptype = $this->getPrimaryType();
$stype = $this->getSubType();
/* Get the character set for this part. */
$charset = $this->getCharset();
/* Get the Content-Type - this is ALWAYS required. */
$ctype = $this->getType(true);
foreach ($this->getAllContentTypeParameters() as $key => $value) {
/* Skip the charset key since that would have already been
* added to $ctype by getType(). */
if ($key == 'charset') {
continue;
}
$ctype .= '; ' . $key . '="' . str_replace('"', '\"', MIME::encode($value, $charset)) . '"';
}
$headers['Content-Type'] = MIME::wrapHeaders('Content-Type', $ctype, $eol);
/* Get the description, if any. */
if (($descrip = $this->getDescription())) {
$headers['Content-Description'] = MIME::wrapHeaders('Content-Description', MIME::encode($descrip, $charset), $eol);
}
/* RFC 2045 [4] - message/rfc822 and message/partial require the
MIME-Version header only if they themselves claim to be MIME
compliant. */
if (($ptype == 'message') &&
(($stype == 'rfc822') || ($stype == 'partial')) &&
(strpos($this->_contents, 'MIME-Version: 1.0') !== false)) {
$headers['MIME-Version'] = '1.0';
}
/* message/* parts require no additional header information. */
if ($ptype == 'message') {
return $headers;
}
/* Don't show Content-Disposition for multipart messages unless
there is a name parameter. */
$name = $this->getName();
if (($ptype != 'multipart') || !empty($name)) {
$disp = $this->getDisposition();
/* Add any disposition parameter information, if available. */
if (!empty($name)) {
$disp .= '; ' . 'filename="' . MIME::encode($name, $charset) . '"';
}
$headers['Content-Disposition'] = MIME::wrapHeaders('Content-Disposition', $disp, $eol);
}
/* Add transfer encoding information. */
$headers['Content-Transfer-Encoding'] = $this->getTransferEncoding();
/* Add content ID information. */
if (!is_null($this->_contentid)) {
$headers['Content-ID'] = $this->_contentid;
}
return $headers;
}
/**
* Return the entire part in MIME format. Includes headers on request.
*
* @param boolean $headers Include the MIME headers?
*
* @return string The MIME string.
*/
function toString($headers = true)
{
$eol = $this->getEOL();
$ptype = $this->getPrimaryType();
if ($headers) {
$text = '';
foreach ($this->header() as $key => $val) {
$text .= $key . ': ' . $val . $eol;
}
$text .= $eol;
}
/* Any information about a message/* is embedded in the message
contents themself. Simply output the contents of the part
directly and return. */
if ($ptype == 'message') {
if (isset($text)) {
return $text . $this->_contents;
} else {
return $this->_contents;
}
}
if (isset($text)) {
$text .= $this->transferEncode();
} else {
$text = $this->transferEncode();
}
/* Deal with multipart messages. */
if ($ptype == 'multipart') {
$boundary = trim($this->getContentTypeParameter('boundary'), '"');
if (!strlen($this->_contents)) {
$text .= 'This message is in MIME format.' . $eol;
}
foreach ($this->getParts() as $part) {
$text .= $eol . '--' . $boundary . $eol;
$oldEOL = $part->getEOL();
$part->setEOL($eol);
$text .= $part->toString(true);
$part->setEOL($oldEOL);
}
$text .= $eol . '--' . $boundary . '--' . $eol;
}
return $text;
}
/**
* Returns the encoded part in strict RFC 822 & 2045 output - namely, all
* newlines end with the canonical <CR><LF> sequence.
*
* @param boolean $headers Include the MIME headers?
*
* @return string The entire MIME part.
*/
function toCanonicalString($headers = true)
{
$string = $this->toString($headers);
return $this->replaceEOL($string, MIME_PART_RFC_EOL);
}
/**
* Should we make sure the message is encoded via 7-bit (e.g. to adhere
* to mail delivery standards such as RFC 2821)?
*
* @param boolean $use7bit Use 7-bit encoding?
*/
function strict7bit($use7bit)
{
$this->_encode7bit = $use7bit;
}
/**
* Get the transfer encoding for the part based on the user requested
* transfer encoding and the current contents of the part.
*
* @return string The transfer-encoding of this part.
*/
function getTransferEncoding()
{
$encoding = $this->_transferEncoding;
$ptype = $this->getPrimaryType();
$text = str_replace($this->getEOL(), ' ', $this->_contents);
/* If there are no contents, return whatever the current value of
$_transferEncoding is. */
if (empty($text)) {
return $encoding;
}
switch ($ptype) {
case 'message':
/* RFC 2046 [5.2.1] - message/rfc822 messages only allow 7bit,
8bit, and binary encodings. If the current encoding is either
base64 or q-p, switch it to 8bit instead.
RFC 2046 [5.2.2, 5.2.3, 5.2.4] - All other message/* messages
only allow 7bit encodings. */
$encoding = ($this->getSubType() == 'rfc822') ? '8bit' : '7bit';
break;
case 'text':
if (MIME::is8bit($text)) {
$encoding = ($this->_encode7bit) ? 'quoted-printable' : '8bit';
} elseif (preg_match("/(?:\n|^)[^\n]{999,}(?:\n|$)/", $text)) {
/* If the text is longer than 998 characters between
* linebreaks, use quoted-printable encoding to ensure the
* text will not be chopped (i.e. by sendmail if being sent
* as mail text). */
$encoding = 'quoted-printable';
}
break;
default:
if (MIME::is8bit($text)) {
$encoding = ($this->_encode7bit) ? 'base64' : '8bit';
}
break;
}
/* Need to do one last check for binary data if encoding is 7bit or
* 8bit. If the message contains a NULL character at all, the message
* MUST be in binary format. RFC 2046 [2.7, 2.8, 2.9]. Q-P and base64
* can handle binary data fine so no need to switch those encodings. */
if ((($encoding == '8bit') || ($encoding == '7bit')) &&
preg_match('/\x00/', $text)) {
$encoding = ($this->_encode7bit) ? 'base64' : 'binary';
}
return $encoding;
}
/**
* Retrieves the current encoding of the contents in the object.
*
* @return string The current encoding.
*/
function getCurrentEncoding()
{
return (is_null($this->_currentEncoding)) ? $this->_transferEncoding : $this->_currentEncoding;
}
/**
* Encodes the contents with the part's transfer encoding.
*
* @return string The encoded text.
*/
function transferEncode()
{
$encoding = $this->getTransferEncoding();
$eol = $this->getEOL();
/* Set the 'lastTransferEncode' flag so that transferEncodeContents()
can save a call to getTransferEncoding(). */
$this->_flags['lastTransferEncode'] = $encoding;
/* If contents are empty, or contents are already encoded to the
correct encoding, return now. */
if (!strlen($this->_contents) ||
($encoding == $this->_currentEncoding)) {
return $this->_contents;
}
switch ($encoding) {
/* Base64 Encoding: See RFC 2045, section 6.8 */
case 'base64':
/* Keeping these two lines separate seems to use much less
memory than combining them (as of PHP 4.3). */
$encoded_contents = base64_encode($this->_contents);
return chunk_split($encoded_contents, 76, $eol);
/* Quoted-Printable Encoding: See RFC 2045, section 6.7 */
case 'quoted-printable':
$output = MIME::quotedPrintableEncode($this->_contents, $eol);
if (($eollength = String::length($eol))) {
return substr($output, 0, $eollength * -1);
} else {
return $output;
}
default:
return $this->replaceEOL($this->_contents);
}
}
/**
* Decodes the contents of the part to either a 7bit or 8bit encoding.
*
* @return string The decoded text.
* Returns the empty string if there is no text to decode.
*/
function transferDecode()
{
$encoding = $this->getCurrentEncoding();
/* If the contents are empty, return now. */
if (!strlen($this->_contents)) {
$this->_flags['lastTransferDecode'] = $encoding;
return $this->_contents;
}
switch ($encoding) {
case 'base64':
$message = base64_decode($this->_contents);
$this->_flags['lastTransferDecode'] = '8bit';
break;
case 'quoted-printable':
$message = preg_replace("/=\r?\n/", '', $this->_contents);
$message = $this->replaceEOL($message);
$message = quoted_printable_decode($message);
$this->_flags['lastTransferDecode'] = (MIME::is8bit($message)) ? '8bit' : '7bit';
break;
/* Support for uuencoded encoding - although not required by RFCs,
some mailers may still encode this way. */
case 'uuencode':
case 'x-uuencode':
case 'x-uue':
if (function_exists('convert_uudecode')) {
$message = convert_uuencode($this->_contents);
} else {
require_once 'Mail/mimeDecode.php';
$files = &Mail_mimeDecode::uudecode($this->_contents);
$message = $files[0]['filedata'];
}
require_once 'Mail/mimeDecode.php';
$files = &Mail_mimeDecode::uudecode($this->_contents);
$message = $files[0]['filedata'];
$this->_flags['lastTransferDecode'] = '8bit';
break;
default:
if (isset($this->_flags['lastTransferDecode']) &&
($this->_flags['lastTransferDecode'] != $encoding)) {
$message = $this->replaceEOL($this->_contents);
} else {
$message = $this->_contents;
}
$this->_flags['lastTransferDecode'] = $encoding;
break;
}
return $message;
}
/**
* Split the contents of the current Part into its respective subparts,
* if it is multipart MIME encoding. Unlike the imap_*() functions, this
* will preserve all MIME header information.
*
* The boundary content-type parameter must be set for this function to
* work correctly.
*
* @return boolean True if the contents were successfully split.
* False if any error occurred.
*/
function splitContents()
{
if (!($boundary = $this->getContentTypeParameter('boundary'))) {
return false;
}
if (!strlen($this->_contents)) {
return false;
}
$eol = $this->getEOL();
$retvalue = false;
foreach (explode($eol, $this->_contents) as $line) {
$pos = strpos($line, '--' . $boundary);
if (($pos === false) && isset($part_ptr)) {
$data[] = $line;
} elseif ($pos === 0) {
$retvalue = true;
if (isset($part_ptr)) {
$this->_parts[$part_ptr]->setContents(implode($eol, $data));
$this->_parts[$part_ptr]->splitContents();
next($this->_parts);
} else {
reset($this->_parts);
}
if (isset($data)) {
unset($data);
}
$data = array();
$part_ptr = key($this->_parts);
}
}
return $retvalue;
}
/**
* Replace newlines in this part's contents with those specified by either
* the given newline sequence or the part's current EOL setting.
*
* @param string $text The text to replace.
* @param string $eol The EOL sequence to use. If not present, uses the
* part's current EOL setting.
*
* @return string The text with the newlines replaced by the desired
* newline sequence.
*/
function replaceEOL($text, $eol = null)
{
if (is_null($eol)) {
$eol = $this->getEOL();
}
return preg_replace("/\r?\n/", $eol, $text);
}
/**
* Return the unique MIME_Part boundary string generated for this object.
* This may not be the boundary string used when building the message
* since a user defined 'boundary' Content-Type parameter will override
* this value.
*
* @return string The unique boundary string.
*/
function getUniqueID()
{
return $this->_boundary;
}
/**
* Determine the size of a MIME_Part and its child members.
*
* @return integer Size of the MIME_Part, in bytes.
*/
function getBytes()
{
$bytes = 0;
if (empty($this->_flags['contentsSet']) && $this->_bytes) {
$bytes = $this->_bytes;
} elseif ($this->getPrimaryType() == 'multipart') {
foreach ($this->getParts() as $part) {
/* Skip multipart entries (since this may result in double
counting). */
if ($part->getPrimaryType() != 'multipart') {
$bytes += $part->getBytes();
}
}
} else {
if ($this->getPrimaryType() == 'text') {
$bytes = String::length($this->_contents, $this->getCharset());
} else {
$bytes = strlen($this->_contents);
}
}
return $bytes;
}
/**
* Explicitly set the size (in bytes) of this part. This value will only
* be returned (via getBytes()) if there are no contents currently set.
* This function is useful for setting the size of the part when the
* contents of the part are not fully loaded (i.e. creating a MIME_Part
* object from IMAP header information without loading the data of the
* part).
*
* @param integer $bytes The size of this part in bytes.
*/
function setBytes($bytes)
{
$this->_bytes = $bytes;
}
/**
* Output the size of this MIME_Part in KB.
*
* @return string Size of the MIME_Part, in string format.
*/
function getSize()
{
$bytes = $this->getBytes();
if (empty($bytes)) {
return $bytes;
}
$localeinfo = NLS::getLocaleInfo();
return number_format($bytes / 1024, 2, $localeinfo['decimal_point'], $localeinfo['thousands_sep']);
}
/**
* Add to the list of CIDs for this part.
*
* @param array $cids A list of MIME IDs of the part.
* Key - MIME ID
* Value - CID for the part
*/
function addCID($cids = array())
{
$this->_cids += $cids;
}
/**
* Returns the list of CIDs for this part.
*
* @return array The list of CIDs for this part.
*/
function getCIDList()
{
asort($this->_cids, SORT_STRING);
return $this->_cids;
}
/**
* Sets the Content-ID header for this part.
*
* @param string $cid Use this CID (if not already set). Else, generate a
* random CID.
*/
function setContentID($cid = null)
{
if (is_null($this->_contentid)) {
$this->_contentid = (is_null($cid)) ? (base_convert(microtime(), 10, 36) . '@' . $_SERVER['SERVER_NAME']) : $cid;
}
return $this->_contentid;
}
/**
* Returns the Content-ID for this part.
*
* @return string The Content-ID for this part.
*/
function getContentID()
{
return $this->_contentid;
}
/**
* Alter the MIME ID of this part.
*
* @param string $mimeid The MIME ID.
*/
function setMIMEId($mimeid)
{
$this->_mimeid = $mimeid;
}
/**
* Returns the MIME ID of this part.
*
* @return string The MIME ID.
*/
function getMIMEId()
{
return $this->_mimeid;
}
/**
* Returns the relative MIME ID of this part.
* e.g., if the base part has MIME ID of 2, and you want the first
* subpart of the base part, the relative MIME ID is 2.1.
*
* @param string $id The relative part ID.
*
* @return string The relative MIME ID.
*/
function getRelativeMIMEId($id)
{
$rel = $this->getMIMEId();
return (empty($rel)) ? $id : $rel . '.' . $id;
}
/**
* Returns a mapping of all MIME IDs to their content-types.
*
* @return array KEY: MIME ID, VALUE: Content type
*/
function contentTypeMap()
{
$map = array($this->getMIMEId() => $this->getType());
foreach ($this->_parts as $val) {
$map += $val->contentTypeMap();
}
return $map;
}
/**
* Generate the unique boundary string (if not already done).
*
* @access private
*
* @return string The boundary string.
*/
function _generateBoundary()
{
if (is_null($this->_boundary)) {
$this->_boundary = '=_' . base_convert(microtime(), 10, 36);
}
return $this->_boundary;
}
}
|