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