]> git.mxchange.org Git - friendica.git/blob - src/Content/Text/BBCode.php
Finally fix the permissions for Widget\CalendarExport
[friendica.git] / src / Content / Text / BBCode.php
1 <?php
2
3 /**
4  * @file src/Content/Text/BBCode.php
5  */
6
7 namespace Friendica\Content\Text;
8
9 use DOMDocument;
10 use DOMXPath;
11 use Exception;
12 use Friendica\BaseObject;
13 use Friendica\Content\OEmbed;
14 use Friendica\Content\Smilies;
15 use Friendica\Core\Addon;
16 use Friendica\Core\Cache;
17 use Friendica\Core\Config;
18 use Friendica\Core\L10n;
19 use Friendica\Core\PConfig;
20 use Friendica\Core\Protocol;
21 use Friendica\Core\System;
22 use Friendica\Model\Contact;
23 use Friendica\Model\Event;
24 use Friendica\Network\Probe;
25 use Friendica\Object\Image;
26 use Friendica\Util\Map;
27 use Friendica\Util\Network;
28 use Friendica\Util\ParseUrl;
29 use League\HTMLToMarkdown\HtmlConverter;
30
31 require_once "mod/proxy.php";
32
33 class BBCode extends BaseObject
34 {
35         /**
36          * @brief Fetches attachment data that were generated the old way
37          *
38          * @param string $body Message body
39          * @return array
40          * 'type' -> Message type ("link", "video", "photo")
41          * 'text' -> Text before the shared message
42          * 'after' -> Text after the shared message
43          * 'image' -> Preview image of the message
44          * 'url' -> Url to the attached message
45          * 'title' -> Title of the attachment
46          * 'description' -> Description of the attachment
47          */
48         private static function getOldAttachmentData($body)
49         {
50                 $post = [];
51
52                 // Simplify image codes
53                 $body = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $body);
54
55                 if (preg_match_all("(\[class=(.*?)\](.*?)\[\/class\])ism", $body, $attached, PREG_SET_ORDER)) {
56                         foreach ($attached as $data) {
57                                 if (!in_array($data[1], ["type-link", "type-video", "type-photo"])) {
58                                         continue;
59                                 }
60
61                                 $post["type"] = substr($data[1], 5);
62
63                                 $pos = strpos($body, $data[0]);
64                                 if ($pos > 0) {
65                                         $post["text"] = trim(substr($body, 0, $pos));
66                                         $post["after"] = trim(substr($body, $pos + strlen($data[0])));
67                                 } else {
68                                         $post["text"] = trim(str_replace($data[0], "", $body));
69                                 }
70
71                                 $attacheddata = $data[2];
72
73                                 $URLSearchString = "^\[\]";
74
75                                 if (preg_match("/\[img\]([$URLSearchString]*)\[\/img\]/ism", $attacheddata, $matches)) {
76
77                                         $picturedata = Image::getInfoFromURL($matches[1]);
78
79                                         if (($picturedata[0] >= 500) && ($picturedata[0] >= $picturedata[1])) {
80                                                 $post["image"] = $matches[1];
81                                         } else {
82                                                 $post["preview"] = $matches[1];
83                                         }
84                                 }
85
86                                 if (preg_match("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism", $attacheddata, $matches)) {
87                                         $post["url"] = $matches[1];
88                                         $post["title"] = $matches[2];
89                                 }
90                                 if (($post["url"] == "") && (in_array($post["type"], ["link", "video"]))
91                                         && preg_match("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", $attacheddata, $matches)) {
92                                         $post["url"] = $matches[1];
93                                 }
94
95                                 // Search for description
96                                 if (preg_match("/\[quote\](.*?)\[\/quote\]/ism", $attacheddata, $matches)) {
97                                         $post["description"] = $matches[1];
98                                 }
99                         }
100                 }
101                 return $post;
102         }
103
104         /**
105          * @brief Fetches attachment data that were generated with the "attachment" element
106          *
107          * @param string $body Message body
108          * @return array
109          * 'type' -> Message type ("link", "video", "photo")
110          * 'text' -> Text before the shared message
111          * 'after' -> Text after the shared message
112          * 'image' -> Preview image of the message
113          * 'url' -> Url to the attached message
114          * 'title' -> Title of the attachment
115          * 'description' -> Description of the attachment
116          */
117         public static function getAttachmentData($body)
118         {
119                 $data = [];
120
121                 if (!preg_match("/(.*)\[attachment(.*?)\](.*?)\[\/attachment\](.*)/ism", $body, $match)) {
122                         return self::getOldAttachmentData($body);
123                 }
124
125                 $attributes = $match[2];
126
127                 $data["text"] = trim($match[1]);
128
129                 $type = "";
130                 preg_match("/type='(.*?)'/ism", $attributes, $matches);
131                 if (x($matches, 1)) {
132                         $type = strtolower($matches[1]);
133                 }
134
135                 preg_match('/type="(.*?)"/ism', $attributes, $matches);
136                 if (x($matches, 1)) {
137                         $type = strtolower($matches[1]);
138                 }
139
140                 if ($type == "") {
141                         return [];
142                 }
143
144                 if (!in_array($type, ["link", "audio", "photo", "video"])) {
145                         return [];
146                 }
147
148                 if ($type != "") {
149                         $data["type"] = $type;
150                 }
151
152                 $url = "";
153                 preg_match("/url='(.*?)'/ism", $attributes, $matches);
154                 if (x($matches, 1)) {
155                         $url = $matches[1];
156                 }
157
158                 preg_match('/url="(.*?)"/ism', $attributes, $matches);
159                 if (x($matches, 1)) {
160                         $url = $matches[1];
161                 }
162
163                 if ($url != "") {
164                         $data["url"] = html_entity_decode($url, ENT_QUOTES, 'UTF-8');
165                 }
166
167                 $title = "";
168                 preg_match("/title='(.*?)'/ism", $attributes, $matches);
169                 if (x($matches, 1)) {
170                         $title = $matches[1];
171                 }
172
173                 preg_match('/title="(.*?)"/ism', $attributes, $matches);
174                 if (x($matches, 1)) {
175                         $title = $matches[1];
176                 }
177
178                 if ($title != "") {
179                         $title = self::convert(html_entity_decode($title, ENT_QUOTES, 'UTF-8'), false, true);
180                         $title = html_entity_decode($title, ENT_QUOTES, 'UTF-8');
181                         $title = str_replace(["[", "]"], ["&#91;", "&#93;"], $title);
182                         $data["title"] = $title;
183                 }
184
185                 $image = "";
186                 preg_match("/image='(.*?)'/ism", $attributes, $matches);
187                 if (x($matches, 1)) {
188                         $image = $matches[1];
189                 }
190
191                 preg_match('/image="(.*?)"/ism', $attributes, $matches);
192                 if (x($matches, 1)) {
193                         $image = $matches[1];
194                 }
195
196                 if ($image != "") {
197                         $data["image"] = html_entity_decode($image, ENT_QUOTES, 'UTF-8');
198                 }
199
200                 $preview = "";
201                 preg_match("/preview='(.*?)'/ism", $attributes, $matches);
202                 if (x($matches, 1)) {
203                         $preview = $matches[1];
204                 }
205
206                 preg_match('/preview="(.*?)"/ism', $attributes, $matches);
207                 if (x($matches, 1)) {
208                         $preview = $matches[1];
209                 }
210
211                 if ($preview != "") {
212                         $data["preview"] = html_entity_decode($preview, ENT_QUOTES, 'UTF-8');
213                 }
214
215                 $data["description"] = trim($match[3]);
216
217                 $data["after"] = trim($match[4]);
218
219                 return $data;
220         }
221
222         public static function getAttachedData($body, $item = [])
223         {
224                 /*
225                 - text:
226                 - type: link, video, photo
227                 - title:
228                 - url:
229                 - image:
230                 - description:
231                 - (thumbnail)
232                 */
233
234                 $has_title = !empty($item['title']);
235                 $plink = (!empty($item['plink']) ? $item['plink'] : '');
236                 $post = self::getAttachmentData($body);
237
238                 // if nothing is found, it maybe having an image.
239                 if (!isset($post["type"])) {
240                         // Simplify image codes
241                         $body = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $body);
242
243                         $URLSearchString = "^\[\]";
244                         if (preg_match_all("(\[url=([$URLSearchString]*)\]\s*\[img\]([$URLSearchString]*)\[\/img\]\s*\[\/url\])ism", $body, $pictures, PREG_SET_ORDER)) {
245                                 if ((count($pictures) == 1) && !$has_title) {
246                                         // Checking, if the link goes to a picture
247                                         $data = ParseUrl::getSiteinfoCached($pictures[0][1], true);
248
249                                         // Workaround:
250                                         // Sometimes photo posts to the own album are not detected at the start.
251                                         // So we seem to cannot use the cache for these cases. That's strange.
252                                         if (($data["type"] != "photo") && strstr($pictures[0][1], "/photos/")) {
253                                                 $data = ParseUrl::getSiteinfo($pictures[0][1], true);
254                                         }
255
256                                         if ($data["type"] == "photo") {
257                                                 $post["type"] = "photo";
258                                                 if (isset($data["images"][0])) {
259                                                         $post["image"] = $data["images"][0]["src"];
260                                                         $post["url"] = $data["url"];
261                                                 } else {
262                                                         $post["image"] = $data["url"];
263                                                 }
264
265                                                 $post["preview"] = $pictures[0][2];
266                                                 $post["text"] = str_replace($pictures[0][0], "", $body);
267                                         } else {
268                                                 $imgdata = Image::getInfoFromURL($pictures[0][1]);
269                                                 if (substr($imgdata["mime"], 0, 6) == "image/") {
270                                                         $post["type"] = "photo";
271                                                         $post["image"] = $pictures[0][1];
272                                                         $post["preview"] = $pictures[0][2];
273                                                         $post["text"] = str_replace($pictures[0][0], "", $body);
274                                                 }
275                                         }
276                                 } elseif (count($pictures) > 0) {
277                                         $post["type"] = "link";
278                                         $post["url"] = $plink;
279                                         $post["image"] = $pictures[0][2];
280                                         $post["text"] = $body;
281                                 }
282                         } elseif (preg_match_all("(\[img\]([$URLSearchString]*)\[\/img\])ism", $body, $pictures, PREG_SET_ORDER)) {
283                                 if ((count($pictures) == 1) && !$has_title) {
284                                         $post["type"] = "photo";
285                                         $post["image"] = $pictures[0][1];
286                                         $post["text"] = str_replace($pictures[0][0], "", $body);
287                                 } elseif (count($pictures) > 0) {
288                                         $post["type"] = "link";
289                                         $post["url"] = $plink;
290                                         $post["image"] = $pictures[0][1];
291                                         $post["text"] = $body;
292                                 }
293                         }
294
295                         // Test for the external links
296                         preg_match_all("(\[url\]([$URLSearchString]*)\[\/url\])ism", $body, $links1, PREG_SET_ORDER);
297                         preg_match_all("(\[url\=([$URLSearchString]*)\].*?\[\/url\])ism", $body, $links2, PREG_SET_ORDER);
298
299                         $links = array_merge($links1, $links2);
300
301                         // If there is only a single one, then use it.
302                         // This should cover link posts via API.
303                         if ((count($links) == 1) && !isset($post["preview"]) && !$has_title) {
304                                 $post["type"] = "link";
305                                 $post["text"] = trim($body);
306                                 $post["url"] = $links[0][1];
307                         }
308
309                         // Now count the number of external media links
310                         preg_match_all("(\[vimeo\](.*?)\[\/vimeo\])ism", $body, $links1, PREG_SET_ORDER);
311                         preg_match_all("(\[youtube\\](.*?)\[\/youtube\\])ism", $body, $links2, PREG_SET_ORDER);
312                         preg_match_all("(\[video\\](.*?)\[\/video\\])ism", $body, $links3, PREG_SET_ORDER);
313                         preg_match_all("(\[audio\\](.*?)\[\/audio\\])ism", $body, $links4, PREG_SET_ORDER);
314
315                         // Add them to the other external links
316                         $links = array_merge($links, $links1, $links2, $links3, $links4);
317
318                         // Are there more than one?
319                         if (count($links) > 1) {
320                                 // The post will be the type "text", which means a blog post
321                                 unset($post["type"]);
322                                 $post["url"] = $plink;
323                         }
324
325                         if (!isset($post["type"])) {
326                                 $post["type"] = "text";
327                                 $post["text"] = trim($body);
328                         }
329                 } elseif (isset($post["url"]) && ($post["type"] == "video")) {
330                         $data = ParseUrl::getSiteinfoCached($post["url"], true);
331
332                         if (isset($data["images"][0])) {
333                                 $post["image"] = $data["images"][0]["src"];
334                         }
335                 }
336
337                 return $post;
338         }
339
340         /**
341          * @brief Convert a message into plaintext for connectors to other networks
342          *
343          * @param array $b The message array that is about to be posted
344          * @param int $limit The maximum number of characters when posting to that network
345          * @param bool $includedlinks Has an attached link to be included into the message?
346          * @param int $htmlmode This triggers the behaviour of the bbcode conversion
347          * @param string $target_network Name of the network where the post should go to.
348          *
349          * @return string The converted message
350          */
351         public static function toPlaintext($b, $limit = 0, $includedlinks = false, $htmlmode = 2, $target_network = "")
352         {
353                 // Remove the hash tags
354                 $URLSearchString = "^\[\]";
355                 $body = preg_replace("/([#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $b["body"]);
356
357                 // Add an URL element if the text contains a raw link
358                 $body = preg_replace("/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url]$2[/url]', $body);
359
360                 // Remove the abstract
361                 $body = self::stripAbstract($body);
362
363                 // At first look at data that is attached via "type-..." stuff
364                 // This will hopefully replaced with a dedicated bbcode later
365                 //$post = self::getAttachedData($b["body"]);
366                 $post = self::getAttachedData($body, $b);
367
368                 if (($b["title"] != "") && ($post["text"] != "")) {
369                         $post["text"] = trim($b["title"]."\n\n".$post["text"]);
370                 } elseif ($b["title"] != "") {
371                         $post["text"] = trim($b["title"]);
372                 }
373
374                 $abstract = "";
375
376                 // Fetch the abstract from the given target network
377                 if ($target_network != "") {
378                         $default_abstract = self::getAbstract($b["body"]);
379                         $abstract = self::getAbstract($b["body"], $target_network);
380
381                         // If we post to a network with no limit we only fetch
382                         // an abstract exactly for this network
383                         if (($limit == 0) && ($abstract == $default_abstract)) {
384                                 $abstract = "";
385                         }
386                 } else {// Try to guess the correct target network
387                         switch ($htmlmode) {
388                                 case 8:
389                                         $abstract = self::getAbstract($b["body"], NETWORK_TWITTER);
390                                         break;
391                                 case 7:
392                                         $abstract = self::getAbstract($b["body"], NETWORK_STATUSNET);
393                                         break;
394                                 case 6:
395                                         $abstract = self::getAbstract($b["body"], NETWORK_APPNET);
396                                         break;
397                                 default: // We don't know the exact target.
398                                         // We fetch an abstract since there is a posting limit.
399                                         if ($limit > 0) {
400                                                 $abstract = self::getAbstract($b["body"]);
401                                         }
402                         }
403                 }
404
405                 if ($abstract != "") {
406                         $post["text"] = $abstract;
407
408                         if ($post["type"] == "text") {
409                                 $post["type"] = "link";
410                                 $post["url"] = $b["plink"];
411                         }
412                 }
413
414                 $html = self::convert($post["text"].$post["after"], false, $htmlmode);
415                 $msg = HTML::toPlaintext($html, 0, true);
416                 $msg = trim(html_entity_decode($msg, ENT_QUOTES, 'UTF-8'));
417
418                 $link = "";
419                 if ($includedlinks) {
420                         if ($post["type"] == "link") {
421                                 $link = $post["url"];
422                         } elseif ($post["type"] == "text") {
423                                 $link = $post["url"];
424                         } elseif ($post["type"] == "video") {
425                                 $link = $post["url"];
426                         } elseif ($post["type"] == "photo") {
427                                 $link = $post["image"];
428                         }
429
430                         if (($msg == "") && isset($post["title"])) {
431                                 $msg = trim($post["title"]);
432                         }
433
434                         if (($msg == "") && isset($post["description"])) {
435                                 $msg = trim($post["description"]);
436                         }
437
438                         // If the link is already contained in the post, then it neeedn't to be added again
439                         // But: if the link is beyond the limit, then it has to be added.
440                         if (($link != "") && strstr($msg, $link)) {
441                                 $pos = strpos($msg, $link);
442
443                                 // Will the text be shortened in the link?
444                                 // Or is the link the last item in the post?
445                                 if (($limit > 0) && ($pos < $limit) && (($pos + 23 > $limit) || ($pos + strlen($link) == strlen($msg)))) {
446                                         $msg = trim(str_replace($link, "", $msg));
447                                 } elseif (($limit == 0) || ($pos < $limit)) {
448                                         // The limit has to be increased since it will be shortened - but not now
449                                         // Only do it with Twitter (htmlmode = 8)
450                                         if (($limit > 0) && (strlen($link) > 23) && ($htmlmode == 8)) {
451                                                 $limit = $limit - 23 + strlen($link);
452                                         }
453
454                                         $link = "";
455
456                                         if ($post["type"] == "text") {
457                                                 unset($post["url"]);
458                                         }
459                                 }
460                         }
461                 }
462
463                 if ($limit > 0) {
464                         // Reduce multiple spaces
465                         // When posted to a network with limited space, we try to gain space where possible
466                         while (strpos($msg, "  ") !== false) {
467                                 $msg = str_replace("  ", " ", $msg);
468                         }
469
470                         // Twitter is using its own limiter, so we always assume that shortened links will have this length
471                         if (iconv_strlen($link, "UTF-8") > 0) {
472                                 $limit = $limit - 23;
473                         }
474
475                         if (iconv_strlen($msg, "UTF-8") > $limit) {
476                                 if (($post["type"] == "text") && isset($post["url"])) {
477                                         $post["url"] = $b["plink"];
478                                 } elseif (!isset($post["url"])) {
479                                         $limit = $limit - 23;
480                                         $post["url"] = $b["plink"];
481                                 // Which purpose has this line? It is now uncommented, but left as a reminder
482                                 //} elseif (strpos($b["body"], "[share") !== false) {
483                                 //      $post["url"] = $b["plink"];
484                                 } elseif (PConfig::get($b["uid"], "system", "no_intelligent_shortening")) {
485                                         $post["url"] = $b["plink"];
486                                 }
487                                 $msg = Plaintext::shorten($msg, $limit);
488                         }
489                 }
490
491                 $post["text"] = trim($msg);
492
493                 return($post);
494         }
495
496         public static function scaleExternalImages($srctext, $include_link = true, $scale_replace = false)
497         {
498                 // Suppress "view full size"
499                 if (intval(Config::get('system', 'no_view_full_size'))) {
500                         $include_link = false;
501                 }
502
503                 // Picture addresses can contain special characters
504                 $s = htmlspecialchars_decode($srctext);
505
506                 $matches = null;
507                 $c = preg_match_all('/\[img.*?\](.*?)\[\/img\]/ism', $s, $matches, PREG_SET_ORDER);
508                 if ($c) {
509                         foreach ($matches as $mtch) {
510                                 logger('scale_external_image: ' . $mtch[1]);
511
512                                 $hostname = str_replace('www.', '', substr(System::baseUrl(), strpos(System::baseUrl(), '://') + 3));
513                                 if (stristr($mtch[1], $hostname)) {
514                                         continue;
515                                 }
516
517                                 // $scale_replace, if passed, is an array of two elements. The
518                                 // first is the name of the full-size image. The second is the
519                                 // name of a remote, scaled-down version of the full size image.
520                                 // This allows Friendica to display the smaller remote image if
521                                 // one exists, while still linking to the full-size image
522                                 if ($scale_replace) {
523                                         $scaled = str_replace($scale_replace[0], $scale_replace[1], $mtch[1]);
524                                 } else {
525                                         $scaled = $mtch[1];
526                                 }
527                                 $i = Network::fetchUrl($scaled);
528                                 if (!$i) {
529                                         return $srctext;
530                                 }
531
532                                 // guess mimetype from headers or filename
533                                 $type = Image::guessType($mtch[1], true);
534
535                                 if ($i) {
536                                         $Image = new Image($i, $type);
537                                         if ($Image->isValid()) {
538                                                 $orig_width = $Image->getWidth();
539                                                 $orig_height = $Image->getHeight();
540
541                                                 if ($orig_width > 640 || $orig_height > 640) {
542                                                         $Image->scaleDown(640);
543                                                         $new_width = $Image->getWidth();
544                                                         $new_height = $Image->getHeight();
545                                                         logger('scale_external_images: ' . $orig_width . '->' . $new_width . 'w ' . $orig_height . '->' . $new_height . 'h' . ' match: ' . $mtch[0], LOGGER_DEBUG);
546                                                         $s = str_replace(
547                                                                 $mtch[0],
548                                                                 '[img=' . $new_width . 'x' . $new_height. ']' . $scaled . '[/img]'
549                                                                 . "\n" . (($include_link)
550                                                                         ? '[url=' . $mtch[1] . ']' . L10n::t('view full size') . '[/url]' . "\n"
551                                                                         : ''),
552                                                                 $s
553                                                         );
554                                                         logger('scale_external_images: new string: ' . $s, LOGGER_DEBUG);
555                                                 }
556                                         }
557                                 }
558                         }
559                 }
560
561                 // replace the special char encoding
562                 $s = htmlspecialchars($s, ENT_NOQUOTES, 'UTF-8');
563                 return $s;
564         }
565
566         /**
567          * The purpose of this function is to apply system message length limits to
568          * imported messages without including any embedded photos in the length
569          *
570          * @brief Truncates imported message body string length to max_import_size
571          * @param string $body
572          * @return string
573          */
574         public static function limitBodySize($body)
575         {
576                 $maxlen = get_max_import_size();
577
578                 // If the length of the body, including the embedded images, is smaller
579                 // than the maximum, then don't waste time looking for the images
580                 if ($maxlen && (strlen($body) > $maxlen)) {
581
582                         logger('the total body length exceeds the limit', LOGGER_DEBUG);
583
584                         $orig_body = $body;
585                         $new_body = '';
586                         $textlen = 0;
587
588                         $img_start = strpos($orig_body, '[img');
589                         $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
590                         $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
591                         while (($img_st_close !== false) && ($img_end !== false)) {
592
593                                 $img_st_close++; // make it point to AFTER the closing bracket
594                                 $img_end += $img_start;
595                                 $img_end += strlen('[/img]');
596
597                                 if (!strcmp(substr($orig_body, $img_start + $img_st_close, 5), 'data:')) {
598                                         // This is an embedded image
599
600                                         if (($textlen + $img_start) > $maxlen) {
601                                                 if ($textlen < $maxlen) {
602                                                         logger('the limit happens before an embedded image', LOGGER_DEBUG);
603                                                         $new_body = $new_body . substr($orig_body, 0, $maxlen - $textlen);
604                                                         $textlen = $maxlen;
605                                                 }
606                                         } else {
607                                                 $new_body = $new_body . substr($orig_body, 0, $img_start);
608                                                 $textlen += $img_start;
609                                         }
610
611                                         $new_body = $new_body . substr($orig_body, $img_start, $img_end - $img_start);
612                                 } else {
613
614                                         if (($textlen + $img_end) > $maxlen) {
615                                                 if ($textlen < $maxlen) {
616                                                         logger('the limit happens before the end of a non-embedded image', LOGGER_DEBUG);
617                                                         $new_body = $new_body . substr($orig_body, 0, $maxlen - $textlen);
618                                                         $textlen = $maxlen;
619                                                 }
620                                         } else {
621                                                 $new_body = $new_body . substr($orig_body, 0, $img_end);
622                                                 $textlen += $img_end;
623                                         }
624                                 }
625                                 $orig_body = substr($orig_body, $img_end);
626
627                                 if ($orig_body === false) {
628                                         // in case the body ends on a closing image tag
629                                         $orig_body = '';
630                                 }
631
632                                 $img_start = strpos($orig_body, '[img');
633                                 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
634                                 $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
635                         }
636
637                         if (($textlen + strlen($orig_body)) > $maxlen) {
638                                 if ($textlen < $maxlen) {
639                                         logger('the limit happens after the end of the last image', LOGGER_DEBUG);
640                                         $new_body = $new_body . substr($orig_body, 0, $maxlen - $textlen);
641                                 }
642                         } else {
643                                 logger('the text size with embedded images extracted did not violate the limit', LOGGER_DEBUG);
644                                 $new_body = $new_body . $orig_body;
645                         }
646
647                         return $new_body;
648                 } else {
649                         return $body;
650                 }
651         }
652
653         /**
654          * Processes [attachment] tags
655          *
656          * Note: Can produce a [bookmark] tag in the returned string
657          *
658          * @brief Processes [attachment] tags
659          * @param string $return
660          * @param bool|int $simplehtml
661          * @param bool $tryoembed
662          * @return string
663          */
664         private static function convertAttachment($return, $simplehtml = false, $tryoembed = true)
665         {
666                 $data = self::getAttachmentData($return);
667                 if (!$data) {
668                         return $return;
669                 }
670
671                 if (isset($data["title"])) {
672                         $data["title"] = strip_tags($data["title"]);
673                         $data["title"] = str_replace(["http://", "https://"], "", $data["title"]);
674                 }
675
676                 if (((strpos($data["text"], "[img=") !== false) || (strpos($data["text"], "[img]") !== false) || Config::get('system', 'always_show_preview')) && ($data["image"] != "")) {
677                         $data["preview"] = $data["image"];
678                         $data["image"] = "";
679                 }
680
681                 $return = '';
682                 if ($simplehtml == 7) {
683                         $return = self::convertUrlForOStatus($data["url"]);
684                 } elseif (($simplehtml != 4) && ($simplehtml != 0)) {
685                         $return = sprintf('<a href="%s" target="_blank">%s</a><br>', $data["url"], $data["title"]);
686                 } else {
687                         try {
688                                 if ($tryoembed && OEmbed::isAllowedURL($data['url'])) {
689                                         $return = OEmbed::getHTML($data['url'], $data['title']);
690                                 } else {
691                                         throw new Exception('OEmbed is disabled for this attachment.');
692                                 }
693                         } catch (Exception $e) {
694                                 if ($simplehtml != 4) {
695                                         $return = sprintf('<div class="type-%s">', $data["type"]);
696                                 }
697
698                                 if ($data["image"] != "") {
699                                         $return .= sprintf('<a href="%s" target="_blank"><img src="%s" alt="" title="%s" class="attachment-image" /></a><br />', $data["url"], proxy_url($data["image"]), $data["title"]);
700                                 } elseif ($data["preview"] != "") {
701                                         $return .= sprintf('<a href="%s" target="_blank"><img src="%s" alt="" title="%s" class="attachment-preview" /></a><br />', $data["url"], proxy_url($data["preview"]), $data["title"]);
702                                 }
703
704                                 if (($data["type"] == "photo") && ($data["url"] != "") && ($data["image"] != "")) {
705                                         $return .= sprintf('<a href="%s" target="_blank"><img src="%s" alt="" title="%s" class="attachment-image" /></a>', $data["url"], proxy_url($data["image"]), $data["title"]);
706                                 } else {
707                                         $return .= sprintf('<h4><a href="%s">%s</a></h4>', $data['url'], $data['title']);
708                                 }
709
710                                 if ($data["description"] != "" && $data["description"] != $data["title"]) {
711                                         // Sanitize the HTML by converting it to BBCode
712                                         $bbcode = HTML::toBBCode($data["description"]);
713                                         $return .= sprintf('<blockquote>%s</blockquote>', trim(self::convert($bbcode)));
714                                 }
715                                 if ($data["type"] == "link") {
716                                         $return .= sprintf('<sup><a href="%s">%s</a></sup>', $data['url'], parse_url($data['url'], PHP_URL_HOST));
717                                 }
718
719                                 if ($simplehtml != 4) {
720                                         $return .= '</div>';
721                                 }
722                         }
723                 }
724
725                 return trim($data["text"] . ' ' . $return . ' ' . $data["after"]);
726         }
727
728         public static function removeShareInformation($Text, $plaintext = false, $nolink = false)
729         {
730                 $data = self::getAttachmentData($Text);
731
732                 if (!$data) {
733                         return $Text;
734                 } elseif ($nolink) {
735                         return $data["text"] . $data["after"];
736                 }
737
738                 $title = htmlentities($data["title"], ENT_QUOTES, 'UTF-8', false);
739                 $text = htmlentities($data["text"], ENT_QUOTES, 'UTF-8', false);
740                 if ($plaintext || (($title != "") && strstr($text, $title))) {
741                         $data["title"] = $data["url"];
742                 } elseif (($text != "") && strstr($title, $text)) {
743                         $data["text"] = $data["title"];
744                         $data["title"] = $data["url"];
745                 }
746
747                 if (($data["text"] == "") && ($data["title"] != "") && ($data["url"] == "")) {
748                         return $data["title"] . $data["after"];
749                 }
750
751                 // If the link already is included in the post, don't add it again
752                 if (($data["url"] != "") && strpos($data["text"], $data["url"])) {
753                         return $data["text"] . $data["after"];
754                 }
755
756                 $text = $data["text"];
757
758                 if (($data["url"] != "") && ($data["title"] != "")) {
759                         $text .= "\n[url=" . $data["url"] . "]" . $data["title"] . "[/url]";
760                 } elseif (($data["url"] != "")) {
761                         $text .= "\n[url]" . $data["url"] . "[/url]";
762                 }
763
764                 return $text . "\n" . $data["after"];
765         }
766
767         /**
768          * Converts [url] BBCodes in a format that looks fine on Mastodon. (callback function)
769          *
770          * @brief Converts [url] BBCodes in a format that looks fine on Mastodon. (callback function)
771          * @param array $match Array with the matching values
772          * @return string reformatted link including HTML codes
773          */
774         private static function convertUrlForOStatusCallback($match)
775         {
776                 $url = $match[1];
777
778                 if (isset($match[2]) && ($match[1] != $match[2])) {
779                         return $match[0];
780                 }
781
782                 $parts = parse_url($url);
783                 if (!isset($parts['scheme'])) {
784                         return $match[0];
785                 }
786
787                 return self::convertUrlForOStatus($url);
788         }
789
790         /**
791          * @brief Converts [url] BBCodes in a format that looks fine on OStatus systems.
792          * @param string $url URL that is about to be reformatted
793          * @return string reformatted link including HTML codes
794          */
795         private static function convertUrlForOStatus($url)
796         {
797                 $parts = parse_url($url);
798                 $scheme = $parts['scheme'] . '://';
799                 $styled_url = str_replace($scheme, '', $url);
800
801                 if (strlen($styled_url) > 30) {
802                         $styled_url = substr($styled_url, 0, 30) . "…";
803                 }
804
805                 $html = '<a href="%s" target="_blank">%s</a>';
806
807                 return sprintf($html, $url, $styled_url);
808         }
809
810         /*
811          * [noparse][i]italic[/i][/noparse] turns into
812          * [noparse][ i ]italic[ /i ][/noparse],
813          * to hide them from parser.
814          */
815         private static function escapeNoparseCallback($match)
816         {
817                 $whole_match = $match[0];
818                 $captured = $match[1];
819                 $spacefied = preg_replace("/\[(.*?)\]/", "[ $1 ]", $captured);
820                 $new_str = str_replace($captured, $spacefied, $whole_match);
821                 return $new_str;
822         }
823
824         /*
825          * The previously spacefied [noparse][ i ]italic[ /i ][/noparse],
826          * now turns back and the [noparse] tags are trimed
827          * returning [i]italic[/i]
828          */
829         private static function unescapeNoparseCallback($match)
830         {
831                 $captured = $match[1];
832                 $unspacefied = preg_replace("/\[ (.*?)\ ]/", "[$1]", $captured);
833                 return $unspacefied;
834         }
835
836         /**
837          * Returns the bracket character positions of a set of opening and closing BBCode tags, optionally skipping first
838          * occurrences
839          *
840          * @param string $text        Text to search
841          * @param string $name        Tag name
842          * @param int    $occurrences Number of first occurrences to skip
843          * @return boolean|array
844          */
845         public static function getTagPosition($text, $name, $occurrences = 0)
846         {
847                 if ($occurrences < 0) {
848                         $occurrences = 0;
849                 }
850
851                 $start_open = -1;
852                 for ($i = 0; $i <= $occurrences; $i++) {
853                         if ($start_open !== false) {
854                                 $start_open = strpos($text, '[' . $name, $start_open + 1); // allow [name= type tags
855                         }
856                 }
857
858                 if ($start_open === false) {
859                         return false;
860                 }
861
862                 $start_equal = strpos($text, '=', $start_open);
863                 $start_close = strpos($text, ']', $start_open);
864
865                 if ($start_close === false) {
866                         return false;
867                 }
868
869                 $start_close++;
870
871                 $end_open = strpos($text, '[/' . $name . ']', $start_close);
872
873                 if ($end_open === false) {
874                         return false;
875                 }
876
877                 $res = [
878                         'start' => [
879                                 'open' => $start_open,
880                                 'close' => $start_close
881                         ],
882                         'end' => [
883                                 'open' => $end_open,
884                                 'close' => $end_open + strlen('[/' . $name . ']')
885                         ],
886                 ];
887
888                 if ($start_equal !== false) {
889                         $res['start']['equal'] = $start_equal + 1;
890                 }
891
892                 return $res;
893         }
894
895         /**
896          * Performs a preg_replace within the boundaries of all named BBCode tags in a text
897          *
898          * @param type $pattern Preg pattern string
899          * @param type $replace Preg replace string
900          * @param type $name    BBCode tag name
901          * @param type $text    Text to search
902          * @return string
903          */
904         public static function pregReplaceInTag($pattern, $replace, $name, $text)
905         {
906                 $occurrences = 0;
907                 $pos = self::getTagPosition($text, $name, $occurrences);
908                 while ($pos !== false && $occurrences++ < 1000) {
909                         $start = substr($text, 0, $pos['start']['open']);
910                         $subject = substr($text, $pos['start']['open'], $pos['end']['close'] - $pos['start']['open']);
911                         $end = substr($text, $pos['end']['close']);
912                         if ($end === false) {
913                                 $end = '';
914                         }
915
916                         $subject = preg_replace($pattern, $replace, $subject);
917                         $text = $start . $subject . $end;
918
919                         $pos = self::getTagPosition($text, $name, $occurrences);
920                 }
921
922                 return $text;
923         }
924
925         private static function extractImagesFromItemBody($body)
926         {
927                 $saved_image = [];
928                 $orig_body = $body;
929                 $new_body = '';
930
931                 $cnt = 0;
932                 $img_start = strpos($orig_body, '[img');
933                 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
934                 $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
935                 while (($img_st_close !== false) && ($img_end !== false)) {
936                         $img_st_close++; // make it point to AFTER the closing bracket
937                         $img_end += $img_start;
938
939                         if (!strcmp(substr($orig_body, $img_start + $img_st_close, 5), 'data:')) {
940                                 // This is an embedded image
941                                 $saved_image[$cnt] = substr($orig_body, $img_start + $img_st_close, $img_end - ($img_start + $img_st_close));
942                                 $new_body = $new_body . substr($orig_body, 0, $img_start) . '[$#saved_image' . $cnt . '#$]';
943
944                                 $cnt++;
945                         } else {
946                                 $new_body = $new_body . substr($orig_body, 0, $img_end + strlen('[/img]'));
947                         }
948
949                         $orig_body = substr($orig_body, $img_end + strlen('[/img]'));
950
951                         if ($orig_body === false) {
952                                 // in case the body ends on a closing image tag
953                                 $orig_body = '';
954                         }
955
956                         $img_start = strpos($orig_body, '[img');
957                         $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
958                         $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
959                 }
960
961                 $new_body = $new_body . $orig_body;
962
963                 return ['body' => $new_body, 'images' => $saved_image];
964         }
965
966         private static function interpolateSavedImagesIntoItemBody($body, array $images)
967         {
968                 $newbody = $body;
969
970                 $cnt = 0;
971                 foreach ($images as $image) {
972                         // We're depending on the property of 'foreach' (specified on the PHP website) that
973                         // it loops over the array starting from the first element and going sequentially
974                         // to the last element
975                         $newbody = str_replace('[$#saved_image' . $cnt . '#$]',
976                                 '<img src="' . proxy_url($image) . '" alt="' . L10n::t('Image/photo') . '" />', $newbody);
977                         $cnt++;
978                 }
979
980                 return $newbody;
981         }
982
983         /**
984          * Processes [share] tags
985          *
986          * Note: Can produce a [bookmark] tag in the output
987          *
988          * @brief Processes [share] tags
989          * @param array    $share      preg_match_callback result array
990          * @param bool|int $simplehtml
991          * @return string
992          */
993         private static function convertShare($share, $simplehtml)
994         {
995                 $attributes = $share[2];
996
997                 $author = "";
998                 preg_match("/author='(.*?)'/ism", $attributes, $matches);
999                 if (x($matches, 1)) {
1000                         $author = html_entity_decode($matches[1], ENT_QUOTES, 'UTF-8');
1001                 }
1002
1003                 preg_match('/author="(.*?)"/ism', $attributes, $matches);
1004                 if (x($matches, 1)) {
1005                         $author = $matches[1];
1006                 }
1007
1008                 $profile = "";
1009                 preg_match("/profile='(.*?)'/ism", $attributes, $matches);
1010                 if (x($matches, 1)) {
1011                         $profile = $matches[1];
1012                 }
1013
1014                 preg_match('/profile="(.*?)"/ism', $attributes, $matches);
1015                 if (x($matches, 1)) {
1016                         $profile = $matches[1];
1017                 }
1018
1019                 $avatar = "";
1020                 preg_match("/avatar='(.*?)'/ism", $attributes, $matches);
1021                 if (x($matches, 1)) {
1022                         $avatar = $matches[1];
1023                 }
1024
1025                 preg_match('/avatar="(.*?)"/ism', $attributes, $matches);
1026                 if (x($matches, 1)) {
1027                         $avatar = $matches[1];
1028                 }
1029
1030                 $link = "";
1031                 preg_match("/link='(.*?)'/ism", $attributes, $matches);
1032                 if (x($matches, 1)) {
1033                         $link = $matches[1];
1034                 }
1035
1036                 preg_match('/link="(.*?)"/ism', $attributes, $matches);
1037                 if (x($matches, 1)) {
1038                         $link = $matches[1];
1039                 }
1040
1041                 $posted = "";
1042
1043                 preg_match("/posted='(.*?)'/ism", $attributes, $matches);
1044                 if (x($matches, 1)) {
1045                         $posted = $matches[1];
1046                 }
1047
1048                 preg_match('/posted="(.*?)"/ism', $attributes, $matches);
1049                 if (x($matches, 1)) {
1050                         $posted = $matches[1];
1051                 }
1052
1053                 // We only call this so that a previously unknown contact can be added.
1054                 // This is important for the function "Model\Contact::getDetailsByURL()".
1055                 // This function then can fetch an entry from the contact table.
1056                 Contact::getIdForURL($profile, 0, true);
1057
1058                 $data = Contact::getDetailsByURL($profile);
1059
1060                 if (x($data, "name") && x($data, "addr")) {
1061                         $userid_compact = $data["name"] . " (" . $data["addr"] . ")";
1062                 } else {
1063                         $userid_compact = Protocol::getAddrFromProfileUrl($profile, $author);
1064                 }
1065
1066                 if (x($data, "addr")) {
1067                         $userid = $data["addr"];
1068                 } else {
1069                         $userid = Protocol::formatMention($profile, $author);
1070                 }
1071
1072                 if (x($data, "name")) {
1073                         $author = $data["name"];
1074                 }
1075
1076                 if (x($data, "micro")) {
1077                         $avatar = $data["micro"];
1078                 }
1079
1080                 $preshare = trim($share[1]);
1081                 if ($preshare != "") {
1082                         $preshare .= "<br />";
1083                 }
1084
1085                 switch ($simplehtml) {
1086                         case 1:
1087                                 $text = $preshare . html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8') . ' <a href="' . $profile . '">' . $userid . "</a>: <br />»" . $share[3] . "«";
1088                                 break;
1089                         case 2:
1090                                 $text = $preshare . html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8') . ' ' . $userid_compact . ": <br />" . $share[3];
1091                                 break;
1092                         case 3: // Diaspora
1093                                 $headline = '<b>' . html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8') . $userid . ':</b><br />';
1094
1095                                 $text = trim($share[1]);
1096
1097                                 if ($text != "") {
1098                                         $text .= "<hr />";
1099                                 }
1100
1101                                 if (stripos(normalise_link($link), 'http://twitter.com/') === 0) {
1102                                         $text .= '<br /><a href="' . $link . '">' . $link . '</a>';
1103                                 } else {
1104                                         $text .= $headline . '<blockquote>' . trim($share[3]) . "</blockquote><br />";
1105
1106                                         if ($link != "") {
1107                                                 $text .= '<br /><a href="' . $link . '">[l]</a>';
1108                                         }
1109                                 }
1110
1111                                 break;
1112                         case 4:
1113                                 $headline = '<br /><b>' . html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
1114                                 $headline .= L10n::t('<a href="%1$s" target="_blank">%2$s</a> %3$s', $link, $userid, $posted);
1115                                 $headline .= ":</b><br />";
1116
1117                                 $text = trim($share[1]);
1118
1119                                 if ($text != "") {
1120                                         $text .= "<hr />";
1121                                 }
1122
1123                                 $text .= $headline . '<blockquote class="shared_content">' . trim($share[3]) . "</blockquote><br />";
1124
1125                                 break;
1126                         case 5:
1127                                 $text = $preshare . html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8') . ' ' . $userid_compact . ": <br />" . $share[3];
1128                                 break;
1129                         case 6: // app.net
1130                                 $text = $preshare . "&gt;&gt; @" . $userid_compact . ": <br />" . $share[3];
1131                                 break;
1132                         case 7: // statusnet/GNU Social
1133                                 $text = $preshare . html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8') . " @" . $userid_compact . ": " . $share[3];
1134                                 break;
1135                         case 8: // twitter
1136                                 $text = $preshare . "RT @" . $userid_compact . ": " . $share[3];
1137                                 break;
1138                         case 9: // Google+/Facebook
1139                                 $text = $preshare . html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8') . ' ' . $userid_compact . ": <br />" . $share[3];
1140
1141                                 if ($link != "") {
1142                                         $text .= "<br /><br />" . $link;
1143                                 }
1144                                 break;
1145                         default:
1146                                 // Transforms quoted tweets in rich attachments to avoid nested tweets
1147                                 if (stripos(normalise_link($link), 'http://twitter.com/') === 0 && OEmbed::isAllowedURL($link)) {
1148                                         try {
1149                                                 $oembed = OEmbed::getHTML($link, $preshare);
1150                                         } catch (Exception $e) {
1151                                                 $oembed = sprintf('[bookmark=%s]%s[/bookmark]', $link, $preshare);
1152                                         }
1153
1154                                         $text = $preshare . $oembed;
1155                                 } else {
1156                                         $text = trim($share[1]) . "\n";
1157
1158                                         $avatar = proxy_url($avatar, false, PROXY_SIZE_THUMB);
1159
1160                                         $tpl = get_markup_template('shared_content.tpl');
1161                                         $text .= replace_macros($tpl, [
1162                                                 '$profile' => $profile,
1163                                                 '$avatar' => $avatar,
1164                                                 '$author' => $author,
1165                                                 '$link' => $link,
1166                                                 '$posted' => $posted,
1167                                                 '$content' => trim($share[3])
1168                                         ]);
1169                                 }
1170                                 break;
1171                 }
1172
1173                 return $text;
1174         }
1175
1176         private static function removePictureLinksCallback($match)
1177         {
1178                 $text = Cache::get($match[1]);
1179
1180                 if (is_null($text)) {
1181                         $a = self::getApp();
1182
1183                         $stamp1 = microtime(true);
1184
1185                         $ch = @curl_init($match[1]);
1186                         @curl_setopt($ch, CURLOPT_NOBODY, true);
1187                         @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
1188                         @curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
1189                         @curl_exec($ch);
1190                         $curl_info = @curl_getinfo($ch);
1191
1192                         $a->save_timestamp($stamp1, "network");
1193
1194                         if (substr($curl_info["content_type"], 0, 6) == "image/") {
1195                                 $text = "[url=" . $match[1] . "]" . $match[1] . "[/url]";
1196                         } else {
1197                                 $text = "[url=" . $match[2] . "]" . $match[2] . "[/url]";
1198
1199                                 // if its not a picture then look if its a page that contains a picture link
1200                                 $body = Network::fetchUrl($match[1]);
1201
1202                                 $doc = new DOMDocument();
1203                                 @$doc->loadHTML($body);
1204                                 $xpath = new DOMXPath($doc);
1205                                 $list = $xpath->query("//meta[@name]");
1206                                 foreach ($list as $node) {
1207                                         $attr = [];
1208
1209                                         if ($node->attributes->length) {
1210                                                 foreach ($node->attributes as $attribute) {
1211                                                         $attr[$attribute->name] = $attribute->value;
1212                                                 }
1213                                         }
1214
1215                                         if (strtolower($attr["name"]) == "twitter:image") {
1216                                                 $text = "[url=" . $attr["content"] . "]" . $attr["content"] . "[/url]";
1217                                         }
1218                                 }
1219                         }
1220                         Cache::set($match[1], $text);
1221                 }
1222
1223                 return $text;
1224         }
1225
1226         private static function expandLinksCallback($match)
1227         {
1228                 if (($match[3] == "") || ($match[2] == $match[3]) || stristr($match[2], $match[3])) {
1229                         return ($match[1] . "[url]" . $match[2] . "[/url]");
1230                 } else {
1231                         return ($match[1] . $match[3] . " [url]" . $match[2] . "[/url]");
1232                 }
1233         }
1234
1235         private static function cleanPictureLinksCallback($match)
1236         {
1237                 $text = Cache::get($match[1]);
1238
1239                 if (is_null($text)) {
1240                         $a = self::getApp();
1241
1242                         $stamp1 = microtime(true);
1243
1244                         $ch = @curl_init($match[1]);
1245                         @curl_setopt($ch, CURLOPT_NOBODY, true);
1246                         @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
1247                         @curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
1248                         @curl_exec($ch);
1249                         $curl_info = @curl_getinfo($ch);
1250
1251                         $a->save_timestamp($stamp1, "network");
1252
1253                         // if its a link to a picture then embed this picture
1254                         if (substr($curl_info["content_type"], 0, 6) == "image/") {
1255                                 $text = "[img]" . $match[1] . "[/img]";
1256                         } else {
1257                                 $text = "[img]" . $match[2] . "[/img]";
1258
1259                                 // if its not a picture then look if its a page that contains a picture link
1260                                 $body = Network::fetchUrl($match[1]);
1261
1262                                 $doc = new DOMDocument();
1263                                 @$doc->loadHTML($body);
1264                                 $xpath = new DOMXPath($doc);
1265                                 $list = $xpath->query("//meta[@name]");
1266                                 foreach ($list as $node) {
1267                                         $attr = [];
1268                                         if ($node->attributes->length) {
1269                                                 foreach ($node->attributes as $attribute) {
1270                                                         $attr[$attribute->name] = $attribute->value;
1271                                                 }
1272                                         }
1273
1274                                         if (strtolower($attr["name"]) == "twitter:image") {
1275                                                 $text = "[img]" . $attr["content"] . "[/img]";
1276                                         }
1277                                 }
1278                         }
1279                         Cache::set($match[1], $text);
1280                 }
1281
1282                 return $text;
1283         }
1284
1285         public static function cleanPictureLinks($text)
1286         {
1287                 $return = preg_replace_callback("&\[url=([^\[\]]*)\]\[img\](.*)\[\/img\]\[\/url\]&Usi", 'self::cleanPictureLinksCallback', $text);
1288                 return $return;
1289         }
1290
1291         private static function textHighlightCallback($match)
1292         {
1293                 if (in_array(strtolower($match[1]),
1294                                 ['php', 'css', 'mysql', 'sql', 'abap', 'diff', 'html', 'perl', 'ruby',
1295                                 'vbscript', 'avrc', 'dtd', 'java', 'xml', 'cpp', 'python', 'javascript', 'js', 'sh'])
1296                 ) {
1297                         return text_highlight($match[2], strtolower($match[1]));
1298                 }
1299                 return $match[0];
1300         }
1301
1302         /**
1303          * @brief Converts a BBCode message to HTML message
1304          *
1305          * BBcode 2 HTML was written by WAY2WEB.net
1306          * extended to work with Mistpark/Friendica - Mike Macgirvin
1307          *
1308          * Simple HTML values meaning:
1309          * - 0: Friendica display
1310          * - 1: Unused
1311          * - 2: Used for Facebook, Google+, Windows Phone push, Friendica API
1312          * - 3: Used before converting to Markdown in bb2diaspora.php
1313          * - 4: Used for WordPress, Libertree (before Markdown), pump.io and tumblr
1314          * - 5: Unused
1315          * - 6: Used for Appnet
1316          * - 7: Used for dfrn, OStatus
1317          * - 8: Used for WP backlink text setting
1318          *
1319          * @param string $text
1320          * @param bool   $try_oembed
1321          * @param int    $simple_html
1322          * @param bool   $for_plaintext
1323          * @return string
1324          */
1325         public static function convert($text, $try_oembed = true, $simple_html = false, $for_plaintext = false)
1326         {
1327                 $a = self::getApp();
1328
1329                 /*
1330                  * preg_match_callback function to replace potential Oembed tags with Oembed content
1331                  *
1332                  * $match[0] = [tag]$url[/tag] or [tag=$url]$title[/tag]
1333                  * $match[1] = $url
1334                  * $match[2] = $title or absent
1335                  */
1336                 $try_oembed_callback = function ($match)
1337                 {
1338                         $url = $match[1];
1339                         $title = defaults($match, 2, null);
1340
1341                         try {
1342                                 $return = OEmbed::getHTML($url, $title);
1343                         } catch (Exception $ex) {
1344                                 $return = $match[0];
1345                         }
1346
1347                         return $return;
1348                 };
1349
1350                 // Hide all [noparse] contained bbtags by spacefying them
1351                 // POSSIBLE BUG --> Will the 'preg' functions crash if there's an embedded image?
1352
1353                 $text = preg_replace_callback("/\[noparse\](.*?)\[\/noparse\]/ism", 'self::escapeNoparseCallback', $text);
1354                 $text = preg_replace_callback("/\[nobb\](.*?)\[\/nobb\]/ism", 'self::escapeNoparseCallback', $text);
1355                 $text = preg_replace_callback("/\[pre\](.*?)\[\/pre\]/ism", 'self::escapeNoparseCallback', $text);
1356
1357                 // Remove the abstract element. It is a non visible element.
1358                 $text = self::stripAbstract($text);
1359
1360                 // Move all spaces out of the tags
1361                 $text = preg_replace("/\[(\w*)\](\s*)/ism", '$2[$1]', $text);
1362                 $text = preg_replace("/(\s*)\[\/(\w*)\]/ism", '[/$2]$1', $text);
1363
1364                 // Extract the private images which use data urls since preg has issues with
1365                 // large data sizes. Stash them away while we do bbcode conversion, and then put them back
1366                 // in after we've done all the regex matching. We cannot use any preg functions to do this.
1367
1368                 $extracted = self::extractImagesFromItemBody($text);
1369                 $text = $extracted['body'];
1370                 $saved_image = $extracted['images'];
1371
1372                 // If we find any event code, turn it into an event.
1373                 // After we're finished processing the bbcode we'll
1374                 // replace all of the event code with a reformatted version.
1375
1376                 $ev = Event::fromBBCode($text);
1377
1378                 // Replace any html brackets with HTML Entities to prevent executing HTML or script
1379                 // Don't use strip_tags here because it breaks [url] search by replacing & with amp
1380
1381                 $text = str_replace("<", "&lt;", $text);
1382                 $text = str_replace(">", "&gt;", $text);
1383
1384                 // remove some newlines before the general conversion
1385                 $text = preg_replace("/\s?\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "[share$1]$2[/share]", $text);
1386                 $text = preg_replace("/\s?\[quote(.*?)\]\s?(.*?)\s?\[\/quote\]\s?/ism", "[quote$1]$2[/quote]", $text);
1387
1388                 $text = preg_replace("/\n\[code\]/ism", "[code]", $text);
1389                 $text = preg_replace("/\[\/code\]\n/ism", "[/code]", $text);
1390
1391                 // when the content is meant exporting to other systems then remove the avatar picture since this doesn't really look good on these systems
1392                 if (!$try_oembed) {
1393                         $text = preg_replace("/\[share(.*?)avatar\s?=\s?'.*?'\s?(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "\n[share$1$2]$3[/share]", $text);
1394                 }
1395
1396                 // Check for [code] text here, before the linefeeds are messed with.
1397                 // The highlighter will unescape and re-escape the content.
1398                 if (strpos($text, '[code=') !== false) {
1399                         $text = preg_replace_callback("/\[code=(.*?)\](.*?)\[\/code\]/ism", 'self::textHighlightCallback', $text);
1400                 }
1401                 // Convert new line chars to html <br /> tags
1402
1403                 // nlbr seems to be hopelessly messed up
1404                 //      $Text = nl2br($Text);
1405
1406                 // We'll emulate it.
1407
1408                 $text = trim($text);
1409                 $text = str_replace("\r\n", "\n", $text);
1410
1411                 // removing multiplicated newlines
1412                 if (Config::get("system", "remove_multiplicated_lines")) {
1413                         $search = ["\n\n\n", "\n ", " \n", "[/quote]\n\n", "\n[/quote]", "[/li]\n", "\n[li]", "\n[ul]", "[/ul]\n", "\n\n[share ", "[/attachment]\n",
1414                                         "\n[h1]", "[/h1]\n", "\n[h2]", "[/h2]\n", "\n[h3]", "[/h3]\n", "\n[h4]", "[/h4]\n", "\n[h5]", "[/h5]\n", "\n[h6]", "[/h6]\n"];
1415                         $replace = ["\n\n", "\n", "\n", "[/quote]\n", "[/quote]", "[/li]", "[li]", "[ul]", "[/ul]", "\n[share ", "[/attachment]",
1416                                         "[h1]", "[/h1]", "[h2]", "[/h2]", "[h3]", "[/h3]", "[h4]", "[/h4]", "[h5]", "[/h5]", "[h6]", "[/h6]"];
1417                         do {
1418                                 $oldtext = $text;
1419                                 $text = str_replace($search, $replace, $text);
1420                         } while ($oldtext != $text);
1421                 }
1422
1423                 // Set up the parameters for a URL search string
1424                 $URLSearchString = "^\[\]";
1425                 // Set up the parameters for a MAIL search string
1426                 $MAILSearchString = $URLSearchString;
1427
1428                 // if the HTML is used to generate plain text, then don't do this search, but replace all URL of that kind to text
1429                 if (!$for_plaintext) {
1430                         // Autolink feature (thanks to http://code.seebz.net/p/autolink-php/)
1431                         // Currently disabled, since the function is too greedy
1432                         // $autolink_regex = "`([^\]\=\"']|^)(https?\://[^\s<]+[^\s<\.\)])`ism";
1433                         $autolink_regex = "/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism";
1434                         $text = preg_replace($autolink_regex, '$1[url]$2[/url]', $text);
1435                         if ($simple_html == 7) {
1436                                 $text = preg_replace_callback("/\[url\]([$URLSearchString]*)\[\/url\]/ism", 'self::convertUrlForOStatusCallback', $text);
1437                                 $text = preg_replace_callback("/\[url\=([$URLSearchString]*)\]([$URLSearchString]*)\[\/url\]/ism", 'self::convertUrlForOStatusCallback', $text);
1438                         }
1439                 } else {
1440                         $text = preg_replace("(\[url\]([$URLSearchString]*)\[\/url\])ism", " $1 ", $text);
1441                         $text = preg_replace_callback("&\[url=([^\[\]]*)\]\[img\](.*)\[\/img\]\[\/url\]&Usi", 'self::removePictureLinksCallback', $text);
1442                 }
1443
1444
1445                 // Handle attached links or videos
1446                 $text = self::convertAttachment($text, $simple_html, $try_oembed);
1447
1448                 $text = str_replace(["\r","\n"], ['<br />', '<br />'], $text);
1449
1450                 // Remove all hashtag addresses
1451                 if ((!$try_oembed || $simple_html) && !in_array($simple_html, [3, 7])) {
1452                         $text = preg_replace("/([#@!])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $text);
1453                 } elseif ($simple_html == 3) {
1454                         // The ! is converted to @ since Diaspora only understands the @
1455                         $text = preg_replace("/([@!])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1456                                 '@<a href="$2">$3</a>',
1457                                 $text);
1458                 } elseif ($simple_html == 7) {
1459                         $text = preg_replace("/([@!])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1460                                 '$1<span class="vcard"><a href="$2" class="url" title="$3"><span class="fn nickname mention">$3</span></a></span>',
1461                                 $text);
1462                 } elseif (!$simple_html) {
1463                         $text = preg_replace("/([@!])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1464                                 '$1<a href="$2" class="userinfo mention" title="$3">$3</a>',
1465                                 $text);
1466                 }
1467
1468                 // Bookmarks in red - will be converted to bookmarks in friendica
1469                 $text = preg_replace("/#\^\[url\]([$URLSearchString]*)\[\/url\]/ism", '[bookmark=$1]$1[/bookmark]', $text);
1470                 $text = preg_replace("/#\^\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[bookmark=$1]$2[/bookmark]', $text);
1471                 $text = preg_replace("/#\[url\=[$URLSearchString]*\]\^\[\/url\]\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/i",
1472                                         "[bookmark=$1]$2[/bookmark]", $text);
1473
1474                 if (in_array($simple_html, [2, 6, 7, 8, 9])) {
1475                         $text = preg_replace_callback("/([^#@!])\[url\=([^\]]*)\](.*?)\[\/url\]/ism", "self::expandLinksCallback", $text);
1476                         //$Text = preg_replace("/[^#@!]\[url\=([^\]]*)\](.*?)\[\/url\]/ism", ' $2 [url]$1[/url]', $Text);
1477                         $text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", ' $2 [url]$1[/url]',$text);
1478                 }
1479
1480                 if ($simple_html == 5) {
1481                         $text = preg_replace("/[^#@!]\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[url]$1[/url]', $text);
1482                 }
1483
1484                 // Perform URL Search
1485                 if ($try_oembed) {
1486                         $text = preg_replace_callback("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", $try_oembed_callback, $text);
1487                 }
1488
1489                 if ($simple_html == 5) {
1490                         $text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", '[url]$1[/url]', $text);
1491                 } else {
1492                         $text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", '[url=$1]$2[/url]', $text);
1493                 }
1494
1495                 // Handle Diaspora posts
1496                 $text = preg_replace_callback(
1497                         "&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi",
1498                         function ($match) {
1499                                 return "[url=" . System::baseUrl() . "/display/" . $match[1] . "]" . $match[2] . "[/url]";
1500                         }, $text
1501                 );
1502
1503                 // Server independent link to posts and comments
1504                 // See issue: https://github.com/diaspora/diaspora_federation/issues/75
1505                 $expression = "=diaspora://.*?/post/([0-9A-Za-z\-_@.:]{15,254}[0-9A-Za-z])=ism";
1506                 $text = preg_replace($expression, System::baseUrl()."/display/$1", $text);
1507
1508                 $text = preg_replace("/([#])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1509                                         '$1<a href="' . System::baseUrl() . '/search?tag=$3" class="tag" title="$3">$3</a>', $text);
1510
1511                 $text = preg_replace("/\[url\=([$URLSearchString]*)\]#(.*?)\[\/url\]/ism",
1512                                         '#<a href="' . System::baseUrl() . '/search?tag=$2" class="tag" title="$2">$2</a>', $text);
1513
1514                 $text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/ism", '<a href="$1" target="_blank">$1</a>', $text);
1515                 $text = preg_replace("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '<a href="$1" target="_blank">$2</a>', $text);
1516                 //$Text = preg_replace("/\[url\=([$URLSearchString]*)\]([$URLSearchString]*)\[\/url\]/ism", '<a href="$1" target="_blank">$2</a>', $Text);
1517
1518                 // Red compatibility, though the link can't be authenticated on Friendica
1519                 $text = preg_replace("/\[zrl\=([$URLSearchString]*)\](.*?)\[\/zrl\]/ism", '<a href="$1" target="_blank">$2</a>', $text);
1520
1521
1522                 // we may need to restrict this further if it picks up too many strays
1523                 // link acct:user@host to a webfinger profile redirector
1524
1525                 $text = preg_replace('/acct:([^@]+)@((?!\-)(?:[a-zA-Z\d\-]{0,62}[a-zA-Z\d]\.){1,126}(?!\d+)[a-zA-Z\d]{1,63})/', '<a href="' . System::baseUrl() . '/acctlink?addr=$1@$2" target="extlink">acct:$1@$2</a>', $text);
1526
1527                 // Perform MAIL Search
1528                 $text = preg_replace("/\[mail\]([$MAILSearchString]*)\[\/mail\]/", '<a href="mailto:$1">$1</a>', $text);
1529                 $text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.*?)\[\/mail\]/", '<a href="mailto:$1">$2</a>', $text);
1530
1531                 // leave open the posibility of [map=something]
1532                 // this is replaced in prepare_body() which has knowledge of the item location
1533
1534                 if (strpos($text, '[/map]') !== false) {
1535                         $text = preg_replace_callback(
1536                                 "/\[map\](.*?)\[\/map\]/ism",
1537                                 function ($match) use ($simple_html) {
1538                                         return str_replace($match[0], '<p class="map">' . Map::byLocation($match[1], $simple_html) . '</p>', $match[0]);
1539                                 },
1540                                 $text
1541                         );
1542                 }
1543                 if (strpos($text, '[map=') !== false) {
1544                         $text = preg_replace_callback(
1545                                 "/\[map=(.*?)\]/ism",
1546                                 function ($match) use ($simple_html) {
1547                                         return str_replace($match[0], '<p class="map">' . Map::byCoordinates(str_replace('/', ' ', $match[1]), $simple_html) . '</p>', $match[0]);
1548                                 },
1549                                 $text
1550                         );
1551                 }
1552                 if (strpos($text, '[map]') !== false) {
1553                         $text = preg_replace("/\[map\]/", '<p class="map"></p>', $text);
1554                 }
1555
1556                 // Check for headers
1557                 $text = preg_replace("(\[h1\](.*?)\[\/h1\])ism", '<h1>$1</h1>', $text);
1558                 $text = preg_replace("(\[h2\](.*?)\[\/h2\])ism", '<h2>$1</h2>', $text);
1559                 $text = preg_replace("(\[h3\](.*?)\[\/h3\])ism", '<h3>$1</h3>', $text);
1560                 $text = preg_replace("(\[h4\](.*?)\[\/h4\])ism", '<h4>$1</h4>', $text);
1561                 $text = preg_replace("(\[h5\](.*?)\[\/h5\])ism", '<h5>$1</h5>', $text);
1562                 $text = preg_replace("(\[h6\](.*?)\[\/h6\])ism", '<h6>$1</h6>', $text);
1563
1564                 // Check for paragraph
1565                 $text = preg_replace("(\[p\](.*?)\[\/p\])ism", '<p>$1</p>', $text);
1566
1567                 // Check for bold text
1568                 $text = preg_replace("(\[b\](.*?)\[\/b\])ism", '<strong>$1</strong>', $text);
1569
1570                 // Check for Italics text
1571                 $text = preg_replace("(\[i\](.*?)\[\/i\])ism", '<em>$1</em>', $text);
1572
1573                 // Check for Underline text
1574                 $text = preg_replace("(\[u\](.*?)\[\/u\])ism", '<u>$1</u>', $text);
1575
1576                 // Check for strike-through text
1577                 $text = preg_replace("(\[s\](.*?)\[\/s\])ism", '<strike>$1</strike>', $text);
1578
1579                 // Check for over-line text
1580                 $text = preg_replace("(\[o\](.*?)\[\/o\])ism", '<span class="overline">$1</span>', $text);
1581
1582                 // Check for colored text
1583                 $text = preg_replace("(\[color=(.*?)\](.*?)\[\/color\])ism", "<span style=\"color: $1;\">$2</span>", $text);
1584
1585                 // Check for sized text
1586                 // [size=50] --> font-size: 50px (with the unit).
1587                 $text = preg_replace("(\[size=(\d*?)\](.*?)\[\/size\])ism", "<span style=\"font-size: $1px; line-height: initial;\">$2</span>", $text);
1588                 $text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])ism", "<span style=\"font-size: $1; line-height: initial;\">$2</span>", $text);
1589
1590                 // Check for centered text
1591                 $text = preg_replace("(\[center\](.*?)\[\/center\])ism", "<div style=\"text-align:center;\">$1</div>", $text);
1592
1593                 // Check for list text
1594                 $text = str_replace("[*]", "<li>", $text);
1595
1596                 // Check for style sheet commands
1597                 $text = preg_replace_callback(
1598                         "(\[style=(.*?)\](.*?)\[\/style\])ism",
1599                         function ($match) {
1600                                 return "<span style=\"" . HTML::sanitizeCSS($match[1]) . ";\">" . $match[2] . "</span>";
1601                         },
1602                         $text
1603                 );
1604
1605                 // Check for CSS classes
1606                 $text = preg_replace_callback(
1607                         "(\[class=(.*?)\](.*?)\[\/class\])ism",
1608                         function ($match) {
1609                                 return "<span class=\"" . HTML::sanitizeCSS($match[1]) . "\">" . $match[2] . "</span>";
1610                         },
1611                         $text
1612                 );
1613
1614                 // handle nested lists
1615                 $endlessloop = 0;
1616
1617                 while ((((strpos($text, "[/list]") !== false) && (strpos($text, "[list") !== false)) ||
1618                            ((strpos($text, "[/ol]") !== false) && (strpos($text, "[ol]") !== false)) ||
1619                            ((strpos($text, "[/ul]") !== false) && (strpos($text, "[ul]") !== false)) ||
1620                            ((strpos($text, "[/li]") !== false) && (strpos($text, "[li]") !== false))) && (++$endlessloop < 20)) {
1621                         $text = preg_replace("/\[list\](.*?)\[\/list\]/ism", '<ul class="listbullet" style="list-style-type: circle;">$1</ul>', $text);
1622                         $text = preg_replace("/\[list=\](.*?)\[\/list\]/ism", '<ul class="listnone" style="list-style-type: none;">$1</ul>', $text);
1623                         $text = preg_replace("/\[list=1\](.*?)\[\/list\]/ism", '<ul class="listdecimal" style="list-style-type: decimal;">$1</ul>', $text);
1624                         $text = preg_replace("/\[list=((?-i)i)\](.*?)\[\/list\]/ism", '<ul class="listlowerroman" style="list-style-type: lower-roman;">$2</ul>', $text);
1625                         $text = preg_replace("/\[list=((?-i)I)\](.*?)\[\/list\]/ism", '<ul class="listupperroman" style="list-style-type: upper-roman;">$2</ul>', $text);
1626                         $text = preg_replace("/\[list=((?-i)a)\](.*?)\[\/list\]/ism", '<ul class="listloweralpha" style="list-style-type: lower-alpha;">$2</ul>', $text);
1627                         $text = preg_replace("/\[list=((?-i)A)\](.*?)\[\/list\]/ism", '<ul class="listupperalpha" style="list-style-type: upper-alpha;">$2</ul>', $text);
1628                         $text = preg_replace("/\[ul\](.*?)\[\/ul\]/ism", '<ul class="listbullet" style="list-style-type: circle;">$1</ul>', $text);
1629                         $text = preg_replace("/\[ol\](.*?)\[\/ol\]/ism", '<ul class="listdecimal" style="list-style-type: decimal;">$1</ul>', $text);
1630                         $text = preg_replace("/\[li\](.*?)\[\/li\]/ism", '<li>$1</li>', $text);
1631                 }
1632
1633                 $text = preg_replace("/\[th\](.*?)\[\/th\]/sm", '<th>$1</th>', $text);
1634                 $text = preg_replace("/\[td\](.*?)\[\/td\]/sm", '<td>$1</td>', $text);
1635                 $text = preg_replace("/\[tr\](.*?)\[\/tr\]/sm", '<tr>$1</tr>', $text);
1636                 $text = preg_replace("/\[table\](.*?)\[\/table\]/sm", '<table>$1</table>', $text);
1637
1638                 $text = preg_replace("/\[table border=1\](.*?)\[\/table\]/sm", '<table border="1" >$1</table>', $text);
1639                 $text = preg_replace("/\[table border=0\](.*?)\[\/table\]/sm", '<table border="0" >$1</table>', $text);
1640
1641                 $text = str_replace('[hr]', '<hr />', $text);
1642
1643                 // This is actually executed in prepare_body()
1644
1645                 $text = str_replace('[nosmile]', '', $text);
1646
1647                 // Check for font change text
1648                 $text = preg_replace("/\[font=(.*?)\](.*?)\[\/font\]/sm", "<span style=\"font-family: $1;\">$2</span>", $text);
1649
1650                 // Declare the format for [code] layout
1651
1652                 $CodeLayout = '<code>$1</code>';
1653                 // Check for [code] text
1654                 $text = preg_replace("/\[code\](.*?)\[\/code\]/ism", "$CodeLayout", $text);
1655
1656                 // Declare the format for [spoiler] layout
1657                 $SpoilerLayout = '<blockquote class="spoiler">$1</blockquote>';
1658
1659                 // Check for [spoiler] text
1660                 // handle nested quotes
1661                 $endlessloop = 0;
1662                 while ((strpos($text, "[/spoiler]") !== false) && (strpos($text, "[spoiler]") !== false) && (++$endlessloop < 20)) {
1663                         $text = preg_replace("/\[spoiler\](.*?)\[\/spoiler\]/ism", "$SpoilerLayout", $text);
1664                 }
1665
1666                 // Check for [spoiler=Author] text
1667
1668                 $t_wrote = L10n::t('$1 wrote:');
1669
1670                 // handle nested quotes
1671                 $endlessloop = 0;
1672                 while ((strpos($text, "[/spoiler]")!== false)  && (strpos($text, "[spoiler=") !== false) && (++$endlessloop < 20)) {
1673                         $text = preg_replace("/\[spoiler=[\"\']*(.*?)[\"\']*\](.*?)\[\/spoiler\]/ism",
1674                                                  "<br /><strong class=".'"spoiler"'.">" . $t_wrote . "</strong><blockquote class=".'"spoiler"'.">$2</blockquote>",
1675                                                  $text);
1676                 }
1677
1678                 // Declare the format for [quote] layout
1679                 $QuoteLayout = '<blockquote>$1</blockquote>';
1680
1681                 // Check for [quote] text
1682                 // handle nested quotes
1683                 $endlessloop = 0;
1684                 while ((strpos($text, "[/quote]") !== false) && (strpos($text, "[quote]") !== false) && (++$endlessloop < 20)) {
1685                         $text = preg_replace("/\[quote\](.*?)\[\/quote\]/ism", "$QuoteLayout", $text);
1686                 }
1687
1688                 // Check for [quote=Author] text
1689
1690                 $t_wrote = L10n::t('$1 wrote:');
1691
1692                 // handle nested quotes
1693                 $endlessloop = 0;
1694                 while ((strpos($text, "[/quote]")!== false)  && (strpos($text, "[quote=") !== false) && (++$endlessloop < 20)) {
1695                         $text = preg_replace("/\[quote=[\"\']*(.*?)[\"\']*\](.*?)\[\/quote\]/ism",
1696                                                  "<p><strong class=".'"author"'.">" . $t_wrote . "</strong></p><blockquote>$2</blockquote>",
1697                                                  $text);
1698                 }
1699
1700
1701                 // [img=widthxheight]image source[/img]
1702                 $text = preg_replace_callback(
1703                         "/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism",
1704                         function ($matches) {
1705                                 if (strpos($matches[3], "data:image/") === 0) {
1706                                         return $matches[0];
1707                                 }
1708
1709                                 $matches[3] = proxy_url($matches[3]);
1710                                 return "[img=" . $matches[1] . "x" . $matches[2] . "]" . $matches[3] . "[/img]";
1711                         },
1712                         $text
1713                 );
1714
1715                 $text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '<img src="$3" style="width: $1px;" >', $text);
1716                 $text = preg_replace("/\[zmg\=([0-9]*)x([0-9]*)\](.*?)\[\/zmg\]/ism", '<img class="zrl" src="$3" style="width: $1px;" >', $text);
1717
1718                 // Images
1719                 // [img]pathtoimage[/img]
1720                 $text = preg_replace_callback(
1721                         "/\[img\](.*?)\[\/img\]/ism",
1722                         function ($matches) {
1723                                 if (strpos($matches[1], "data:image/") === 0) {
1724                                         return $matches[0];
1725                                 }
1726
1727                                 $matches[1] = proxy_url($matches[1]);
1728                                 return "[img]" . $matches[1] . "[/img]";
1729                         },
1730                         $text
1731                 );
1732
1733                 $text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '<img src="$1" alt="' . L10n::t('Image/photo') . '" />', $text);
1734                 $text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '<img src="$1" alt="' . L10n::t('Image/photo') . '" />', $text);
1735
1736                 // Shared content
1737                 $text = preg_replace_callback("/(.*?)\[share(.*?)\](.*?)\[\/share\]/ism",
1738                         function ($match) use ($simple_html) {
1739                                 return self::convertShare($match, $simple_html);
1740                         }, $text);
1741
1742                 $text = preg_replace("/\[crypt\](.*?)\[\/crypt\]/ism", '<br/><img src="' .System::baseUrl() . '/images/lock_icon.gif" alt="' . L10n::t('Encrypted content') . '" title="' . L10n::t('Encrypted content') . '" /><br />', $text);
1743                 $text = preg_replace("/\[crypt(.*?)\](.*?)\[\/crypt\]/ism", '<br/><img src="' .System::baseUrl() . '/images/lock_icon.gif" alt="' . L10n::t('Encrypted content') . '" title="' . '$1' . ' ' . L10n::t('Encrypted content') . '" /><br />', $text);
1744                 //$Text = preg_replace("/\[crypt=(.*?)\](.*?)\[\/crypt\]/ism", '<br/><img src="' .System::baseUrl() . '/images/lock_icon.gif" alt="' . L10n::t('Encrypted content') . '" title="' . '$1' . ' ' . L10n::t('Encrypted content') . '" /><br />', $Text);
1745
1746                 // Try to Oembed
1747                 if ($try_oembed) {
1748                         $text = preg_replace("/\[video\](.*?\.(ogg|ogv|oga|ogm|webm|mp4))\[\/video\]/ism", '<video src="$1" controls="controls" width="' . $a->videowidth . '" height="' . $a->videoheight . '" loop="true"><a href="$1">$1</a></video>', $text);
1749                         $text = preg_replace("/\[audio\](.*?\.(ogg|ogv|oga|ogm|webm|mp4|mp3))\[\/audio\]/ism", '<audio src="$1" controls="controls"><a href="$1">$1</a></audio>', $text);
1750
1751                         $text = preg_replace_callback("/\[video\](.*?)\[\/video\]/ism", $try_oembed_callback, $text);
1752                         $text = preg_replace_callback("/\[audio\](.*?)\[\/audio\]/ism", $try_oembed_callback, $text);
1753                 } else {
1754                         $text = preg_replace("/\[video\](.*?)\[\/video\]/",
1755                                                 '<a href="$1" target="_blank">$1</a>', $text);
1756                         $text = preg_replace("/\[audio\](.*?)\[\/audio\]/",
1757                                                 '<a href="$1" target="_blank">$1</a>', $text);
1758                 }
1759
1760                 // html5 video and audio
1761
1762
1763                 if ($try_oembed) {
1764                         $text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/ism", '<iframe src="$1" width="' . $a->videowidth . '" height="' . $a->videoheight . '"><a href="$1">$1</a></iframe>', $text);
1765                 } else {
1766                         $text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/ism", '<a href="$1">$1</a>', $text);
1767                 }
1768
1769                 // Youtube extensions
1770                 if ($try_oembed) {
1771                         $text = preg_replace_callback("/\[youtube\](https?:\/\/www.youtube.com\/watch\?v\=.*?)\[\/youtube\]/ism", $try_oembed_callback, $text);
1772                         $text = preg_replace_callback("/\[youtube\](www.youtube.com\/watch\?v\=.*?)\[\/youtube\]/ism", $try_oembed_callback, $text);
1773                         $text = preg_replace_callback("/\[youtube\](https?:\/\/youtu.be\/.*?)\[\/youtube\]/ism", $try_oembed_callback, $text);
1774                 }
1775
1776                 $text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $text);
1777                 $text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/embed\/(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $text);
1778                 $text = preg_replace("/\[youtube\]https?:\/\/youtu.be\/(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $text);
1779
1780                 if ($try_oembed) {
1781                         $text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism", '<iframe width="' . $a->videowidth . '" height="' . $a->videoheight . '" src="https://www.youtube.com/embed/$1" frameborder="0" ></iframe>', $text);
1782                 } else {
1783                         $text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism",
1784                                                 '<a href="https://www.youtube.com/watch?v=$1" target="_blank">https://www.youtube.com/watch?v=$1</a>', $text);
1785                 }
1786
1787                 if ($try_oembed) {
1788                         $text = preg_replace_callback("/\[vimeo\](https?:\/\/player.vimeo.com\/video\/[0-9]+).*?\[\/vimeo\]/ism", $try_oembed_callback, $text);
1789                         $text = preg_replace_callback("/\[vimeo\](https?:\/\/vimeo.com\/[0-9]+).*?\[\/vimeo\]/ism", $try_oembed_callback, $text);
1790                 }
1791
1792                 $text = preg_replace("/\[vimeo\]https?:\/\/player.vimeo.com\/video\/([0-9]+)(.*?)\[\/vimeo\]/ism", '[vimeo]$1[/vimeo]', $text);
1793                 $text = preg_replace("/\[vimeo\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/vimeo\]/ism", '[vimeo]$1[/vimeo]', $text);
1794
1795                 if ($try_oembed) {
1796                         $text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism", '<iframe width="' . $a->videowidth . '" height="' . $a->videoheight . '" src="https://player.vimeo.com/video/$1" frameborder="0" ></iframe>', $text);
1797                 } else {
1798                         $text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism",
1799                                                 '<a href="https://vimeo.com/$1" target="_blank">https://vimeo.com/$1</a>', $text);
1800                 }
1801
1802                 // oembed tag
1803                 $text = OEmbed::BBCode2HTML($text);
1804
1805                 // Avoid triple linefeeds through oembed
1806                 $text = str_replace("<br style='clear:left'></span><br /><br />", "<br style='clear:left'></span><br />", $text);
1807
1808                 // If we found an event earlier, strip out all the event code and replace with a reformatted version.
1809                 // Replace the event-start section with the entire formatted event. The other bbcode is stripped.
1810                 // Summary (e.g. title) is required, earlier revisions only required description (in addition to
1811                 // start which is always required). Allow desc with a missing summary for compatibility.
1812
1813                 if ((x($ev, 'desc') || x($ev, 'summary')) && x($ev, 'start')) {
1814                         $sub = Event::getHTML($ev, $simple_html);
1815
1816                         $text = preg_replace("/\[event\-summary\](.*?)\[\/event\-summary\]/ism", '', $text);
1817                         $text = preg_replace("/\[event\-description\](.*?)\[\/event\-description\]/ism", '', $text);
1818                         $text = preg_replace("/\[event\-start\](.*?)\[\/event\-start\]/ism", $sub, $text);
1819                         $text = preg_replace("/\[event\-finish\](.*?)\[\/event\-finish\]/ism", '', $text);
1820                         $text = preg_replace("/\[event\-location\](.*?)\[\/event\-location\]/ism", '', $text);
1821                         $text = preg_replace("/\[event\-adjust\](.*?)\[\/event\-adjust\]/ism", '', $text);
1822                         $text = preg_replace("/\[event\-id\](.*?)\[\/event\-id\]/ism", '', $text);
1823                 }
1824
1825                 // Replace non graphical smilies for external posts
1826                 if ($simple_html) {
1827                         $text = Smilies::replace($text, false, true);
1828                 }
1829
1830                 // Replace inline code blocks
1831                 $text = preg_replace_callback("|(?!<br[^>]*>)<code>([^<]*)</code>(?!<br[^>]*>)|ism",
1832                         function ($match) use ($simple_html) {
1833                                 $return = '<key>' . $match[1] . '</key>';
1834                                 // Use <code> for Diaspora inline code blocks
1835                                 if ($simple_html === 3) {
1836                                         $return = '<code>' . $match[1] . '</code>';
1837                                 }
1838                                 return $return;
1839                         }
1840                 , $text);
1841
1842                 // Unhide all [noparse] contained bbtags unspacefying them
1843                 // and triming the [noparse] tag.
1844
1845                 $text = preg_replace_callback("/\[noparse\](.*?)\[\/noparse\]/ism", 'self::unescapeNoparseCallback', $text);
1846                 $text = preg_replace_callback("/\[nobb\](.*?)\[\/nobb\]/ism", 'self::unescapeNoparseCallback', $text);
1847                 $text = preg_replace_callback("/\[pre\](.*?)\[\/pre\]/ism", 'self::unescapeNoparseCallback', $text);
1848
1849
1850                 $text = preg_replace('/\[\&amp\;([#a-z0-9]+)\;\]/', '&$1;', $text);
1851                 $text = preg_replace('/\&\#039\;/', '\'', $text);
1852                 $text = preg_replace('/\&quot\;/', '"', $text);
1853
1854                 // fix any escaped ampersands that may have been converted into links
1855                 $text = preg_replace('/\<([^>]*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism', '<$1$2=$3&$4>', $text);
1856
1857                 // sanitizes src attributes (http and redir URLs for displaying in a web page, cid used for inline images in emails)
1858                 $allowed_src_protocols = ['http', 'redir', 'cid'];
1859                 $text = preg_replace('#<([^>]*?)(src)="(?!' . implode('|', $allowed_src_protocols) . ')(.*?)"(.*?)>#ism',
1860                                          '<$1$2=""$4 data-original-src="$3" class="invalid-src" title="' . L10n::t('Invalid source protocol') . '">', $text);
1861
1862                 // sanitize href attributes (only whitelisted protocols URLs)
1863                 // default value for backward compatibility
1864                 $allowed_link_protocols = Config::get('system', 'allowed_link_protocols', ['ftp', 'mailto', 'gopher', 'cid']);
1865
1866                 // Always allowed protocol even if config isn't set or not including it
1867                 $allowed_link_protocols[] = 'http';
1868                 $allowed_link_protocols[] = 'redir/';
1869
1870                 $regex = '#<([^>]*?)(href)="(?!' . implode('|', $allowed_link_protocols) . ')(.*?)"(.*?)>#ism';
1871                 $text = preg_replace($regex, '<$1$2="javascript:void(0)"$4 data-original-href="$3" class="invalid-href" title="' . L10n::t('Invalid link protocol') . '">', $text);
1872
1873                 if ($saved_image) {
1874                         $text = self::interpolateSavedImagesIntoItemBody($text, $saved_image);
1875                 }
1876
1877                 // Clean up the HTML by loading and saving the HTML with the DOM.
1878                 // Bad structured html can break a whole page.
1879                 // For performance reasons do it only with ativated item cache or at export.
1880                 if (!$try_oembed || (get_itemcachepath() != "")) {
1881                         $doc = new DOMDocument();
1882                         $doc->preserveWhiteSpace = false;
1883
1884                         $text = mb_convert_encoding($text, 'HTML-ENTITIES', "UTF-8");
1885
1886                         $doctype = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">';
1887                         $encoding = '<?xml encoding="UTF-8">';
1888                         @$doc->loadHTML($encoding.$doctype."<html><body>".$text."</body></html>");
1889                         $doc->encoding = 'UTF-8';
1890                         $text = $doc->saveHTML();
1891                         $text = str_replace(["<html><body>", "</body></html>", $doctype, $encoding], ["", "", "", ""], $text);
1892
1893                         $text = str_replace('<br></li>', '</li>', $text);
1894
1895                         //$Text = mb_convert_encoding($Text, "UTF-8", 'HTML-ENTITIES');
1896                 }
1897
1898                 // Clean up some useless linebreaks in lists
1899                 //$Text = str_replace('<br /><ul', '<ul ', $Text);
1900                 //$Text = str_replace('</ul><br />', '</ul>', $Text);
1901                 //$Text = str_replace('</li><br />', '</li>', $Text);
1902                 //$Text = str_replace('<br /><li>', '<li>', $Text);
1903                 //$Text = str_replace('<br /><ul', '<ul ', $Text);
1904
1905                 Addon::callHooks('bbcode', $text);
1906
1907                 return trim($text);
1908         }
1909
1910         /**
1911          * @brief Strips the "abstract" tag from the provided text
1912          *
1913          * @param string $text The text with BBCode
1914          * @return string The same text - but without "abstract" element
1915          */
1916         public static function stripAbstract($text)
1917         {
1918                 $text = preg_replace("/[\s|\n]*\[abstract\].*?\[\/abstract\][\s|\n]*/ism", '', $text);
1919                 $text = preg_replace("/[\s|\n]*\[abstract=.*?\].*?\[\/abstract][\s|\n]*/ism", '', $text);
1920
1921                 return $text;
1922         }
1923
1924         /**
1925          * @brief Returns the value of the "abstract" element
1926          *
1927          * @param string $text The text that maybe contains the element
1928          * @param string $addon The addon for which the abstract is meant for
1929          * @return string The abstract
1930          */
1931         private static function getAbstract($text, $addon = "")
1932         {
1933                 $abstract = "";
1934                 $abstracts = [];
1935                 $addon = strtolower($addon);
1936
1937                 if (preg_match_all("/\[abstract=(.*?)\](.*?)\[\/abstract\]/ism", $text, $results, PREG_SET_ORDER)) {
1938                         foreach ($results AS $result) {
1939                                 $abstracts[strtolower($result[1])] = $result[2];
1940                         }
1941                 }
1942
1943                 if (isset($abstracts[$addon])) {
1944                         $abstract = $abstracts[$addon];
1945                 }
1946
1947                 if ($abstract == "" && preg_match("/\[abstract\](.*?)\[\/abstract\]/ism", $text, $result)) {
1948                         $abstract = $result[1];
1949                 }
1950
1951                 return $abstract;
1952         }
1953
1954         /**
1955          * @brief Callback function to replace a Friendica style mention in a mention for Diaspora
1956          *
1957          * @param array $match Matching values for the callback
1958          * @return string Replaced mention
1959          */
1960         private static function bbCodeMention2DiasporaCallback($match)
1961         {
1962                 $contact = Contact::getDetailsByURL($match[3]);
1963
1964                 if (empty($contact['addr'])) {
1965                         $contact = Probe::uri($match[3]);
1966                 }
1967
1968                 if (empty($contact['addr'])) {
1969                         return $match[0];
1970                 }
1971
1972                 $mention = '@{' . $match[2] . '; ' . $contact['addr'] . '}';
1973                 return $mention;
1974         }
1975
1976         /**
1977          * @brief Converts a BBCode text into Markdown
1978          *
1979          * This function converts a BBCode item body to be sent to Markdown-enabled
1980          * systems like Diaspora and Libertree
1981          *
1982          * @param string $text
1983          * @param bool   $for_diaspora Diaspora requires more changes than Libertree
1984          * @return string
1985          */
1986         public static function toMarkdown($text, $for_diaspora = true)
1987         {
1988                 $a = self::getApp();
1989
1990                 $original_text = $text;
1991
1992                 // Since Diaspora is creating a summary for links, this function removes them before posting
1993                 if ($for_diaspora) {
1994                         $text = self::removeShareInformation($text);
1995                 }
1996
1997                 /**
1998                  * Transform #tags, strip off the [url] and replace spaces with underscore
1999                  */
2000                 $url_search_string = "^\[\]";
2001                 $text = preg_replace_callback("/#\[url\=([$url_search_string]*)\](.*?)\[\/url\]/i",
2002                         function ($matches) {
2003                                 return '#' . str_replace(' ', '_', $matches[2]);
2004                         },
2005                         $text
2006                 );
2007
2008                 // Converting images with size parameters to simple images. Markdown doesn't know it.
2009                 $text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $text);
2010
2011                 // Extracting multi-line code blocks before the whitespace processing/code highlighter in self::convert()
2012                 $codeblocks = [];
2013
2014                 $text = preg_replace_callback("#\[code(?:=([^\]]*))?\](.*?)\[\/code\]#is",
2015                         function ($matches) use (&$codeblocks) {
2016                                 $return = $matches[0];
2017                                 if (strpos($matches[2], "\n") !== false) {
2018                                         $return = '#codeblock-' . count($codeblocks) . '#';
2019
2020                                         $prefix = '````' . $matches[1] . PHP_EOL;
2021                                         $codeblocks[] = $prefix . trim($matches[2]) . PHP_EOL . '````';
2022                                 }
2023                                 return $return;
2024                         },
2025                         $text
2026                 );
2027
2028                 // Convert it to HTML - don't try oembed
2029                 if ($for_diaspora) {
2030                         $text = self::convert($text, false, 3);
2031
2032                         // Add all tags that maybe were removed
2033                         if (preg_match_all("/#\[url\=([$url_search_string]*)\](.*?)\[\/url\]/ism", $original_text, $tags)) {
2034                                 $tagline = "";
2035                                 foreach ($tags[2] as $tag) {
2036                                         $tag = html_entity_decode($tag, ENT_QUOTES, 'UTF-8');
2037                                         if (!strpos(html_entity_decode($text, ENT_QUOTES, 'UTF-8'), '#' . $tag)) {
2038                                                 $tagline .= '#' . $tag . ' ';
2039                                         }
2040                                 }
2041                                 $text = $text . " " . $tagline;
2042                         }
2043                 } else {
2044                         $text = self::convert($text, false, 4);
2045                 }
2046
2047                 // mask some special HTML chars from conversation to markdown
2048                 $text = str_replace(['&lt;', '&gt;', '&amp;'], ['&_lt_;', '&_gt_;', '&_amp_;'], $text);
2049
2050                 // If a link is followed by a quote then there should be a newline before it
2051                 // Maybe we should make this newline at every time before a quote.
2052                 $text = str_replace(["</a><blockquote>"], ["</a><br><blockquote>"], $text);
2053
2054                 $stamp1 = microtime(true);
2055
2056                 // Now convert HTML to Markdown
2057                 $converter = new HtmlConverter();
2058                 $text = $converter->convert($text);
2059
2060                 // unmask the special chars back to HTML
2061                 $text = str_replace(['&\_lt\_;', '&\_gt\_;', '&\_amp\_;'], ['&lt;', '&gt;', '&amp;'], $text);
2062
2063                 $a->save_timestamp($stamp1, "parser");
2064
2065                 // Libertree has a problem with escaped hashtags.
2066                 $text = str_replace(['\#'], ['#'], $text);
2067
2068                 // Remove any leading or trailing whitespace, as this will mess up
2069                 // the Diaspora signature verification and cause the item to disappear
2070                 $text = trim($text);
2071
2072                 if ($for_diaspora) {
2073                         $url_search_string = "^\[\]";
2074                         $text = preg_replace_callback(
2075                                 "/([@]\[(.*?)\])\(([$url_search_string]*?)\)/ism",
2076                                 ['self', 'bbCodeMention2DiasporaCallback'],
2077                                 $text
2078                         );
2079                 }
2080
2081                 // Restore code blocks
2082                 $text = preg_replace_callback('/#codeblock-([0-9]+)#/iU',
2083                         function ($matches) use ($codeblocks) {
2084                                 $return = '';
2085                                 if (isset($codeblocks[intval($matches[1])])) {
2086                                         $return = $codeblocks[$matches[1]];
2087                                 }
2088                                 return $return;
2089                         },
2090                         $text
2091                 );
2092
2093                 Addon::callHooks('bb2diaspora', $text);
2094
2095                 return $text;
2096         }
2097 }