/codes-php/phpjakarta/WindowsAzure/Table/Internal/MimeReaderWriter.php

http://bukuphpjs.codeplex.com · PHP · 116 lines · 47 code · 15 blank · 54 comment · 1 complexity · 678d9426b55272bf836daa24c508f3e0 MD5 · raw file

  1. <?php
  2. /**
  3. * LICENSE: Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. *
  8. * Unless required by applicable law or agreed to in writing, software
  9. * distributed under the License is distributed on an "AS IS" BASIS,
  10. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. * See the License for the specific language governing permissions and
  12. * limitations under the License.
  13. *
  14. * PHP version 5
  15. *
  16. * @category Microsoft
  17. * @package WindowsAzure\Table\Internal
  18. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  19. * @copyright 2012 Microsoft Corporation
  20. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  21. * @link https://github.com/windowsazure/azure-sdk-for-php
  22. */
  23. namespace WindowsAzure\Table\Internal;
  24. require_once 'PEAR.php';
  25. require_once 'Mail/mimePart.php';
  26. require_once 'Mail/mimeDecode.php';
  27. use WindowsAzure\Common\Internal\Resources;
  28. use WindowsAzure\Common\Internal\Utilities;
  29. /**
  30. * Reads and writes MIME for batch API.
  31. *
  32. * @category Microsoft
  33. * @package WindowsAzure\Table\Internal
  34. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  35. * @copyright 2012 Microsoft Corporation
  36. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  37. * @version Release: @package_version@
  38. * @link https://github.com/windowsazure/azure-sdk-for-php
  39. */
  40. class MimeReaderWriter implements IMimeReaderWriter
  41. {
  42. /**
  43. * Given array of MIME parts in raw string, this function converts them into MIME
  44. * representation.
  45. *
  46. * @param array $bodyPartContents The MIME body parts.
  47. *
  48. * @return array Returns array with two elements 'headers' and 'body' which
  49. * represents the MIME message.
  50. */
  51. public function encodeMimeMultipart($bodyPartContents)
  52. {
  53. $count = count($bodyPartContents);
  54. $mimeType = Resources::MULTIPART_MIXED_TYPE;
  55. $batchGuid = Utilities::getGuid();
  56. $batchId = sprintf('batch_%s', $batchGuid);
  57. $contentType1 = array('content_type' => "$mimeType");
  58. $changeSetGuid = Utilities::getGuid();
  59. $changeSetId = sprintf('changeset_%s', $changeSetGuid);
  60. $contentType2 = array('content_type' => "$mimeType; boundary=$changeSetId");
  61. $options = array(
  62. 'encoding' => 'binary',
  63. 'content_type' => Resources::HTTP_TYPE
  64. );
  65. // Create changeset MIME part
  66. $changeSet = new \Mail_mimePart();
  67. for ($i = 0; $i < $count; $i++) {
  68. $changeSet->addSubpart($bodyPartContents[$i], $options);
  69. }
  70. // Encode the changeset MIME part
  71. $changeSetEncoded = $changeSet->encode($changeSetId);
  72. // Create the batch MIME part
  73. $batch = new \Mail_mimePart(Resources::EMPTY_STRING, $contentType1);
  74. // Add changeset encoded to batch MIME part
  75. $batch->addSubpart($changeSetEncoded['body'], $contentType2);
  76. // Encode batch MIME part
  77. $batchEncoded = $batch->encode($batchId);
  78. return $batchEncoded;
  79. }
  80. /**
  81. * Parses given mime HTTP response body into array. Each array element
  82. * represents a change set result.
  83. *
  84. * @param string $mimeBody The raw MIME body result.
  85. *
  86. * @return array
  87. */
  88. public function decodeMimeMultipart($mimeBody)
  89. {
  90. $params['include_bodies'] = true;
  91. $params['input'] = $mimeBody;
  92. $mimeDecoder = new \Mail_mimeDecode($mimeBody);
  93. $structure = $mimeDecoder->decode($params);
  94. $parts = $structure->parts;
  95. $bodies = array();
  96. foreach ($parts as $part) {
  97. $bodies[] = $part->body;
  98. }
  99. return $bodies;
  100. }
  101. }