Esempio n. 1
0
 public function testGetVideoIdException()
 {
     $exceptionCaught = false;
     $videoEntry = new YouTube\VideoEntry();
     // use invalid ID
     $videoEntry->id = new Extension\Id('adfadfasf');
     try {
         $videoEntry->getVideoId();
     } catch (App\Exception $e) {
         $exceptionCaught = true;
     }
     $this->assertTrue($exceptionCaught, 'Expected exception not caught: ' . 'ZendGData\\App\\Exception');
 }
Esempio n. 2
0
 /**
  * Send a video message.
  *
  * Note: Either a ZendGData\YouTube\VideoEntry or a valid video ID must
  * be provided.
  *
  * @param string $body The body of the message
  * @param YouTube\VideoEntry $videoEntry (optional) The video entry to send
  * @param string $videoId The id of the video to send
  * @param string $recipientUserName The username of the recipient
  * @throws \ZendGData\App\InvalidArgumentException if no valid
  *         ZendGData\YouTube\VideoEntry or videoId were provided
  * @return \ZendGData\YouTube\InboxEntry|null The
  *         ZendGData\YouTube\InboxEntry representing the sent message.
  *
  */
 public function sendVideoMessage($body, $videoEntry = null, $videoId = null, $recipientUserName)
 {
     if (!$videoId && !$videoEntry) {
         throw new App\InvalidArgumentException('Expecting either a valid videoID or a videoEntry object in ' . '\\ZendGData\\YouTube->sendVideoMessage().');
     }
     $messageEntry = new YouTube\InboxEntry();
     if ($this->getMajorProtocolVersion() == null || $this->getMajorProtocolVersion() == 1) {
         if (!$videoId) {
             $videoId = $videoEntry->getVideoId();
         } elseif (strlen($videoId) < 12) {
             //Append the full URI
             $videoId = self::VIDEO_URI . '/' . $videoId;
         }
         $messageEntry->setId($this->newId($videoId));
         // TODO there seems to be a bug where v1 inbox entries dont
         // retain their description...
         $messageEntry->setSummary(new App\Extension\Summary($body));
     } else {
         if (!$videoId) {
             $videoId = $videoEntry->getVideoId();
             $videoId = substr($videoId, strrpos($videoId, ':'));
         }
         $messageEntry->setId($this->newId($videoId));
         $messageEntry->setSummary($this->newSummary($body));
     }
     $insertUrl = 'https://gdata.youtube.com/feeds/api/users/' . $recipientUserName . '/inbox';
     $response = $this->insertEntry($messageEntry, $insertUrl, '\\ZendGData\\YouTube\\InboxEntry');
     return $response;
 }