X-Git-Url: https://git.ao2.it/tweeper.git/blobdiff_plain/07fd996387c49114393a092eaca8ba622872586b..796f27572846c0276d2867f8f0ded8cd462f3af9:/tweeper.php diff --git a/tweeper.php b/tweeper.php old mode 100755 new mode 100644 index 3b8fb2d..c0db320 --- a/tweeper.php +++ b/tweeper.php @@ -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" )) ) ); @@ -103,7 +156,7 @@ if (isset($_GET['src_url'])) { $url = parse_url($src_url); if (FALSE === $url || empty($url["host"])) - die("Invalid url: $url\n"); + die("Invalid url: $src_url\n"); $stylesheet = __DIR__ . "/rss_converter_" . $url["host"] . ".xsl"; if (FALSE === file_exists($stylesheet))