From 0bdf2fca593cfb8b6832bf3491f6db1f175fceef Mon Sep 17 00:00:00 2001
From: Alan Jack Pippin ";
- print "\n".$summary." $description
";
+ print "Parameters
";
+ print "debugOutput=$debugOutput
";
+ print "useInternalFlvPlayer=$useInternalFlvPlayer
";
+ print "youtubeDevId=$youtubeDevId
";
+ 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";
@@ -152,7 +171,9 @@ class ItemAddEmbedVideo extends ItemAddPlugin {
}
if(!strcmp($debugOutput,"true")) {
+ print "Youtube XML Dump
";
print "$xml";
+ print "
";
}
/* Extract certain information from the xml feed */
@@ -485,17 +506,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 +527,17 @@ class ItemAddEmbedVideo extends ItemAddPlugin {
/* General debug output */
if(!strcmp($debugOutput,"true")) {
+ print "Item Parameters
";
+ print "url: $url
";
print "title: $title
";
- print "
$description
"; print "thumbnail: $tmpFile