]> git.mxchange.org Git - friendica.git/blob - mod/tagger.php
Merge develop into 1404_reworked_autocomplete
[friendica.git] / mod / tagger.php
1 <?php
2
3 require_once('include/security.php');
4 require_once('include/bbcode.php');
5 require_once('include/items.php');
6
7
8 function tagger_content(&$a) {
9
10         if(! local_user() && ! remote_user()) {
11                 return;
12         }
13
14         $term = notags(trim($_GET['term']));
15         // no commas allowed
16         $term = str_replace(array(',',' '),array('','_'),$term);
17
18         if(! $term)
19                 return;
20
21         $item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0);
22
23         logger('tagger: tag ' . $term . ' item ' . $item_id);
24
25
26         $r = q("SELECT * FROM `item` WHERE `id` = '%s' LIMIT 1",
27                 dbesc($item_id)
28         );
29
30         if(! $item_id || (! count($r))) {
31                 logger('tagger: no item ' . $item_id);
32                 return;
33         }
34
35         $item = $r[0];
36
37         $owner_uid = $item['uid'];
38
39         $r = q("select `nickname`,`blocktags` from user where uid = %d limit 1",
40                 intval($owner_uid)
41         );
42         if(count($r)) {
43                 $owner_nick = $r[0]['nickname'];
44                 $blocktags = $r[0]['blocktags'];
45         }
46
47         if(local_user() != $owner_uid)
48                 return;
49
50         $r = q("select * from contact where self = 1 and uid = %d limit 1",
51                 intval(local_user())
52         );
53         if(count($r))
54                         $contact = $r[0];
55         else {
56                 logger('tagger: no contact_id');
57                 return;
58         }
59
60         $uri = item_new_uri($a->get_hostname(),$owner_uid);
61         $xterm = xmlify($term);
62         $post_type = (($item['resource-id']) ? t('photo') : t('status'));
63         $targettype = (($item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE );
64
65         $link = xmlify('<link rel="alternate" type="text/html" href="'
66                 . $a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . '" />' . "\n") ;
67
68         $body = xmlify($item['body']);
69
70         $target = <<< EOT
71         <target>
72                 <type>$targettype</type>
73                 <local>1</local>
74                 <id>{$item['uri']}</id>
75                 <link>$link</link>
76                 <title></title>
77                 <content>$body</content>
78         </target>
79 EOT;
80
81         $tagid = $a->get_baseurl() . '/search?tag=' . $term;
82         $objtype = ACTIVITY_OBJ_TAGTERM;
83
84         $obj = <<< EOT
85         <object>
86                 <type>$objtype</type>
87                 <local>1</local>
88                 <id>$tagid</id>
89                 <link>$tagid</link>
90                 <title>$xterm</title>
91                 <content>$xterm</content>
92         </object>
93 EOT;
94
95         $bodyverb = t('%1$s tagged %2$s\'s %3$s with %4$s');
96
97         if(! isset($bodyverb))
98                         return;
99
100         $termlink = html_entity_decode('&#x2317;') . '[url=' . $a->get_baseurl() . '/search?tag=' . urlencode($term) . ']'. $term . '[/url]';
101
102         $arr = array();
103
104         $arr['guid'] = get_guid(32);
105         $arr['uri'] = $uri;
106         $arr['uid'] = $owner_uid;
107         $arr['contact-id'] = $contact['id'];
108         $arr['type'] = 'activity';
109         $arr['wall'] = $item['wall'];
110         $arr['gravity'] = GRAVITY_COMMENT;
111         $arr['parent'] = $item['id'];
112         $arr['parent-uri'] = $item['uri'];
113         $arr['owner-name'] = $item['author-name'];
114         $arr['owner-link'] = $item['author-link'];
115         $arr['owner-avatar'] = $item['author-avatar'];
116         $arr['author-name'] = $contact['name'];
117         $arr['author-link'] = $contact['url'];
118         $arr['author-avatar'] = $contact['thumb'];
119
120         $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
121         $alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
122         $plink = '[url=' . $item['plink'] . ']' . $post_type . '[/url]';
123         $arr['body'] =  sprintf( $bodyverb, $ulink, $alink, $plink, $termlink );
124
125         $arr['verb'] = ACTIVITY_TAG;
126         $arr['target-type'] = $targettype;
127         $arr['target'] = $target;
128         $arr['object-type'] = $objtype;
129         $arr['object'] = $obj;
130         $arr['private'] = $item['private'];
131         $arr['allow_cid'] = $item['allow_cid'];
132         $arr['allow_gid'] = $item['allow_gid'];
133         $arr['deny_cid'] = $item['deny_cid'];
134         $arr['deny_gid'] = $item['deny_gid'];
135         $arr['visible'] = 1;
136         $arr['unseen'] = 1;
137         $arr['last-child'] = 1;
138         $arr['origin'] = 1;
139
140         $post_id = item_store($arr);
141
142 //      q("UPDATE `item` set plink = '%s' where id = %d",
143 //              dbesc($a->get_baseurl() . '/display/' . $owner_nick . '/' . $post_id),
144 //              intval($post_id)
145 //      );
146
147
148         if(! $item['visible']) {
149                 $r = q("UPDATE `item` SET `visible` = 1 WHERE `id` = %d AND `uid` = %d",
150                         intval($item['id']),
151                         intval($owner_uid)
152                 );
153         }
154
155         $term_objtype = (($item['resource-id']) ? TERM_OBJ_PHOTO : TERM_OBJ_POST );
156         $t = q("SELECT count(tid) as tcount FROM term WHERE oid=%d AND term='%s'",
157                 intval($item['id']),
158                 dbesc($term)
159         );
160         if((! $blocktags) && $t[0]['tcount']==0 ) {
161                 /*q("update item set tag = '%s' where id = %d",
162                         dbesc($item['tag'] . (strlen($item['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?tag=' . $term . ']'. $term . '[/url]'),
163                         intval($item['id'])
164                 );*/
165
166                 q("INSERT INTO term (oid, otype, type, term, url, uid) VALUE (%d, %d, %d, '%s', '%s', %d)",
167                    intval($item['id']),
168                    $term_objtype,
169                    TERM_HASHTAG,
170                    dbesc($term),
171                    dbesc($a->get_baseurl() . '/search?tag=' . $term),
172                    intval($owner_uid)
173                 );
174         }
175
176         // if the original post is on this site, update it.
177
178         $r = q("select `tag`,`id`,`uid` from item where `origin` = 1 AND `uri` = '%s' LIMIT 1",
179                 dbesc($item['uri'])
180         );
181         if(count($r)) {
182                 $x = q("SELECT `blocktags` FROM `user` WHERE `uid` = %d limit 1",
183                         intval($r[0]['uid'])
184                 );
185                 $t = q("SELECT count(tid) as tcount FROM term WHERE oid=%d AND term='%s'",
186                         intval($r[0]['id']),
187                         dbesc($term)
188                 );
189                 if(count($x) && !$x[0]['blocktags'] && $t[0]['tcount']==0){
190                         q("INSERT INTO term (oid, otype, type, term, url, uid) VALUE (%d, %d, %d, '%s', '%s', %d)",
191                            intval($r[0]['id']),
192                            $term_objtype,
193                            TERM_HASHTAG,
194                            dbesc($term),
195                            dbesc($a->get_baseurl() . '/search?tag=' . $term),
196                            intval($owner_uid)
197                         );
198                 }
199
200                 /*if(count($x) && !$x[0]['blocktags'] && (! stristr($r[0]['tag'], ']' . $term . '['))) {
201                         q("update item set tag = '%s' where id = %d",
202                                 dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?tag=' . $term . ']'. $term . '[/url]'),
203                                 intval($r[0]['id'])
204                         );
205                 }*/
206
207         }
208
209
210         $arr['id'] = $post_id;
211
212         call_hooks('post_local_end', $arr);
213
214         proc_run('php',"include/notifier.php","tag","$post_id");
215
216         killme();
217
218         return; // NOTREACHED
219
220
221 }