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