]> git.mxchange.org Git - friendica.git/blob - mod/tagger.php
Merge pull request #2118 from annando/1511-supported-networks
[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['uri'] = $uri;
105         $arr['uid'] = $owner_uid;
106         $arr['contact-id'] = $contact['id'];
107         $arr['type'] = 'activity';
108         $arr['wall'] = $item['wall'];
109         $arr['gravity'] = GRAVITY_COMMENT;
110         $arr['parent'] = $item['id'];
111         $arr['parent-uri'] = $item['uri'];
112         $arr['owner-name'] = $item['author-name'];
113         $arr['owner-link'] = $item['author-link'];
114         $arr['owner-avatar'] = $item['author-avatar'];
115         $arr['author-name'] = $contact['name'];
116         $arr['author-link'] = $contact['url'];
117         $arr['author-avatar'] = $contact['thumb'];
118         
119         $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
120         $alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
121         $plink = '[url=' . $item['plink'] . ']' . $post_type . '[/url]';
122         $arr['body'] =  sprintf( $bodyverb, $ulink, $alink, $plink, $termlink );
123
124         $arr['verb'] = ACTIVITY_TAG;
125         $arr['target-type'] = $targettype;
126         $arr['target'] = $target;
127         $arr['object-type'] = $objtype;
128         $arr['object'] = $obj;
129         $arr['private'] = $item['private'];
130         $arr['allow_cid'] = $item['allow_cid'];
131         $arr['allow_gid'] = $item['allow_gid'];
132         $arr['deny_cid'] = $item['deny_cid'];
133         $arr['deny_gid'] = $item['deny_gid'];
134         $arr['visible'] = 1;
135         $arr['unseen'] = 1;
136         $arr['last-child'] = 1;
137         $arr['origin'] = 1;
138
139         $post_id = item_store($arr);
140
141 //      q("UPDATE `item` set plink = '%s' where id = %d",
142 //              dbesc($a->get_baseurl() . '/display/' . $owner_nick . '/' . $post_id),
143 //              intval($post_id)
144 //      );
145
146
147         if(! $item['visible']) {
148                 $r = q("UPDATE `item` SET `visible` = 1 WHERE `id` = %d AND `uid` = %d",
149                         intval($item['id']),
150                         intval($owner_uid)
151                 );
152         }
153
154         $term_objtype = (($item['resource-id']) ? TERM_OBJ_PHOTO : TERM_OBJ_POST );
155         $t = q("SELECT count(tid) as tcount FROM term WHERE oid=%d AND term='%s'",
156                 intval($item['id']),
157                 dbesc($term)
158         );
159         if((! $blocktags) && $t[0]['tcount']==0 ) {
160                 /*q("update item set tag = '%s' where id = %d",
161                         dbesc($item['tag'] . (strlen($item['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?tag=' . $term . ']'. $term . '[/url]'),
162                         intval($item['id'])
163                 );*/
164
165                 q("INSERT INTO term (oid, otype, type, term, url, uid) VALUE (%d, %d, %d, '%s', '%s', %d)",
166                    intval($item['id']),
167                    $term_objtype,
168                    TERM_HASHTAG,
169                    dbesc($term),
170                    dbesc($a->get_baseurl() . '/search?tag=' . $term),
171                    intval($owner_uid)
172                 );
173         }
174
175         // if the original post is on this site, update it.
176
177         $r = q("select `tag`,`id`,`uid` from item where `origin` = 1 AND `uri` = '%s' LIMIT 1",
178                 dbesc($item['uri'])
179         );
180         if(count($r)) {
181                 $x = q("SELECT `blocktags` FROM `user` WHERE `uid` = %d limit 1",
182                         intval($r[0]['uid'])
183                 );
184                 $t = q("SELECT count(tid) as tcount FROM term WHERE oid=%d AND term='%s'",
185                         intval($r[0]['id']),
186                         dbesc($term)
187                 );
188                 if(count($x) && !$x[0]['blocktags'] && $t[0]['tcount']==0){
189                         q("INSERT INTO term (oid, otype, type, term, url, uid) VALUE (%d, %d, %d, '%s', '%s', %d)",
190                            intval($r[0]['id']),
191                            $term_objtype,
192                            TERM_HASHTAG,
193                            dbesc($term),
194                            dbesc($a->get_baseurl() . '/search?tag=' . $term),
195                            intval($owner_uid)
196                         );
197                 }
198
199                 /*if(count($x) && !$x[0]['blocktags'] && (! stristr($r[0]['tag'], ']' . $term . '['))) {
200                         q("update item set tag = '%s' where id = %d",
201                                 dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?tag=' . $term . ']'. $term . '[/url]'),
202                                 intval($r[0]['id'])
203                         );
204                 }*/
205
206         }
207
208
209         $arr['id'] = $post_id;
210
211         call_hooks('post_local_end', $arr);
212
213         proc_run('php',"include/notifier.php","tag","$post_id");
214
215         killme();
216
217         return; // NOTREACHED
218
219
220 }