/WindowsAzure/Blob/Models/ListBlobBlocksResult.php

http://github.com/WindowsAzure/azure-sdk-for-php · PHP · 274 lines · 106 code · 30 blank · 138 comment · 5 complexity · 071c37d4f25d2839cae5b27b6cc5f45a 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\Blob\Models
  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\Blob\Models;
  24. use WindowsAzure\Common\Internal\Validate;
  25. use WindowsAzure\Common\Internal\Resources;
  26. use WindowsAzure\Common\Internal\Utilities;
  27. /**
  28. * Holds result of listBlobBlocks
  29. *
  30. * @category Microsoft
  31. * @package WindowsAzure\Blob\Models
  32. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  33. * @copyright 2012 Microsoft Corporation
  34. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  35. * @version Release: @package_version@
  36. * @link https://github.com/windowsazure/azure-sdk-for-php
  37. */
  38. class ListBlobBlocksResult
  39. {
  40. /**
  41. * @var \DateTime
  42. */
  43. private $_lastModified;
  44. /**
  45. * @var string
  46. */
  47. private $_etag;
  48. /**
  49. * @var string
  50. */
  51. private $_contentType;
  52. /**
  53. * @var integer
  54. */
  55. private $_contentLength;
  56. /**
  57. * @var array
  58. */
  59. private $_committedBlocks;
  60. /**
  61. * @var array
  62. */
  63. private $_uncommittedBlocks;
  64. /**
  65. * Gets block entries from parsed response
  66. *
  67. * @param array $parsed HTTP response
  68. * @param string $type Block type
  69. *
  70. * @return array
  71. */
  72. private static function _getEntries($parsed, $type)
  73. {
  74. $entries = array();
  75. if (is_array($parsed)) {
  76. $rawEntries = array();
  77. if ( array_key_exists($type, $parsed)
  78. && is_array($parsed[$type])
  79. && !empty($parsed[$type])
  80. ) {
  81. $rawEntries = Utilities::getArray($parsed[$type]['Block']);
  82. }
  83. foreach ($rawEntries as $value) {
  84. $entries[base64_decode($value['Name'])] = $value['Size'];
  85. }
  86. }
  87. return $entries;
  88. }
  89. /**
  90. * Creates ListBlobBlocksResult from given response headers and parsed body
  91. *
  92. * @param array $headers HTTP response headers
  93. * @param array $parsed HTTP response body in array representation
  94. *
  95. * @return ListBlobBlocksResult
  96. */
  97. public static function create($headers, $parsed)
  98. {
  99. $result = new ListBlobBlocksResult();
  100. $clean = array_change_key_case($headers);
  101. $result->setEtag(Utilities::tryGetValue($clean, Resources::ETAG));
  102. $date = Utilities::tryGetValue($clean, Resources::LAST_MODIFIED);
  103. if (!is_null($date)) {
  104. $date = Utilities::rfc1123ToDateTime($date);
  105. $result->setLastModified($date);
  106. }
  107. $result->setContentLength(
  108. intval(
  109. Utilities::tryGetValue($clean, Resources::X_MS_BLOB_CONTENT_LENGTH)
  110. )
  111. );
  112. $result->setContentType(
  113. Utilities::tryGetValue($clean, Resources::CONTENT_TYPE)
  114. );
  115. $result->_uncommittedBlocks = self::_getEntries(
  116. $parsed, 'UncommittedBlocks'
  117. );
  118. $result->_committedBlocks = self::_getEntries($parsed, 'CommittedBlocks');
  119. return $result;
  120. }
  121. /**
  122. * Gets blob lastModified.
  123. *
  124. * @return \DateTime.
  125. */
  126. public function getLastModified()
  127. {
  128. return $this->_lastModified;
  129. }
  130. /**
  131. * Sets blob lastModified.
  132. *
  133. * @param \DateTime $lastModified value.
  134. *
  135. * @return none.
  136. */
  137. public function setLastModified($lastModified)
  138. {
  139. Validate::isDate($lastModified);
  140. $this->_lastModified = $lastModified;
  141. }
  142. /**
  143. * Gets blob etag.
  144. *
  145. * @return string.
  146. */
  147. public function getEtag()
  148. {
  149. return $this->_etag;
  150. }
  151. /**
  152. * Sets blob etag.
  153. *
  154. * @param string $etag value.
  155. *
  156. * @return none.
  157. */
  158. public function setEtag($etag)
  159. {
  160. $this->_etag = $etag;
  161. }
  162. /**
  163. * Gets blob contentType.
  164. *
  165. * @return string.
  166. */
  167. public function getContentType()
  168. {
  169. return $this->_contentType;
  170. }
  171. /**
  172. * Sets blob contentType.
  173. *
  174. * @param string $contentType value.
  175. *
  176. * @return none.
  177. */
  178. public function setContentType($contentType)
  179. {
  180. $this->_contentType = $contentType;
  181. }
  182. /**
  183. * Gets blob contentLength.
  184. *
  185. * @return integer.
  186. */
  187. public function getContentLength()
  188. {
  189. return $this->_contentLength;
  190. }
  191. /**
  192. * Sets blob contentLength.
  193. *
  194. * @param integer $contentLength value.
  195. *
  196. * @return none.
  197. */
  198. public function setContentLength($contentLength)
  199. {
  200. Validate::isInteger($contentLength, 'contentLength');
  201. $this->_contentLength = $contentLength;
  202. }
  203. /**
  204. * Gets uncommitted blocks
  205. *
  206. * @return array
  207. */
  208. public function getUncommittedBlocks()
  209. {
  210. return $this->_uncommittedBlocks;
  211. }
  212. /**
  213. * Sets uncommitted blocks
  214. *
  215. * @param array $uncommittedBlocks The uncommitted blocks entries
  216. *
  217. * @return none.
  218. */
  219. public function setUncommittedBlocks($uncommittedBlocks)
  220. {
  221. $this->_uncommittedBlocks = $uncommittedBlocks;
  222. }
  223. /**
  224. * Gets committed blocks
  225. *
  226. * @return array
  227. */
  228. public function getCommittedBlocks()
  229. {
  230. return $this->_committedBlocks;
  231. }
  232. /**
  233. * Sets committed blocks
  234. *
  235. * @param array $committedBlocks The committed blocks entries
  236. *
  237. * @return none.
  238. */
  239. public function setCommittedBlocks($committedBlocks)
  240. {
  241. $this->_committedBlocks = $committedBlocks;
  242. }
  243. }
  244. ?>