/codes-php/phpjakarta/examples/Client/CloudStorageService.php

http://bukuphpjs.codeplex.com · PHP · 186 lines · 91 code · 20 blank · 75 comment · 10 complexity · e5c4e17ba6b52be9487b727fa6e9c568 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 Client
  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 Client;
  24. use WindowsAzure\Common\Configuration;
  25. use WindowsAzure\Table\TableService;
  26. use WindowsAzure\Table\TableSettings;
  27. use WindowsAzure\Blob\BlobService;
  28. use WindowsAzure\Blob\BlobSettings;
  29. use WindowsAzure\Queue\QueueService;
  30. use WindowsAzure\Queue\QueueSettings;
  31. use WindowsAzure\Table\Models\QueryTablesOptions;
  32. /**
  33. * Encapsulates Windows Azure storage service operations.
  34. *
  35. * @category Microsoft
  36. * @package Client
  37. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  38. * @copyright 2012 Microsoft Corporation
  39. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  40. * @version Release: @package_version@
  41. * @link https://github.com/windowsazure/azure-sdk-for-php
  42. */
  43. class CloudStorageService
  44. {
  45. /**
  46. * @var IQueue
  47. */
  48. private $_queueProxy;
  49. /**
  50. * @var IBlob
  51. */
  52. private $_blobProxy;
  53. /**
  54. * @var ITable
  55. */
  56. private $_tableProxy;
  57. /**
  58. * Constructs CloudStorageService using the provided parameters.
  59. *
  60. * @param string $name The storage service name.
  61. * @param string $key The storage service access key.
  62. * @param array $endpoints The storage service endpoints.
  63. * @throws \InvalidArgumentException
  64. */
  65. public function __construct($name, $key, $endpoints)
  66. {
  67. $queueUri = null;
  68. $blobUri = null;
  69. $tableUri = null;
  70. foreach ($endpoints as $value) {
  71. if (substr_count($value, 'queue.core')) {
  72. $queueUri = $value;
  73. } else if (substr_count($value, 'table.core')) {
  74. $tableUri = $value;
  75. } else if (substr_count($value, 'blob.core')) {
  76. $blobUri = $value;
  77. } else {
  78. throw new \InvalidArgumentException(ErrorMessages::INVALID_ENDPOINT);
  79. }
  80. }
  81. $config = new Configuration();
  82. $config->setProperty(TableSettings::ACCOUNT_NAME, $name);
  83. $config->setProperty(TableSettings::ACCOUNT_KEY, $key);
  84. $config->setProperty(TableSettings::URI, $tableUri);
  85. $config->setProperty(BlobSettings::ACCOUNT_NAME, $name);
  86. $config->setProperty(BlobSettings::ACCOUNT_KEY, $key);
  87. $config->setProperty(BlobSettings::URI, $tableUri);
  88. $config->setProperty(QueueSettings::ACCOUNT_NAME, $name);
  89. $config->setProperty(QueueSettings::ACCOUNT_KEY, $key);
  90. $config->setProperty(QueueSettings::URI, $tableUri);
  91. $this->_tableProxy = TableService::create($config);
  92. $this->_blobProxy = BlobService::create($config);
  93. $this->_queueProxy = QueueService::create($config);
  94. }
  95. /**
  96. * Checks if a given table name exists or not.
  97. *
  98. * @param string $name The table name.
  99. *
  100. * @return boolean
  101. */
  102. public function tableExists($name)
  103. {
  104. $tables = $this->listTables();
  105. foreach ($tables as $tableName) {
  106. if ($tableName == $name) {
  107. return true;
  108. }
  109. }
  110. return false;
  111. }
  112. /**
  113. * Lists all tables in this storage service.
  114. *
  115. * @return array
  116. */
  117. public function listTables()
  118. {
  119. $nextTableName = null;
  120. $tables = array();
  121. do {
  122. $options = new QueryTablesOptions();
  123. $options->setNextTableName($nextTableName);
  124. $result = $this->_tableProxy->queryTables();
  125. $nextTableName = $result->getNextTableName();
  126. $tables = array_merge($tables, $result->getTables());
  127. } while(!is_null($nextTableName));
  128. return $tables;
  129. }
  130. /**
  131. * Creates table if it does not exist.
  132. *
  133. * @param string $name The table name.
  134. *
  135. * @return CloudTable
  136. */
  137. public function createTable($name)
  138. {
  139. $cloudTable = null;
  140. try {
  141. $this->_tableProxy->createTable($name);
  142. $cloudTable = new CloudTable($name, $this->_tableProxy);
  143. } catch (\Exception $e) {
  144. if ($e->getCode() == WindowsAzureErrorCodes::TABLE_ALREADY_EXISTS) {
  145. $cloudTable = new CloudTable($name, $this->_tableProxy);
  146. }
  147. }
  148. return $cloudTable;
  149. }
  150. /**
  151. * Deletes given table.
  152. *
  153. * @param string $name The table name.
  154. *
  155. * @return boolean Indicates if the table was deleted or not.
  156. */
  157. public function deleteTable($name)
  158. {
  159. try {
  160. $this->_tableProxy->deleteTable($name);
  161. return true;
  162. } catch(\Exception $ex) {
  163. return false;
  164. }
  165. }
  166. }