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