]> git.mxchange.org Git - friendica.git/blobdiff - include/plaintext.php
Merge pull request #4195 from zeroadam/ContactSelector-#3878
[friendica.git] / include / plaintext.php
index 1d16aa2e8d4c781c5595d76406b3ede8ce1cab7d..86acad6cfe730209cce2c3070ac4bb02c526ac69 100644 (file)
@@ -1,16 +1,15 @@
 <?php
-
 /**
  * @file include/plaintext.php
  */
-
 use Friendica\App;
-use Friendica\ParseUrl;
+use Friendica\Core\PConfig;
+use Friendica\Object\Image;
+use Friendica\Util\ParseUrl;
 
-require_once("include/Photo.php");
-require_once("include/bbcode.php");
-require_once("include/html2plain.php");
-require_once("include/network.php");
+require_once "include/bbcode.php";
+require_once "include/html2plain.php";
+require_once "include/network.php";
 
 /**
  * @brief Fetches attachment data that were generated the old way
@@ -52,7 +51,7 @@ function get_old_attachment_data($body) {
 
                        if (preg_match("/\[img\]([$URLSearchString]*)\[\/img\]/ism", $attacheddata, $matches)) {
 
-                               $picturedata = get_photo_info($matches[1]);
+                               $picturedata = Image::getInfoFromURL($matches[1]);
 
                                if (($picturedata[0] >= 500) && ($picturedata[0] >= $picturedata[1]))
                                        $post["image"] = $matches[1];
@@ -75,7 +74,6 @@ function get_old_attachment_data($body) {
 
                }
        }
-
        return $post;
 }
 
@@ -180,7 +178,7 @@ function get_attachment_data($body) {
        return($data);
 }
 
-function get_attached_data($body) {
+function get_attached_data($body, $item = array()) {
 /*
  - text:
  - type: link, video, photo
@@ -191,13 +189,18 @@ function get_attached_data($body) {
  - (thumbnail)
 */
 
