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