aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-06-04 22:52:17 -0700
committerfriendica <info@friendica.com>2013-06-04 22:52:17 -0700
commit0ef71dd4e27c9ad88d60746ca04d06529db7fe4e (patch)
tree3f3497029327a0253d3a5c994236096d4a0d7072 /include/items.php
parent8321a2e41a09ba77749b288cca003413fe6a9ebb (diff)
downloadvolse-hubzilla-0ef71dd4e27c9ad88d60746ca04d06529db7fe4e.tar.gz
volse-hubzilla-0ef71dd4e27c9ad88d60746ca04d06529db7fe4e.tar.bz2
volse-hubzilla-0ef71dd4e27c9ad88d60746ca04d06529db7fe4e.zip
This should get community tagging pretty close to working - deleting a community tag is left as a FIXME
Diffstat (limited to 'include/items.php')
-rwxr-xr-xinclude/items.php34
1 files changed, 32 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php
index 6ad3f193d..9041e3da7 100755
--- a/include/items.php
+++ b/include/items.php
@@ -1915,7 +1915,9 @@ function get_item_contact($item,$contacts) {
function tag_deliver($uid,$item_id) {
- // look for mention tags and setup a second delivery chain for forum/community posts if appropriate
+ // Called when we deliver things that might be tagged in ways that require delivery processing.
+ // Handles community tagging of posts and also look for mention tags
+ // and sets up a second delivery chain if appropriate
$a = get_app();
@@ -1931,13 +1933,41 @@ function tag_deliver($uid,$item_id) {
intval($item_id),
intval($uid)
);
- if(! count($i))
+ if(! $i)
return;
$i = fetch_post_tags($i);
$item = $i[0];
+
+ if($item['obj_type'] === ACTIVITY_OBJ_TAGTERM) {
+
+ // We received a community tag activity for a post.
+ // See if we are the owner of the parent item and have given permission to tag our posts.
+ // If so tag the parent post.
+
+ // FIXME --- If the item is deleted, remove the tag from the parent.
+ // (First ensure that deleted items use this function, or else do that part separately.)
+
+ if(($item['owner_xchan'] === $u[0]['channel_hash']) && (! get_pconfig($u[0]['channel_id'],'system','blocktags'))) {
+ $j_tgt = json_decode($item['target'],true);
+ if($j_tgt && $j_tgt['mid']) {
+ $p = q("select * from item where mid = '%s' and uid = %d limit 1",
+ dbesc($j_tgt['mid']),
+ intval($u[0]['channel_id'])
+ );
+ if($p) {
+ $j_obj = json_decode($item['object'],true);
+ if($j_obj && $j_obj['id'] && $j_obj['title']) {
+ store_item_tag($u[0]['channel_id'],$p[0]['id'],TERM_OBJ_POST,TERM_HASHTAG,$j_obj['title'],$j['obj']['id']);
+ proc_run('php','include/notifier.php','edit_post',$p[0]['id']);
+ }
+ }
+ }
+ }
+ }
+
$terms = get_terms_oftype($item['term'],TERM_MENTION);
logger('tag_deliver: post mentions: ' . print_r($terms,true), LOGGER_DATA);