Added support to handle &fmt=18 type options to youtube video urls
[embedvideo/.git] / ItemAddEmbedVideo.inc
index 69ee24dbd4ef0740c728f01976db142b6f1e53b9..6bb160fbc5b7ebaff3e94f00b1d1b6e0ece01a08 100644 (file)
@@ -34,7 +34,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin {
    * @see ItemAddPlugin::handleRequest
    */
  function handleRequest($form, &$item) {
-   global $gallery;
+   global $gallery, $url;
     
    $status = $error = array();
    
@@ -178,14 +178,33 @@ 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);
               }
+
+              /* 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 "<h2>URL Parsing Results</h2>";
+                  print "video_id: $video_id<br>";
+                  print "extra_embed_params: $extra_params<br>";
+                   print "<hr>";
+              }
               
               /* 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 */
@@ -235,7 +254,8 @@ class ItemAddEmbedVideo extends ItemAddPlugin {
                   $description=preg_replace("/&lt;/","<",$description);
                   $description=preg_replace("/&gt;/",">",$description);
                   $description=preg_replace("/&amp;/","&",$description);
-                  $description=preg_replace("/&rel=1/",$autoStartStr.$youtubeShowRelatedStr,$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);
@@ -313,10 +333,10 @@ class ItemAddEmbedVideo extends ItemAddPlugin {
                 /* Format the description to hold a reference to the embedded video */
                 $description = '<object width="'.$width.'" height="'.$height.'">';
                 $description.= '<param name="movie" ';
-                $description.= 'value="http://www.youtube.com/v/'.$video_id.'"></param>';
+                $description.= 'value="http://www.youtube.com/v/'.$video_id.$extra_params.'"></param>';
                 $description.= '<param name="wmode" value="transparent"></param>';
                 $description.= '<embed src="http://www.youtube.com/v/';
-                $description.= $video_id.$autoStartStr.$youtubeShowRelatedStr;
+                $description.= $video_id.$extra_params.$autoStartStr.$youtubeShowRelatedStr;
                 $description.= '" type="application/x-shockwave-flash" wmode="transparent" ';
                 $description.= 'width="'.$width.'" height="'.$height.'"></embed></object>';
               }
@@ -568,7 +588,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin {
               }
 
               /* Extract the summary from the webpage contents */
-              preg_match('/<div class="description  foreground">(.+?)<\/div>/i', $contents, $matches);
+              preg_match('/<div class="description\s+foreground">(.+?)<\/div>/i', $contents, $matches);
               $summary=$matches[1];
 
               /* Extract the title from the webpage contents */
@@ -579,7 +599,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin {
               $thumbnail=$dailymotionThumbnailUrl.$item_id;
 
               /* Format the description to hold a reference to the embedded video */
-              if(preg_match('/Embeddable Player:.+?value="(.+?)"/', $contents, $matches)) { 
+              if(preg_match('/<textarea id="video_player_embed_code_text".+?>(.+?)<\/textarea>/', $contents, $matches)) { 
                 $description=$matches[1];
                 $description=preg_replace("/&quot;/","'",$description);
                 $description=preg_replace("/&lt;/","<",$description);
@@ -1213,7 +1233,8 @@ class ItemAddEmbedVideo extends ItemAddPlugin {
      global $gallery;
      
      $requestMethod='GET';
-
+     $requestBody='';
+     
      /* Convert illegal characters */
      $url = str_replace(' ', '%20', $url);