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