/codes-php/phpjakarta/WindowsAzure/Common/Internal/Atom/AtomBase.php

http://bukuphpjs.codeplex.com · PHP · 326 lines · 167 code · 28 blank · 131 comment · 12 complexity · 09398da16239e87b929a9d4a64f5924f 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\Common\Internal\Atom
  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\Common\Internal\Atom;
  24. use WindowsAzure\Common\Internal\Validate;
  25. use WindowsAzure\Common\Internal\Resources;
  26. use WindowsAzure\Common\Internal\Atom\AtomLink;
  27. /**
  28. * The base class of ATOM library.
  29. *
  30. * @category Microsoft
  31. * @package WindowsAzure\Common\Internal\Atom
  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 AtomBase
  39. {
  40. /**
  41. * The attributes of the feed.
  42. *
  43. * @var array
  44. */
  45. protected $attributes;
  46. /**
  47. * Creates an ATOM base object with default parameters.
  48. */
  49. public function __construct()
  50. {
  51. $this->attributes = array();
  52. $atomlink = new AtomLink();
  53. }
  54. /**
  55. * Gets the attributes of the ATOM class.
  56. *
  57. * @return array
  58. */
  59. public function getAttributes()
  60. {
  61. return $this->attributes;
  62. }
  63. /**
  64. * Sets the attributes of the ATOM class.
  65. *
  66. * @param array $attributes The attributes of the array.
  67. *
  68. * @return array
  69. */
  70. public function setAttributes($attributes)
  71. {
  72. Validate::isArray($attributes, 'attributes');
  73. $this->attributes = $attributes;
  74. }
  75. /**
  76. * Sets an attribute to the ATOM object instance.
  77. *
  78. * @param string $attributeKey The key of the attribute.
  79. * @param mixed $attributeValue The value of the attribute.
  80. *
  81. * @return none
  82. */
  83. public function setAttribute($attributeKey, $attributeValue)
  84. {
  85. $this->attributes[$attributeKey] = $attributeValue;
  86. }
  87. /**
  88. * Gets an attribute with a specified attribute key.
  89. *
  90. * @param string $attributeKey The key of the attribute.
  91. *
  92. * @return none
  93. */
  94. public function getAttribute($attributeKey)
  95. {
  96. return $this->attributes[$attributeKey];
  97. }
  98. /**
  99. * Processes author node.
  100. *
  101. * @param array $xmlWriter The XML writer.
  102. * @param array $itemArray An array of item to write.
  103. * @param array $elementName The name of the element.
  104. *
  105. * @return array
  106. */
  107. protected function writeArrayItem($xmlWriter, $itemArray, $elementName)
  108. {
  109. Validate::notNull($xmlWriter, 'xmlWriter');
  110. Validate::isArray($itemArray, 'itemArray');
  111. Validate::isString($elementName, 'elementName');
  112. foreach ($itemArray as $itemInstance) {
  113. $xmlWriter->startElementNS(
  114. 'atom',
  115. $elementName,
  116. Resources::ATOM_NAMESPACE
  117. );
  118. $itemInstance->writeInnerXml($xmlWriter);
  119. $xmlWriter->endElement();
  120. }
  121. }
  122. /**
  123. * Processes author node.
  124. *
  125. * @param array $xmlArray An array of simple xml elements.
  126. *
  127. * @return array
  128. */
  129. protected function processAuthorNode($xmlArray)
  130. {
  131. $author = array();
  132. $authorItem = $xmlArray[Resources::AUTHOR];
  133. if (is_array($authorItem)) {
  134. foreach ($xmlArray[Resources::AUTHOR] as $authorXmlInstance) {
  135. $authorInstance = new Person();
  136. $authorInstance->parseXml($authorXmlInstance->asXML());
  137. $author[] = $authorInstance;
  138. }
  139. } else {
  140. $authorInstance = new Person();
  141. $authorInstance->parseXml($authorItem->asXML());
  142. $author[] = $authorInstance;
  143. }
  144. return $author;
  145. }
  146. /**
  147. * Processes entry node.
  148. *
  149. * @param array $xmlArray An array of simple xml elements.
  150. *
  151. * @return array
  152. */
  153. protected function processEntryNode($xmlArray)
  154. {
  155. $entry = array();
  156. $entryItem = $xmlArray[Resources::ENTRY];
  157. if (is_array($entryItem)) {
  158. foreach ($xmlArray[Resources::ENTRY] as $entryXmlInstance) {
  159. $entryInstance = new Entry();
  160. $entryInstance->parseXml($entryXmlInstance->asXML());
  161. $entry[] = $entryInstance;
  162. }
  163. } else {
  164. $entryInstance = new Entry();
  165. $entryInstance->parseXml($entryItem->asXML());
  166. $entry[] = $entryInstance;
  167. }
  168. return $entry;
  169. }
  170. /**
  171. * Processes category node.
  172. *
  173. * @param array $xmlArray An array of simple xml elements.
  174. *
  175. * @return array
  176. */
  177. protected function processCategoryNode($xmlArray)
  178. {
  179. $category = array();
  180. $categoryItem = $xmlArray[Resources::CATEGORY];
  181. if (is_array($categoryItem)) {
  182. foreach ($xmlArray[Resources::CATEGORY] as $categoryXmlInstance) {
  183. $categoryInstance = new Category();
  184. $categoryInstance->parseXml($categoryXmlInstance->asXML());
  185. $category[] = $categoryInstance;
  186. }
  187. } else {
  188. $categoryInstance = new Category();
  189. $categoryInstance->parseXml($categoryItem->asXML());
  190. $category[] = $categoryInstance;
  191. }
  192. return $category;
  193. }
  194. /**
  195. * Processes contributor node.
  196. *
  197. * @param array $xmlArray An array of simple xml elements.
  198. *
  199. * @return array
  200. */
  201. protected function processContributorNode($xmlArray)
  202. {
  203. $category = array();
  204. $contributorItem = $xmlArray[Resources::CONTRIBUTOR];
  205. if (is_array($contributorItem)) {
  206. foreach ($xmlArray[Resources::CONTRIBUTOR] as $contributorXmlInstance) {
  207. $contributorInstance = new Person();
  208. $contributorInstance->parseXml($contributorXmlInstance->asXML());
  209. $contributor[] = $contributorInstance;
  210. }
  211. } elseif (is_string($contributorItem)) {
  212. $contributorInstance = new Person();
  213. $contributorInstance->setName((string)$contributorItem);
  214. $contributor[] = $contributorInstance;
  215. } else {
  216. $contributorInstance = new Person();
  217. $contributorInstance->parseXml($contributorItem->asXML());
  218. $contributor[] = $contributorInstance;
  219. }
  220. return $contributor;
  221. }
  222. /**
  223. * Processes link node.
  224. *
  225. * @param array $xmlArray An array of simple xml elements.
  226. *
  227. * @return array
  228. */
  229. protected function processLinkNode($xmlArray)
  230. {
  231. $link = array();
  232. $linkValue = $xmlArray[Resources::LINK];
  233. if (is_array($linkValue)) {
  234. foreach ($xmlArray[Resources::LINK] as $linkValueInstance) {
  235. $linkInstance = new AtomLink();
  236. $linkInstance->parseXml($linkValueInstance->asXML());
  237. $link[] = $linkInstance;
  238. }
  239. } else {
  240. $linkInstance = new AtomLink();
  241. $linkInstance->parseXml($linkValue->asXML());
  242. $link[] = $linkInstance;
  243. }
  244. return $link;
  245. }
  246. /**
  247. * Writes an optional attribute for ATOM.
  248. *
  249. * @param \XMLWriter $xmlWriter The XML writer.
  250. * @param string $attributeName The name of the attribute.
  251. * @param mixed $attributeValue The value of the attribute.
  252. *
  253. * @return none
  254. */
  255. protected function writeOptionalAttribute(
  256. $xmlWriter,
  257. $attributeName,
  258. $attributeValue
  259. ) {
  260. Validate::notNull($xmlWriter, 'xmlWriter');
  261. Validate::isString($attributeName, 'attributeName');
  262. if (!empty($attributeValue)) {
  263. $xmlWriter->writeAttribute(
  264. $attributeName,
  265. $attributeValue
  266. );
  267. }
  268. }
  269. /**
  270. * Writes the optional elements namespaces.
  271. *
  272. * @param \XmlWriter $xmlWriter The XML writer.
  273. * @param string $prefix The prefix.
  274. * @param string $elementName The element name.
  275. * @param string $namespace The namespace name.
  276. * @param string $elementValue The element value.
  277. *
  278. * @return none
  279. */
  280. protected function writeOptionalElementNS(
  281. $xmlWriter,
  282. $prefix,
  283. $elementName,
  284. $namespace,
  285. $elementValue
  286. ) {
  287. Validate::notNull($xmlWriter, 'xmlWriter');
  288. Validate::isString($elementName, 'elementName');
  289. if (!empty($elementValue)) {
  290. $xmlWriter->writeElementNS(
  291. $prefix,
  292. $elementName,
  293. $namespace,
  294. $elementValue
  295. );
  296. }
  297. }
  298. }