+       $has_title = !empty($item['title']);
+       $plink = (!empty($item['plink']) ? $item['plink'] : '');
        $post = get_attachment_data($body);
 
        // if nothing is found, it maybe having an image.
        if (!isset($post["type"])) {
+               // Simplify image codes
+               $body = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $body);
+
                $URLSearchString = "^\[\]";
                if (preg_match_all("(\[url=([$URLSearchString]*)\]\s*\[img\]([$URLSearchString]*)\[\/img\]\s*\[\/url\])ism", $body, $pictures,  PREG_SET_ORDER)) {
-                       if (count($pictures) == 1) {
+                       if ((count($pictures) == 1) && !$has_title) {
                                // Checking, if the link goes to a picture
                                $data = ParseUrl::getSiteinfoCached($pictures[0][1], true);
 
@@ -218,7 +221,7 @@ function get_attached_data($body) {
                                        $post["preview"] = $pictures[0][2];
                                        $post["text"] = str_replace($pictures[0][0], "", $body);
                                } else {
-                                       $imgdata = get_photo_info($pictures[0][1]);
+                                       $imgdata = Image::getInfoFromURL($pictures[0][1]);
                                        if (substr($imgdata["mime"], 0, 6) == "image/") {
                                                $post["type"] = "photo";
                                                $post["image"] = $pictures[0][1];
@@ -226,32 +229,55 @@ function get_attached_data($body) {
                                                $post["text"] = str_replace($pictures[0][0], "", $body);
                                        }
                                }
-                       } elseif (count($pictures) > 1) {
+                       } elseif (count($pictures) > 0) {
                                $post["type"] = "link";
-                               $post["url"] = $b["plink"];
+                               $post["url"] = $plink;
                                $post["image"] = $pictures[0][2];
                                $post["text"] = $body;
                        }
                } elseif (preg_match_all("(\[img\]([$URLSearchString]*)\[\/img\])ism", $body, $pictures,  PREG_SET_ORDER)) {
-                       if (count($pictures) == 1) {
+                       if ((count($pictures) == 1) && !$has_title) {
                                $post["type"] = "photo";
                                $post["image"] = $pictures[0][1];
                                $post["text"] = str_replace($pictures[0][0], "", $body);
-                       } elseif (count($pictures) > 1) {
+                       } elseif (count($pictures) > 0) {
                                $post["type"] = "link";
-                               $post["url"] = $b["plink"];
+                               $post["url"] = $plink;
                                $post["image"] = $pictures[0][1];
                                $post["text"] = $body;
                        }
                }
 
-               if (preg_match_all("(\[url\]([$URLSearchString]*)\[\/url\])ism", $body, $links,  PREG_SET_ORDER)) {
-                       if (count($links) == 1) {
-                               $post["type"] = "text";
-                               $post["url"] = $links[0][1];
-                               $post["text"] = $body;
-                       }
+               // Test for the external links
+               preg_match_all("(\[url\]([$URLSearchString]*)\[\/url\])ism", $body, $links1,  PREG_SET_ORDER);
+               preg_match_all("(\[url\=([$URLSearchString]*)\].*?\[\/url\])ism", $body, $links2,  PREG_SET_ORDER);
+
+               $links = array_merge($links1, $links2);
+
+               // If there is only a single one, then use it.
+               // This should cover link posts via API.
+               if ((count($links) == 1) && !isset($post["preview"]) && !$has_title) {
+                       $post["type"] = "link";
+                       $post["text"] = trim($body);
+                       $post["url"] = $links[0][1];
                }
+
+               // Now count the number of external media links
+               preg_match_all("(\[vimeo\](.*?)\[\/vimeo\])ism", $body, $links1,  PREG_SET_ORDER);
+               preg_match_all("(\[youtube\\](.*?)\[\/youtube\\])ism", $body, $links2,  PREG_SET_ORDER);
+               preg_match_all("(\[video\\](.*?)\[\/video\\])ism", $body, $links3,  PREG_SET_ORDER);
+               preg_match_all("(\[audio\\](.*?)\[\/audio\\])ism", $body, $links4,  PREG_SET_ORDER);
+
+               // Add them to the other external links
+               $links = array_merge($links, $links1, $links2, $links3, $links4);
+
+               // Are there more than one?
+               if (count($links) > 1) {
+                       // The post will be the type "text", which means a blog post
+                       unset($post["type"]);
+                       $post["url"] = $plink;
+               }
+
                if (!isset($post["type"])) {
                        $post["type"] = "text";
                        $post["text"] = trim($body);
@@ -263,33 +289,41 @@ function get_attached_data($body) {
                        $post["image"] = $data["images"][0]["src"];
        }
 
-       return($post);
+       return $post;
 }
 
-function shortenmsg($msg, $limit, $twitter = false) {
-       /// @TODO
-       /// For Twitter URLs aren't shortened, but they have to be calculated as if.
-
+/**
+ * Shortens message
+ *
+ * @param type $msg
+ * @param type $limit
+ * @return type
+ *
+ * @todo For Twitter URLs aren't shortened, but they have to be calculated as if.
+ */
+function shortenmsg($msg, $limit)
+{
        $lines = explode("\n", $msg);
        $msg = "";
        $recycle = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
        $ellipsis = html_entity_decode("&#x2026;", ENT_QUOTES, 'UTF-8');
-       foreach ($lines AS $row=>$line) {
-               if (iconv_strlen(trim($msg."\n".$line), "UTF-8") <= $limit)
-                       $msg = trim($msg."\n".$line);
-               // Is the new message empty by now or is it a reshared message?
-               elseif (($msg == "") || (($row == 1) && (substr($msg, 0, 4) == $recycle)))
-                       $msg = iconv_substr(iconv_substr(trim($msg."\n".$line), 0, $limit, "UTF-8"), 0, -3, "UTF-8").$ellipsis;
-               else
+       foreach ($lines AS $row => $line) {
+               if (iconv_strlen(trim($msg . "\n" . $line), "UTF-8") <= $limit) {
+                       $msg = trim($msg . "\n" . $line);
+               } elseif (($msg == "") || (($row == 1) && (substr($msg, 0, 4) == $recycle))) {
+                       // Is the new message empty by now or is it a reshared message?
+                       $msg = iconv_substr(iconv_substr(trim($msg . "\n" . $line), 0, $limit, "UTF-8"), 0, -3, "UTF-8") . $ellipsis;
+               } else {
                        break;
+               }
        }
-       return($msg);
+
+       return $msg;
 }
 
 /**
  * @brief Convert a message into plaintext for connectors to other networks
  *
- * @param App $a The application class
  * @param array $b The message array that is about to be posted
  * @param int $limit The maximum number of characters when posting to that network
  * @param bool $includedlinks Has an attached link to be included into the message?
@@ -298,7 +332,7 @@ function shortenmsg($msg, $limit, $twitter = false) {
  *
  * @return string The converted message
  */
-function plaintext(App $a, $b, $limit = 0, $includedlinks = false, $htmlmode = 2, $target_network = "") {
+function plaintext($b, $limit = 0, $includedlinks = false, $htmlmode = 2, $target_network = "") {
 
        // Remove the hash tags
        $URLSearchString = "^\[\]";
@@ -313,7 +347,7 @@ function plaintext(App $a, $b, $limit = 0, $includedlinks = false, $htmlmode = 2
        // At first look at data that is attached via "type-..." stuff
        // This will hopefully replaced with a dedicated bbcode later
        //$post = get_attached_data($b["body"]);
-       $post = get_attached_data($body);
+       $post = get_attached_data($body, $b);
 
        if (($b["title"] != "") && ($post["text"] != ""))
                $post["text"] = trim($b["title"]."\n\n".$post["text"]);
@@ -414,16 +448,17 @@ function plaintext(App $a, $b, $limit = 0, $includedlinks = false, $htmlmode = 2
 
                if (iconv_strlen($msg, "UTF-8") > $limit) {
 
-                       if (($post["type"] == "text") && isset($post["url"]))
+                       if (($post["type"] == "text") && isset($post["url"])) {
                                $post["url"] = $b["plink"];
-                       elseif (!isset($post["url"])) {
+                       elseif (!isset($post["url"])) {
                                $limit = $limit - 23;
                                $post["url"] = $b["plink"];
-                       } elseif (strpos($b["body"], "[share") !== false)
+                       // Which purpose has this line? It is now uncommented, but left as a reminder
+                       //} elseif (strpos($b["body"], "[share") !== false) {
+                       //      $post["url"] = $b["plink"];
+                       } elseif (PConfig::get($b["uid"], "system", "no_intelligent_shortening")) {
                                $post["url"] = $b["plink"];
-                       elseif (get_pconfig($b["uid"], "system", "no_intelligent_shortening"))
-                               $post["url"] = $b["plink"];
-
+                       }
                        $msg = shortenmsg($msg, $limit);
                }
        }