]> git.mxchange.org Git - friendica.git/blob - include/bbcode.php
eb0806dc527fee8b6b36a89d6d6239e807ca665e
[friendica.git] / include / bbcode.php
1 <?php
2 require_once("include/oembed.php");
3         // BBcode 2 HTML was written by WAY2WEB.net
4         // extended to work with Mistpark/Friendika - Mike Macgirvin
5
6 function bbcode($Text) {
7
8         // Replace any html brackets with HTML Entities to prevent executing HTML or script
9         // Don't use strip_tags here because it breaks [url] search by replacing & with amp
10
11         $Text = str_replace("<", "&lt;", $Text);
12         $Text = str_replace(">", "&gt;", $Text);
13
14         // Convert new line chars to html <br /> tags
15         $Text = nl2br($Text);
16
17         // Set up the parameters for a URL search string
18         $URLSearchString = " a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%";
19         // Set up the parameters for a MAIL search string
20         $MAILSearchString = $URLSearchString . " a-zA-Z0-9\.@";
21
22         // Perform URL Search
23
24
25         $Text = preg_replace("/([^\]\=]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%]+)/", ' <a href="$2" target="external-link">$2</a>', $Text);
26
27         $Text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/", '<a href="$1" target="external-link">$1</a>', $Text);
28         $Text = preg_replace("(\[url\=([$URLSearchString]*)\](.+?)\[/url\])", '<a href="$1" target="external-link">$2</a>', $Text);
29         //$Text = preg_replace("(\[url\=([$URLSearchString]*)\]([$URLSearchString]*)\[/url\])", '<a href="$1" target="_blank">$2</a>', $Text);
30
31
32         // Perform MAIL Search
33         $Text = preg_replace("(\[mail\]([$MAILSearchString]*)\[/mail\])", '<a href="mailto:$1">$1</a>', $Text);
34         $Text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.+?)\[\/mail\]/", '<a href="mailto:$1">$2</a>', $Text);
35          
36         // Check for bold text
37         $Text = preg_replace("(\[b\](.+?)\[\/b])is",'<strong>$1</strong>',$Text);
38
39         // Check for Italics text
40         $Text = preg_replace("(\[i\](.+?)\[\/i\])is",'<em>$1</em>',$Text);
41
42         // Check for Underline text
43         $Text = preg_replace("(\[u\](.+?)\[\/u\])is",'<u>$1</u>',$Text);
44
45         // Check for strike-through text
46         $Text = preg_replace("(\[s\](.+?)\[\/s\])is",'<strike>$1</strike>',$Text);
47
48         // Check for over-line text
49         $Text = preg_replace("(\[o\](.+?)\[\/o\])is",'<span class="overline">$1</span>',$Text);
50
51         // Check for colored text
52         $Text = preg_replace("(\[color=(.+?)\](.+?)\[\/color\])is","<span style=\"color: $1\">$2</span>",$Text);
53
54         // Check for sized text
55         $Text = preg_replace("(\[size=(.+?)\](.+?)\[\/size\])is","<span style=\"font-size: $1px\">$2</span>",$Text);
56
57         // Check for list text
58         $Text = preg_replace("/\[list\](.+?)\[\/list\]/is", '<ul class="listbullet">$1</ul>' ,$Text);
59         $Text = preg_replace("/\[list=1\](.+?)\[\/list\]/is", '<ul class="listdecimal">$1</ul>' ,$Text);
60         $Text = preg_replace("/\[list=i\](.+?)\[\/list\]/s",'<ul class="listlowerroman">$1</ul>' ,$Text);
61         $Text = preg_replace("/\[list=I\](.+?)\[\/list\]/s", '<ul class="listupperroman">$1</ul>' ,$Text);
62         $Text = preg_replace("/\[list=a\](.+?)\[\/list\]/s", '<ul class="listloweralpha">$1</ul>' ,$Text);
63         $Text = preg_replace("/\[list=A\](.+?)\[\/list\]/s", '<ul class="listupperalpha">$1</ul>' ,$Text);
64         $Text = str_replace("[*]", "<li>", $Text);
65
66         // Check for font change text
67         $Text = preg_replace("(\[font=(.+?)\](.+?)\[\/font\])","<span style=\"font-family: $1;\">$2</span>",$Text);
68
69         // Declare the format for [code] layout
70         $CodeLayout = '<code>$1</code>';
71         // Check for [code] text
72         $Text = preg_replace("/\[code\](.+?)\[\/code\]/is","$CodeLayout", $Text);
73         // Declare the format for [quote] layout
74         $QuoteLayout = '<blockquote>$1</blockquote>';                     
75         // Check for [quote] text
76         $Text = preg_replace("/\[quote\](.+?)\[\/quote\]/is","$QuoteLayout", $Text);
77          
78         // Images
79         // [img]pathtoimage[/img]
80         $Text = preg_replace("/\[img\](.+?)\[\/img\]/", '<img src="$1">', $Text);
81
82         // html5 video and audio
83
84         $Text = preg_replace("/\[video\](.+?)\[\/video\]/", '<video src="$1" controls="controls" width="425" height="350"><a href="$1">$1</a></video>', $Text);
85
86         $Text = preg_replace("/\[audio\](.+?)\[\/audio\]/", '<audio src="$1" controls="controls"><a href="$1">$1</a></audio>', $Text);
87
88          
89         // [img=widthxheight]image source[/img]
90         $Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.+?)\[\/img\]/", '<img src="$3" height="$2" width="$1">', $Text);
91
92         // Youtube extensions
93         $Text = preg_replace("/\[youtube\]http:\/\/www.youtube.com\/watch\?v\=(.+?)\[\/youtube\]/",'[youtube]$1[/youtube]',$Text); 
94         $Text = preg_replace("/\[youtube\](.+?)\[\/youtube\]/", '<object width="425" height="350" type="application/x-shockwave-flash" data="http://www.youtube.com/v/$1" ><param name="movie" value="http://www.youtube.com/v/$1"></param><!--[if IE]><embed src="http://www.youtube.com/v/$1" type="application/x-shockwave-flash" width="425" height="350" /><![endif]--></object>', $Text);
95
96         // oembed tag
97         $Text = oembed_bbcode2html($Text);
98
99         call_hooks('bbcode',$Text);
100
101         return $Text;
102 }