]> git.mxchange.org Git - friendica.git/blob - include/plaintext.php
Merge pull request #2336 from stieben/move-div-pause
[friendica.git] / include / plaintext.php
1 <?php
2 function get_attached_data($body) {
3 /*
4  - text:
5  - type: link, video, photo
6  - title:
7  - url:
8  - image:
9  - description:
10  - (thumbnail)
11 */
12
13         // Simplify image codes
14         $body = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $body);
15
16         $post = array();
17
18         if (preg_match_all("(\[class=(.*?)\](.*?)\[\/class\])ism",$body, $attached,  PREG_SET_ORDER)) {
19                 foreach ($attached AS $data) {
20                         if (!in_array($data[1], array("type-link", "type-video", "type-photo")))
21                                 continue;
22
23                         $post["type"] = substr($data[1], 5);
24
25                         $post["text"] = trim(str_replace($data[0], "", $body));
26
27                         $attacheddata = $data[2];
28
29                         $URLSearchString = "^\[\]";
30
31                         if (preg_match("/\[img\]([$URLSearchString]*)\[\/img\]/ism", $attacheddata, $matches))
32                                 $post["image"] = $matches[1];
33
34                         if (preg_match("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism", $attacheddata, $matches)) {
35                                 $post["url"] = $matches[1];
36                                 $post["title"] = $matches[2];
37                         }
38
39                         // Search for description
40                         if (preg_match("/\[quote\](.*?)\[\/quote\]/ism", $attacheddata, $matches))
41                                 $post["description"] = $matches[1];
42
43                 }
44         }
45
46         // if nothing is found, it maybe having an image.
47         if (!isset($post["type"])) {
48                 require_once("mod/parse_url.php");
49                 require_once("include/Photo.php");
50
51                 $URLSearchString = "^\[\]";
52                 if (preg_match_all("(\[url=([$URLSearchString]*)\]\s*\[img\]([$URLSearchString]*)\[\/img\]\s*\[\/url\])ism", $body, $pictures,  PREG_SET_ORDER)) {
53                         if (count($pictures) == 1) {
54                                 // Checking, if the link goes to a picture
55                                 $data = parseurl_getsiteinfo_cached($pictures[0][1], true);
56                                 if ($data["type"] == "photo") {
57                                         $post["type"] = "photo";
58                                         if (isset($data["images"][0])) {
59                                                 $post["image"] = $data["images"][0]["src"];
60                                                 $post["url"] = $data["url"];
61                                         } else
62                                                 $post["image"] = $data["url"];
63
64                                         $post["preview"] = $pictures[0][2];
65                                         $post["text"] = str_replace($pictures[0][0], "", $body);
66                                 } else {
67                                         $imgdata = get_photo_info($pictures[0][1]);
68                                         if (substr($imgdata["mime"], 0, 6) == "image/") {
69                                                 $post["type"] = "photo";
70                                                 $post["image"] = $pictures[0][1];
71                                                 $post["preview"] = $pictures[0][2];
72                                                 $post["text"] = str_replace($pictures[0][0], "", $body);
73                                         }
74                                 }
75                         } elseif (count($pictures) > 1) {
76                                 $post["type"] = "link";
77                                 $post["url"] = $b["plink"];
78                                 $post["image"] = $pictures[0][2];
79                                 $post["text"] = $body;
80                         }
81                 } elseif (preg_match_all("(\[img\]([$URLSearchString]*)\[\/img\])ism", $body, $pictures,  PREG_SET_ORDER)) {
82                         if (count($pictures) == 1) {
83                                 $post["type"] = "photo";
84                                 $post["image"] = $pictures[0][1];
85                                 $post["text"] = str_replace($pictures[0][0], "", $body);
86                         } elseif (count($pictures) > 1) {
87                                 $post["type"] = "link";
88                                 $post["url"] = $b["plink"];
89                                 $post["image"] = $pictures[0][1];
90                                 $post["text"] = $body;
91                         }
92                 }
93
94                 if (preg_match_all("(\[url\]([$URLSearchString]*)\[\/url\])ism", $body, $links,  PREG_SET_ORDER)) {
95                         if (count($links) == 1) {
96                                 $post["type"] = "text";
97                                 $post["url"] = $links[0][1];
98                                 $post["text"] = $body;
99                         }
100                 }
101                 if (!isset($post["type"])) {
102                         $post["type"] = "text";
103                         $post["text"] = trim($body);
104                 }
105         } elseif (isset($post["url"]) AND ($post["type"] == "video")) {
106                 require_once("mod/parse_url.php");
107                 $data = parseurl_getsiteinfo_cached($post["url"], true);
108
109                 if (isset($data["images"][0]))
110                         $post["image"] = $data["images"][0]["src"];
111         }
112
113         return($post);
114 }
115
116 function shortenmsg($msg, $limit, $twitter = false) {
117         /// @TODO
118         /// For Twitter URLs aren't shortened, but they have to be calculated as if.
119
120         $lines = explode("\n", $msg);
121         $msg = "";
122         $recycle = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
123         foreach ($lines AS $row=>$line) {
124                 if (iconv_strlen(trim($msg."\n".$line), "UTF-8") <= $limit)
125                         $msg = trim($msg."\n".$line);
126                 // Is the new message empty by now or is it a reshared message?
127                 elseif (($msg == "") OR (($row == 1) AND (substr($msg, 0, 4) == $recycle)))
128                         $msg = iconv_substr(iconv_substr(trim($msg."\n".$line), 0, $limit, "UTF-8"), 0, -3, "UTF-8")."...";
129                 else
130                         break;
131         }
132         return($msg);
133 }
134
135 function plaintext($a, $b, $limit = 0, $includedlinks = false, $htmlmode = 2) {
136         require_once("include/bbcode.php");
137         require_once("include/html2plain.php");
138         require_once("include/network.php");
139
140         // Remove the hash tags
141         $URLSearchString = "^\[\]";
142         $body = preg_replace("/([#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $b["body"]);
143
144         // Add an URL element if the text contains a raw link
145         $body = preg_replace("/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url]$2[/url]', $body);
146
147         // At first look at data that is attached via "type-..." stuff
148         // This will hopefully replaced with a dedicated bbcode later
149         //$post = get_attached_data($b["body"]);
150         $post = get_attached_data($body);
151
152         if (($b["title"] != "") AND ($post["text"] != ""))
153                 $post["text"] = trim($b["title"]."\n\n".$post["text"]);
154         elseif ($b["title"] != "")
155                 $post["text"] = trim($b["title"]);
156
157         $html = bbcode($post["text"], false, false, $htmlmode);
158         $msg = html2plain($html, 0, true);
159         $msg = trim(html_entity_decode($msg,ENT_QUOTES,'UTF-8'));
160
161         $link = "";
162         if ($includedlinks) {
163                 if ($post["type"] == "link")
164                         $link = $post["url"];
165                 elseif ($post["type"] == "text")
166                         $link = $post["url"];
167                 elseif ($post["type"] == "video")
168                         $link = $post["url"];
169                 elseif ($post["type"] == "photo")
170                         $link = $post["image"];
171
172                 if (($msg == "") AND isset($post["title"]))
173                         $msg = trim($post["title"]);
174
175                 if (($msg == "") AND isset($post["description"]))
176                         $msg = trim($post["description"]);
177
178                 // If the link is already contained in the post, then it neeedn't to be added again
179                 // But: if the link is beyond the limit, then it has to be added.
180                 if (($link != "") AND strstr($msg, $link)) {
181                         $pos = strpos($msg, $link);
182
183                         // Will the text be shortened in the link?
184                         // Or is the link the last item in the post?
185                         if (($limit > 0) AND ($pos < $limit) AND (($pos + 23 > $limit) OR ($pos + strlen($link) == strlen($msg))))
186                                 $msg = trim(str_replace($link, "", $msg));
187                         elseif (($limit == 0) OR ($pos < $limit)) {
188                                 // The limit has to be increased since it will be shortened - but not now
189                                 // Only do it with Twitter (htmlmode = 8)
190                                 if (($limit > 0) AND (strlen($link) > 23) AND ($htmlmode == 8))
191                                         $limit = $limit - 23 + strlen($link);
192
193                                 $link = "";
194
195                                 if ($post["type"] == "text")
196                                         unset($post["url"]);
197                         }
198                 }
199         }
200
201         if ($limit > 0) {
202                 // Reduce multiple spaces
203                 // When posted to a network with limited space, we try to gain space where possible
204                 while (strpos($msg, "  ") !== false)
205                         $msg = str_replace("  ", " ", $msg);
206
207                 // Twitter is using its own limiter, so we always assume that shortened links will have this length
208                 if (iconv_strlen($link, "UTF-8") > 0)
209                         $limit = $limit - 23;
210
211                 if (iconv_strlen($msg, "UTF-8") > $limit) {
212
213                         if (($post["type"] == "text") AND isset($post["url"]))
214                                 $post["url"] = $b["plink"];
215                         elseif (!isset($post["url"])) {
216                                 $limit = $limit - 23;
217                                 $post["url"] = $b["plink"];
218                         } elseif (strpos($b["body"], "[share") !== false)
219                                 $post["url"] = $b["plink"];
220                         elseif (get_pconfig($b["uid"], "system", "no_intelligent_shortening"))
221                                 $post["url"] = $b["plink"];
222
223                         $msg = shortenmsg($msg, $limit);
224                 }
225         }
226
227         $post["text"] = trim($msg);
228
229         return($post);
230 }
231 ?>