]> git.mxchange.org Git - friendica.git/blob - mod/item.php
4744ec4ad50e380b2d3f5883f4f8676bfa94acf2
[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
20 require_once 'include/crypto.php';
21 require_once 'include/enotify.php';
22 require_once 'include/email.php';
23 require_once 'include/tags.php';
24 require_once 'include/files.php';
25 require_once 'include/threads.php';
26 require_once 'include/text.php';
27 require_once 'include/items.php';
28 require_once 'include/Scrape.php';
29 require_once 'include/diaspora.php';
30 require_once 'include/Contact.php';
31
32 function item_post(App $a) {
33
34         if ((! local_user()) && (! remote_user()) && (! x($_REQUEST, 'commenter'))) {
35                 return;
36         }
37
38         require_once 'include/security.php';
39
40         $uid = local_user();
41
42         if (x($_REQUEST, 'dropitems')) {
43                 $arr_drop = explode(',', $_REQUEST['dropitems']);
44                 drop_items($arr_drop);
45                 $json = array('success' => 1);
46                 echo json_encode($json);
47                 killme();
48         }
49
50         call_hooks('post_local_start', $_REQUEST);
51         // logger('postinput ' . file_get_contents('php://input'));
52         logger('postvars ' . print_r($_REQUEST,true), LOGGER_DATA);
53
54         $api_source = ((x($_REQUEST, 'api_source') && $_REQUEST['api_source']) ? true : false);
55
56         $message_id = ((x($_REQUEST, 'message_id') && $api_source) ? strip_tags($_REQUEST['message_id']) : '');
57
58         $return_path = ((x($_REQUEST, 'return')) ? $_REQUEST['return'] : '');
59         $preview = ((x($_REQUEST, 'preview')) ? intval($_REQUEST['preview']) : 0);
60
61         /*
62          * Check for doubly-submitted posts, and reject duplicates
63          * Note that we have to ignore previews, otherwise nothing will post
64          * after it's been previewed
65          */
66         if (!$preview && x($_REQUEST, 'post_id_random')) {
67                 if (x($_SESSION, 'post-random') && $_SESSION['post-random'] == $_REQUEST['post_id_random']) {
68                         logger("item post: duplicate post", LOGGER_DEBUG);
69                         item_post_return(App::get_baseurl(), $api_source, $return_path);
70                 } else {
71                         $_SESSION['post-random'] = $_REQUEST['post_id_random'];
72                 }
73         }
74
75         // Is this a reply to something?
76         $parent = ((x($_REQUEST, 'parent')) ? intval($_REQUEST['parent']) : 0);
77         $parent_uri = ((x($_REQUEST, 'parent_uri')) ? trim($_REQUEST['parent_uri']) : '');
78
79         $parent_item = null;
80         $parent_contact = null;
81         $thr_parent = '';
82         $parid = 0;
83         $r = false;
84         $objecttype = null;
85
86         if ($parent || $parent_uri) {
87
88                 $objecttype = ACTIVITY_OBJ_COMMENT;
89
90                 if (! x($_REQUEST, 'type')) {
91                         $_REQUEST['type'] = 'net-comment';
92                 }
93
94                 if ($parent) {
95                         $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
96                                 intval($parent)
97                         );
98                 } elseif ($parent_uri && local_user()) {
99                         // This is coming from an API source, and we are logged in
100                         $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
101                                 dbesc($parent_uri),
102                                 intval(local_user())
103                         );
104                 }
105
106                 // if this isn't the real parent of the conversation, find it
107                 if (dbm::is_result($r)) {
108                         $parid = $r[0]['parent'];
109                         $parent_uri = $r[0]['uri'];
110                         if ($r[0]['id'] != $r[0]['parent']) {
111                                 $r = q("SELECT * FROM `item` WHERE `id` = `parent` AND `parent` = %d LIMIT 1",
112                                         intval($parid)
113                                 );
114                         }
115                 }
116
117                 if (! dbm::is_result($r)) {
118                         notice( t('Unable to locate original post.') . EOL);
119                         if (x($_REQUEST, 'return')) {
120                                 goaway($return_path);
121                         }
122                         killme();
123                 }
124                 $parent_item = $r[0];
125                 $parent = $r[0]['id'];
126
127                 // multi-level threading - preserve the info but re-parent to our single level threading
128                 //if(($parid) && ($parid != $parent))
129                 $thr_parent = $parent_uri;
130
131                 if ($parent_item['contact-id'] && $uid) {
132                         $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
133                                 intval($parent_item['contact-id']),
134                                 intval($uid)
135                         );
136                         if (dbm::is_result($r)) {
137                                 $parent_contact = $r[0];
138                         }
139
140                         // If the contact id doesn't fit with the contact, then set the contact to null
141                         $thrparent = q("SELECT `author-link`, `network` FROM `item` WHERE `uri` = '%s' LIMIT 1", dbesc($thr_parent));
142                         if (dbm::is_result($thrparent) AND ($thrparent[0]["network"] === NETWORK_OSTATUS)
143                                 AND (normalise_link($parent_contact["url"]) != normalise_link($thrparent[0]["author-link"]))) {
144                                 $parent_contact = get_contact_details_by_url($thrparent[0]["author-link"]);
145
146                                 if (!isset($parent_contact["nick"])) {
147                                         require_once 'include/Scrape.php';
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 != '') AND ($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                                 AND ($parent_item['network'] != NETWORK_OSTATUS)
314                                 AND ($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,App::get_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) OR 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 AND ($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                         $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
571         $tagged = array();
572
573         $private_forum = false;
574
575         if (count($tags)) {
576                 foreach ($tags as $tag) {
577
578                         if (strpos($tag, '#') === 0) {
579                                 continue;
580                         }
581
582                         /*
583                          * If we already tagged 'Robert Johnson', don't try and tag 'Robert'.
584                          * Robert Johnson should be first in the $tags array
585                          */
586                         $fullnametagged = false;
587                         /// @TODO $tagged is initialized above if() block and is not filled, maybe old-lost code?
588                         foreach ($tagged as $nextTag) {
589                                 if (stristr($nextTag, $tag . ' ')) {
590                                         $fullnametagged = true;
591                                         break;
592                                 }
593                         }
594                         if ($fullnametagged) {
595                                 continue;
596                         }
597
598                         $success = handle_tag($a, $body, $inform, $str_tags, (local_user()) ? local_user() : $profile_uid , $tag, $network);
599                         if ($success['replaced']) {
600                                 $tagged[] = $tag;
601                         }
602                         if (is_array($success['contact']) && intval($success['contact']['prv'])) {
603                                 $private_forum = true;
604                                 $private_id = $success['contact']['id'];
605                         }
606                 }
607         }
608
609         if (($private_forum) && (! $parent) && (! $private)) {
610                 // we tagged a private forum in a top level post and the message was public.
611                 // Restrict it.
612                 $private = 1;
613                 $str_contact_allow = '<' . $private_id . '>';
614         }
615
616         $attachments = '';
617         $match = false;
618
619         if (preg_match_all('/(\[attachment\]([0-9]+)\[\/attachment\])/',$body,$match)) {
620                 foreach ($match[2] as $mtch) {
621                         $r = q("SELECT `id`,`filename`,`filesize`,`filetype` FROM `attach` WHERE `uid` = %d AND `id` = %d LIMIT 1",
622                                 intval($profile_uid),
623                                 intval($mtch)
624                         );
625                         if (dbm::is_result($r)) {
626                                 if (strlen($attachments)) {
627                                         $attachments .= ',';
628                                 }
629                                 $attachments .= '[attach]href="' . App::get_baseurl() . '/attach/' . $r[0]['id'] . '" length="' . $r[0]['filesize'] . '" type="' . $r[0]['filetype'] . '" title="' . (($r[0]['filename']) ? $r[0]['filename'] : '') . '"[/attach]';
630                         }
631                         $body = str_replace($match[1],'',$body);
632                 }
633         }
634
635         $wall = 0;
636
637         if ($post_type === 'wall' || $post_type === 'wall-comment') {
638                 $wall = 1;
639         }
640
641         if (! strlen($verb)) {
642                 $verb = ACTIVITY_POST ;
643         }
644
645         if ($network == "") {
646                 $network = NETWORK_DFRN;
647         }
648
649         $gravity = (($parent) ? 6 : 0 );
650
651         // even if the post arrived via API we are considering that it
652         // originated on this site by default for determining relayability.
653
654         $origin = ((x($_REQUEST, 'origin')) ? intval($_REQUEST['origin']) : 1);
655
656         $notify_type = (($parent) ? 'comment-new' : 'wall-new' );
657
658         $uri = (($message_id) ? $message_id : item_new_uri($a->get_hostname(),$profile_uid, $guid));
659
660         // Fallback so that we alway have a thr-parent
661         if (!$thr_parent) {
662                 $thr_parent = $uri;
663         }
664
665         $datarray = array();
666         $datarray['uid']           = $profile_uid;
667         $datarray['type']          = $post_type;
668         $datarray['wall']          = $wall;
669         $datarray['gravity']       = $gravity;
670         $datarray['network']       = $network;
671         $datarray['contact-id']    = $contact_id;
672         $datarray['owner-name']    = $contact_record['name'];
673         $datarray['owner-link']    = $contact_record['url'];
674         $datarray['owner-avatar']  = $contact_record['thumb'];
675         $datarray['owner-id']      = get_contact($datarray['owner-link'], 0);
676         $datarray['author-name']   = $author['name'];
677         $datarray['author-link']   = $author['url'];
678         $datarray['author-avatar'] = $author['thumb'];
679         $datarray['author-id']     = get_contact($datarray['author-link'], 0);
680         $datarray['created']       = datetime_convert();
681         $datarray['edited']        = datetime_convert();
682         $datarray['commented']     = datetime_convert();
683         $datarray['received']      = datetime_convert();
684         $datarray['changed']       = datetime_convert();
685         $datarray['extid']         = $extid;
686         $datarray['guid']          = $guid;
687         $datarray['uri']           = $uri;
688         $datarray['title']         = $title;
689         $datarray['body']          = $body;
690         $datarray['app']           = $app;
691         $datarray['location']      = $location;
692         $datarray['coord']         = $coord;
693         $datarray['tag']           = $str_tags;
694         $datarray['file']          = $categories;
695         $datarray['inform']        = $inform;
696         $datarray['verb']          = $verb;
697         $datarray['object-type']   = $objecttype;
698         $datarray['allow_cid']     = $str_contact_allow;
699         $datarray['allow_gid']     = $str_group_allow;
700         $datarray['deny_cid']      = $str_contact_deny;
701         $datarray['deny_gid']      = $str_group_deny;
702         $datarray['private']       = $private;
703         $datarray['pubmail']       = $pubmail_enable;
704         $datarray['attach']        = $attachments;
705         $datarray['bookmark']      = intval($bookmark);
706         $datarray['thr-parent']    = $thr_parent;
707         $datarray['postopts']      = $postopts;
708         $datarray['origin']        = $origin;
709         $datarray['moderated']     = $allow_moderated;
710         $datarray['gcontact-id']   = get_gcontact_id(array("url" => $datarray['author-link'], "network" => $datarray['network'],
711                                                         "photo" => $datarray['author-avatar'], "name" => $datarray['author-name']));
712         $datarray['object']        = $object;
713
714         /*
715          * These fields are for the convenience of plugins...
716          * 'self' if true indicates the owner is posting on their own wall
717          * If parent is 0 it is a top-level post.
718          */
719         $datarray['parent']        = $parent;
720         $datarray['self']          = $self;
721 //      $datarray['prvnets']       = $user['prvnets'];
722
723         $datarray['parent-uri'] = ($parent == 0) ? $uri : $parent_item['uri'];
724         $datarray['plink'] = App::get_baseurl() . '/display/' . urlencode($datarray['guid']);
725         $datarray['last-child'] = 1;
726         $datarray['visible'] = 1;
727
728         $datarray['protocol'] = PROTOCOL_DFRN;
729
730         $r = dba::fetch_first("SELECT `conversation-uri`, `conversation-href` FROM `conversation` WHERE `item-uri` = ?", $datarray['parent-uri']);
731         if (dbm::is_result($r)) {
732                 if ($r['conversation-uri'] != '') {
733                         $datarray['conversation-uri'] = $r['conversation-uri'];
734                 }
735                 if ($r['conversation-href'] != '') {
736                         $datarray['conversation-href'] = $r['conversation-href'];
737                 }
738         }
739
740         if ($orig_post) {
741                 $datarray['edit'] = true;
742         }
743
744         // Search for hashtags
745         item_body_set_hashtags($datarray);
746
747         // preview mode - prepare the body for display and send it via json
748         if ($preview) {
749                 require_once 'include/conversation.php';
750                 // We set the datarray ID to -1 because in preview mode the dataray
751                 // doesn't have an ID.
752                 $datarray["id"] = -1;
753                 $o = conversation($a,array(array_merge($contact_record,$datarray)),'search', false, true);
754                 logger('preview: ' . $o);
755                 echo json_encode(array('preview' => $o));
756                 killme();
757         }
758
759         call_hooks('post_local',$datarray);
760
761         if (x($datarray, 'cancel')) {
762                 logger('mod_item: post cancelled by plugin.');
763                 if ($return_path) {
764                         goaway($return_path);
765                 }
766
767                 $json = array('cancel' => 1);
768                 if (x($_REQUEST, 'jsreload') && strlen($_REQUEST['jsreload'])) {
769                         $json['reload'] = App::get_baseurl() . '/' . $_REQUEST['jsreload'];
770                 }
771
772                 echo json_encode($json);
773                 killme();
774         }
775
776         // Fill the cache field
777         put_item_in_cache($datarray);
778
779         $datarray = store_conversation($datarray);
780
781         if ($orig_post) {
782                 $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",
783                         dbesc($datarray['title']),
784                         dbesc($datarray['body']),
785                         dbesc($datarray['tag']),
786                         dbesc($datarray['attach']),
787                         dbesc($datarray['file']),
788                         dbesc($datarray['rendered-html']),
789                         dbesc($datarray['rendered-hash']),
790                         dbesc(datetime_convert()),
791                         dbesc(datetime_convert()),
792                         intval($post_id),
793                         intval($profile_uid)
794                 );
795
796                 create_tags_from_item($post_id);
797                 create_files_from_item($post_id);
798                 update_thread($post_id);
799
800                 // update filetags in pconfig
801                 file_tag_update_pconfig($uid,$categories_old,$categories_new,'category');
802
803                 proc_run(PRIORITY_HIGH, "include/notifier.php", 'edit_post', $post_id);
804                 if ((x($_REQUEST, 'return')) && strlen($return_path)) {
805                         logger('return: ' . $return_path);
806                         goaway($return_path);
807                 }
808                 killme();
809         } else {
810                 $post_id = 0;
811         }
812
813         q("COMMIT");
814         q("START TRANSACTION;");
815
816         $r = q("INSERT INTO `item` (`guid`, `extid`, `uid`,`type`,`wall`,`gravity`, `network`, `contact-id`,
817                                         `owner-name`,`owner-link`,`owner-avatar`, `owner-id`,
818                                         `author-name`, `author-link`, `author-avatar`, `author-id`,
819                                         `created`, `edited`, `commented`, `received`, `changed`,
820                                         `uri`, `thr-parent`, `title`, `body`, `app`, `location`, `coord`,
821                                         `tag`, `inform`, `verb`, `object-type`, `postopts`,
822                                         `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`, `private`,
823                                         `pubmail`, `attach`, `bookmark`,`origin`, `moderated`, `file`,
824                                         `rendered-html`, `rendered-hash`, `gcontact-id`, `object`,
825                                         `parent`, `parent-uri`, `plink`, `last-child`, `visible`)
826                 VALUES('%s', '%s', %d, '%s', %d, %d, '%s', %d,
827                         '%s', '%s', '%s', %d,
828                         '%s', '%s', '%s', %d,
829                         '%s', '%s', '%s', '%s', '%s',
830                         '%s', '%s', '%s', '%s', '%s', '%s', '%s',
831                         '%s', '%s', '%s', '%s', '%s',
832                         '%s', '%s', '%s', '%s', %d,
833                         %d, '%s', %d, %d, %d, '%s',
834                         '%s', '%s', %d, '%s',
835                         %d, '%s', '%s', %d, %d)",
836                 dbesc($datarray['guid']),
837                 dbesc($datarray['extid']),
838                 intval($datarray['uid']),
839                 dbesc($datarray['type']),
840                 intval($datarray['wall']),
841                 intval($datarray['gravity']),
842                 dbesc($datarray['network']),
843                 intval($datarray['contact-id']),
844                 dbesc($datarray['owner-name']),
845                 dbesc($datarray['owner-link']),
846                 dbesc($datarray['owner-avatar']),
847                 intval($datarray['owner-id']),
848                 dbesc($datarray['author-name']),
849                 dbesc($datarray['author-link']),
850                 dbesc($datarray['author-avatar']),
851                 intval($datarray['author-id']),
852                 dbesc($datarray['created']),
853                 dbesc($datarray['edited']),
854                 dbesc($datarray['commented']),
855                 dbesc($datarray['received']),
856                 dbesc($datarray['changed']),
857                 dbesc($datarray['uri']),
858                 dbesc($datarray['thr-parent']),
859                 dbesc($datarray['title']),
860                 dbesc($datarray['body']),
861                 dbesc($datarray['app']),
862                 dbesc($datarray['location']),
863                 dbesc($datarray['coord']),
864                 dbesc($datarray['tag']),
865                 dbesc($datarray['inform']),
866                 dbesc($datarray['verb']),
867                 dbesc($datarray['object-type']),
868                 dbesc($datarray['postopts']),
869                 dbesc($datarray['allow_cid']),
870                 dbesc($datarray['allow_gid']),
871                 dbesc($datarray['deny_cid']),
872                 dbesc($datarray['deny_gid']),
873                 intval($datarray['private']),
874                 intval($datarray['pubmail']),
875                 dbesc($datarray['attach']),
876                 intval($datarray['bookmark']),
877                 intval($datarray['origin']),
878                 intval($datarray['moderated']),
879                 dbesc($datarray['file']),
880                 dbesc($datarray['rendered-html']),
881                 dbesc($datarray['rendered-hash']),
882                 intval($datarray['gcontact-id']),
883                 dbesc($datarray['object']),
884                 intval($datarray['parent']),
885                 dbesc($datarray['parent-uri']),
886                 dbesc($datarray['plink']),
887                 intval($datarray['last-child']),
888                 intval($datarray['visible'])
889         );
890
891         if (dbm::is_result($r)) {
892                 $r = q("SELECT LAST_INSERT_ID() AS `item-id`");
893                 if (dbm::is_result($r)) {
894                         $post_id = $r[0]['item-id'];
895                 } else {
896                         $post_id = 0;
897                 }
898         } else {
899                 logger('mod_item: unable to create post.');
900                 $post_id = 0;
901         }
902
903         if ($post_id == 0) {
904                 q("COMMIT");
905                 logger('mod_item: unable to retrieve post that was just stored.');
906                 notice(t('System error. Post not saved.') . EOL);
907                 goaway($return_path);
908                 // NOTREACHED
909         }
910
911         logger('mod_item: saved item ' . $post_id);
912
913         $datarray["id"] = $post_id;
914
915         item_set_last_item($datarray);
916
917         // update filetags in pconfig
918         file_tag_update_pconfig($uid,$categories_old,$categories_new,'category');
919
920         if ($parent) {
921
922                 // This item is the last leaf and gets the comment box, clear any ancestors
923                 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent` = %d AND `last-child` AND `id` != %d",
924                         dbesc(datetime_convert()),
925                         intval($parent),
926                         intval($post_id)
927                 );
928
929                 // update the commented timestamp on the parent
930                 q("UPDATE `item` SET `visible` = 1, `commented` = '%s', `changed` = '%s' WHERE `id` = %d",
931                         dbesc(datetime_convert()),
932                         dbesc(datetime_convert()),
933                         intval($parent)
934                 );
935
936                 if ($contact_record != $author) {
937                         notification(array(
938                                 'type'         => NOTIFY_COMMENT,
939                                 'notify_flags' => $user['notify-flags'],
940                                 'language'     => $user['language'],
941                                 'to_name'      => $user['username'],
942                                 'to_email'     => $user['email'],
943                                 'uid'          => $user['uid'],
944                                 'item'         => $datarray,
945                                 'link'         => App::get_baseurl().'/display/'.urlencode($datarray['guid']),
946                                 'source_name'  => $datarray['author-name'],
947                                 'source_link'  => $datarray['author-link'],
948                                 'source_photo' => $datarray['author-avatar'],
949                                 'verb'         => ACTIVITY_POST,
950                                 'otype'        => 'item',
951                                 'parent'       => $parent,
952                                 'parent_uri'   => $parent_item['uri']
953                         ));
954
955                 }
956
957
958                 // Store the comment signature information in case we need to relay to Diaspora
959                 Diaspora::store_comment_signature($datarray, $author, ($self ? $user['prvkey'] : false), $post_id);
960
961         } else {
962                 $parent = $post_id;
963
964                 $r = q("UPDATE `item` SET `parent` = %d WHERE `id` = %d",
965                         intval($parent),
966                         intval($post_id));
967
968                 if ($contact_record != $author) {
969                         notification(array(
970                                 'type'         => NOTIFY_WALL,
971                                 'notify_flags' => $user['notify-flags'],
972                                 'language'     => $user['language'],
973                                 'to_name'      => $user['username'],
974                                 'to_email'     => $user['email'],
975                                 'uid'          => $user['uid'],
976                                 'item'         => $datarray,
977                                 'link'         => App::get_baseurl().'/display/'.urlencode($datarray['guid']),
978                                 'source_name'  => $datarray['author-name'],
979                                 'source_link'  => $datarray['author-link'],
980                                 'source_photo' => $datarray['author-avatar'],
981                                 'verb'         => ACTIVITY_POST,
982                                 'otype'        => 'item'
983                         ));
984                 }
985         }
986
987         call_hooks('post_local_end', $datarray);
988
989         if (strlen($emailcc) && $profile_uid == local_user()) {
990                 $erecips = explode(',', $emailcc);
991                 if (count($erecips)) {
992                         foreach ($erecips as $recip) {
993                                 $addr = trim($recip);
994                                 if (! strlen($addr)) {
995                                         continue;
996                                 }
997                                 $disclaimer = '<hr />' . sprintf( t('This message was sent to you by %s, a member of the Friendica social network.'), $a->user['username'])
998                                         . '<br />';
999                                 $disclaimer .= sprintf( t('You may visit them online at %s'), App::get_baseurl() . '/profile/' . $a->user['nickname']) . EOL;
1000                                 $disclaimer .= t('Please contact the sender by replying to this post if you do not wish to receive these messages.') . EOL;
1001                                 if (!$datarray['title']=='') {
1002                                         $subject = email_header_encode($datarray['title'], 'UTF-8');
1003                                 } else {
1004                                         $subject = email_header_encode('[Friendica]' . ' ' . sprintf( t('%s posted an update.'), $a->user['username']), 'UTF-8');
1005                                 }
1006                                 $link = '<a href="' . App::get_baseurl() . '/profile/' . $a->user['nickname'] . '"><img src="' . $author['thumb'] . '" alt="' . $a->user['username'] . '" /></a><br /><br />';
1007                                 $html    = prepare_body($datarray);
1008                                 $message = '<html><body>' . $link . $html . $disclaimer . '</body></html>';
1009                                 include_once 'include/html2plain.php';
1010                                 $params = array (
1011                                     'fromName' => $a->user['username'],
1012                                     'fromEmail' => $a->user['email'],
1013                                     'toEmail' => $addr,
1014                                     'replyTo' => $a->user['email'],
1015                                     'messageSubject' => $subject,
1016                                     'htmlVersion' => $message,
1017                                     'textVersion' => html2plain($html.$disclaimer),
1018                                 );
1019                                 Emailer::send($params);
1020                         }
1021                 }
1022         }
1023
1024         if ($post_id == $parent) {
1025                 add_thread($post_id);
1026         } else {
1027                 update_thread($parent, true);
1028         }
1029
1030         q("COMMIT");
1031
1032         create_tags_from_item($post_id);
1033         create_files_from_item($post_id);
1034
1035         // Insert an item entry for UID=0 for global entries.
1036         // We now do it in the background to save some time.
1037         // This is important in interactive environments like the frontend or the API.
1038         // We don't fork a new process since this is done anyway with the following command
1039         proc_run(array('priority' => PRIORITY_HIGH, 'dont_fork' => true), "include/create_shadowentry.php", $post_id);
1040
1041         // Call the background process that is delivering the item to the receivers
1042         proc_run(PRIORITY_HIGH, "include/notifier.php", $notify_type, $post_id);
1043
1044         logger('post_complete');
1045
1046         item_post_return(App::get_baseurl(), $api_source, $return_path);
1047         // NOTREACHED
1048 }
1049
1050 function item_post_return($baseurl, $api_source, $return_path) {
1051         // figure out how to return, depending on from whence we came
1052
1053         if ($api_source) {
1054                 return;
1055         }
1056
1057         if ($return_path) {
1058                 goaway($return_path);
1059         }
1060
1061         $json = array('success' => 1);
1062         if (x($_REQUEST, 'jsreload') && strlen($_REQUEST['jsreload'])) {
1063                 $json['reload'] = $baseurl . '/' . $_REQUEST['jsreload'];
1064         }
1065
1066         logger('post_json: ' . print_r($json,true), LOGGER_DEBUG);
1067
1068         echo json_encode($json);
1069         killme();
1070 }
1071
1072
1073
1074 function item_content(App $a) {
1075
1076         if ((! local_user()) && (! remote_user())) {
1077                 return;
1078         }
1079
1080         require_once 'include/security.php';
1081
1082         $o = '';
1083         if (($a->argc == 3) && ($a->argv[1] === 'drop') && intval($a->argv[2])) {
1084                 $o = drop_item($a->argv[2], !is_ajax());
1085                 if (is_ajax()) {
1086                         // ajax return: [<item id>, 0 (no perm) | <owner id>]
1087                         echo json_encode(array(intval($a->argv[2]), intval($o)));
1088                         killme();
1089                 }
1090         }
1091         return $o;
1092 }
1093
1094 /**
1095  * This function removes the tag $tag from the text $body and replaces it with
1096  * the appropiate link.
1097  *
1098  * @param App $a Application instance @TODO is unused in this function's scope (excluding included files)
1099  * @param unknown_type $body the text to replace the tag in
1100  * @param string $inform a comma-seperated string containing everybody to inform
1101  * @param string $str_tags string to add the tag to
1102  * @param integer $profile_uid
1103  * @param string $tag the tag to replace
1104  * @param string $network The network of the post
1105  *
1106  * @return boolean true if replaced, false if not replaced
1107  */
1108 function handle_tag(App $a, &$body, &$inform, &$str_tags, $profile_uid, $tag, $network = "") {
1109         require_once 'include/Scrape.php';
1110         require_once 'include/socgraph.php';
1111
1112         $replaced = false;
1113         $r = null;
1114
1115         //is it a person tag?
1116         if (strpos($tag, '@') === 0) {
1117                 //is it already replaced?
1118                 if (strpos($tag, '[url=')) {
1119                         //append tag to str_tags
1120                         if (!stristr($str_tags, $tag)) {
1121                                 if (strlen($str_tags)) {
1122                                         $str_tags .= ',';
1123                                 }
1124                                 $str_tags .= $tag;
1125                         }
1126
1127                         // Checking for the alias that is used for OStatus
1128                         $pattern = "/@\[url\=(.*?)\](.*?)\[\/url\]/ism";
1129                         if (preg_match($pattern, $tag, $matches)) {
1130
1131                                 $r = q("SELECT `alias`, `name` FROM `contact` WHERE `nurl` = '%s' AND `alias` != '' AND `uid` = 0",
1132                                         normalise_link($matches[1]));
1133                                 if (!dbm::is_result($r)) {
1134                                         $r = q("SELECT `alias`, `name` FROM `gcontact` WHERE `nurl` = '%s' AND `alias` != ''",
1135                                                 normalise_link($matches[1]));
1136                                 }
1137                                 if (dbm::is_result($r)) {
1138                                         $data = $r[0];
1139                                 } else {
1140                                         $data = probe_url($matches[1]);
1141                                 }
1142
1143                                 if ($data["alias"] != "") {
1144                                         $newtag = '@[url=' . $data["alias"] . ']' . $data["name"] . '[/url]';
1145                                         if (!stristr($str_tags, $newtag)) {
1146                                                 if (strlen($str_tags)) {
1147                                                         $str_tags .= ',';
1148                                                 }
1149                                                 $str_tags .= $newtag;
1150                                         }
1151                                 }
1152                         }
1153
1154                         return $replaced;
1155                 }
1156                 $stat = false;
1157                 //get the person's name
1158                 $name = substr($tag, 1);
1159
1160                 // Sometimes the tag detection doesn't seem to work right
1161                 // This is some workaround
1162                 $nameparts = explode(" ", $name);
1163                 $name = $nameparts[0];
1164
1165                 // Try to detect the contact in various ways
1166                 if ((strpos($name, '@')) || (strpos($name, 'http://'))) {
1167                         // Is it in format @user@domain.tld or @http://domain.tld/...?
1168
1169                         // First check the contact table for the address
1170                         $r = q("SELECT `id`, `url`, `nick`, `name`, `alias`, `network`, `notify` FROM `contact`
1171                                 WHERE `addr` = '%s' AND `uid` = %d AND
1172                                         (`network` != '%s' OR (`notify` != '' AND `alias` != ''))
1173                                 LIMIT 1",
1174                                         dbesc($name),
1175                                         intval($profile_uid),
1176                                         dbesc(NETWORK_OSTATUS)
1177                         );
1178
1179                         // Then check in the contact table for the url
1180                         if (!dbm::is_result($r)) {
1181                                 $r = q("SELECT `id`, `url`, `nick`, `name`, `alias`, `network`, `notify` FROM `contact`
1182                                         WHERE `nurl` = '%s' AND `uid` = %d AND
1183                                                 (`network` != '%s' OR (`notify` != '' AND `alias` != ''))
1184                                         LIMIT 1",
1185                                                 dbesc(normalise_link($name)),
1186                                                 intval($profile_uid),
1187                                                 dbesc(NETWORK_OSTATUS)
1188                                 );
1189                         }
1190
1191                         // Then check in the global contacts for the address
1192                         if (!dbm::is_result($r)) {
1193                                 $r = q("SELECT `url`, `nick`, `name`, `alias`, `network`, `notify` FROM `gcontact`
1194                                         WHERE `addr` = '%s' AND (`network` != '%s' OR (`notify` != '' AND `alias` != ''))
1195                                         LIMIT 1",
1196                                                 dbesc($name),
1197                                                 dbesc(NETWORK_OSTATUS)
1198                                 );
1199                         }
1200
1201                         // Then check in the global contacts for the url
1202                         if (!dbm::is_result($r)) {
1203                                 $r = q("SELECT `url`, `nick`, `name`, `alias`, `network`, `notify` FROM `gcontact`
1204                                         WHERE `nurl` = '%s' AND (`network` != '%s' OR (`notify` != '' AND `alias` != ''))
1205                                         LIMIT 1",
1206                                                 dbesc(normalise_link($name)),
1207                                                 dbesc(NETWORK_OSTATUS)
1208                                 );
1209                         }
1210
1211                         if (!dbm::is_result($r)) {
1212                                 $probed = probe_url($name);
1213                                 if ($result['network'] != NETWORK_PHANTOM) {
1214                                         update_gcontact($probed);
1215                                         $r = q("SELECT `url`, `name`, `nick`, `network`, `alias`, `notify` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
1216                                                 dbesc(normalise_link($probed["url"])));
1217                                 }
1218                         }
1219                 } else {
1220                         $r = false;
1221                         if (strrpos($name, '+')) {
1222                                 // Is it in format @nick+number?
1223                                 $tagcid = intval(substr($name, strrpos($name, '+') + 1));
1224
1225                                 $r = q("SELECT `id`, `url`, `nick`, `name`, `alias`, `network` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
1226                                                 intval($tagcid),
1227                                                 intval($profile_uid)
1228                                 );
1229                         }
1230
1231                         // select someone by attag or nick and the name passed in the current network
1232                         if(!dbm::is_result($r) AND ($network != ""))
1233                                 $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",
1234                                                 dbesc($name),
1235                                                 dbesc($name),
1236                                                 dbesc($network),
1237                                                 intval($profile_uid)
1238                                 );
1239
1240                         //select someone from this user's contacts by name in the current network
1241                         if (!dbm::is_result($r) AND ($network != "")) {
1242                                 $r = q("SELECT `id`, `url`, `nick`, `name`, `alias`, `network` FROM `contact` WHERE `name` = '%s' AND `network` = '%s' AND `uid` = %d LIMIT 1",
1243                                                 dbesc($name),
1244                                                 dbesc($network),
1245                                                 intval($profile_uid)
1246                                 );
1247                         }
1248
1249                         // select someone by attag or nick and the name passed in
1250                         if(!dbm::is_result($r)) {
1251                                 $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",
1252                                                 dbesc($name),
1253                                                 dbesc($name),
1254                                                 intval($profile_uid)
1255                                 );
1256                         }
1257
1258                         // select someone from this user's contacts by name
1259                         if(!dbm::is_result($r)) {
1260                                 $r = q("SELECT `id`, `url`, `nick`, `name`, `alias`, `network` FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
1261                                                 dbesc($name),
1262                                                 intval($profile_uid)
1263                                 );
1264                         }
1265                 }
1266
1267                 if (dbm::is_result($r)) {
1268                         if (strlen($inform) AND (isset($r[0]["notify"]) OR isset($r[0]["id"]))) {
1269                                 $inform .= ',';
1270                         }
1271
1272                         if (isset($r[0]["id"])) {
1273                                 $inform .= 'cid:' . $r[0]["id"];
1274                         } elseif (isset($r[0]["notify"])) {
1275                                 $inform  .= $r[0]["notify"];
1276                         }
1277
1278                         $profile = $r[0]["url"];
1279                         $alias   = $r[0]["alias"];
1280                         $newname = $r[0]["nick"];
1281                         if (($newname == "") OR (($r[0]["network"] != NETWORK_OSTATUS) AND ($r[0]["network"] != NETWORK_TWITTER)
1282                                 AND ($r[0]["network"] != NETWORK_STATUSNET) AND ($r[0]["network"] != NETWORK_APPNET))) {
1283                                 $newname = $r[0]["name"];
1284                         }
1285                 }
1286
1287                 //if there is an url for this persons profile
1288                 if (isset($profile) AND ($newname != "")) {
1289
1290                         $replaced = true;
1291                         // create profile link
1292                         $profile = str_replace(',', '%2c', $profile);
1293                         $newtag = '@[url=' . $profile . ']' . $newname . '[/url]';
1294                         $body = str_replace('@' . $name, $newtag, $body);
1295                         // append tag to str_tags
1296                         if (! stristr($str_tags, $newtag)) {
1297                                 if (strlen($str_tags)) {
1298                                         $str_tags .= ',';
1299                                 }
1300                                 $str_tags .= $newtag;
1301                         }
1302
1303                         /*
1304                          * Status.Net seems to require the numeric ID URL in a mention if the person isn't
1305                          * subscribed to you. But the nickname URL is OK if they are. Grrr. We'll tag both.
1306                          */
1307                         if (strlen($alias)) {
1308                                 $newtag = '@[url=' . $alias . ']' . $newname . '[/url]';
1309                                 if (! stristr($str_tags, $newtag)) {
1310                                         if (strlen($str_tags)) {
1311                                                 $str_tags .= ',';
1312                                         }
1313                                         $str_tags .= $newtag;
1314                                 }
1315                         }
1316                 }
1317         }
1318
1319         return array('replaced' => $replaced, 'contact' => $r[0]);
1320 }