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