X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=blobdiff_plain;f=ItemAddEmbedVideo.inc;h=3a1fa7967e7cda4195a2e7fb54057d346917c8a5;hb=c715f7d9dc80bca025984c9150c02ccc4bbdce80;hp=460370918a7e19a75e97f642ab05850cc129c3d4;hpb=5a178a5689d8a62fbb9e5da64869cc4b9d32070f;p=embedvideo%2F.git diff --git a/ItemAddEmbedVideo.inc b/ItemAddEmbedVideo.inc index 4603709..3a1fa79 100644 --- a/ItemAddEmbedVideo.inc +++ b/ItemAddEmbedVideo.inc @@ -78,6 +78,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin { $debugOutput = $this->getParameter($ItemAddEmbedVideo, 'debugOutput', "false"); $useInternalFlvPlayer = $this->getParameter($ItemAddEmbedVideo, 'useInternalFlvPlayer', "true"); $youtubeDevId = $this->getParameter($ItemAddEmbedVideo, 'youtubeDevId', ""); + $youtubeShowRelated = $this->getParameter($ItemAddEmbedVideo, 'youtubeShowRelated', "false"); $width = $this->getParameter($ItemAddEmbedVideo, 'width', "320"); $height = $this->getParameter($ItemAddEmbedVideo, 'height', "240"); $externalFlvPlayer = $this->getParameter($ItemAddEmbedVideo, 'externalFlvPlayer', ""); @@ -85,18 +86,38 @@ class ItemAddEmbedVideo extends ItemAddPlugin { $flvThumbnail = $this->getParameter($ItemAddEmbedVideo, 'flvThumbnail', ""); $useRemoteSize = $this->getParameter($ItemAddEmbedVideo, 'useRemoteSize', "false"); $autoStart = $this->getParameter($ItemAddEmbedVideo, 'autoStart', "false"); - + + /* Print our stored/set Parameters */ + if(!strcmp($debugOutput,"true")) { + print "
"; + print "

Variable Parameters

"; + print "debugOutput=$debugOutput
"; + print "useInternalFlvPlayer=$useInternalFlvPlayer
"; + print "youtubeDevId=$youtubeDevId
"; + print "youtubeShowRelated=$youtubeShowRelated
"; + print "width=$width
"; + print "height=$height
"; + print "externalFlvPlayer=$externalFlvPlayer
"; + print "externalFlvPlayerVars=$externalFlvPlayerVars
"; + print "flvThumbnail=$flvThumbnail
"; + print "useRemoteSize=$useRemoteSize
"; + print "autoStart=$autoStart
"; + print "
"; + } + /* Store other string constants we'll use later */ /* youtube */ $youtubeUrlPattern="youtube.com"; $youtubeApiUrl="http://www.youtube.com/api2_rest"; + /* We can't extract the server size from youtube */ $youtubeWidth="425"; $youtubeHeight="350"; /* google */ $googleUrlPattern="video.google.com"; $googlePlayer="http://video.google.com/googleplayer.swf"; + /* We can't extract the server size from google video */ $googleWidth="400"; $googleHeight="326"; @@ -151,8 +172,16 @@ class ItemAddEmbedVideo extends ItemAddPlugin { "Unable to get video information at url: $url - $response"),null,null); } + if(preg_match("/This video is private/",$xml)) { + return array(GalleryCoreApi::error(ERROR_BAD_PARAMETER,__FILE__,__LINE__, + "Unable to retrieve video information from youtube.". + "You cannot embed a private youtube video: $url"),null,null); + } + if(!strcmp($debugOutput,"true")) { + print "

Youtube XML Dump

"; print "$xml"; + print "
"; } /* Extract certain information from the xml feed */ @@ -186,14 +215,21 @@ class ItemAddEmbedVideo extends ItemAddPlugin { if(!strcmp($autoStart,"true")) { $autoStartStr="&autoplay=1"; } + + /* Determine if the video should show related videos or not based on the youtubeShowRelated parameter */ + $youtubeShowRelatedStr=""; + if(!strcmp($youtubeShowRelated,"false")) { + $youtubeShowRelatedStr="&rel=0"; + } /* Format the description to hold a reference to the embedded video */ $description = ''; $description.= ''; $description.= ''; - $description.= ''; $description.= "
$summary"; @@ -221,7 +257,8 @@ class ItemAddEmbedVideo extends ItemAddPlugin { } /* Extract the summary from the webpage contents */ - preg_match('//i', + //print "contents: $contents
"; + preg_match('//i', $contents, $matches); $summary=$matches[1]; @@ -252,10 +289,10 @@ class ItemAddEmbedVideo extends ItemAddPlugin { } /* Format the description to hold a reference to the embedded video */ - $description = ' '; + $description.= 'src="'.$googlePlayer.'?docId='.$doc_id.$autoStartStr.'" flashvars=""> '; $description.= ''; $description.= "
$summary"; @@ -354,7 +391,48 @@ class ItemAddEmbedVideo extends ItemAddPlugin { } $description.= ""; $description.= "
$summary"; - + + + /* + ********************************** + * Embed a remote .swf file + ********************************** + */ + } else if(preg_match("/.*\/(.+?)\.swf/i",$url,$matches)) { + + /* Set the title and summary to the name of the file */ + $title = $matches[1]; + $summary = $matches[1]; + + /* + * Set the thumbnail to some generic jpg image, + * since we can't extract it from the remote swf file. + * If no parameter is set, set it to a default value. + */ + if(preg_match("/\w+/", $flvThumbnail)) { + $thumbnail = $flvThumbnail; + } else { + $thumbnail = $gallery2_url.$gallery2_flv_thumbnail; + } + + /* + * Check to make sure the URL to the remote swf file is valid + * (That the file exists at the URL given) + */ + list ($successfullyCopied, $response, $headers) = + $this->fetchWebFileHeaders($url, $extraHeaders); + if (!$successfullyCopied) { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to find the video at url: $url - $response"),NULL,NULL); + } + + /* + * Format the description to hold a reference to the embedded video + */ + + /* Format the description to hold a reference to the embedded video */ + $description =''; + /* ********************************** * Embed a remote .flv file @@ -485,17 +563,13 @@ class ItemAddEmbedVideo extends ItemAddPlugin { $tmpDir = $gallery->getConfig('data.gallery.tmp'); $tmpFile = $platform->tempnam($tmpDir, 'add'); $tmpFile.= ".jpg"; - - if(!strcmp($debugOutput,"true")) { - print "thumbnail: $thumbnail
"; - } - + /* Fetch the thumbnail and save it to a local file */ list ($successfullyCopied, $response, $headers) = GalleryCoreApi::fetchWebFile($thumbnail, $tmpFile, $extraHeaders); if (!$successfullyCopied) { return array(GalleryCoreApi::error(ERROR_STORAGE_FAILURE,__FILE__,__LINE__, - "Unable to copy thumbnail from url: $url - $response"),null,null); + "Unable to copy thumbnail from url: $thumbnail - $response"),null,null); } /* Obtain the mimeType of the thumbnail */ @@ -510,14 +584,17 @@ class ItemAddEmbedVideo extends ItemAddPlugin { /* General debug output */ if(!strcmp($debugOutput,"true")) { + print "

Item Parameters

"; + print "url: $url
"; print "title: $title
"; - print "

"; - print "\n".$summary."

"; - print "

$description

"; + print "thumbnailUrl: \n".$summary."

"; + print "description:

$description

"; print "thumbnail: $tmpFile
"; print "mimeType: $mimeType
"; print "fileName: $fileName
"; - print "

Video Successfully Added to your Gallery Album

"; + print "width: $width
"; + print "height: $height
"; + print "
"; } /* Resize the thumbnail image to the size indicated by our album */ @@ -541,13 +618,30 @@ class ItemAddEmbedVideo extends ItemAddPlugin { } } } - $debugString.="Resizing thumbnail image to $thumbnailSize: $tmpFile -> $newTmpFile
"; + + // Obtain the width and height of the original thumbnail, finding out it's ratio, + // and using that ratio when determining the width of the video below. + // Example: youtube: 130x97 google: 160x120 metacafe: 90x76 yahoo: 100x70 + // Set the thumbnailHeight to the current thumbnailSize + // Set the thumbnailWidth to the appropriate size based on the thumbnailHeight * ratio + $image_data = @getimagesize($tmpFile); + if(!$image_data) { + return array(GalleryCoreApi::error(ERROR_STORAGE_FAILURE,__FILE__,__LINE__, + "Unable to retrieve thumbnail dimensions for: $tmpFile"),null,null); + } + $ratio = $image_data[0] / $image_data[1]; + $debugString.="Using ratio from original thumbnail of $ratio. "; + $thumbnailHeight=$thumbnailSize; + $thumbnailWidth=round($thumbnailHeight * $ratio); + $debugString.="Resizing thumbnail image to $thumbnailWidth x $thumbnailHeight: $tmpFile -> $newTmpFile
"; $toolkit->performOperation($mimeType, 'resize', $tmpFile, $newTmpFile, - array($thumbnailSize,$thumbnailSize)); + array($thumbnailWidth,$thumbnailHeight)); } } if(!strcmp($debugOutput,"true")) { + print "

Thumbnail Resize

"; print "$debugString"; + print "
"; } /* Make the gallery2 call to add this item to the album */ @@ -566,6 +660,10 @@ class ItemAddEmbedVideo extends ItemAddPlugin { $status['addedFiles'][] = array('fileName' => $url, 'id' => $newItem->getId(), 'warnings' => array()); + + if(!strcmp($debugOutput,"true")) { + print "

Video Successfully Added to your Gallery Album




"; + } } /* Keep the tmpfiles around if we are in debug mode. Otherwise, remove them. */