Merge https://github.com/grote/Tweeper into generate-encolure-elements
authorAntonio Ospite <ospite@studenti.unina.it>
Sun, 11 Aug 2013 10:48:21 +0000 (12:48 +0200)
committerAntonio Ospite <ospite@studenti.unina.it>
Sun, 11 Aug 2013 10:48:21 +0000 (12:48 +0200)
rss_converter_twitter.com.xsl
tweeper.php

index 5a57c8f..c7f03c2 100644 (file)
@@ -49,6 +49,7 @@
                 <xsl:copy-of select="$tweet-text/node()"/>
                 <xsl:text disable-output-escaping="yes">]]&gt;</xsl:text>
             </description>
+            <xsl:value-of disable-output-escaping="yes" select="php:function('generate_enclosure', string(.//a[@class='twitter-timeline-link']/@data-expanded-url))"/>
         </item>
     </xsl:template>
 
index 2ca4996..c0db320 100644 (file)
@@ -20,6 +20,8 @@
 
 date_default_timezone_set('UTC');
 
+define('USER_AGENT', 'Mozilla/5.0 (Windows NT 6.1; rv:22.0) Gecko/20130405 Firefox/22.0');
+
 function str_to_gmdate($date)
 {
   $timestamp = strtotime($date);
@@ -31,9 +33,60 @@ function epoch_to_gmdate($timestamp)
   return gmdate('D, d M Y H:i:s', $timestamp) . ' GMT';
 }
 
-class Tweeper {
+function get_url_info($url)
+{
+  $ch = curl_init($url);
+  curl_setopt_array($ch, array(
+      CURLOPT_HEADER => TRUE,
+      CURLOPT_NOBODY => TRUE,
+      CURLOPT_FOLLOWLOCATION => TRUE,  // follow http redirects to get the real URL
+      CURLOPT_RETURNTRANSFER => TRUE,
+      CURLOPT_SSL_VERIFYHOST => FALSE,
+      CURLOPT_SSL_VERIFYPEER => FALSE,
+      CURLOPT_USERAGENT => USER_AGENT,
+  ));
+  curl_exec($ch);
+  $url_info = curl_getinfo($ch);;
+  curl_close($ch);
+
+  return $url_info;
+}
+
+function generate_enclosure($url)
+{
+  $url_info = get_url_info($url);
+
+  switch($url_info['content_type']) {
+    case "video/avi":
+    case "image/gif":
+    case "image/jpeg":
+    case "audio/x-midi":
+    case "audio/mpeg":
+    case "video/mpeg":
+    case "audio/vorbis":
+    case "application/ogg":
+    case "audio/webm":
+    case "audio/aac":
+    case "audio/mp4":
+    case "audio/wav":
+    case "video/mp4":
+    case "video/ogg":
+      $dom = new DomDocument();
+      $enc = $dom->createElement('enclosure');
+      $enc->setAttribute( 'url', $url_info['url']);
+      $enc->setAttribute( 'length', $url_info['download_content_length']);
+      $enc->setAttribute( 'type', $url_info['content_type']);
+
+      $dom->appendChild($enc);
+
+      return $dom->saveXML($enc);
+    default:
+        return;
+  }
+}
 
-  private $USER_AGENT = "Mozilla/5.0 (Windows NT 6.1; rv:22.0) Gecko/20130405 Firefox/22.0";
+
+class Tweeper {
 
   public function __construct($stylesheet) {
     $stylesheet_contents = $this->get_contents($stylesheet);
@@ -53,7 +106,7 @@ class Tweeper {
         'method' => "GET",
         'header' => join(array(
           "Accept-language: en\r\n",
-          "User-Agent: {$this->USER_AGENT}\r\n"
+          "User-Agent: {" + USER_AGENT + "}\r\n"
         ))
       )
     );