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