/wp-content/plugins/w3-total-cache/lib/Azure/MicrosoftAzureStorage/Blob/Models/ListBlobsResult.php

https://bitbucket.org/reareaf/wp-re · PHP · 345 lines · 152 code · 34 blank · 159 comment · 4 complexity · a63be494e55815564ff485c15f44e7a2 MD5 · raw file

  1. <?php
  2. /**
  3. * LICENSE: The MIT License (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. * https://github.com/azure/azure-storage-php/LICENSE
  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 MicrosoftAzure\Storage\Blob\Models
  18. * @author Azure Storage PHP SDK <dmsh@microsoft.com>
  19. * @copyright 2016 Microsoft Corporation
  20. * @license https://github.com/azure/azure-storage-php/LICENSE
  21. * @link https://github.com/azure/azure-storage-php
  22. */
  23. namespace MicrosoftAzure\Storage\Blob\Models;
  24. use MicrosoftAzure\Storage\Common\Internal\Resources;
  25. use MicrosoftAzure\Storage\Blob\Models\Blob;
  26. use MicrosoftAzure\Storage\Common\Internal\Utilities;
  27. use MicrosoftAzure\Storage\Common\Internal\InvalidArgumentTypeException;
  28. /**
  29. * Hold result of calliing listBlobs wrapper.
  30. *
  31. * @category Microsoft
  32. * @package MicrosoftAzure\Storage\Blob\Models
  33. * @author Azure Storage PHP SDK <dmsh@microsoft.com>
  34. * @copyright 2016 Microsoft Corporation
  35. * @license https://github.com/azure/azure-storage-php/LICENSE
  36. * @version Release: 0.11.0
  37. * @link https://github.com/azure/azure-storage-php
  38. */
  39. class ListBlobsResult
  40. {
  41. /**
  42. * @var array
  43. */
  44. private $_blobPrefixes;
  45. /**
  46. * @var Blob[]
  47. */
  48. private $_blobs;
  49. /**
  50. * @var string
  51. */
  52. private $_delimiter;
  53. /**
  54. * @var string
  55. */
  56. private $_prefix;
  57. /**
  58. * @var string
  59. */
  60. private $_marker;
  61. /**
  62. * @var string
  63. */
  64. private $_nextMarker;
  65. /**
  66. * @var integer
  67. */
  68. private $_maxResults;
  69. /**
  70. * @var string
  71. */
  72. private $_containerName;
  73. /**
  74. * Creates ListBlobsResult object from parsed XML response.
  75. *
  76. * @param array $parsed XML response parsed into array.
  77. *
  78. * @return ListBlobsResult
  79. */
  80. public static function create($parsed)
  81. {
  82. $result = new ListBlobsResult();
  83. $serviceEndpoint = Utilities::tryGetKeysChainValue(
  84. $parsed,
  85. Resources::XTAG_ATTRIBUTES,
  86. Resources::XTAG_SERVICE_ENDPOINT
  87. );
  88. $containerName = Utilities::tryGetKeysChainValue(
  89. $parsed,
  90. Resources::XTAG_ATTRIBUTES,
  91. Resources::XTAG_CONTAINER_NAME
  92. );
  93. $result->_containerName = $containerName;
  94. $result->_prefix = Utilities::tryGetValue(
  95. $parsed, Resources::QP_PREFIX
  96. );
  97. $result->_marker = Utilities::tryGetValue(
  98. $parsed, Resources::QP_MARKER
  99. );
  100. $result->_nextMarker = Utilities::tryGetValue(
  101. $parsed, Resources::QP_NEXT_MARKER
  102. );
  103. $result->_maxResults = intval(
  104. Utilities::tryGetValue($parsed, Resources::QP_MAX_RESULTS, 0)
  105. );
  106. $result->_delimiter = Utilities::tryGetValue(
  107. $parsed, Resources::QP_DELIMITER
  108. );
  109. $result->_blobs = array();
  110. $result->_blobPrefixes = array();
  111. $rawBlobs = array();
  112. $rawBlobPrefixes = array();
  113. if ( is_array($parsed['Blobs'])
  114. && array_key_exists('Blob', $parsed['Blobs'])
  115. ) {
  116. $rawBlobs = Utilities::getArray($parsed['Blobs']['Blob']);
  117. }
  118. foreach ($rawBlobs as $value) {
  119. $blob = new Blob();
  120. $blob->setName($value['Name']);
  121. $blob->setUrl($serviceEndpoint . $containerName . '/' . $value['Name']);
  122. $blob->setSnapshot(Utilities::tryGetValue($value, 'Snapshot'));
  123. $blob->setProperties(
  124. BlobProperties::create(
  125. Utilities::tryGetValue($value, 'Properties')
  126. )
  127. );
  128. $blob->setMetadata(
  129. Utilities::tryGetValue($value, Resources::QP_METADATA, array())
  130. );
  131. $result->_blobs[] = $blob;
  132. }
  133. if ( is_array($parsed['Blobs'])
  134. && array_key_exists('BlobPrefix', $parsed['Blobs'])
  135. ) {
  136. $rawBlobPrefixes = Utilities::getArray($parsed['Blobs']['BlobPrefix']);
  137. }
  138. foreach ($rawBlobPrefixes as $value) {
  139. $blobPrefix = new BlobPrefix();
  140. $blobPrefix->setName($value['Name']);
  141. $result->_blobPrefixes[] = $blobPrefix;
  142. }
  143. return $result;
  144. }
  145. /**
  146. * Gets blobs.
  147. *
  148. * @return Blob[]
  149. */
  150. public function getBlobs()
  151. {
  152. return $this->_blobs;
  153. }
  154. /**
  155. * Sets blobs.
  156. *
  157. * @param Blob[] $blobs list of blobs
  158. *
  159. * @return none
  160. */
  161. public function setBlobs($blobs)
  162. {
  163. $this->_blobs = array();
  164. foreach ($blobs as $blob) {
  165. $this->_blobs[] = clone $blob;
  166. }
  167. }
  168. /**
  169. * Gets blobPrefixes.
  170. *
  171. * @return array
  172. */
  173. public function getBlobPrefixes()
  174. {
  175. return $this->_blobPrefixes;
  176. }
  177. /**
  178. * Sets blobPrefixes.
  179. *
  180. * @param array $blobPrefixes list of blobPrefixes
  181. *
  182. * @return none
  183. */
  184. public function setBlobPrefixes($blobPrefixes)
  185. {
  186. $this->_blobPrefixes = array();
  187. foreach ($blobPrefixes as $blob) {
  188. $this->_blobPrefixes[] = clone $blob;
  189. }
  190. }
  191. /**
  192. * Gets prefix.
  193. *
  194. * @return string
  195. */
  196. public function getPrefix()
  197. {
  198. return $this->_prefix;
  199. }
  200. /**
  201. * Sets prefix.
  202. *
  203. * @param string $prefix value.
  204. *
  205. * @return none
  206. */
  207. public function setPrefix($prefix)
  208. {
  209. $this->_prefix = $prefix;
  210. }
  211. /**
  212. * Gets prefix.
  213. *
  214. * @return string
  215. */
  216. public function getDelimiter()
  217. {
  218. return $this->_delimiter;
  219. }
  220. /**
  221. * Sets prefix.
  222. *
  223. * @param string $delimiter value.
  224. *
  225. * @return none
  226. */
  227. public function setDelimiter($delimiter)
  228. {
  229. $this->_delimiter = $delimiter;
  230. }
  231. /**
  232. * Gets marker.
  233. *
  234. * @return string
  235. */
  236. public function getMarker()
  237. {
  238. return $this->_marker;
  239. }
  240. /**
  241. * Sets marker.
  242. *
  243. * @param string $marker value.
  244. *
  245. * @return none
  246. */
  247. public function setMarker($marker)
  248. {
  249. $this->_marker = $marker;
  250. }
  251. /**
  252. * Gets max results.
  253. *
  254. * @return integer
  255. */
  256. public function getMaxResults()
  257. {
  258. return $this->_maxResults;
  259. }
  260. /**
  261. * Sets max results.
  262. *
  263. * @param integer $maxResults value.
  264. *
  265. * @return none
  266. */
  267. public function setMaxResults($maxResults)
  268. {
  269. $this->_maxResults = $maxResults;
  270. }
  271. /**
  272. * Gets next marker.
  273. *
  274. * @return string
  275. */
  276. public function getNextMarker()
  277. {
  278. return $this->_nextMarker;
  279. }
  280. /**
  281. * Sets next marker.
  282. *
  283. * @param string $nextMarker value.
  284. *
  285. * @return none
  286. */
  287. public function setNextMarker($nextMarker)
  288. {
  289. $this->_nextMarker = $nextMarker;
  290. }
  291. /**
  292. * Gets container name.
  293. *
  294. * @return string
  295. */
  296. public function getContainerName()
  297. {
  298. return $this->_containerName;
  299. }
  300. /**
  301. * Sets container name.
  302. *
  303. * @param string $containerName value.
  304. *
  305. * @return none
  306. */
  307. public function setContainerName($containerName)
  308. {
  309. $this->_containerName = $containerName;
  310. }
  311. }