X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=blobdiff_plain;f=ItemAddEmbedVideo.inc;h=0e277a490427e598fda49ef8a32c2473ca12118b;hb=64b39254630e685dc3a8b6c9f2b8bda3b27e88f6;hp=03a54e94d31d5b2b68e911c9d0ce04c9c6f97c49;hpb=b65625759caa70c8905f63b87a36e59951ed24fd;p=embedvideo%2F.git diff --git a/ItemAddEmbedVideo.inc b/ItemAddEmbedVideo.inc index 03a54e9..0e277a4 100644 --- a/ItemAddEmbedVideo.inc +++ b/ItemAddEmbedVideo.inc @@ -34,7 +34,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin { * @see ItemAddPlugin::handleRequest */ function handleRequest($form, &$item) { - global $gallery; + global $gallery, $url; $status = $error = array(); @@ -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,30 @@ 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="; + + /* vimeo */ + $vimeoUrlPattern="www.vimeo.com"; /* Gallery2 specific paths and variables */ $urlGenerator =& $gallery->getUrlGenerator(); @@ -150,95 +181,168 @@ class ItemAddEmbedVideo extends ItemAddPlugin { ***************************** */ if(preg_match("/$youtubeUrlPattern/",$url)) { - + /* Make sure we can find a video_id in the URL */ - if(preg_match("/watch\?v=(.*)/",$url,$matches)) { + $extra_params = ""; + if(preg_match("/watch\?v=(.*?)(&\S+=\S+)/",$url,$matches)) { + $video_id = $matches[1]; + $extra_params = $matches[2]; + } else if (preg_match("/watch\?v=(.*)/",$url,$matches)) { $video_id = $matches[1]; } else { return array(GalleryCoreApi::error(ERROR_BAD_PARAMETER,__FILE__,__LINE__, "Unable to extract video id from url: $url"),null,null); } - - /* Make sure we have a valid youtube developer id */ - $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); - } - 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 extra params were given, handle them here */ + if(strcmp($extra_params,"")) { + /* Handle the HD format information */ + if(preg_match("/fmt=(\d+)/",$extra_params,$matches)) { + $extra_params="&ap=%2526fmt%3D".$matches[1]; + } } if(!strcmp($debugOutput,"true")) { - print "

Youtube XML Dump

"; - print "$xml"; - print "
"; + print "

URL Parsing Results

"; + print "video_id: $video_id
"; + print "extra_embed_params: $extra_params
"; + 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); + /* 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)) { + /* No developer ID found. Proceed with direct page parsing. */ + + /* 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("/$video_id/",$video_id.$autoStartStr.$youtubeShowRelatedStr,$description); + $description=preg_replace("/$video_id/",$video_id.$extra_params,$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 +404,6 @@ class ItemAddEmbedVideo extends ItemAddPlugin { $description.= 'type="application/x-shockwave-flash" '; $description.= 'src="'.$googlePlayer.'?docId='.$doc_id.$autoStartStr.'" flashvars=""> '; $description.= ''; - $description.= "
$summary"; /* ********************************** @@ -342,13 +445,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 +491,366 @@ 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); } - $description.= ""; - $description.= "
$summary"; + /* 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('/