X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=blobdiff_plain;f=ItemAddEmbedVideo.inc;h=69ee24dbd4ef0740c728f01976db142b6f1e53b9;hb=653677bb9ae1936fab463406830f01443a2e674f;hp=03a54e94d31d5b2b68e911c9d0ce04c9c6f97c49;hpb=b65625759caa70c8905f63b87a36e59951ed24fd;p=embedvideo%2F.git diff --git a/ItemAddEmbedVideo.inc b/ItemAddEmbedVideo.inc index 03a54e9..69ee24d 100644 --- a/ItemAddEmbedVideo.inc +++ b/ItemAddEmbedVideo.inc @@ -70,7 +70,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin { global $debugOutput, $useInternalFlvPlayer, $youtubeDevId; global $width, $height, $externalFlvPlayer, $externalFlvPlayerVars; global $flvThumbnail, $useRemoteSize, $autoStart; - global $watermarkVideos, $watermarkImage; + global $watermarkVideos, $watermarkImage, $watermarkAlignment; /* Find out what value our parameters should have by looking to see if they * are defined in our overrides section or default section. If they are not @@ -89,25 +89,31 @@ class ItemAddEmbedVideo extends ItemAddPlugin { $autoStart = $this->getParameter($ItemAddEmbedVideo, 'autoStart', "false"); $watermarkImage = $this->getParameter($ItemAddEmbedVideo, 'watermarkImage', ""); $watermarkVideos = $this->getParameter($ItemAddEmbedVideo, 'watermarkVideos', "false"); + $watermarkAlignment = $this->getParameter($ItemAddEmbedVideo, 'watermarkAlignment', "left"); + $wordwrapSummary = $this->getParameter($ItemAddEmbedVideo, 'wordwrapSummary', "0"); + $wordwrapDescription = $this->getParameter($ItemAddEmbedVideo, 'wordwrapDescription', "0"); /* 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 "watermarkVideos=$watermarkVideos
"; - print "watermarkImage=$watermarkImage
"; - print "
"; + print "\n
"; + print "

Variable Parameters

\n"; + print "debugOutput=$debugOutput
\n"; + print "useInternalFlvPlayer=$useInternalFlvPlayer
\n"; + print "youtubeDevId=$youtubeDevId
\n"; + print "youtubeShowRelated=$youtubeShowRelated
\n"; + print "width=$width
\n"; + print "height=$height
\n"; + print "externalFlvPlayer=$externalFlvPlayer
\n"; + print "externalFlvPlayerVars=$externalFlvPlayerVars
\n"; + print "flvThumbnail=$flvThumbnail
\n"; + print "useRemoteSize=$useRemoteSize
\n"; + print "autoStart=$autoStart
\n"; + print "watermarkVideos=$watermarkVideos
\n"; + print "watermarkImage=$watermarkImage
\n"; + print "watermarkAlignment=$watermarkAlignment
\n"; + print "wordwrapSummary=$wordwrapSummary
\n"; + print "wordwrapDescription=$wordwrapDescription
\n"; + print "
\n"; } /* Store other string constants we'll use later */ @@ -115,6 +121,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin { /* youtube */ $youtubeUrlPattern="youtube.com"; $youtubeApiUrl="http://www.youtube.com/api2_rest"; + $youtubeThumbnailUrl="http://img.youtube.com/vi/"; /* We can't extract the server size from youtube */ $youtubeWidth="425"; $youtubeHeight="350"; @@ -133,6 +140,27 @@ class ItemAddEmbedVideo extends ItemAddPlugin { /* metacafe */ $metacafeUrlPattern="metacafe.com"; $metacafeThumbnailUrl="http://www.metacafe.com/thumb/"; + + /* revver */ + $revverUrlPattern="revver.com"; + $revverThumbnailUrl="http://frame.revver.com/frame/120x90/"; + + /* dailymotion */ + $dailymotionUrlPattern="dailymotion.com"; + $dailymotionThumbnailUrl="http://www.dailymotion.com/thumbnail/160x120/video/"; + + /* divshare */ + $divshareUrlPattern="divshare.com"; + $divshareThumbnailUrl="http://www.divshare.com/direct/video_thumb/"; + + /* stickam */ + $stickamUrlPattern="stickam.com"; + $stickamThumbnailUrl="http://static.stickam.com/"; + + /* myspace */ + $myspaceUrlPattern="vids.myspace.com"; + $myspaceUrlPattern2="myspacetv.com"; + $myspaceThumbnailUrl="http://mediaservices.myspace.com/services/rss.ashx?type=video&videoID="; /* Gallery2 specific paths and variables */ $urlGenerator =& $gallery->getUrlGenerator(); @@ -159,86 +187,139 @@ class ItemAddEmbedVideo extends ItemAddPlugin { "Unable to extract video id from url: $url"),null,null); } - /* Make sure we have a valid youtube developer id */ + /* If we have a valid youtube developer id, use that to get information about the video */ + /* Otherwise, just parse it directly from the HTML page */ $dev_id = $youtubeDevId; if(!preg_match("/\w+/",$dev_id)) { - return array(GalleryCoreApi::error(ERROR_CONFIGURATION_REQUIRED,__FILE__,__LINE__, - "Invalid/missing YouTube developer ID: $dev_id"),null,null); - } - - /* Youtube api feed */ - $feed = $youtubeApiUrl.'?method=youtube.videos.get_details'; - $feed.= "&dev_id=$dev_id&video_id=$video_id"; - - /* Get the youtube xml feed as a string data source */ - list ($successfullyCopied, $xml, $response, $headers) = - GalleryCoreApi::fetchWebPage($feed, $extraHeaders); - if (!$successfullyCopied) { - return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, - "Unable to get video information at url: $url - $response"),null,null); - } + /* No developer ID found. Proceed with direct page parsing. */ - 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 */ - preg_match_all("/\(.+?)\<\/title\>/smi",$xml, $title); - preg_match_all("/\(.+?)\<\/description\>/smi",$xml, $description); - preg_match_all("/\(.+?)\<\/thumbnail_url\>/smi",$xml, $thumbnail); + /* Grab the contents of the webpage used to display the video on video.google.com */ + list ($successfullyCopied, $contents, $response, $headers) = + GalleryCoreApi::fetchWebPage($url, $extraHeaders); + if (!$successfullyCopied) { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to get video information at url: $url - $response"),NULL,NULL); + } - array_shift($title); - array_shift($thumbnail); - array_shift($description); - - /* Replace html characters. More can be added but this seems to work */ - for($i=0;$i/i', $contents, $matches); + $summary=$matches[1]; + + /* Extract the title from the webpage contents */ + preg_match('//i', $contents, $matches); + $title=$matches[1]; + + /* Extract the thumbnail URL from the webpage contents */ + $thumbnail=$youtubeThumbnailUrl.$video_id."/default.jpg"; + + /* Determine if the video should autoplay or not based on the autoStart parameter */ + $autoStartStr=""; + if(!strcmp($autoStart,"true")) { + $autoStartStr="&autoplay=1"; + } else { + $autoStartStr="&autoplay=0"; + } + + /* Determine if the video should show related videos or not based on the youtubeShowRelated parameter */ + $youtubeShowRelatedStr=""; + if(!strcmp($youtubeShowRelated,"false")) { + $youtubeShowRelatedStr="&rel=0"; + } else { + $youtubeShowRelatedStr="&rel=1"; + } + + /* Format the description to hold a reference to the embedded video */ + if(preg_match('/id=\"embed_code\".+?value=\'(.+?)\'/', $contents, $matches)) { + $description=$matches[1]; + $description=preg_replace("/"/","'",$description); + $description=preg_replace("/</","<",$description); + $description=preg_replace("/>/",">",$description); + $description=preg_replace("/&/","&",$description); + $description=preg_replace("/&rel=1/",$autoStartStr.$youtubeShowRelatedStr,$description); + if(!strcmp($useRemoteSize,"false")) { + $description=preg_replace("/width='\d+'/","width='".$width."'",$description); + $description=preg_replace("/height='\d+'/","height='".$height."'",$description); + } + } else { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to extract embedded video information from url: $url"),NULL,NULL); + } + + } else { + /* We found a valid developer ID. Proceed with API calls. */ + + /* Youtube api feed */ + $feed = $youtubeApiUrl.'?method=youtube.videos.get_details'; + $feed.= "&dev_id=$dev_id&video_id=$video_id"; + + /* Get the youtube xml feed as a string data source */ + list ($successfullyCopied, $xml, $response, $headers) = + GalleryCoreApi::fetchWebPage($feed, $extraHeaders); + if (!$successfullyCopied) { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "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 "\n

Youtube XML Dump

"; + print "$xml"; + print "
"; + } + + /* Extract certain information from the xml feed */ + preg_match_all("/\(.+?)\<\/title\>/smi",$xml, $title); + preg_match_all("/\(.+?)\<\/description\>/smi",$xml, $description); + preg_match_all("/\(.+?)\<\/thumbnail_url\>/smi",$xml, $thumbnail); + + array_shift($title); + array_shift($thumbnail); + array_shift($description); + + /* Replace html characters. More can be added but this seems to work */ + for($i=0;$i'; + $description.= ''; + $description.= ''; + $description.= ''; } - - /* Store the information found in some local variables */ - $title = $title[0][0]; - $summary = $description[0][0]; - $thumbnail = $thumbnail[0][0]; - - /* Determine what our width and height should be based on our useRemoteSize parameter */ - if(!strcmp($useRemoteSize,"true")) { - $width = $youtubeWidth; - $height = $youtubeHeight; - } - - /* Determine if the video should autoplay or not based on the autoStart parameter */ - $autoStartStr=""; - 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"; - /* ********************************** * Embed a Google Video @@ -300,7 +381,6 @@ class ItemAddEmbedVideo extends ItemAddPlugin { $description.= 'type="application/x-shockwave-flash" '; $description.= 'src="'.$googlePlayer.'?docId='.$doc_id.$autoStartStr.'" flashvars=""> '; $description.= ''; - $description.= "
$summary"; /* ********************************** @@ -342,13 +422,16 @@ class ItemAddEmbedVideo extends ItemAddPlugin { $thumbnail=$yahooThumbnailUrl.$vid_id."_01"; /* Format the description to hold a reference to the embedded video */ - preg_match('/()/', $contents, $matches); - $description=$matches[1]; - if(!strcmp($useRemoteSize,"false")) { - $description=preg_replace("/width='\d+'/","width='".$width."'",$description); - $description=preg_replace("/height='\d+'/","height='".$height."'",$description); + if(preg_match('/()/', $contents, $matches)) { + $description=$matches[1]; + if(!strcmp($useRemoteSize,"false")) { + $description=preg_replace("/width='\d+'/","width='".$width."'",$description); + $description=preg_replace("/height='\d+'/","height='".$height."'",$description); + } + } else { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to extract embedded video information from url: $url"),NULL,NULL); } - $description.= "
$summary"; /* ********************************** @@ -385,21 +468,301 @@ class ItemAddEmbedVideo extends ItemAddPlugin { $thumbnail=$metacafeThumbnailUrl.$item_id.".jpg"; /* Format the description to hold a reference to the embedded video */ - preg_match('/(embed src.+?\/embed)/', $contents, $matches); - $description="<".$matches[1]; - $description=preg_replace("/"/","'",$description); - if(!strcmp($useRemoteSize,"false")) { - $description=preg_replace("/width='\d+'/","width='".$width."'",$description); - $description=preg_replace("/height='\d+'/","height='".$height."'",$description); + if(preg_match('/(embed src.+?\/embed)/', $contents, $matches)) { + $description="<".$matches[1]; + $description=preg_replace("/"/","'",$description); + if(!strcmp($useRemoteSize,"false")) { + $description=preg_replace("/width='\d+'/","width='".$width."'",$description); + $description=preg_replace("/height='\d+'/","height='".$height."'",$description); + } + if(!strcmp($autoStart,"true")) { + $description=preg_replace("/\.swf/",".swf?playerVars=autoPlay=yes",$description); + } + $description.= ""; + } else { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to extract embedded video information from url: $url"),NULL,NULL); } - if(!strcmp($autoStart,"true")) { - $description=preg_replace("/\.swf/",".swf?playerVars=autoPlay=yes",$description); + + /* + ********************************** + * Embed a Revver Video + ********************************** + * TODO: The autoStart parameter doesn't work with the yahoo video player + */ + } else if(preg_match("/$revverUrlPattern/",$url)) { + + /* Make sure we can extract a itemID */ + if(preg_match("/\/watch\/(.+)/",$url,$matches)) { + $item_id = $matches[1]; + $item_id=preg_replace("/\/$/","",$item_id); + } else { + return array(GalleryCoreApi::error(ERROR_BAD_PARAMETER,__FILE__,__LINE__, + "Unable to extract item id from url: $url"),null,null); + } + + /* Grab the contents of the webpage used to display the video on video.google.com */ + list ($successfullyCopied, $contents, $response, $headers) = + GalleryCoreApi::fetchWebPage($url, $extraHeaders); + if (!$successfullyCopied) { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to get video information at url: $url - $response"),NULL,NULL); + } + + /* Extract the summary from the webpage contents */ + if(preg_match('/"video_description">(.+?)<\/p>/i', $contents, $matches)) { + $summary=$matches[1]; + } + if(preg_match('/"video_description">(.+)/i', $contents, $matches)) { + $summary=$matches[1]; + } + + /* Extract the title from the webpage contents */ + preg_match('/digg_title = \'(.+?)\'/i', $contents, $matches); + $title=$matches[1]; + + /* Build the thumbnail URL from the item_id */ + $thumbnail=$revverThumbnailUrl.$item_id.".jpg"; + + /* Format the description to hold a reference to the embedded video */ + if(preg_match('/(.+?)<\/div>/i', $contents, $matches); + $summary=$matches[1]; + + /* Extract the title from the webpage contents */ + preg_match('//i', $contents, $matches); + $title=htmlentities($matches[1], ENT_QUOTES, "UTF-8"); + + /* Build the thumbnail URL from the item_id */ + $thumbnail=$dailymotionThumbnailUrl.$item_id; + + /* Format the description to hold a reference to the embedded video */ + if(preg_match('/Embeddable Player:.+?value="(.+?)"/', $contents, $matches)) { + $description=$matches[1]; + $description=preg_replace("/"/","'",$description); + $description=preg_replace("/</","<",$description); + $description=preg_replace("/>/",">",$description); + if(!strcmp($useRemoteSize,"false")) { + $description=preg_replace("/width=\"\d+\"/","width=\"".$width."\"",$description); + $description=preg_replace("/height=\"\d+\"/","height=\"".$height."\"",$description); + } + } else { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to extract embedded video information from url: $url"),NULL,NULL); + } + + /* + ********************************** + * Embed a DivShare Video + ********************************** + */ + } else if(preg_match("/$divshareUrlPattern/",$url)) { + + /* Make sure we can extract a itemID */ + if(preg_match("/\/download\/(.+)/",$url,$matches)) { + $item_id = $matches[1]; + $item_id=preg_replace("/\/$/","",$item_id); + } else { + return array(GalleryCoreApi::error(ERROR_BAD_PARAMETER,__FILE__,__LINE__, + "Unable to extract item id from url: $url"),null,null); } - $description.= ""; - $description.= "
$summary"; + /* Grab the contents of the webpage used to display the video on video.google.com */ + list ($successfullyCopied, $contents, $response, $headers) = + GalleryCoreApi::fetchWebPage($url, $extraHeaders); + if (!$successfullyCopied) { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to get video information at url: $url - $response"),NULL,NULL); + } + + /* Extract the summary from the webpage contents */ + //preg_match('//i', $contents, $matches); + //$summary=$matches[1]; + // Right now, the description is a plug for divshare, nothing user specific about it + $summary=""; + + /* Extract the title from the webpage contents */ + preg_match('/(.+?) - Divshare<\/title>/i', $contents, $matches); + $title=$matches[1]; + + /* Build the thumbnail URL from the item_id */ + $thumbnail=$divshareThumbnailUrl.$item_id; + + /* Format the description to hold a reference to the embedded video */ + if(preg_match('/(<embed src.+?<\/embed>)/', $contents, $matches)) { + $description=$matches[1]; + if(!strcmp($useRemoteSize,"false")) { + $description=preg_replace("/width=\"\d+\"/","width=\"".$width."\"",$description); + $description=preg_replace("/height=\"\d+\"/","height=\"".$height."\"",$description); + } + } else { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to extract embedded video information from url: $url"),NULL,NULL); + } - /* + /* + ********************************** + * Embed a StickAm Video + ********************************** + */ + } else if(preg_match("/$stickamUrlPattern/",$url)) { + + /* Make sure we can extract a itemID */ + if(preg_match("/mId=(.+)/",$url,$matches)) { + $item_id = $matches[1]; + $item_id=preg_replace("/\/$/","",$item_id); + } else { + return array(GalleryCoreApi::error(ERROR_BAD_PARAMETER,__FILE__,__LINE__, + "Unable to extract item id from url: $url"),null,null); + } + + /* Grab the contents of the webpage used to display the video on video.google.com */ + $url=preg_replace("/&/","&",$url); + list ($successfullyCopied, $contents, $response, $headers) = + GalleryCoreApi::fetchWebPage($url, $extraHeaders); + if (!$successfullyCopied) { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to get video information at url: $url - $response"),NULL,NULL); + } + + /* Extract the summary from the webpage contents */ + preg_match('/<meta name="description" content="(.+?)"\/>/i', $contents, $matches); + $summary=$matches[1]; + + /* Extract the title from the webpage contents */ + preg_match('/<meta name="title" content="(.+?)">/i', $contents, $matches); + $title=$matches[1]; + + /* Build the thumbnail URL from the item_id */ + if(preg_match('/movieName=(.+?)&userId=/i', $contents, $matches)) { + $thumbnail_url=$matches[1]; + $thumbnail_url=preg_replace("/%2F/","/",$thumbnail_url); + $thumbnail=$stickamThumbnailUrl.$thumbnail_url.".jpg"; + } else { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to extract thumbnail from url: $url"),NULL,NULL); + } + + /* Format the description to hold a reference to the embedded video */ + if(preg_match('/input type.+?'.$item_id.'.+?value="(.+?)"/', $contents, $matches)) { + $description=$matches[1]; + $description=preg_replace("/"/","'",$description); + $description=preg_replace("/</","<",$description); + $description=preg_replace("/>/",">",$description); + if(!strcmp($useRemoteSize,"false")) { + $description=preg_replace("/width='\d+'/","width='".$width."'",$description); + $description=preg_replace("/height='\d+'/","height='".$height."'",$description); + } + } else { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to extract embedded video information from url: $url"),NULL,NULL); + } + + /* + ********************************** + * Embed a Myspace Video + ********************************** + */ + } else if(preg_match("/($myspaceUrlPattern|$myspaceUrlPattern2)/",$url)) { + + /* Make sure we can extract a itemID */ + if(preg_match("/videoid=(.+)/i",$url,$matches)) { + $video_id = $matches[1]; + $video_id=preg_replace("/\/$/","",$video_id); + } else { + return array(GalleryCoreApi::error(ERROR_BAD_PARAMETER,__FILE__,__LINE__, + "Unable to extract video id from url: $url"),null,null); + } + + /* Grab the contents of the webpage used to display the video on video.google.com */ + list ($successfullyCopied, $contents, $response, $headers) = + GalleryCoreApi::fetchWebPage($url, $extraHeaders); + if (!$successfullyCopied) { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to get video information at url: $url - $response"),NULL,NULL); + } + + /* Extract the summary from the webpage contents */ + preg_match('/class="description" id="vid_description">(.+?)<\/div>/i', $contents, $matches); + $summary=$matches[1]; + + /* Extract the title from the webpage contents */ + preg_match('/<h1>(.+?)<\/h1>/i', $contents, $matches); + $title=$matches[1]; + + /* Build the thumbnail URL from the item_id */ + $video_info_url=$myspaceThumbnailUrl.$video_id; + list ($successfullyCopied, $video_info, $response, $headers) = + GalleryCoreApi::fetchWebPage($video_info_url, $extraHeaders); + if (!$successfullyCopied) { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to get video information at url: $url - $response"),NULL,NULL); + } + if(preg_match('/thumbnail url="(.+?)"/',$video_info, $matches)) { + $thumbnail = $matches[1]; + } else { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to extract thumbnail information from url: $url"),NULL,NULL); + } + + /* Format the description to hold a reference to the embedded video */ + if(preg_match('/(<embed src.+?\/embed>)/', $contents, $matches)) { + $description=$matches[1]; + $description=preg_replace("/"/","'",$description); + $description=preg_replace("/</","<",$description); + $description=preg_replace("/>/",">",$description); + if(!strcmp($useRemoteSize,"false")) { + $description=preg_replace("/width='\d+'/","width='".$width."'",$description); + $description=preg_replace("/height='\d+'/","height='".$height."'",$description); + } + } else { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to extract embedded video information from url: $url"),NULL,NULL); + } + + /* ********************************** * Embed a remote .swf file ********************************** @@ -587,19 +950,34 @@ class ItemAddEmbedVideo extends ItemAddPlugin { $fileName = preg_replace("/'/","",$fileName); $fileName = preg_replace("/\"/","",$fileName); $fileName = preg_replace("/&#\d+;/","",$fileName); + + /* Wordwrap the description or summary as appropriate */ + $description_summary = $summary; + + if(strcmp($wordwrapSummary,"0")) { + $summary = wordwrap($summary,$wordwrapSummary,"<br>",FALSE); + } + + if(strcmp($wordwrapDescription,"0")) { + $description_summary = wordwrap($description_summary,$wordwrapDescription,"<br>",FALSE); + } + + /* Tack on the summary to the end of the description */ + $description.= "<br>$description_summary"; /* General debug output */ if(!strcmp($debugOutput,"true")) { - print "<h2>Item Parameters</h2>"; - print "url: $url <br>"; - print "title: $title <br>"; - print "thumbnailUrl: <img src=\"".$thumbnail."\">\n</a>".$summary."</p>"; - print "description: <p>$description</p>"; - print "thumbnail: $tmpFile <br>"; - print "mimeType: $mimeType <br>"; - print "fileName: $fileName <br>"; - print "width: $width <br>"; - print "height: $height <br>"; + print "\n<h2>Item Parameters</h2>\n"; + print "url: $url <br>\n"; + print "title: $title <br>\n"; + print "thumbnailUrl: $thumbnail <br><img src=\"".$thumbnail."\"> <br>\n"; + print "summary: <p>$summary</p>\n"; + print "description: <p>$description</p>\n"; + print "thumbnail: $tmpFile <br>\n"; + print "mimeType: $mimeType <br>\n"; + print "fileName: $fileName <br>\n"; + print "width: $width <br>\n"; + print "height: $height <br>\n"; print "<hr>"; } @@ -645,9 +1023,9 @@ class ItemAddEmbedVideo extends ItemAddPlugin { } } if(!strcmp($debugOutput,"true")) { - print "<h2>Thumbnail Resize</h2>"; - print "$debugString"; - print "<hr>"; + print "\n<h2>Thumbnail Resize</h2>\n"; + print "$debugString\n"; + print "<hr>\n"; } /* Watermark the video thumbnail image if indicated by our parameter */ @@ -661,31 +1039,41 @@ class ItemAddEmbedVideo extends ItemAddPlugin { } else { $watermarkImage = $gallery2_url.$gallery2_video_watermark; } - + /* Get the watermark Image Extension */ preg_match('/\.(...)$/', $watermarkImage, $matches); $watermarkExt=$matches[1]; /* * Check to make sure the URL to the watermark image file is valid - * (That the file exists at the URL given) + * (That the file exists at the URL given). Skip this part if it is a local path. */ - list ($successfullyCopied, $response, $headers) = - $this->fetchWebFileHeaders($watermarkImage, $extraHeaders); - if (!$successfullyCopied) { - return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, - "Unable to find the watermark image at url: $watermarkImage - $response"),NULL,NULL); - } + if(!preg_match("/^\//", $watermarkImage)) { + list ($successfullyCopied, $response, $headers) = + $this->fetchWebFileHeaders($watermarkImage, $extraHeaders); + if (!$successfullyCopied) { + return array(GalleryCoreApi::error(ERROR_BAD_PATH,__FILE__,__LINE__, + "Unable to find the watermark image at url: $watermarkImage - $response"),NULL,NULL); + } - /* Download the watermark image to a local file */ - $tmpDir = $gallery->getConfig('data.gallery.tmp'); - $watermark = $platform->tempnam($tmpDir, 'wmk_img_'); - $watermark.= "." . $watermarkExt; - list ($successfullyCopied, $response, $headers) = - GalleryCoreApi::fetchWebFile($watermarkImage, $watermark, $extraHeaders); - if (!$successfullyCopied) { - return array(GalleryCoreApi::error(ERROR_STORAGE_FAILURE,__FILE__,__LINE__, - "Unable to copy watermark image from url: $watermarkImage - $response"),null,null); + /* Download the watermark image to a local file */ + $tmpDir = $gallery->getConfig('data.gallery.tmp'); + $watermark = $platform->tempnam($tmpDir, 'wmk_img_'); + $watermark.= "." . $watermarkExt; + list ($successfullyCopied, $response, $headers) = + GalleryCoreApi::fetchWebFile($watermarkImage, $watermark, $extraHeaders); + if (!$successfullyCopied) { + return array(GalleryCoreApi::error(ERROR_STORAGE_FAILURE,__FILE__,__LINE__, + "Unable to copy watermark image from url: $watermarkImage - $response"),null,null); + } + } else { + $tmpDir = $gallery->getConfig('data.gallery.tmp'); + $watermark = $platform->tempnam($tmpDir, 'wmk_img_'); + $watermark.= "." . $watermarkExt; + if(!$platform->copy($watermarkImage, $watermark)) { + return array(GalleryCoreApi::error(ERROR_STORAGE_FAILURE,__FILE__,__LINE__, + "Unable to copy watermark image from path: $watermarkImage"),null,null); + } } /* See if there is a toolkit installed that can perform a composite operation */ @@ -726,19 +1114,20 @@ class ItemAddEmbedVideo extends ItemAddPlugin { /* This has to be done to satisfy the argument requirement for the toolkit operation */ $dataDir = $gallery->getConfig('data.gallery.base'); $dataDir=preg_replace("/\//","\\/",$dataDir); - preg_match("/$dataDir(.*)/", $watermark, $matches); - $watermark = $matches[1]; + if(preg_match("/$dataDir(.*)/", $watermark, $matches)) { + $watermark = $matches[1]; + } /* General debug output */ if(!strcmp($debugOutput,"true")) { - print "<h2>Watermark Operation</h2>"; - print "watermarkImage: $watermarkImage <br>"; - print "watermarkTmpImage: $watermark <br>"; - print "watermarkMimeType: $watermarkMimeType <br>"; - print "watermarkWidth: $watermarkWidth <br>"; - print "watermarkHeight: $watermarkHeight <br>"; - print "watermarkedWidth: $thumbnailWidth <br>"; - print "watermarkedHeight: $thumbnailHeight <br>"; + print "\n<h2>Watermark Operation</h2>\n"; + print "watermarkImage: $watermarkImage <br>\n"; + print "watermarkTmpImage: $watermark <br>\n"; + print "watermarkMimeType: $watermarkMimeType <br>\n"; + print "watermarkWidth: $watermarkWidth <br>\n"; + print "watermarkHeight: $watermarkHeight <br>\n"; + print "watermarkedWidth: $thumbnailWidth <br>\n"; + print "watermarkedHeight: $thumbnailHeight <br>\n"; } /* Apply the watermark image to the thumbnail */ @@ -747,7 +1136,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin { $mimeType, 'composite', $newTmpFile, $tmpFile, array($watermark, $watermarkMimeType, $watermarkWidth, $watermarkHeight, - 'bottom-left', 0, 0)); + $watermarkAlignment, 0, 0)); /* Check the return code of the composite operation */ if ($ret) { @@ -756,7 +1145,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin { } if(!strcmp($debugOutput,"true")) { - print "watermarked Image: $tmpFile <br>"; + print "\nwatermarked Image: $tmpFile <br>"; print "<hr>"; } @@ -783,7 +1172,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin { 'warnings' => array()); if(!strcmp($debugOutput,"true")) { - print "<br><br><h2>Video Successfully Added to your Gallery Album</h2><br><br><hr>"; + print "\n<br><br><h2>Video Successfully Added to your Gallery Album</h2><br><br><hr>"; } }