aboutsummaryrefslogtreecommitdiffstats
path: root/include/bbcode.php
diff options
context:
space:
mode:
authorzottel <github@zottel.net>2013-09-23 13:26:23 +0200
committerzottel <github@zottel.net>2013-09-23 13:26:23 +0200
commite79bc2924422578a9eb8fc44be59e619a1c158b5 (patch)
treeb4f0e3e81d2e33ca79a9c7e4a9d25c491820fab5 /include/bbcode.php
parenta2b20bd58f0b1c466235a96c41846aba613ea31b (diff)
downloadvolse-hubzilla-e79bc2924422578a9eb8fc44be59e619a1c158b5.tar.gz
volse-hubzilla-e79bc2924422578a9eb8fc44be59e619a1c158b5.tar.bz2
volse-hubzilla-e79bc2924422578a9eb8fc44be59e619a1c158b5.zip
add [observer] tags and [observer.baseurl]
Diffstat (limited to 'include/bbcode.php')
-rw-r--r--include/bbcode.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index 997cbac2e..30bfdad56 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -217,6 +217,18 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) {
$ev = bbtoevent($Text);
+ // process [observer] tags before we do anything else because we might
+ // be stripping away stuff that then doesn't need to be worked on anymore
+ $observer = $a->get_observer();
+ if (strpos($Text,'[/observer]') !== false) {
+ if ($observer) {
+ $Text = preg_replace("/\[observer(\=1)?\](.*?)\[\/observer\]/ism", '$2', $Text);
+ $Text = preg_replace("/\[observer\=0\].*?\[\/observer\]/ism", '', $Text);
+ } else {
+ $Text = preg_replace("/\[observer(\=1)?\].*?\[\/observer\]/ism", '', $Text);
+ $Text = preg_replace("/\[observer\=0\](.*?)\[\/observer\]/ism", '$1', $Text);
+ }
+ }
// Replace any html brackets with HTML Entities to prevent executing HTML or script
// Don't use strip_tags here because it breaks [url] search by replacing & with amp
@@ -246,6 +258,14 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) {
// Set up the parameters for a MAIL search string
$MAILSearchString = $URLSearchString;
+ // replace [observer.baseurl]
+ if ($observer) {
+ $obsBaseURL = $observer['xchan_url'];
+ $obsBaseURL = preg_replace("/\/channel\/.*$/", '', $obsBaseURL);
+ $Text = str_replace('[observer.baseurl]', $obsBaseURL, $Text);
+ } else {
+ $Text = str_replace('[observer.baseurl]', '', $Text);
+ }
// Perform URL Search