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