diff options
author | Friendika <info@friendika.com> | 2011-02-08 15:08:07 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-08 15:08:07 -0800 |
commit | 766c4778cb0a678ef7f55e56cbd11497a73ae6cb (patch) | |
tree | 4127cc5d5c2946b17ce32652455cce47cc65ac97 /mod/item.php | |
parent | a05b2b4cc741eea54451b9af2a9728be6bc1ac8e (diff) | |
download | volse-hubzilla-766c4778cb0a678ef7f55e56cbd11497a73ae6cb.tar.gz volse-hubzilla-766c4778cb0a678ef7f55e56cbd11497a73ae6cb.tar.bz2 volse-hubzilla-766c4778cb0a678ef7f55e56cbd11497a73ae6cb.zip |
modify tag handling and replies to stnet
Diffstat (limited to 'mod/item.php')
-rw-r--r-- | mod/item.php | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/mod/item.php b/mod/item.php index 38ef580af..2264ea5b9 100644 --- a/mod/item.php +++ b/mod/item.php @@ -25,6 +25,7 @@ function item_post(&$a) { $parent = ((x($_POST,'parent')) ? intval($_POST['parent']) : 0); $parent_item = null; + $parent_contact = null; if($parent) { $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1", @@ -35,6 +36,14 @@ function item_post(&$a) { goaway($a->get_baseurl() . "/" . $_POST['return'] ); } $parent_item = $r[0]; + if($parent_item['contact-id'] && $uid) { + $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", + intval($parent_item['contact-id']), + intval($uid) + ); + if(count($r)) + $parent_contact = $r[0]; + } } $profile_uid = ((x($_POST,'profile_uid')) ? intval($_POST['profile_uid']) : 0); @@ -185,8 +194,13 @@ function item_post(&$a) { $str_tags = ''; $inform = ''; + $tags = get_tags($body); + if(($parent_contact) && ($parent_contact['network'] === 'stat') && ($parent_contact['nick']) && (! in_array('@' . $parent_contact['nick'],$tags))) { + $body = '@' . $parent_contact['nick'] . ' ' . $body; + $tags[] = '@' . $parent_contact['nick']; + } if(count($tags)) { foreach($tags as $tag) { @@ -199,6 +213,7 @@ function item_post(&$a) { continue; } if(strpos($tag,'@') === 0) { + $stat = false; $name = substr($tag,1); if((strpos($name,'@')) || (strpos($name,'http://'))) { $newname = $name; @@ -231,6 +246,8 @@ function item_post(&$a) { ); } if(count($r)) { + if($r[0]['network'] === 'stat') + $stat = true; $profile = $r[0]['url']; $newname = $r[0]['name']; if(strlen($inform)) @@ -239,7 +256,8 @@ function item_post(&$a) { } } if($profile) { - $body = str_replace('@' . $name, '@' . '[url=' . $profile . ']' . $newname . '[/url]', $body); + if(! $stat) + $body = str_replace('@' . $name, '@' . '[url=' . $profile . ']' . $newname . '[/url]', $body); $profile = str_replace(',','%2c',$profile); if(strlen($str_tags)) $str_tags .= ','; @@ -249,6 +267,8 @@ function item_post(&$a) { } } + + $wall = 0; if($post_type === 'wall' || $post_type === 'wall-comment') $wall = 1; |