]> git.mxchange.org Git - friendica.git/blobdiff - include/plaintext.php
Auto update of network page only at top of the page
[friendica.git] / include / plaintext.php
index 3a81470b68aa585d46bf8df0220a4d81176e2560..eb33d16e968f8ecc52e3fc84014ab6e6f9379e85 100644 (file)
@@ -46,13 +46,13 @@ function get_attached_data($body) {
        // if nothing is found, it maybe having an image.
        if (!isset($post["type"])) {
                require_once("mod/parse_url.php");
+               require_once("include/Photo.php");
 
                $URLSearchString = "^\[\]";
                if (preg_match_all("(\[url=([$URLSearchString]*)\]\s*\[img\]([$URLSearchString]*)\[\/img\]\s*\[\/url\])ism", $body, $pictures,  PREG_SET_ORDER)) {
                        if (count($pictures) == 1) {
                                // Checking, if the link goes to a picture
                                $data = parseurl_getsiteinfo($pictures[0][1], true);
-
                                if ($data["type"] == "photo") {
                                        $post["type"] = "photo";
                                        if (isset($data["images"][0]))
@@ -63,13 +63,8 @@ function get_attached_data($body) {
                                        $post["preview"] = $pictures[0][2];
                                        $post["text"] = str_replace($pictures[0][0], "", $body);
                                } else {
-                                       $img_str = fetch_url($pictures[0][1]);
-
-                                       $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 (substr($mime, 0, 6) == "image/") {
+                                       $imgdata = get_photo_info($pictures[0][1]);
+                                       if (substr($imgdata["mime"], 0, 6) == "image/") {
                                                $post["type"] = "photo";
                                                $post["image"] = $pictures[0][1];
                                                $post["preview"] = $pictures[0][2];
@@ -98,6 +93,12 @@ function get_attached_data($body) {
                        $post["type"] = "text";
                        $post["text"] = trim($body);
                }
+       } elseif (isset($post["url"]) AND ($post["type"] == "video")) {
+               require_once("mod/parse_url.php");
+               $data = parseurl_getsiteinfo($post["url"], true);
+
+               if (isset($data["images"][0]))
+                       $post["image"] = $data["images"][0]["src"];
        }
 
        return($post);