Twitter export - now with twitpic #142

Merged
annando merged 3 commits from master into master 2013-07-24 08:38:53 +02:00
Showing only changes of commit adb0219e10 - Show all commits

View file

@ -451,8 +451,16 @@ function twitter_shortenmsg($b) {
while (strpos($msg, " ") !== false)
$msg = str_replace(" ", " ", $msg);
if ($image == $orig_link)
return(array("msg"=>trim($msg), "image"=>$image));
// Looking if the link points to an image
$img_str = fetch_url($orig_link);
$tempfile = tempnam(get_config("system","temppath"), "cache");
file_put_contents($tempfile, $img_str);
$mime = image_type_to_mime_type(exif_imagetype($tempfile));
unlink($tempfile);
if (($image == $orig_link) OR (substr($mime, 0, 6) == "image/"))
return(array("msg"=>trim($msg), "image"=>$orig_link));
else
return(array("msg"=>trim($msg."\n".$orig_link), "image"=>""));
}