| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Gdata
- * @subpackage Photos
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- /**
- * @see Zend_Gdata_Photos
- */
- require_once 'Zend/Gdata/Photos.php';
- /**
- * @see Zend_Gdata_Feed
- */
- require_once 'Zend/Gdata/Feed.php';
- /**
- * @see Zend_Gdata_Photos_PhotoEntry
- */
- require_once 'Zend/Gdata/Photos/PhotoEntry.php';
- /**
- * Data model for a collection of photo entries, usually
- * provided by the Picasa servers.
- *
- * For information on requesting this feed from a server, see the
- * service class, Zend_Gdata_Photos.
- *
- * @category Zend
- * @package Zend_Gdata
- * @subpackage Photos
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- class Zend_Gdata_Photos_PhotoFeed extends Zend_Gdata_Feed
- {
- /**
- * gphoto:id element
- *
- * @var Zend_Gdata_Photos_Extension_Id
- */
- protected $_gphotoId = null;
- /**
- * gphoto:albumid element
- *
- * @var Zend_Gdata_Photos_Extension_AlbumId
- */
- protected $_gphotoAlbumId = null;
- /**
- * gphoto:version element
- *
- * @var Zend_Gdata_Photos_Extension_Version
- */
- protected $_gphotoVersion = null;
- /**
- * gphoto:width element
- *
- * @var Zend_Gdata_Photos_Extension_Width
- */
- protected $_gphotoWidth = null;
- /**
- * gphoto:height element
- *
- * @var Zend_Gdata_Photos_Extension_Height
- */
- protected $_gphotoHeight = null;
- /**
- * gphoto:size element
- *
- * @var Zend_Gdata_Photos_Extension_Size
- */
- protected $_gphotoSize = null;
- /**
- * gphoto:client element
- *
- * @var Zend_Gdata_Photos_Extension_Client
- */
- protected $_gphotoClient = null;
- /**
- * gphoto:checksum element
- *
- * @var Zend_Gdata_Photos_Extension_Checksum
- */
- protected $_gphotoChecksum = null;
- /**
- * gphoto:timestamp element
- *
- * @var Zend_Gdata_Photos_Extension_Timestamp
- */
- protected $_gphotoTimestamp = null;
- /**
- * gphoto:commentCount element
- *
- * @var Zend_Gdata_Photos_Extension_CommentCount
- */
- protected $_gphotoCommentCount = null;
- /**
- * gphoto:commentingEnabled element
- *
- * @var Zend_Gdata_Photos_Extension_CommentingEnabled
- */
- protected $_gphotoCommentingEnabled = null;
- /**
- * media:group element
- *
- * @var Zend_Gdata_Media_Extension_MediaGroup
- */
- protected $_mediaGroup = null;
- protected $_entryClassName = 'Zend_Gdata_Photos_PhotoEntry';
- protected $_feedClassName = 'Zend_Gdata_Photos_PhotoFeed';
- protected $_entryKindClassMapping = array(
- 'http://schemas.google.com/photos/2007#comment' => 'Zend_Gdata_Photos_CommentEntry',
- 'http://schemas.google.com/photos/2007#tag' => 'Zend_Gdata_Photos_TagEntry'
- );
- public function __construct($element = null)
- {
- $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
- parent::__construct($element);
- }
- public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
- {
- $element = parent::getDOM($doc, $majorVersion, $minorVersion);
- if ($this->_gphotoId != null) {
- $element->appendChild($this->_gphotoId->getDOM($element->ownerDocument));
- }
- if ($this->_gphotoVersion != null) {
- $element->appendChild($this->_gphotoVersion->getDOM($element->ownerDocument));
- }
- if ($this->_gphotoWidth != null) {
- $element->appendChild($this->_gphotoWidth->getDOM($element->ownerDocument));
- }
- if ($this->_gphotoHeight != null) {
- $element->appendChild($this->_gphotoHeight->getDOM($element->ownerDocument));
- }
- if ($this->_gphotoSize != null) {
- $element->appendChild($this->_gphotoSize->getDOM($element->ownerDocument));
- }
- if ($this->_gphotoClient != null) {
- $element->appendChild($this->_gphotoClient->getDOM($element->ownerDocument));
- }
- if ($this->_gphotoChecksum != null) {
- $element->appendChild($this->_gphotoChecksum->getDOM($element->ownerDocument));
- }
- if ($this->_gphotoTimestamp != null) {
- $element->appendChild($this->_gphotoTimestamp->getDOM($element->ownerDocument));
- }
- if ($this->_gphotoCommentingEnabled != null) {
- $element->appendChild($this->_gphotoCommentingEnabled->getDOM($element->ownerDocument));
- }
- if ($this->_gphotoCommentCount != null) {
- $element->appendChild($this->_gphotoCommentCount->getDOM($element->ownerDocument));
- }
- if ($this->_mediaGroup != null) {
- $element->appendChild($this->_mediaGroup->getDOM($element->ownerDocument));
- }
- return $element;
- }
- protected function takeChildFromDOM($child)
- {
- $absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
- switch ($absoluteNodeName) {
- case $this->lookupNamespace('gphoto') . ':' . 'id';
- $id = new Zend_Gdata_Photos_Extension_Id();
- $id->transferFromDOM($child);
- $this->_gphotoId = $id;
- break;
- case $this->lookupNamespace('gphoto') . ':' . 'version';
- $version = new Zend_Gdata_Photos_Extension_Version();
- $version->transferFromDOM($child);
- $this->_gphotoVersion = $version;
- break;
- case $this->lookupNamespace('gphoto') . ':' . 'albumid';
- $albumid = new Zend_Gdata_Photos_Extension_AlbumId();
- $albumid->transferFromDOM($child);
- $this->_gphotoAlbumId = $albumid;
- break;
- case $this->lookupNamespace('gphoto') . ':' . 'width';
- $width = new Zend_Gdata_Photos_Extension_Width();
- $width->transferFromDOM($child);
- $this->_gphotoWidth = $width;
- break;
- case $this->lookupNamespace('gphoto') . ':' . 'height';
- $height = new Zend_Gdata_Photos_Extension_Height();
- $height->transferFromDOM($child);
- $this->_gphotoHeight = $height;
- break;
- case $this->lookupNamespace('gphoto') . ':' . 'size';
- $size = new Zend_Gdata_Photos_Extension_Size();
- $size->transferFromDOM($child);
- $this->_gphotoSize = $size;
- break;
- case $this->lookupNamespace('gphoto') . ':' . 'client';
- $client = new Zend_Gdata_Photos_Extension_Client();
- $client->transferFromDOM($child);
- $this->_gphotoClient = $client;
- break;
- case $this->lookupNamespace('gphoto') . ':' . 'checksum';
- $checksum = new Zend_Gdata_Photos_Extension_Checksum();
- $checksum->transferFromDOM($child);
- $this->_gphotoChecksum = $checksum;
- break;
- case $this->lookupNamespace('gphoto') . ':' . 'timestamp';
- $timestamp = new Zend_Gdata_Photos_Extension_Timestamp();
- $timestamp->transferFromDOM($child);
- $this->_gphotoTimestamp = $timestamp;
- break;
- case $this->lookupNamespace('gphoto') . ':' . 'commentingEnabled';
- $commentingEnabled = new Zend_Gdata_Photos_Extension_CommentingEnabled();
- $commentingEnabled->transferFromDOM($child);
- $this->_gphotoCommentingEnabled = $commentingEnabled;
- break;
- case $this->lookupNamespace('gphoto') . ':' . 'commentCount';
- $commentCount = new Zend_Gdata_Photos_Extension_CommentCount();
- $commentCount->transferFromDOM($child);
- $this->_gphotoCommentCount = $commentCount;
- break;
- case $this->lookupNamespace('media') . ':' . 'group';
- $mediaGroup = new Zend_Gdata_Media_Extension_MediaGroup();
- $mediaGroup->transferFromDOM($child);
- $this->_mediaGroup = $mediaGroup;
- break;
- case $this->lookupNamespace('atom') . ':' . 'entry':
- $entryClassName = $this->_entryClassName;
- $tmpEntry = new Zend_Gdata_App_Entry($child);
- $categories = $tmpEntry->getCategory();
- foreach ($categories as $category) {
- if ($category->scheme == Zend_Gdata_Photos::KIND_PATH &&
- $this->_entryKindClassMapping[$category->term] != "") {
- $entryClassName = $this->_entryKindClassMapping[$category->term];
- break;
- } else {
- require_once 'Zend/Gdata/App/Exception.php';
- throw new Zend_Gdata_App_Exception('Entry is missing kind declaration.');
- }
- }
- $newEntry = new $entryClassName($child);
- $newEntry->setHttpClient($this->getHttpClient());
- $this->_entry[] = $newEntry;
- break;
- default:
- parent::takeChildFromDOM($child);
- break;
- }
- }
- /**
- * Get the value for this element's gphoto:id attribute.
- *
- * @see setGphotoId
- * @return string The requested attribute.
- */
- public function getGphotoId()
- {
- return $this->_gphotoId;
- }
- /**
- * Set the value for this element's gphoto:id attribute.
- *
- * @param string $value The desired value for this attribute.
- * @return Zend_Gdata_Photos_Extension_Id The element being modified.
- */
- public function setGphotoId($value)
- {
- $this->_gphotoId = $value;
- return $this;
- }
- /**
- * Get the value for this element's gphoto:version attribute.
- *
- * @see setGphotoVersion
- * @return string The requested attribute.
- */
- public function getGphotoVersion()
- {
- return $this->_gphotoVersion;
- }
- /**
- * Set the value for this element's gphoto:version attribute.
- *
- * @param string $value The desired value for this attribute.
- * @return Zend_Gdata_Photos_Extension_Version The element being modified.
- */
- public function setGphotoVersion($value)
- {
- $this->_gphotoVersion = $value;
- return $this;
- }
- /**
- * Get the value for this element's gphoto:albumid attribute.
- *
- * @see setGphotoAlbumId
- * @return string The requested attribute.
- */
- public function getGphotoAlbumId()
- {
- return $this->_gphotoAlbumId;
- }
- /**
- * Set the value for this element's gphoto:albumid attribute.
- *
- * @param string $value The desired value for this attribute.
- * @return Zend_Gdata_Photos_Extension_AlbumId The element being modified.
- */
- public function setGphotoAlbumId($value)
- {
- $this->_gphotoAlbumId = $value;
- return $this;
- }
- /**
- * Get the value for this element's gphoto:width attribute.
- *
- * @see setGphotoWidth
- * @return string The requested attribute.
- */
- public function getGphotoWidth()
- {
- return $this->_gphotoWidth;
- }
- /**
- * Set the value for this element's gphoto:width attribute.
- *
- * @param string $value The desired value for this attribute.
- * @return Zend_Gdata_Photos_Extension_Width The element being modified.
- */
- public function setGphotoWidth($value)
- {
- $this->_gphotoWidth = $value;
- return $this;
- }
- /**
- * Get the value for this element's gphoto:height attribute.
- *
- * @see setGphotoHeight
- * @return string The requested attribute.
- */
- public function getGphotoHeight()
- {
- return $this->_gphotoHeight;
- }
- /**
- * Set the value for this element's gphoto:height attribute.
- *
- * @param string $value The desired value for this attribute.
- * @return Zend_Gdata_Photos_Extension_Height The element being modified.
- */
- public function setGphotoHeight($value)
- {
- $this->_gphotoHeight = $value;
- return $this;
- }
- /**
- * Get the value for this element's gphoto:size attribute.
- *
- * @see setGphotoSize
- * @return string The requested attribute.
- */
- public function getGphotoSize()
- {
- return $this->_gphotoSize;
- }
- /**
- * Set the value for this element's gphoto:size attribute.
- *
- * @param string $value The desired value for this attribute.
- * @return Zend_Gdata_Photos_Extension_Size The element being modified.
- */
- public function setGphotoSize($value)
- {
- $this->_gphotoSize = $value;
- return $this;
- }
- /**
- * Get the value for this element's gphoto:client attribute.
- *
- * @see setGphotoClient
- * @return string The requested attribute.
- */
- public function getGphotoClient()
- {
- return $this->_gphotoClient;
- }
- /**
- * Set the value for this element's gphoto:client attribute.
- *
- * @param string $value The desired value for this attribute.
- * @return Zend_Gdata_Photos_Extension_Client The element being modified.
- */
- public function setGphotoClient($value)
- {
- $this->_gphotoClient = $value;
- return $this;
- }
- /**
- * Get the value for this element's gphoto:checksum attribute.
- *
- * @see setGphotoChecksum
- * @return string The requested attribute.
- */
- public function getGphotoChecksum()
- {
- return $this->_gphotoChecksum;
- }
- /**
- * Set the value for this element's gphoto:checksum attribute.
- *
- * @param string $value The desired value for this attribute.
- * @return Zend_Gdata_Photos_Extension_Checksum The element being modified.
- */
- public function setGphotoChecksum($value)
- {
- $this->_gphotoChecksum = $value;
- return $this;
- }
- /**
- * Get the value for this element's gphoto:timestamp attribute.
- *
- * @see setGphotoTimestamp
- * @return string The requested attribute.
- */
- public function getGphotoTimestamp()
- {
- return $this->_gphotoTimestamp;
- }
- /**
- * Set the value for this element's gphoto:timestamp attribute.
- *
- * @param string $value The desired value for this attribute.
- * @return Zend_Gdata_Photos_Extension_Timestamp The element being modified.
- */
- public function setGphotoTimestamp($value)
- {
- $this->_gphotoTimestamp = $value;
- return $this;
- }
- /**
- * Get the value for this element's gphoto:commentCount attribute.
- *
- * @see setGphotoCommentCount
- * @return string The requested attribute.
- */
- public function getGphotoCommentCount()
- {
- return $this->_gphotoCommentCount;
- }
- /**
- * Set the value for this element's gphoto:commentCount attribute.
- *
- * @param string $value The desired value for this attribute.
- * @return Zend_Gdata_Photos_Extension_CommentCount The element being modified.
- */
- public function setGphotoCommentCount($value)
- {
- $this->_gphotoCommentCount = $value;
- return $this;
- }
- /**
- * Get the value for this element's gphoto:commentingEnabled attribute.
- *
- * @see setGphotoCommentingEnabled
- * @return string The requested attribute.
- */
- public function getGphotoCommentingEnabled()
- {
- return $this->_gphotoCommentingEnabled;
- }
- /**
- * Set the value for this element's gphoto:commentingEnabled attribute.
- *
- * @param string $value The desired value for this attribute.
- * @return Zend_Gdata_Photos_Extension_CommentingEnabled The element being modified.
- */
- public function setGphotoCommentingEnabled($value)
- {
- $this->_gphotoCommentingEnabled = $value;
- return $this;
- }
- /**
- * Get the value for this element's media:group attribute.
- *
- * @see setMediaGroup
- * @return string The requested attribute.
- */
- public function getMediaGroup()
- {
- return $this->_mediaGroup;
- }
- /**
- * Set the value for this element's media:group attribute.
- *
- * @param string $value The desired value for this attribute.
- * @return Zend_Gdata_Media_Extension_MediaGroup The element being modified.
- */
- public function setMediaGroup($value)
- {
- $this->_mediaGroup = $value;
- return $this;
- }
- }
|