]> git.mxchange.org Git - friendica.git/blob - mod/item.php
Merge pull request #1356 from silke/develop
[friendica.git] / mod / item.php
1 <?php
2
3 /**
4  *
5  * This is the POST destination for most all locally posted
6  * text stuff. This function handles status, wall-to-wall status,
7  * local comments, and remote coments that are posted on this site
8  * (as opposed to being delivered in a feed).
9  * Also processed here are posts and comments coming through the
10  * statusnet/twitter API.
11  * All of these become an "item" which is our basic unit of
12  * information.
13  * Posts that originate externally or do not fall into the above
14  * posting categories go through item_store() instead of this function.
15  *
16  */
17
18 require_once('include/crypto.php');
19 require_once('include/enotify.php');
20 require_once('include/email.php');
21 require_once('library/langdet/Text/LanguageDetect.php');
22 require_once('include/tags.php');
23 require_once('include/files.php');
24 require_once('include/threads.php');
25 require_once('include/text.php');
26
27 function item_post(&$a) {
28
29         if((! local_user()) && (! remote_user()) && (! x($_REQUEST,'commenter')))
30                 return;
31
32         require_once('include/security.php');
33
34         $uid = local_user();
35
36         if(x($_REQUEST,'dropitems')) {
37                 require_once('include/items.php');
38                 $arr_drop = explode(',',$_REQUEST['dropitems']);
39                 drop_items($arr_drop);
40                 $json = array('success' => 1);
41                 echo json_encode($json);
42                 killme();
43         }
44
45         call_hooks('post_local_start', $_REQUEST);
46 //      logger('postinput ' . file_get_contents('php://input'));
47         logger('postvars ' . print_r($_REQUEST,true), LOGGER_DATA);
48
49         $api_source = ((x($_REQUEST,'api_source') && $_REQUEST['api_source']) ? true : false);
50
51         $message_id = ((x($_REQUEST,'message_id') && $api_source)  ? strip_tags($_REQUEST['message_id'])       : '');
52
53         $return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : '');
54         $preview = ((x($_REQUEST,'preview')) ? intval($_REQUEST['preview']) : 0);
55
56
57         // Check for doubly-submitted posts, and reject duplicates
58         // Note that we have to ignore previews, otherwise nothing will post
59         // after it's been previewed
60         if(!$preview && x($_REQUEST['post_id_random'])) {
61                 if(x($_SESSION['post-random']) && $_SESSION['post-random'] == $_REQUEST['post_id_random']) {
62                         logger("item post: duplicate post", LOGGER_DEBUG);
63                         item_post_return($a->get_baseurl(), $api_source, $return_path);
64                 }
65                 else
66                         $_SESSION['post-random'] = $_REQUEST['post_id_random'];
67         }
68
69         /**
70          * Is this a reply to something?
71          */
72
73         $parent = ((x($_REQUEST,'parent')) ? intval($_REQUEST['parent']) : 0);
74         $parent_uri = ((x($_REQUEST,'parent_uri')) ? trim($_REQUEST['parent_uri']) : '');
75
76         $parent_item = null;
77         $parent_contact = null;
78         $thr_parent = '';
79         $parid = 0;
80         $r = false;
81         $objecttype = null;
82
83         if($parent || $parent_uri) {
84
85                 $objecttype = ACTIVITY_OBJ_COMMENT;
86
87                 if(! x($_REQUEST,'type'))
88                         $_REQUEST['type'] = 'net-comment';
89
90                 if($parent) {
91                         $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
92                                 intval($parent)
93                         );
94                 } elseif($parent_uri && local_user()) {
95                         // This is coming from an API source, and we are logged in
96                         $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
97                                 dbesc($parent_uri),
98                                 intval(local_user())
99                         );
100                 }
101
102                 // if this isn't the real parent of the conversation, find it
103                 if($r !== false && count($r)) {
104                         $parid = $r[0]['parent'];
105                         $parent_uri = $r[0]['uri'];
106                         if($r[0]['id'] != $r[0]['parent']) {
107                                 $r = q("SELECT * FROM `item` WHERE `id` = `parent` AND `parent` = %d LIMIT 1",
108                                         intval($parid)
109                                 );
110                         }
111                 }
112
113                 if(($r === false) || (! count($r))) {
114                         notice( t('Unable to locate original post.') . EOL);
115                         if(x($_REQUEST,'return'))
116                                 goaway($a->get_baseurl() . "/" . $return_path );
117                         killme();
118                 }
119                 $parent_item = $r[0];
120                 $parent = $r[0]['id'];
121
122                 // multi-level threading - preserve the info but re-parent to our single level threading
123                 //if(($parid) && ($parid != $parent))
124                 $thr_parent = $parent_uri;
125
126                 if($parent_item['contact-id'] && $uid) {
127                         $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
128                                 intval($parent_item['contact-id']),
129                                 intval($uid)
130                         );
131                         if(count($r)) {
132                                 $parent_contact = $r[0];
133
134                                 // If the contact id doesn't fit with the contact, then set the contact to null
135                                 $thrparent = q("SELECT `author-link`, `network` FROM `item` WHERE `uri` = '%s' LIMIT 1", dbesc($thr_parent));
136                                 if (count($thrparent) AND ($thrparent[0]["network"] === NETWORK_OSTATUS)
137                                         AND (normalise_link($parent_contact["url"]) != normalise_link($thrparent[0]["author-link"]))) {
138                                         $parent_contact = null;
139
140                                         require_once("include/Scrape.php");
141                                         $probed_contact = probe_url($thrparent[0]["author-link"]);
142                                         if ($probed_contact["network"] != NETWORK_FEED) {
143                                                 $parent_contact = $probed_contact;
144                                                 $parent_contact["nurl"] = normalise_link($probed_contact["url"]);
145                                                 $parent_contact["thumb"] = $probed_contact["photo"];
146                                                 $parent_contact["micro"] = $probed_contact["photo"];
147                                         }
148                                         logger('parent contact: '.print_r($parent_contact, true), LOGGER_DEBUG);
149                                 } else
150                                         logger('no contact found: '.print_r($thrparent, true), LOGGER_DEBUG);
151                         }
152                 }
153         }
154
155         if($parent) logger('mod_item: item_post parent=' . $parent);
156
157         $profile_uid = ((x($_REQUEST,'profile_uid')) ? intval($_REQUEST['profile_uid']) : 0);
158         $post_id     = ((x($_REQUEST,'post_id'))     ? intval($_REQUEST['post_id'])     : 0);
159         $app         = ((x($_REQUEST,'source'))      ? strip_tags($_REQUEST['source'])  : '');
160         $extid       = ((x($_REQUEST,'extid'))       ? strip_tags($_REQUEST['extid'])  : '');
161
162         $allow_moderated = false;
163
164         // here is where we are going to check for permission to post a moderated comment.
165
166         // First check that the parent exists and it is a wall item.
167
168         if((x($_REQUEST,'commenter')) && ((! $parent) || (! $parent_item['wall']))) {
169                 notice( t('Permission denied.') . EOL) ;
170                 if(x($_REQUEST,'return'))
171                         goaway($a->get_baseurl() . "/" . $return_path );
172                 killme();
173         }
174
175         // Now check that it is a page_type of PAGE_BLOG, and that valid personal details
176         // have been provided, and run any anti-spam plugins
177
178
179         // TODO
180
181
182
183
184         if((! can_write_wall($a,$profile_uid)) && (! $allow_moderated)) {
185                 notice( t('Permission denied.') . EOL) ;
186                 if(x($_REQUEST,'return'))
187                         goaway($a->get_baseurl() . "/" . $return_path );
188                 killme();
189         }
190
191
192         // is this an edited post?
193
194         $orig_post = null;
195
196         if($post_id) {
197                 $i = q("SELECT * FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
198                         intval($profile_uid),
199                         intval($post_id)
200                 );
201                 if(! count($i))
202                         killme();
203                 $orig_post = $i[0];
204         }
205
206         $user = null;
207
208         $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
209                 intval($profile_uid)
210         );
211         if(count($r))
212                 $user = $r[0];
213
214         if($orig_post) {
215                 $str_group_allow   = $orig_post['allow_gid'];
216                 $str_contact_allow = $orig_post['allow_cid'];
217                 $str_group_deny    = $orig_post['deny_gid'];
218                 $str_contact_deny  = $orig_post['deny_cid'];
219                 $location          = $orig_post['location'];
220                 $coord             = $orig_post['coord'];
221                 $verb              = $orig_post['verb'];
222                 $objecttype        = $orig_post['object-type'];
223                 $emailcc           = $orig_post['emailcc'];
224                 $app               = $orig_post['app'];
225                 $categories        = $orig_post['file'];
226                 $title             = notags(trim($_REQUEST['title']));
227                 $body              = escape_tags(trim($_REQUEST['body']));
228                 $private           = $orig_post['private'];
229                 $pubmail_enable    = $orig_post['pubmail'];
230                 $network           = $orig_post['network'];
231                 $guid              = $orig_post['guid'];
232                 $extid             = $orig_post['extid'];
233
234         } else {
235
236                 // if coming from the API and no privacy settings are set, 
237                 // use the user default permissions - as they won't have
238                 // been supplied via a form.
239
240                 if(($api_source) 
241                         && (! array_key_exists('contact_allow',$_REQUEST))
242                         && (! array_key_exists('group_allow',$_REQUEST))
243                         && (! array_key_exists('contact_deny',$_REQUEST))
244                         && (! array_key_exists('group_deny',$_REQUEST))) {
245                         $str_group_allow   = $user['allow_gid'];
246                         $str_contact_allow = $user['allow_cid'];
247                         $str_group_deny    = $user['deny_gid'];
248                         $str_contact_deny  = $user['deny_cid'];
249                 }
250                 else {
251
252                         // use the posted permissions
253
254                         $str_group_allow   = perms2str($_REQUEST['group_allow']);
255                         $str_contact_allow = perms2str($_REQUEST['contact_allow']);
256                         $str_group_deny    = perms2str($_REQUEST['group_deny']);
257                         $str_contact_deny  = perms2str($_REQUEST['contact_deny']);
258                 }
259
260                 $title             = notags(trim($_REQUEST['title']));
261                 $location          = notags(trim($_REQUEST['location']));
262                 $coord             = notags(trim($_REQUEST['coord']));
263                 $verb              = notags(trim($_REQUEST['verb']));
264                 $emailcc           = notags(trim($_REQUEST['emailcc']));
265                 $body              = escape_tags(trim($_REQUEST['body']));
266                 $network           = notags(trim($_REQUEST['network']));
267                 $guid              = get_guid(32);
268
269
270                 $naked_body = preg_replace('/\[(.+?)\]/','',$body);
271
272                 if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
273                         $l = new Text_LanguageDetect;
274                         //$lng = $l->detectConfidence($naked_body);
275                         //$postopts = (($lng['language']) ? 'lang=' . $lng['language'] . ';' . $lng['confidence'] : '');
276
277                         $lng = $l->detect($naked_body, 3);
278
279                         if (sizeof($lng) > 0) {
280                                 $postopts = "";
281
282                                 foreach ($lng as $language => $score) {
283                                         if ($postopts == "")
284                                                 $postopts = "lang=";
285                                         else
286                                                 $postopts .= ":";
287
288                                         $postopts .= $language.";".$score;
289                                 }
290                         }
291
292                         logger('mod_item: detect language' . print_r($lng,true) . $naked_body, LOGGER_DATA);
293                 }
294                 else
295                         $postopts = '';
296
297
298                 $private = ((strlen($str_group_allow) || strlen($str_contact_allow) || strlen($str_group_deny) || strlen($str_contact_deny)) ? 1 : 0);
299
300
301                 if($user['hidewall'])
302                         $private = 2;
303
304                 // If this is a comment, set the permissions from the parent.
305
306                 if($parent_item) {
307                         $private = 0;
308
309                         // for non native networks use the network of the original post as network of the item
310                         if (($parent_item['network'] != NETWORK_DIASPORA)
311                                 AND ($parent_item['network'] != NETWORK_OSTATUS)
312                                 AND ($network == ""))
313                                 $network = $parent_item['network'];
314
315                         if(($parent_item['private'])
316                                 || strlen($parent_item['allow_cid'])
317                                 || strlen($parent_item['allow_gid'])
318                                 || strlen($parent_item['deny_cid'])
319                                 || strlen($parent_item['deny_gid'])) {
320                                 $private = (($parent_item['private']) ? $parent_item['private'] : 1);
321                         }
322
323                         $str_contact_allow = $parent_item['allow_cid'];
324                         $str_group_allow   = $parent_item['allow_gid'];
325                         $str_contact_deny  = $parent_item['deny_cid'];
326                         $str_group_deny    = $parent_item['deny_gid'];
327                 }
328                 $pubmail_enable    = ((x($_REQUEST,'pubmail_enable') && intval($_REQUEST['pubmail_enable']) && (! $private)) ? 1 : 0);
329
330                 // if using the API, we won't see pubmail_enable - figure out if it should be set
331
332                 if($api_source && $profile_uid && $profile_uid == local_user() && (! $private)) {
333                         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
334                         if(! $mail_disabled) {
335                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
336                                         intval(local_user())
337                                 );
338                                 if(count($r) && intval($r[0]['pubmail']))
339                                         $pubmail_enabled = true;
340                         }
341                 }
342
343                 if(! strlen($body)) {
344                         if($preview)
345                                 killme();
346                         info( t('Empty post discarded.') . EOL );
347                         if(x($_REQUEST,'return'))
348                                 goaway($a->get_baseurl() . "/" . $return_path );
349                         killme();
350                 }
351         }
352
353         if(strlen($categories)) {
354                 // get the "fileas" tags for this post
355                 $filedas = file_tag_file_to_list($categories, 'file');
356         }
357         // save old and new categories, so we can determine what needs to be deleted from pconfig
358         $categories_old = $categories;
359         $categories = file_tag_list_to_file(trim($_REQUEST['category']), 'category');
360         $categories_new = $categories;
361         if(strlen($filedas)) {
362                 // append the fileas stuff to the new categories list
363                 $categories .= file_tag_list_to_file($filedas, 'file');
364         }
365
366         // Work around doubled linefeeds in Tinymce 3.5b2
367         // First figure out if it's a status post that would've been
368         // created using tinymce. Otherwise leave it alone. 
369
370 /*      $plaintext = (local_user() ? intval(get_pconfig(local_user(),'system','plaintext')) || !feature_enabled($profile_uid,'richtext') : 0);
371         if((! $parent) && (! $api_source) && (! $plaintext)) {
372                 $body = fix_mce_lf($body);
373         }*/
374         $plaintext = (local_user() ? !feature_enabled($profile_uid,'richtext') : 0);
375         if((! $parent) && (! $api_source) && (! $plaintext)) {
376                 $body = fix_mce_lf($body);
377         }
378
379
380         // get contact info for poster
381
382         $author = null;
383         $self   = false;
384         $contact_id = 0;
385
386         if((local_user()) && (local_user() == $profile_uid)) {
387                 $self = true;
388                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
389                         intval($_SESSION['uid'])
390                 );
391         }
392         elseif(remote_user()) {
393                 if(is_array($_SESSION['remote'])) {
394                         foreach($_SESSION['remote'] as $v) {
395                                 if($v['uid'] == $profile_uid) {
396                                         $contact_id = $v['cid'];
397                                         break;
398                                 }
399                         }
400                 }
401                 if($contact_id) {
402                         $r = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
403                                 intval($contact_id)
404                         );
405                 }
406         }
407
408         if(count($r)) {
409                 $author = $r[0];
410                 $contact_id = $author['id'];
411         }
412
413         // get contact info for owner
414
415         if($profile_uid == local_user()) {
416                 $contact_record = $author;
417         }
418         else {
419                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
420                         intval($profile_uid)
421                 );
422                 if(count($r))
423                         $contact_record = $r[0];
424         }
425
426         $post_type = notags(trim($_REQUEST['type']));
427
428         if($post_type === 'net-comment') {
429                 if($parent_item !== null) {
430                         if($parent_item['wall'] == 1)
431                                 $post_type = 'wall-comment';
432                         else
433                                 $post_type = 'remote-comment';
434                 }
435         }
436
437         /**
438          *
439          * When a photo was uploaded into the message using the (profile wall) ajax
440          * uploader, The permissions are initially set to disallow anybody but the
441          * owner from seeing it. This is because the permissions may not yet have been
442          * set for the post. If it's private, the photo permissions should be set
443          * appropriately. But we didn't know the final permissions on the post until
444          * now. So now we'll look for links of uploaded messages that are in the
445          * post and set them to the same permissions as the post itself.
446          *
447          */
448
449         $match = null;
450
451         if((! $preview) && preg_match_all("/\[img([\=0-9x]*?)\](.*?)\[\/img\]/",$body,$match)) {
452                 $images = $match[2];
453                 if(count($images)) {
454
455                         $objecttype = ACTIVITY_OBJ_IMAGE;
456
457                         foreach($images as $image) {
458                                 if(! stristr($image,$a->get_baseurl() . '/photo/'))
459                                         continue;
460                                 $image_uri = substr($image,strrpos($image,'/') + 1);
461                                 $image_uri = substr($image_uri,0, strpos($image_uri,'-'));
462                                 if(! strlen($image_uri))
463                                         continue;
464                                 $srch = '<' . intval($contact_id) . '>';
465
466                                 $r = q("SELECT `id` FROM `photo` WHERE `allow_cid` = '%s' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = ''
467                                         AND `resource-id` = '%s' AND `uid` = %d LIMIT 1",
468                                         dbesc($srch),
469                                         dbesc($image_uri),
470                                         intval($profile_uid)
471                                 );
472
473                                 if(! count($r))
474                                         continue;
475
476
477                                 $r = q("UPDATE `photo` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'
478                                         WHERE `resource-id` = '%s' AND `uid` = %d AND `album` = '%s' ",
479                                         dbesc($str_contact_allow),
480                                         dbesc($str_group_allow),
481                                         dbesc($str_contact_deny),
482                                         dbesc($str_group_deny),
483                                         dbesc($image_uri),
484                                         intval($profile_uid),
485                                         dbesc( t('Wall Photos'))
486                                 );
487
488                         }
489                 }
490         }
491
492
493         /**
494          * Next link in any attachment references we find in the post.
495          */
496
497         $match = false;
498
499         if((! $preview) && preg_match_all("/\[attachment\](.*?)\[\/attachment\]/",$body,$match)) {
500                 $attaches = $match[1];
501                 if(count($attaches)) {
502                         foreach($attaches as $attach) {
503                                 $r = q("SELECT * FROM `attach` WHERE `uid` = %d AND `id` = %d LIMIT 1",
504                                         intval($profile_uid),
505                                         intval($attach)
506                                 );
507                                 if(count($r)) {
508                                         $r = q("UPDATE `attach` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'
509                                                 WHERE `uid` = %d AND `id` = %d",
510                                                 dbesc($str_contact_allow),
511                                                 dbesc($str_group_allow),
512                                                 dbesc($str_contact_deny),
513                                                 dbesc($str_group_deny),
514                                                 intval($profile_uid),
515                                                 intval($attach)
516                                         );
517                                 }
518                         }
519                 }
520         }
521
522         // embedded bookmark in post? set bookmark flag
523
524         $bookmark = 0;
525         if(preg_match_all("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism",$body,$match,PREG_SET_ORDER)) {
526                 $objecttype = ACTIVITY_OBJ_BOOKMARK;
527                 $bookmark = 1;
528         }
529
530         $body = bb_translate_video($body);
531
532
533         /**
534          * Fold multi-line [code] sequences
535          */
536
537         $body = preg_replace('/\[\/code\]\s*\[code\]/ism',"\n",$body); 
538
539         $body = scale_external_images($body,false);
540
541
542         // Setting the object type if not defined before
543         if (!$objecttype) {
544                 $objecttype = ACTIVITY_OBJ_NOTE; // Default value
545                 require_once("include/plaintext.php");
546                 $objectdata = get_attached_data($body);
547
548                 if ($post["type"] == "link")
549                         $objecttype = ACTIVITY_OBJ_BOOKMARK;
550                 elseif ($post["type"] == "video")
551                         $objecttype = ACTIVITY_OBJ_VIDEO;
552                 elseif ($post["type"] == "photo")
553                         $objecttype = ACTIVITY_OBJ_IMAGE;
554
555         }
556
557         /**
558          * Look for any tags and linkify them
559          */
560
561         $str_tags = '';
562         $inform   = '';
563
564
565         $tags = get_tags($body);
566
567         /**
568          * add a statusnet style reply tag if the original post was from there
569          * and we are replying, and there isn't one already
570          */
571
572         if(($parent_contact) && ($parent_contact['network'] === NETWORK_OSTATUS) 
573                 && ($parent_contact['nick']) && (! in_array('@' . $parent_contact['nick'],$tags))) {
574                 $body = '@' . $parent_contact['nick'] . ' ' . $body;
575                 $tags[] = '@' . $parent_contact['nick'];
576         }
577
578         $tagged = array();
579
580         $private_forum = false;
581
582         if(count($tags)) {
583                 foreach($tags as $tag) {
584
585                         // If we already tagged 'Robert Johnson', don't try and tag 'Robert'.
586                         // Robert Johnson should be first in the $tags array
587
588                         $fullnametagged = false;
589                         for($x = 0; $x < count($tagged); $x ++) {
590                                 if(stristr($tagged[$x],$tag . ' ')) {
591                                         $fullnametagged = true;
592                                         break;
593                                 }
594                         }
595                         if($fullnametagged)
596                                 continue;
597
598                         $success = handle_tag($a, $body, $inform, $str_tags, (local_user()) ? local_user() : $profile_uid , $tag, $network);
599                         if($success['replaced'])
600                                 $tagged[] = $tag;
601                         if(is_array($success['contact']) && intval($success['contact']['prv'])) {
602                                 $private_forum = true;
603                                 $private_id = $success['contact']['id'];
604                         }
605                 }
606         }
607
608         if(($private_forum) && (! $parent) && (! $private)) {
609                 // we tagged a private forum in a top level post and the message was public.
610                 // Restrict it.
611                 $private = 1;
612                 $str_contact_allow = '<' . $private_id . '>';
613         }
614
615         $attachments = '';
616         $match = false;
617
618         if(preg_match_all('/(\[attachment\]([0-9]+)\[\/attachment\])/',$body,$match)) {
619                 foreach($match[2] as $mtch) {
620                         $r = q("SELECT `id`,`filename`,`filesize`,`filetype` FROM `attach` WHERE `uid` = %d AND `id` = %d LIMIT 1",
621                                 intval($profile_uid),
622                                 intval($mtch)
623                         );
624                         if(count($r)) {
625                                 if(strlen($attachments))
626                                         $attachments .= ',';
627                                 $attachments .= '[attach]href="' . $a->get_baseurl() . '/attach/' . $r[0]['id'] . '" length="' . $r[0]['filesize'] . '" type="' . $r[0]['filetype'] . '" title="' . (($r[0]['filename']) ? $r[0]['filename'] : '') . '"[/attach]'; 
628                         }
629                         $body = str_replace($match[1],'',$body);
630                 }
631         }
632
633         $wall = 0;
634
635         if($post_type === 'wall' || $post_type === 'wall-comment')
636                 $wall = 1;
637
638         if(! strlen($verb))
639                 $verb = ACTIVITY_POST ;
640
641         if ($network == "")
642                 $network = NETWORK_DFRN;
643
644         $gravity = (($parent) ? 6 : 0 );
645
646         // even if the post arrived via API we are considering that it 
647         // originated on this site by default for determining relayability.
648
649         $origin = ((x($_REQUEST,'origin')) ? intval($_REQUEST['origin']) : 1);
650
651         $notify_type = (($parent) ? 'comment-new' : 'wall-new' );
652
653         $uri = (($message_id) ? $message_id : item_new_uri($a->get_hostname(),$profile_uid));
654
655         // Fallback so that we alway have a thr-parent
656         if(!$thr_parent)
657                 $thr_parent = $uri;
658
659         $datarray = array();
660         $datarray['uid']           = $profile_uid;
661         $datarray['type']          = $post_type;
662         $datarray['wall']          = $wall;
663         $datarray['gravity']       = $gravity;
664         $datarray['network']       = $network;
665         $datarray['contact-id']    = $contact_id;
666         $datarray['owner-name']    = $contact_record['name'];
667         $datarray['owner-link']    = $contact_record['url'];
668         $datarray['owner-avatar']  = $contact_record['thumb'];
669         $datarray['author-name']   = $author['name'];
670         $datarray['author-link']   = $author['url'];
671         $datarray['author-avatar'] = $author['thumb'];
672         $datarray['created']       = datetime_convert();
673         $datarray['edited']        = datetime_convert();
674         $datarray['commented']     = datetime_convert();
675         $datarray['received']      = datetime_convert();
676         $datarray['changed']       = datetime_convert();
677         $datarray['extid']         = $extid;
678         $datarray['guid']          = $guid;
679         $datarray['uri']           = $uri;
680         $datarray['title']         = $title;
681         $datarray['body']          = $body;
682         $datarray['app']           = $app;
683         $datarray['location']      = $location;
684         $datarray['coord']         = $coord;
685         $datarray['tag']           = $str_tags;
686         $datarray['file']          = $categories;
687         $datarray['inform']        = $inform;
688         $datarray['verb']          = $verb;
689         $datarray['object-type']   = $objecttype;
690         $datarray['allow_cid']     = $str_contact_allow;
691         $datarray['allow_gid']     = $str_group_allow;
692         $datarray['deny_cid']      = $str_contact_deny;
693         $datarray['deny_gid']      = $str_group_deny;
694         $datarray['private']       = $private;
695         $datarray['pubmail']       = $pubmail_enable;
696         $datarray['attach']        = $attachments;
697         $datarray['bookmark']      = intval($bookmark);
698         $datarray['thr-parent']    = $thr_parent;
699         $datarray['postopts']      = $postopts;
700         $datarray['origin']        = $origin;
701         $datarray['moderated']     = $allow_moderated;
702
703         /**
704          * These fields are for the convenience of plugins...
705          * 'self' if true indicates the owner is posting on their own wall
706          * If parent is 0 it is a top-level post.
707          */
708
709         $datarray['parent']        = $parent;
710         $datarray['self']          = $self;
711 //      $datarray['prvnets']       = $user['prvnets'];
712
713         if($orig_post)
714                 $datarray['edit']      = true;
715
716         // preview mode - prepare the body for display and send it via json
717
718         if($preview) {
719                 require_once('include/conversation.php');
720                 $o = conversation($a,array(array_merge($contact_record,$datarray)),'search', false, true);
721                 logger('preview: ' . $o);
722                 echo json_encode(array('preview' => $o));
723                 killme();
724         }
725
726
727         call_hooks('post_local',$datarray);
728
729         if(x($datarray,'cancel')) {
730                 logger('mod_item: post cancelled by plugin.');
731                 if($return_path) {
732                         goaway($a->get_baseurl() . "/" . $return_path);
733                 }
734
735                 $json = array('cancel' => 1);
736                 if(x($_REQUEST,'jsreload') && strlen($_REQUEST['jsreload']))
737                         $json['reload'] = $a->get_baseurl() . '/' . $_REQUEST['jsreload'];
738
739                 echo json_encode($json);
740                 killme();
741         }
742
743
744         if($orig_post) {
745                 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `attach` = '%s', `file` = '%s', `edited` = '%s', `changed` = '%s' WHERE `id` = %d AND `uid` = %d",
746                         dbesc($datarray['title']),
747                         dbesc($datarray['body']),
748                         dbesc($datarray['tag']),
749                         dbesc($datarray['attach']),
750                         dbesc($datarray['file']),
751                         dbesc(datetime_convert()),
752                         dbesc(datetime_convert()),
753                         intval($post_id),
754                         intval($profile_uid)
755                 );
756
757                 create_tags_from_item($post_id);
758                 create_files_from_item($post_id);
759                 update_thread($post_id);
760
761                 // update filetags in pconfig
762                 file_tag_update_pconfig($uid,$categories_old,$categories_new,'category');
763
764                 proc_run('php', "include/notifier.php", 'edit_post', "$post_id");
765                 if((x($_REQUEST,'return')) && strlen($return_path)) {
766                         logger('return: ' . $return_path);
767                         goaway($a->get_baseurl() . "/" . $return_path );
768                 }
769                 killme();
770         }
771         else
772                 $post_id = 0;
773
774
775         $r = q("INSERT INTO `item` (`guid`, `extid`, `uid`,`type`,`wall`,`gravity`, `network`, `contact-id`,`owner-name`,`owner-link`,`owner-avatar`, 
776                 `author-name`, `author-link`, `author-avatar`, `created`, `edited`, `commented`, `received`, `changed`, `uri`, `thr-parent`, `title`, `body`, `app`, `location`, `coord`, 
777                 `tag`, `inform`, `verb`, `object-type`, `postopts`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`, `private`, `pubmail`, `attach`, `bookmark`,`origin`, `moderated`, `file` )
778                 VALUES( '%s', '%s', %d, '%s', %d, %d, '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', %d, %d, %d, '%s' )",
779                 dbesc($datarray['guid']),
780                 dbesc($datarray['extid']),
781                 intval($datarray['uid']),
782                 dbesc($datarray['type']),
783                 intval($datarray['wall']),
784                 intval($datarray['gravity']),
785                 dbesc($datarray['network']),
786                 intval($datarray['contact-id']),
787                 dbesc($datarray['owner-name']),
788                 dbesc($datarray['owner-link']),
789                 dbesc($datarray['owner-avatar']),
790                 dbesc($datarray['author-name']),
791                 dbesc($datarray['author-link']),
792                 dbesc($datarray['author-avatar']),
793                 dbesc($datarray['created']),
794                 dbesc($datarray['edited']),
795                 dbesc($datarray['commented']),
796                 dbesc($datarray['received']),
797                 dbesc($datarray['changed']),
798                 dbesc($datarray['uri']),
799                 dbesc($datarray['thr-parent']),
800                 dbesc($datarray['title']),
801                 dbesc($datarray['body']),
802                 dbesc($datarray['app']),
803                 dbesc($datarray['location']),
804                 dbesc($datarray['coord']),
805                 dbesc($datarray['tag']),
806                 dbesc($datarray['inform']),
807                 dbesc($datarray['verb']),
808                 dbesc($datarray['object-type']),
809                 dbesc($datarray['postopts']),
810                 dbesc($datarray['allow_cid']),
811                 dbesc($datarray['allow_gid']),
812                 dbesc($datarray['deny_cid']),
813                 dbesc($datarray['deny_gid']),
814                 intval($datarray['private']),
815                 intval($datarray['pubmail']),
816                 dbesc($datarray['attach']),
817                 intval($datarray['bookmark']),
818                 intval($datarray['origin']),
819                 intval($datarray['moderated']),
820                 dbesc($datarray['file'])
821                );
822
823         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' LIMIT 1",
824                 dbesc($datarray['uri']));
825         if(count($r)) {
826                 $post_id = $r[0]['id'];
827                 logger('mod_item: saved item ' . $post_id);
828
829                 // update filetags in pconfig
830                 file_tag_update_pconfig($uid,$categories_old,$categories_new,'category');
831
832                 // Store the fresh generated item into the cache
833                 put_item_in_cache($datarray);
834
835                 if($parent) {
836
837                         // This item is the last leaf and gets the comment box, clear any ancestors
838                         $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent` = %d ",
839                                 dbesc(datetime_convert()),
840                                 intval($parent)
841                         );
842                         update_thread($parent, true);
843
844                         // Inherit ACLs from the parent item.
845
846                         $r = q("UPDATE `item` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d
847                                 WHERE `id` = %d",
848                                 dbesc($parent_item['allow_cid']),
849                                 dbesc($parent_item['allow_gid']),
850                                 dbesc($parent_item['deny_cid']),
851                                 dbesc($parent_item['deny_gid']),
852                                 intval($parent_item['private']),
853                                 intval($post_id)
854                         );
855
856                         if($contact_record != $author) {
857                                 notification(array(
858                                         'type'         => NOTIFY_COMMENT,
859                                         'notify_flags' => $user['notify-flags'],
860                                         'language'     => $user['language'],
861                                         'to_name'      => $user['username'],
862                                         'to_email'     => $user['email'],
863                                         'uid'          => $user['uid'],
864                                         'item'         => $datarray,
865                                         'link'          => $a->get_baseurl().'/display/'.urlencode($datarray['guid']),
866                                         'source_name'  => $datarray['author-name'],
867                                         'source_link'  => $datarray['author-link'],
868                                         'source_photo' => $datarray['author-avatar'],
869                                         'verb'         => ACTIVITY_POST,
870                                         'otype'        => 'item',
871                                         'parent'       => $parent,
872                                         'parent_uri'   => $parent_item['uri']
873                                 ));
874
875                         }
876
877
878                         // Store the comment signature information in case we need to relay to Diaspora
879                         store_diaspora_comment_sig($datarray, $author, ($self ? $a->user['prvkey'] : false), $parent_item, $post_id);
880
881                 } else {
882                         $parent = $post_id;
883
884                         if($contact_record != $author) {
885                                 notification(array(
886                                         'type'         => NOTIFY_WALL,
887                                         'notify_flags' => $user['notify-flags'],
888                                         'language'     => $user['language'],
889                                         'to_name'      => $user['username'],
890                                         'to_email'     => $user['email'],
891                                         'uid'          => $user['uid'],
892                                         'item'         => $datarray,
893                                         'link'          => $a->get_baseurl().'/display/'.urlencode($datarray['guid']),
894                                         'source_name'  => $datarray['author-name'],
895                                         'source_link'  => $datarray['author-link'],
896                                         'source_photo' => $datarray['author-avatar'],
897                                         'verb'         => ACTIVITY_POST,
898                                         'otype'        => 'item'
899                                 ));
900                         }
901                 }
902
903                 // fallback so that parent always gets set to non-zero.
904
905                 if(! $parent)
906                         $parent = $post_id;
907
908                 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s', `plink` = '%s', `changed` = '%s', `last-child` = 1, `visible` = 1
909                         WHERE `id` = %d",
910                         intval($parent),
911                         dbesc(($parent == $post_id) ? $uri : $parent_item['uri']),
912                         dbesc($a->get_baseurl().'/display/'.urlencode($datarray['guid'])),
913                         dbesc(datetime_convert()),
914                         intval($post_id)
915                 );
916
917                 // photo comments turn the corresponding item visible to the profile wall
918                 // This way we don't see every picture in your new photo album posted to your wall at once.
919                 // They will show up as people comment on them.
920
921                 if(! $parent_item['visible']) {
922                         $r = q("UPDATE `item` SET `visible` = 1 WHERE `id` = %d",
923                                 intval($parent_item['id'])
924                         );
925                         update_thread($parent_item['id']);
926                 }
927         }
928         else {
929                 logger('mod_item: unable to retrieve post that was just stored.');
930                 notice( t('System error. Post not saved.') . EOL);
931                 goaway($a->get_baseurl() . "/" . $return_path );
932                 // NOTREACHED
933         }
934
935         // update the commented timestamp on the parent
936
937         q("UPDATE `item` set `commented` = '%s', `changed` = '%s' WHERE `id` = %d",
938                 dbesc(datetime_convert()),
939                 dbesc(datetime_convert()),
940                 intval($parent)
941         );
942         if ($post_id != $parent)
943                 update_thread($parent);
944
945         $datarray['id']    = $post_id;
946         $datarray['plink'] = $a->get_baseurl().'/display/'.urlencode($datarray['guid']);
947
948         call_hooks('post_local_end', $datarray);
949
950         if(strlen($emailcc) && $profile_uid == local_user()) {
951                 $erecips = explode(',', $emailcc);
952                 if(count($erecips)) {
953                         foreach($erecips as $recip) {
954                                 $addr = trim($recip);
955                                 if(! strlen($addr))
956                                         continue;
957                                 $disclaimer = '<hr />' . sprintf( t('This message was sent to you by %s, a member of the Friendica social network.'),$a->user['username']) 
958                                         . '<br />';
959                                 $disclaimer .= sprintf( t('You may visit them online at %s'), $a->get_baseurl() . '/profile/' . $a->user['nickname']) . EOL;
960                                 $disclaimer .= t('Please contact the sender by replying to this post if you do not wish to receive these messages.') . EOL; 
961                                 if (!$datarray['title']=='') {
962                                     $subject = email_header_encode($datarray['title'],'UTF-8');
963                                 } else {
964                                     $subject = email_header_encode('[Friendica]' . ' ' . sprintf( t('%s posted an update.'),$a->user['username']),'UTF-8');
965                                 }
966                                 $link = '<a href="' . $a->get_baseurl() . '/profile/' . $a->user['nickname'] . '"><img src="' . $author['thumb'] . '" alt="' . $a->user['username'] . '" /></a><br /><br />';
967                                 $html    = prepare_body($datarray);
968                                 $message = '<html><body>' . $link . $html . $disclaimer . '</body></html>';
969                                 include_once('include/html2plain.php');
970                                 $params = array (
971                                     'fromName' => $a->user['username'],
972                                     'fromEmail' => $a->user['email'],
973                                     'toEmail' => $addr,
974                                     'replyTo' => $a->user['email'],
975                                     'messageSubject' => $subject,
976                                     'htmlVersion' => $message,
977                                     'textVersion' => html2plain($html.$disclaimer),
978                                 );
979                                 enotify::send($params);
980                         }
981                 }
982         }
983
984         create_tags_from_item($post_id);
985         create_files_from_item($post_id);
986
987         if ($post_id == $parent)
988                 add_thread($post_id);
989
990         // This is a real juggling act on shared hosting services which kill your processes
991         // e.g. dreamhost. We used to start delivery to our native delivery agents in the background
992         // and then run our plugin delivery from the foreground. We're now doing plugin delivery first,
993         // because as soon as you start loading up a bunch of remote delivey processes, *this* page is
994         // likely to get killed off. If you end up looking at an /item URL and a blank page,
995         // it's very likely the delivery got killed before all your friends could be notified.
996         // Currently the only realistic fixes are to use a reliable server - which precludes shared hosting,
997         // or cut back on plugins which do remote deliveries.
998
999         proc_run('php', "include/notifier.php", $notify_type, "$post_id");
1000
1001         logger('post_complete');
1002
1003         item_post_return($a->get_baseurl(), $api_source, $return_path);
1004         // NOTREACHED
1005 }
1006
1007 function item_post_return($baseurl, $api_source, $return_path) {
1008         // figure out how to return, depending on from whence we came
1009
1010         if($api_source)
1011                 return;
1012
1013         if($return_path) {
1014                 goaway($baseurl . "/" . $return_path);
1015         }
1016
1017         $json = array('success' => 1);
1018         if(x($_REQUEST,'jsreload') && strlen($_REQUEST['jsreload']))
1019                 $json['reload'] = $baseurl . '/' . $_REQUEST['jsreload'];
1020
1021         logger('post_json: ' . print_r($json,true), LOGGER_DEBUG);
1022
1023         echo json_encode($json);
1024         killme();
1025 }
1026
1027
1028
1029 function item_content(&$a) {
1030
1031         if((! local_user()) && (! remote_user()))
1032                 return;
1033
1034         require_once('include/security.php');
1035
1036         $o = '';
1037         if(($a->argc == 3) && ($a->argv[1] === 'drop') && intval($a->argv[2])) {
1038                 require_once('include/items.php'); 
1039                 $o = drop_item($a->argv[2], !is_ajax());
1040                 if (is_ajax()){
1041                         // ajax return: [<item id>, 0 (no perm) | <owner id>] 
1042                         echo json_encode(array(intval($a->argv[2]), intval($o)));
1043                         killme();
1044                 }
1045         }
1046         return $o;
1047 }
1048
1049 /**
1050  * This function removes the tag $tag from the text $body and replaces it with 
1051  * the appropiate link. 
1052  * 
1053  * @param unknown_type $body the text to replace the tag in
1054  * @param unknown_type $inform a comma-seperated string containing everybody to inform
1055  * @param unknown_type $str_tags string to add the tag to
1056  * @param unknown_type $profile_uid
1057  * @param unknown_type $tag the tag to replace
1058  *
1059  * @return boolean true if replaced, false if not replaced
1060  */
1061 function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag, $network = "") {
1062
1063         $replaced = false;
1064         $r = null;
1065
1066         //is it a hash tag?
1067         if(strpos($tag,'#') === 0) {
1068                 //if the tag is replaced...
1069                 if(strpos($tag,'[url='))
1070                         //...do nothing
1071                         return $replaced;
1072                 //base tag has the tags name only
1073                 $basetag = str_replace('_',' ',substr($tag,1));
1074                 //create text for link
1075                 $newtag = '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
1076                 //replace tag by the link
1077                 $body = str_replace($tag, $newtag, $body);
1078                 $replaced = true;
1079
1080                 //is the link already in str_tags?
1081                 if(! stristr($str_tags,$newtag)) {
1082                         //append or set str_tags
1083                         if(strlen($str_tags))
1084                                 $str_tags .= ',';
1085                         $str_tags .= $newtag;
1086                 }
1087                 return $replaced;
1088         }
1089         //is it a person tag?
1090         if(strpos($tag,'@') === 0) {
1091                 //is it already replaced?
1092                 if(strpos($tag,'[url='))
1093                         return $replaced;
1094                 $stat = false;
1095                 //get the person's name
1096                 $name = substr($tag,1);
1097                 //is it a link or a full dfrn address?
1098                 if((strpos($name,'@')) || (strpos($name,'http://'))) {
1099                         $newname = $name;
1100                         //get the profile links
1101                         $links = @lrdd($name);
1102                         if(count($links)) {
1103                                 //for all links, collect how is to inform and how's profile is to link
1104                                 foreach($links as $link) {
1105                                         if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page')
1106                                                 $profile = $link['@attributes']['href'];
1107                                         if($link['@attributes']['rel'] === 'salmon') {
1108                                                 if(strlen($inform))
1109                                                         $inform .= ',';
1110                                                 $inform .= 'url:' . str_replace(',','%2c',$link['@attributes']['href']);
1111                                         }
1112                                 }
1113                         }
1114                 } elseif (($network != NETWORK_OSTATUS) AND ($network != NETWORK_TWITTER) AND
1115                         ($network != NETWORK_STATUSNET) AND ($network != NETWORK_APPNET)) {
1116                         //if it is a name rather than an address
1117                         $newname = $name;
1118                         $alias = '';
1119                         $tagcid = 0;
1120                         //is it some generated name?
1121                         if(strrpos($newname,'+')) {
1122                                 //get the id
1123                                 $tagcid = intval(substr($newname,strrpos($newname,'+') + 1));
1124                                 //remove the next word from tag's name
1125                                 if(strpos($name,' ')) {
1126                                         $name = substr($name,0,strpos($name,' '));
1127                                 }
1128                         }
1129                         if($tagcid) { //if there was an id
1130                                 //select contact with that id from the logged in user's contact list
1131                                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
1132                                                 intval($tagcid),
1133                                                 intval($profile_uid)
1134                                 );
1135                         }
1136                         else {
1137                                 $newname = str_replace('_',' ',$name);
1138
1139                                 // At first try to fetch a contact according to the given network
1140                                 if ($network != "") {
1141                                         //select someone from this user's contacts by name
1142                                         $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `network` = '%s' AND `uid` = %d LIMIT 1",
1143                                                         dbesc($newname),
1144                                                         dbesc($network),
1145                                                         intval($profile_uid)
1146                                         );
1147                                         if(! $r) {
1148                                                 //select someone by attag or nick and the name passed in
1149                                                 $r = q("SELECT * FROM `contact` WHERE `attag` = '%s' OR `nick` = '%s' AND `network` = '%s' AND `uid` = %d ORDER BY `attag` DESC LIMIT 1",
1150                                                                 dbesc($name),
1151                                                                 dbesc($name),
1152                                                                 dbesc($network),
1153                                                                 intval($profile_uid)
1154                                                 );
1155                                         }
1156                                 } else
1157                                         $r = false;
1158
1159                                 if(! $r) {
1160                                         //select someone from this user's contacts by name
1161                                         $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
1162                                                         dbesc($newname),
1163                                                         intval($profile_uid)
1164                                         );
1165                                 }
1166
1167                                 if(! $r) {
1168                                         //select someone by attag or nick and the name passed in
1169                                         $r = q("SELECT * FROM `contact` WHERE `attag` = '%s' OR `nick` = '%s' AND `uid` = %d ORDER BY `attag` DESC LIMIT 1",
1170                                                         dbesc($name),
1171                                                         dbesc($name),
1172                                                         intval($profile_uid)
1173                                         );
1174                                 }
1175                         }
1176 /*                      } elseif(strstr($name,'_') || strstr($name,' ')) { //no id
1177                                 //get the real name
1178                                 $newname = str_replace('_',' ',$name);
1179                                 //select someone from this user's contacts by name
1180                                 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
1181                                                 dbesc($newname),
1182                                                 intval($profile_uid)
1183                                 );
1184                         } else {
1185                                 //select someone by attag or nick and the name passed in
1186                                 $r = q("SELECT * FROM `contact` WHERE `attag` = '%s' OR `nick` = '%s' AND `uid` = %d ORDER BY `attag` DESC LIMIT 1",
1187                                                 dbesc($name),
1188                                                 dbesc($name),
1189                                                 intval($profile_uid)
1190                                 );
1191                         }*/
1192                         //$r is set, if someone could be selected
1193                         if(count($r)) {
1194                                 $profile = $r[0]['url'];
1195                                 //set newname to nick, find alias
1196                                 if(($r[0]['network'] === NETWORK_OSTATUS) OR ($r[0]['network'] === NETWORK_TWITTER)
1197                                         OR ($r[0]['network'] === NETWORK_STATUSNET) OR ($r[0]['network'] === NETWORK_APPNET)) {
1198                                         $newname = $r[0]['nick'];
1199                                         $stat = true;
1200                                         if($r[0]['alias'])
1201                                                 $alias = $r[0]['alias'];
1202                                 }
1203                                 else
1204                                         $newname = $r[0]['name'];
1205                                 //add person's id to $inform
1206                                 if(strlen($inform))
1207                                         $inform .= ',';
1208                                 $inform .= 'cid:' . $r[0]['id'];
1209                         }
1210                 }
1211                 //if there is an url for this persons profile
1212                 if(isset($profile)) {
1213                         $replaced = true;
1214                         //create profile link
1215                         $profile = str_replace(',','%2c',$profile);
1216                         $newtag = '@[url=' . $profile . ']' . $newname  . '[/url]';
1217                         $body = str_replace('@' . $name, $newtag, $body);
1218                         //append tag to str_tags
1219                         if(! stristr($str_tags,$newtag)) {
1220                                 if(strlen($str_tags))
1221                                         $str_tags .= ',';
1222                                 $str_tags .= $newtag;
1223                         }
1224
1225                         // Status.Net seems to require the numeric ID URL in a mention if the person isn't
1226                         // subscribed to you. But the nickname URL is OK if they are. Grrr. We'll tag both.
1227
1228                         if(strlen($alias)) {
1229                                 $newtag = '@[url=' . $alias . ']' . $newname    . '[/url]';
1230                                 if(! stristr($str_tags,$newtag)) {
1231                                         if(strlen($str_tags))
1232                                                 $str_tags .= ',';
1233                                         $str_tags .= $newtag;
1234                                 }
1235                         }
1236                 }
1237         }
1238
1239         return array('replaced' => $replaced, 'contact' => $r[0]);
1240 }
1241
1242
1243 function store_diaspora_comment_sig($datarray, $author, $uprvkey, $parent_item, $post_id) {
1244         // We won't be able to sign Diaspora comments for authenticated visitors - we don't have their private key
1245
1246         $enabled = intval(get_config('system','diaspora_enabled'));
1247         if(! $enabled) {
1248                 logger('mod_item: diaspora support disabled, not storing comment signature', LOGGER_DEBUG);
1249                 return;
1250         }
1251
1252
1253         logger('mod_item: storing diaspora comment signature');
1254
1255         require_once('include/bb2diaspora.php');
1256         $signed_body = html_entity_decode(bb2diaspora($datarray['body']));
1257
1258         // Only works for NETWORK_DFRN
1259         $contact_baseurl_start = strpos($author['url'],'://') + 3;
1260         $contact_baseurl_length = strpos($author['url'],'/profile') - $contact_baseurl_start;
1261         $contact_baseurl = substr($author['url'], $contact_baseurl_start, $contact_baseurl_length);
1262         $diaspora_handle = $author['nick'] . '@' . $contact_baseurl;
1263
1264         $signed_text = $datarray['guid'] . ';' . $parent_item['guid'] . ';' . $signed_body . ';' . $diaspora_handle;
1265
1266         if( $uprvkey !== false )
1267                 $authorsig = base64_encode(rsa_sign($signed_text,$uprvkey,'sha256'));
1268         else
1269                 $authorsig = '';
1270
1271         q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
1272                 intval($post_id),
1273                 dbesc($signed_text),
1274                 dbesc(base64_encode($authorsig)),
1275                 dbesc($diaspora_handle)
1276         );
1277
1278         return;
1279 }