2 function get_attached_data($body) {
5 - type: link, video, photo
13 // Simplify image codes
14 $body = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $body);
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")))
23 $post["type"] = substr($data[1], 5);
25 $post["text"] = trim(str_replace($data[0], "", $body));
27 $attacheddata = $data[2];
29 $URLSearchString = "^\[\]";
31 if (preg_match("/\[img\]([$URLSearchString]*)\[\/img\]/ism", $attacheddata, $matches))
32 $post["image"] = $matches[1];
34 if (preg_match("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism", $attacheddata, $matches)) {
35 $post["url"] = $matches[1];
36 $post["title"] = $matches[2];
39 // Search for description
40 if (preg_match("/\[quote\](.*?)\[\/quote\]/ism", $attacheddata, $matches))
41 $post["description"] = $matches[1];
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");
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"];
62 $post["image"] = $data["url"];
64 $post["preview"] = $pictures[0][2];
65 $post["text"] = str_replace($pictures[0][0], "", $body);
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);
75 } elseif (count($pictures) > 1) {
76 $post["type"] = "link";
77 $post["url"] = $b["plink"];
78 $post["image"] = $pictures[0][2];
79 $post["text"] = $body;
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;
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;
101 if (!isset($post["type"])) {
102 $post["type"] = "text";
103 $post["text"] = trim($body);
105 } elseif (isset($post["url"]) AND ($post["type"] == "video")) {
106 require_once("mod/parse_url.php");
107 $data = parseurl_getsiteinfo_cached($post["url"], true);
109 if (isset($data["images"][0]))
110 $post["image"] = $data["images"][0]["src"];
116 function shortenmsg($msg, $limit, $twitter = false) {
118 /// For Twitter URLs aren't shortened, but they have to be calculated as if.
120 $lines = explode("\n", $msg);
122 $recycle = html_entity_decode("♲ ", 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")."...";
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");
140 // Remove the hash tags
141 $URLSearchString = "^\[\]";
142 $body = preg_replace("/([#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $b["body"]);
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);
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);
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"]);
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'));
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"];
172 if (($msg == "") AND isset($post["title"]))
173 $msg = trim($post["title"]);
175 if (($msg == "") AND isset($post["description"]))
176 $msg = trim($post["description"]);
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);
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);
195 if ($post["type"] == "text")
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);
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;
211 if (iconv_strlen($msg, "UTF-8") > $limit) {
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"];
223 $msg = shortenmsg($msg, $limit);
227 $post["text"] = trim($msg);