]> git.mxchange.org Git - friendica.git/blob - mod/item.php
Ensure *toArray returns an array
[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
18 use Friendica\App;
19 use Friendica\Content\Pager;
20 use Friendica\Content\Text\BBCode;
21 use Friendica\Content\Text\HTML;
22 use Friendica\Core\Config;
23 use Friendica\Core\Hook;
24 use Friendica\Core\L10n;
25 use Friendica\Core\Logger;
26 use Friendica\Core\Protocol;
27 use Friendica\Core\System;
28 use Friendica\Core\Worker;
29 use Friendica\Database\DBA;
30 use Friendica\Model\Attach;
31 use Friendica\Model\Contact;
32 use Friendica\Model\Conversation;
33 use Friendica\Model\FileTag;
34 use Friendica\Model\Item;
35 use Friendica\Model\Photo;
36 use Friendica\Model\Term;
37 use Friendica\Protocol\Diaspora;
38 use Friendica\Protocol\Email;
39 use Friendica\Util\DateTimeFormat;
40 use Friendica\Util\Emailer;
41 use Friendica\Util\Security;
42 use Friendica\Util\Strings;
43 use Friendica\Worker\Delivery;
44
45 require_once 'include/items.php';
46
47 function item_post(App $a) {
48         if (!local_user() && !remote_user()) {
49                 return 0;
50         }
51
52         $uid = local_user();
53
54         if (!empty($_REQUEST['dropitems'])) {
55                 $arr_drop = explode(',', $_REQUEST['dropitems']);
56                 drop_items($arr_drop);
57                 $json = ['success' => 1];
58                 echo json_encode($json);
59                 exit();
60         }
61
62         Hook::callAll('post_local_start', $_REQUEST);
63
64         Logger::log('postvars ' . print_r($_REQUEST, true), Logger::DATA);
65
66         $api_source = defaults($_REQUEST, 'api_source', false);
67
68         $message_id = ((!empty($_REQUEST['message_id']) && $api_source) ? strip_tags($_REQUEST['message_id']) : '');
69
70         $return_path = defaults($_REQUEST, 'return', '');
71         $preview = intval(defaults($_REQUEST, 'preview', 0));
72
73         /*
74          * Check for doubly-submitted posts, and reject duplicates
75          * Note that we have to ignore previews, otherwise nothing will post
76          * after it's been previewed
77          */
78         if (!$preview && !empty($_REQUEST['post_id_random'])) {
79                 if (!empty($_SESSION['post-random']) && $_SESSION['post-random'] == $_REQUEST['post_id_random']) {
80                         Logger::log("item post: duplicate post", Logger::DEBUG);
81                         item_post_return(System::baseUrl(), $api_source, $return_path);
82                 } else {
83                         $_SESSION['post-random'] = $_REQUEST['post_id_random'];
84                 }
85         }
86
87         // Is this a reply to something?
88         $toplevel_item_id = intval(defaults($_REQUEST, 'parent', 0));
89         $thr_parent_uri = trim(defaults($_REQUEST, 'parent_uri', ''));
90
91         $thread_parent_id = 0;
92         $thread_parent_contact = null;
93
94         $toplevel_item = null;
95         $parent_user = null;
96
97         $parent_contact = null;
98
99         $objecttype = null;
100         $profile_uid = defaults($_REQUEST, 'profile_uid', local_user());
101         $posttype = defaults($_REQUEST, 'post_type', Item::PT_ARTICLE);
102
103         if ($toplevel_item_id || $thr_parent_uri) {
104                 if ($toplevel_item_id) {
105                         $toplevel_item = Item::selectFirst([], ['id' => $toplevel_item_id]);
106                 } elseif ($thr_parent_uri) {
107                         $toplevel_item = Item::selectFirst([], ['uri' => $thr_parent_uri, 'uid' => $profile_uid]);
108                 }
109
110                 // if this isn't the top-level parent of the conversation, find it
111                 if (DBA::isResult($toplevel_item)) {
112                         // The URI and the contact is taken from the direct parent which needn't to be the top parent
113                         $thread_parent_id = $toplevel_item['id'];
114                         $thr_parent_uri = $toplevel_item['uri'];
115                         $thread_parent_contact = Contact::getDetailsByURL($toplevel_item["author-link"]);
116
117                         if ($toplevel_item['id'] != $toplevel_item['parent']) {
118                                 $toplevel_item = Item::selectFirst(Item::ITEM_FIELDLIST, ['id' => $toplevel_item['parent']]);
119                         }
120                 }
121
122                 if (!DBA::isResult($toplevel_item)) {
123                         notice(L10n::t('Unable to locate original post.') . EOL);
124                         if (!empty($_REQUEST['return'])) {
125                                 $a->internalRedirect($return_path);
126                         }
127                         exit();
128                 }
129
130                 $toplevel_item_id = $toplevel_item['id'];
131                 $parent_user = $toplevel_item['uid'];
132
133                 $objecttype = ACTIVITY_OBJ_COMMENT;
134         }
135
136         if ($toplevel_item_id) {
137                 Logger::info('mod_item: item_post parent=' . $toplevel_item_id);
138         }
139
140         $post_id     = intval(defaults($_REQUEST, 'post_id', 0));
141         $app         = strip_tags(defaults($_REQUEST, 'source', ''));
142         $extid       = strip_tags(defaults($_REQUEST, 'extid', ''));
143         $object      = defaults($_REQUEST, 'object', '');
144
145         // Don't use "defaults" here. It would turn 0 to 1
146         if (!isset($_REQUEST['wall'])) {
147                 $wall = 1;
148         } else {
149                 $wall = $_REQUEST['wall'];
150         }
151
152         // Ensure that the user id in a thread always stay the same
153         if (!is_null($parent_user) && in_array($parent_user, [local_user(), 0])) {
154                 $profile_uid = $parent_user;
155         }
156
157         // Check for multiple posts with the same message id (when the post was created via API)
158         if (($message_id != '') && ($profile_uid != 0)) {
159                 if (Item::exists(['uri' => $message_id, 'uid' => $profile_uid])) {
160                         Logger::log("Message with URI ".$message_id." already exists for user ".$profile_uid, Logger::DEBUG);
161                         return 0;
162                 }
163         }
164
165         // Allow commenting if it is an answer to a public post
166         $allow_comment = local_user() && ($profile_uid == 0) && $toplevel_item_id && in_array($toplevel_item['network'], Protocol::FEDERATED);
167
168         // Now check that valid personal details have been provided
169         if (!Security::canWriteToUserWall($profile_uid) && !$allow_comment) {
170                 notice(L10n::t('Permission denied.') . EOL);
171
172                 if (!empty($_REQUEST['return'])) {
173                         $a->internalRedirect($return_path);
174                 }
175
176                 exit();
177         }
178
179         // Init post instance
180         $orig_post = null;
181
182         // is this an edited post?
183         if ($post_id > 0) {
184                 $orig_post = Item::selectFirst(Item::ITEM_FIELDLIST, ['id' => $post_id]);
185         }
186
187         $user = DBA::selectFirst('user', [], ['uid' => $profile_uid]);
188
189         if (!DBA::isResult($user) && !$toplevel_item_id) {
190                 return 0;
191         }
192
193         $categories = '';
194         $postopts = '';
195         $emailcc = '';
196         $body = defaults($_REQUEST, 'body', '');
197         $has_attachment = defaults($_REQUEST, 'has_attachment', 0);
198
199         // If we have a speparate attachment, we need to add it to the body.
200         if (!empty($has_attachment)) {
201                 $attachment_type  = defaults($_REQUEST, 'attachment_type',  '');
202                 $attachment_title = defaults($_REQUEST, 'attachment_title', '');
203                 $attachment_text  = defaults($_REQUEST, 'attachment_text',  '');
204
205                 $attachment_url     = hex2bin(defaults($_REQUEST, 'attachment_url',     ''));
206                 $attachment_img_src = hex2bin(defaults($_REQUEST, 'attachment_img_src', ''));
207
208                 $attachment_img_width  = defaults($_REQUEST, 'attachment_img_width',  0);
209                 $attachment_img_height = defaults($_REQUEST, 'attachment_img_height', 0);
210                 $attachment = [
211                         'type'   => $attachment_type,
212                         'title'  => $attachment_title,
213                         'text'   => $attachment_text,
214                         'url'    => $attachment_url,
215                 ];
216
217                 if (!empty($attachment_img_src)) {
218                         $attachment['images'] = [
219                                 0 => [
220                                         'src'    => $attachment_img_src,
221                                         'width'  => $attachment_img_width,
222                                         'height' => $attachment_img_height
223                                 ]
224                         ];
225                 }
226
227                 $att_bbcode = add_page_info_data($attachment);
228                 $body .= $att_bbcode;
229         }
230
231         if (!empty($orig_post)) {
232                 $str_group_allow   = $orig_post['allow_gid'];
233                 $str_contact_allow = $orig_post['allow_cid'];
234                 $str_group_deny    = $orig_post['deny_gid'];
235                 $str_contact_deny  = $orig_post['deny_cid'];
236                 $location          = $orig_post['location'];
237                 $coord             = $orig_post['coord'];
238                 $verb              = $orig_post['verb'];
239                 $objecttype        = $orig_post['object-type'];
240                 $app               = $orig_post['app'];
241                 $categories        = $orig_post['file'];
242                 $title             = Strings::escapeTags(trim($_REQUEST['title']));
243                 $body              = Strings::escapeHtml(trim($body));
244                 $private           = $orig_post['private'];
245                 $pubmail_enabled   = $orig_post['pubmail'];
246                 $network           = $orig_post['network'];
247                 $guid              = $orig_post['guid'];
248                 $extid             = $orig_post['extid'];
249
250         } else {
251
252                 /*
253                  * if coming from the API and no privacy settings are set,
254                  * use the user default permissions - as they won't have
255                  * been supplied via a form.
256                  */
257                 if ($api_source
258                         && !array_key_exists('contact_allow', $_REQUEST)
259                         && !array_key_exists('group_allow', $_REQUEST)
260                         && !array_key_exists('contact_deny', $_REQUEST)
261                         && !array_key_exists('group_deny', $_REQUEST)) {
262                         $str_group_allow   = $user['allow_gid'];
263                         $str_contact_allow = $user['allow_cid'];
264                         $str_group_deny    = $user['deny_gid'];
265                         $str_contact_deny  = $user['deny_cid'];
266                 } else {
267                         // use the posted permissions
268                         $str_group_allow   = perms2str(defaults($_REQUEST, 'group_allow', ''));
269                         $str_contact_allow = perms2str(defaults($_REQUEST, 'contact_allow', ''));
270                         $str_group_deny    = perms2str(defaults($_REQUEST, 'group_deny', ''));
271                         $str_contact_deny  = perms2str(defaults($_REQUEST, 'contact_deny', ''));
272                 }
273
274                 $title             = Strings::escapeTags(trim(defaults($_REQUEST, 'title'   , '')));
275                 $location          = Strings::escapeTags(trim(defaults($_REQUEST, 'location', '')));
276                 $coord             = Strings::escapeTags(trim(defaults($_REQUEST, 'coord'   , '')));
277                 $verb              = Strings::escapeTags(trim(defaults($_REQUEST, 'verb'    , '')));
278                 $emailcc           = Strings::escapeTags(trim(defaults($_REQUEST, 'emailcc' , '')));
279                 $body              = Strings::escapeHtml(trim($body));
280                 $network           = Strings::escapeTags(trim(defaults($_REQUEST, 'network' , Protocol::DFRN)));
281                 $guid              = System::createUUID();
282
283                 $postopts = defaults($_REQUEST, 'postopts', '');
284
285                 $private = ((strlen($str_group_allow) || strlen($str_contact_allow) || strlen($str_group_deny) || strlen($str_contact_deny)) ? 1 : 0);
286
287                 if ($user['hidewall']) {
288                         $private = 2;
289                 }
290
291                 // If this is a comment, set the permissions from the parent.
292
293                 if ($toplevel_item) {
294                         // for non native networks use the network of the original post as network of the item
295                         if (($toplevel_item['network'] != Protocol::DIASPORA)
296                                 && ($toplevel_item['network'] != Protocol::OSTATUS)
297                                 && ($network == "")) {
298                                 $network = $toplevel_item['network'];
299                         }
300
301                         $str_contact_allow = $toplevel_item['allow_cid'];
302                         $str_group_allow   = $toplevel_item['allow_gid'];
303                         $str_contact_deny  = $toplevel_item['deny_cid'];
304                         $str_group_deny    = $toplevel_item['deny_gid'];
305                         $private           = $toplevel_item['private'];
306
307                         $wall              = $toplevel_item['wall'];
308                 }
309
310                 $pubmail_enabled = defaults($_REQUEST, 'pubmail_enable', false) && !$private;
311
312                 // if using the API, we won't see pubmail_enable - figure out if it should be set
313                 if ($api_source && $profile_uid && $profile_uid == local_user() && !$private) {
314                         if (function_exists('imap_open') && !Config::get('system', 'imap_disabled')) {
315                                 $pubmail_enabled = DBA::exists('mailacct', ["`uid` = ? AND `server` != ? AND `pubmail`", local_user(), '']);
316                         }
317                 }
318
319                 if (!strlen($body)) {
320                         if ($preview) {
321                                 exit();
322                         }
323                         info(L10n::t('Empty post discarded.') . EOL);
324                         if (!empty($_REQUEST['return'])) {
325                                 $a->internalRedirect($return_path);
326                         }
327                         exit();
328                 }
329         }
330
331         if (!empty($categories)) {
332                 // get the "fileas" tags for this post
333                 $filedas = FileTag::fileToArray($categories);
334         }
335
336         // save old and new categories, so we can determine what needs to be deleted from pconfig
337         $categories_old = $categories;
338         $categories = FileTag::listToFile(trim(defaults($_REQUEST, 'category', '')), 'category');
339         $categories_new = $categories;
340
341         if (!empty($filedas) && is_array($filedas)) {
342                 // append the fileas stuff to the new categories list
343                 $categories .= FileTag::arrayToFile($filedas);
344         }
345
346         // get contact info for poster
347
348         $author = null;
349         $self   = false;
350         $contact_id = 0;
351
352         if (local_user() && ((local_user() == $profile_uid) || $allow_comment)) {
353                 $self = true;
354                 $author = DBA::selectFirst('contact', [], ['uid' => local_user(), 'self' => true]);
355         } elseif (remote_user()) {
356                 if (!empty($_SESSION['remote']) && is_array($_SESSION['remote'])) {
357                         foreach ($_SESSION['remote'] as $v) {
358                                 if ($v['uid'] == $profile_uid) {
359                                         $contact_id = $v['cid'];
360                                         break;
361                                 }
362                         }
363                 }
364                 if ($contact_id) {
365                         $author = DBA::selectFirst('contact', [], ['id' => $contact_id]);
366                 }
367         }
368
369         if (DBA::isResult($author)) {
370                 $contact_id = $author['id'];
371         }
372
373         // get contact info for owner
374         if ($profile_uid == local_user() || $allow_comment) {
375                 $contact_record = $author;
376         } else {
377                 $contact_record = DBA::selectFirst('contact', [], ['uid' => $profile_uid, 'self' => true]);
378         }
379
380         // Look for any tags and linkify them
381         $str_tags = '';
382         $inform   = '';
383
384         $tags = BBCode::getTags($body);
385
386         if ($thread_parent_id && !\Friendica\Content\Feature::isEnabled($uid, 'explicit_mentions')) {
387                 $tags = item_add_implicit_mentions($tags, $thread_parent_contact, $thread_parent_id);
388         }
389
390         $tagged = [];
391
392         $private_forum = false;
393         $only_to_forum = false;
394         $forum_contact = [];
395
396         if (count($tags)) {
397                 foreach ($tags as $tag) {
398                         $tag_type = substr($tag, 0, 1);
399
400                         if ($tag_type == Term::TAG_CHARACTER[Term::HASHTAG]) {
401                                 continue;
402                         }
403
404                         /*
405                          * If we already tagged 'Robert Johnson', don't try and tag 'Robert'.
406                          * Robert Johnson should be first in the $tags array
407                          */
408                         $fullnametagged = false;
409                         /// @TODO $tagged is initialized above if () block and is not filled, maybe old-lost code?
410                         foreach ($tagged as $nextTag) {
411                                 if (stristr($nextTag, $tag . ' ')) {
412                                         $fullnametagged = true;
413                                         break;
414                                 }
415                         }
416                         if ($fullnametagged) {
417                                 continue;
418                         }
419
420                         $success = handle_tag($body, $inform, $str_tags, local_user() ? local_user() : $profile_uid, $tag, $network);
421                         if ($success['replaced']) {
422                                 $tagged[] = $tag;
423                         }
424                         // When the forum is private or the forum is addressed with a "!" make the post private
425                         if (is_array($success['contact']) && (!empty($success['contact']['prv']) || ($tag_type == Term::TAG_CHARACTER[Term::EXCLUSIVE_MENTION]))) {
426                                 $private_forum = $success['contact']['prv'];
427                                 $only_to_forum = ($tag_type == Term::TAG_CHARACTER[Term::EXCLUSIVE_MENTION]);
428                                 $private_id = $success['contact']['id'];
429                                 $forum_contact = $success['contact'];
430                         } elseif (is_array($success['contact']) && !empty($success['contact']['forum']) &&
431                                 ($str_contact_allow == '<' . $success['contact']['id'] . '>')) {
432                                 $private_forum = false;
433                                 $only_to_forum = true;
434                                 $private_id = $success['contact']['id'];
435                                 $forum_contact = $success['contact'];
436                         }
437                 }
438         }
439
440         $original_contact_id = $contact_id;
441
442         if (!$toplevel_item_id && count($forum_contact) && ($private_forum || $only_to_forum)) {
443                 // we tagged a forum in a top level post. Now we change the post
444                 $private = $private_forum;
445
446                 $str_group_allow = '';
447                 $str_contact_deny = '';
448                 $str_group_deny = '';
449                 if ($private_forum) {
450                         $str_contact_allow = '<' . $private_id . '>';
451                 } else {
452                         $str_contact_allow = '';
453                 }
454                 $contact_id = $private_id;
455                 $contact_record = $forum_contact;
456                 $_REQUEST['origin'] = false;
457                 $wall = 0;
458         }
459
460         /*
461          * When a photo was uploaded into the message using the (profile wall) ajax
462          * uploader, The permissions are initially set to disallow anybody but the
463          * owner from seeing it. This is because the permissions may not yet have been
464          * set for the post. If it's private, the photo permissions should be set
465          * appropriately. But we didn't know the final permissions on the post until
466          * now. So now we'll look for links of uploaded messages that are in the
467          * post and set them to the same permissions as the post itself.
468          */
469
470         $match = null;
471
472         /// @todo these lines should be moved to Model/Photo
473         if (!$preview && preg_match_all("/\[img([\=0-9x]*?)\](.*?)\[\/img\]/",$body,$match)) {
474                 $images = $match[2];
475                 if (count($images)) {
476
477                         $objecttype = ACTIVITY_OBJ_IMAGE;
478
479                         foreach ($images as $image) {
480                                 if (!stristr($image, System::baseUrl() . '/photo/')) {
481                                         continue;
482                                 }
483                                 $image_uri = substr($image,strrpos($image,'/') + 1);
484                                 $image_uri = substr($image_uri,0, strpos($image_uri,'-'));
485                                 if (!strlen($image_uri)) {
486                                         continue;
487                                 }
488
489                                 // Ensure to only modify photos that you own
490                                 $srch = '<' . intval($original_contact_id) . '>';
491
492                                 $condition = [
493                                         'allow_cid' => $srch, 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '',
494                                         'resource-id' => $image_uri, 'uid' => $profile_uid
495                                 ];
496                                 if (!Photo::exists($condition)) {
497                                         continue;
498                                 }
499
500                                 $fields = ['allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow,
501                                                 'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny];
502                                 $condition = ['resource-id' => $image_uri, 'uid' => $profile_uid];
503                                 Photo::update($fields, $condition);
504                         }
505                 }
506         }
507
508
509         /*
510          * Next link in any attachment references we find in the post.
511          */
512         $match = false;
513
514         /// @todo these lines should be moved to Model/Attach (Once it exists)
515         if (!$preview && preg_match_all("/\[attachment\](.*?)\[\/attachment\]/", $body, $match)) {
516                 $attaches = $match[1];
517                 if (count($attaches)) {
518                         foreach ($attaches as $attach) {
519                                 // Ensure to only modify attachments that you own
520                                 $srch = '<' . intval($original_contact_id) . '>';
521
522                                 $condition = ['allow_cid' => $srch, 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '',
523                                                 'id' => $attach];
524                                 if (!Attach::exists($condition)) {
525                                         continue;
526                                 }
527
528                                 $fields = ['allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow,
529                                                 'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny];
530                                 $condition = ['id' => $attach];
531                                 Attach::update($fields, $condition);
532                         }
533                 }
534         }
535
536         // embedded bookmark or attachment in post? set bookmark flag
537
538         $data = BBCode::getAttachmentData($body);
539         if ((preg_match_all("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", $body, $match, PREG_SET_ORDER) || isset($data["type"]))
540                 && ($posttype != Item::PT_PERSONAL_NOTE)) {
541                 $posttype = Item::PT_PAGE;
542                 $objecttype = ACTIVITY_OBJ_BOOKMARK;
543         }
544
545         $body = bb_translate_video($body);
546
547
548         // Fold multi-line [code] sequences
549         $body = preg_replace('/\[\/code\]\s*\[code\]/ism', "\n", $body);
550
551         $body = BBCode::scaleExternalImages($body, false);
552
553         // Setting the object type if not defined before
554         if (!$objecttype) {
555                 $objecttype = ACTIVITY_OBJ_NOTE; // Default value
556                 $objectdata = BBCode::getAttachedData($body);
557
558                 if ($objectdata["type"] == "link") {
559                         $objecttype = ACTIVITY_OBJ_BOOKMARK;
560                 } elseif ($objectdata["type"] == "video") {
561                         $objecttype = ACTIVITY_OBJ_VIDEO;
562                 } elseif ($objectdata["type"] == "photo") {
563                         $objecttype = ACTIVITY_OBJ_IMAGE;
564                 }
565
566         }
567
568         $attachments = '';
569         $match = false;
570
571         if (preg_match_all('/(\[attachment\]([0-9]+)\[\/attachment\])/',$body,$match)) {
572                 foreach ($match[2] as $mtch) {
573                         $fields = ['id', 'filename', 'filesize', 'filetype'];
574                         $attachment = Attach::selectFirst($fields, ['id' => $mtch]);
575                         if ($attachment !== false) {
576                                 if (strlen($attachments)) {
577                                         $attachments .= ',';
578                                 }
579                                 $attachments .= '[attach]href="' . System::baseUrl() . '/attach/' . $attachment['id'] .
580                                                 '" length="' . $attachment['filesize'] . '" type="' . $attachment['filetype'] .
581                                                 '" title="' . ($attachment['filename'] ? $attachment['filename'] : '') . '"[/attach]';
582                         }
583                         $body = str_replace($match[1],'',$body);
584                 }
585         }
586
587         if (!strlen($verb)) {
588                 $verb = ACTIVITY_POST;
589         }
590
591         if ($network == "") {
592                 $network = Protocol::DFRN;
593         }
594
595         $gravity = ($toplevel_item_id ? GRAVITY_COMMENT : GRAVITY_PARENT);
596
597         // even if the post arrived via API we are considering that it
598         // originated on this site by default for determining relayability.
599
600         // Don't use "defaults" here. It would turn 0 to 1
601         if (!isset($_REQUEST['origin'])) {
602                 $origin = 1;
603         } else {
604                 $origin = $_REQUEST['origin'];
605         }
606
607         $uri = ($message_id ? $message_id : Item::newURI($api_source ? $profile_uid : $uid, $guid));
608
609         // Fallback so that we alway have a parent uri
610         if (!$thr_parent_uri || !$toplevel_item_id) {
611                 $thr_parent_uri = $uri;
612         }
613
614         $datarray = [];
615         $datarray['uid']           = $profile_uid;
616         $datarray['wall']          = $wall;
617         $datarray['gravity']       = $gravity;
618         $datarray['network']       = $network;
619         $datarray['contact-id']    = $contact_id;
620         $datarray['owner-name']    = $contact_record['name'];
621         $datarray['owner-link']    = $contact_record['url'];
622         $datarray['owner-avatar']  = $contact_record['thumb'];
623         $datarray['owner-id']      = Contact::getIdForURL($datarray['owner-link']);
624         $datarray['author-name']   = $author['name'];
625         $datarray['author-link']   = $author['url'];
626         $datarray['author-avatar'] = $author['thumb'];
627         $datarray['author-id']     = Contact::getIdForURL($datarray['author-link']);
628         $datarray['created']       = DateTimeFormat::utcNow();
629         $datarray['edited']        = DateTimeFormat::utcNow();
630         $datarray['commented']     = DateTimeFormat::utcNow();
631         $datarray['received']      = DateTimeFormat::utcNow();
632         $datarray['changed']       = DateTimeFormat::utcNow();
633         $datarray['extid']         = $extid;
634         $datarray['guid']          = $guid;
635         $datarray['uri']           = $uri;
636         $datarray['title']         = $title;
637         $datarray['body']          = $body;
638         $datarray['app']           = $app;
639         $datarray['location']      = $location;
640         $datarray['coord']         = $coord;
641         $datarray['tag']           = $str_tags;
642         $datarray['file']          = $categories;
643         $datarray['inform']        = $inform;
644         $datarray['verb']          = $verb;
645         $datarray['post-type']     = $posttype;
646         $datarray['object-type']   = $objecttype;
647         $datarray['allow_cid']     = $str_contact_allow;
648         $datarray['allow_gid']     = $str_group_allow;
649         $datarray['deny_cid']      = $str_contact_deny;
650         $datarray['deny_gid']      = $str_group_deny;
651         $datarray['private']       = $private;
652         $datarray['pubmail']       = $pubmail_enabled;
653         $datarray['attach']        = $attachments;
654
655         // This is not a bug. The item store function changes 'parent-uri' to 'thr-parent' and fetches 'parent-uri' new. (We should change this)
656         $datarray['parent-uri']    = $thr_parent_uri;
657
658         $datarray['postopts']      = $postopts;
659         $datarray['origin']        = $origin;
660         $datarray['moderated']     = false;
661         $datarray['object']        = $object;
662
663         /*
664          * These fields are for the convenience of addons...
665          * 'self' if true indicates the owner is posting on their own wall
666          * If parent is 0 it is a top-level post.
667          */
668         $datarray['parent']        = $toplevel_item_id;
669         $datarray['self']          = $self;
670
671         // This triggers posts via API and the mirror functions
672         $datarray['api_source'] = $api_source;
673
674         // This field is for storing the raw conversation data
675         $datarray['protocol'] = Conversation::PARCEL_DFRN;
676
677         $conversation = DBA::selectFirst('conversation', ['conversation-uri', 'conversation-href'], ['item-uri' => $datarray['parent-uri']]);
678         if (DBA::isResult($conversation)) {
679                 if ($conversation['conversation-uri'] != '') {
680                         $datarray['conversation-uri'] = $conversation['conversation-uri'];
681                 }
682                 if ($conversation['conversation-href'] != '') {
683                         $datarray['conversation-href'] = $conversation['conversation-href'];
684                 }
685         }
686
687         if ($orig_post) {
688                 $datarray['edit'] = true;
689         } else {
690                 $datarray['edit'] = false;
691         }
692
693         // Check for hashtags in the body and repair or add hashtag links
694         if ($preview || $orig_post) {
695                 Item::setHashtags($datarray);
696         }
697
698         // preview mode - prepare the body for display and send it via json
699         if ($preview) {
700                 // We set the datarray ID to -1 because in preview mode the dataray
701                 // doesn't have an ID.
702                 $datarray["id"] = -1;
703                 $datarray["item_id"] = -1;
704                 $datarray["author-network"] = Protocol::DFRN;
705
706                 $o = conversation($a, [array_merge($contact_record, $datarray)], new Pager($a->query_string), 'search', false, true);
707                 Logger::log('preview: ' . $o);
708                 echo json_encode(['preview' => $o]);
709                 exit();
710         }
711
712         Hook::callAll('post_local',$datarray);
713
714         if (!empty($datarray['cancel'])) {
715                 Logger::log('mod_item: post cancelled by addon.');
716                 if ($return_path) {
717                         $a->internalRedirect($return_path);
718                 }
719
720                 $json = ['cancel' => 1];
721                 if (!empty($_REQUEST['jsreload'])) {
722                         $json['reload'] = System::baseUrl() . '/' . $_REQUEST['jsreload'];
723                 }
724
725                 echo json_encode($json);
726                 exit();
727         }
728
729         if ($orig_post) {
730                 // Fill the cache field
731                 // This could be done in Item::update as well - but we have to check for the existance of some fields.
732                 Item::putInCache($datarray);
733
734                 $fields = [
735                         'title' => $datarray['title'],
736                         'body' => $datarray['body'],
737                         'tag' => $datarray['tag'],
738                         'attach' => $datarray['attach'],
739                         'file' => $datarray['file'],
740                         'rendered-html' => $datarray['rendered-html'],
741                         'rendered-hash' => $datarray['rendered-hash'],
742                         'edited' => DateTimeFormat::utcNow(),
743                         'changed' => DateTimeFormat::utcNow()];
744
745                 Item::update($fields, ['id' => $post_id]);
746
747                 // update filetags in pconfig
748                 FileTag::updatePconfig($uid, $categories_old, $categories_new, 'category');
749
750                 if (!empty($_REQUEST['return']) && strlen($return_path)) {
751                         Logger::log('return: ' . $return_path);
752                         $a->internalRedirect($return_path);
753                 }
754                 exit();
755         }
756
757         unset($datarray['edit']);
758         unset($datarray['self']);
759         unset($datarray['api_source']);
760
761         if ($origin) {
762                 $signed = Diaspora::createCommentSignature($uid, $datarray);
763                 if (!empty($signed)) {
764                         $datarray['diaspora_signed_text'] = json_encode($signed);
765                 }
766         }
767
768         $post_id = Item::insert($datarray);
769
770         if (!$post_id) {
771                 Logger::log("Item wasn't stored.");
772                 $a->internalRedirect($return_path);
773         }
774
775         $datarray = Item::selectFirst(Item::ITEM_FIELDLIST, ['id' => $post_id]);
776
777         if (!DBA::isResult($datarray)) {
778                 Logger::log("Item with id ".$post_id." couldn't be fetched.");
779                 $a->internalRedirect($return_path);
780         }
781
782         // update filetags in pconfig
783         FileTag::updatePconfig($uid, $categories_old, $categories_new, 'category');
784
785         // These notifications are sent if someone else is commenting other your wall
786         if ($toplevel_item_id) {
787                 if ($contact_record != $author) {
788                         notification([
789                                 'type'         => NOTIFY_COMMENT,
790                                 'notify_flags' => $user['notify-flags'],
791                                 'language'     => $user['language'],
792                                 'to_name'      => $user['username'],
793                                 'to_email'     => $user['email'],
794                                 'uid'          => $user['uid'],
795                                 'item'         => $datarray,
796                                 'link'         => System::baseUrl().'/display/'.urlencode($datarray['guid']),
797                                 'source_name'  => $datarray['author-name'],
798                                 'source_link'  => $datarray['author-link'],
799                                 'source_photo' => $datarray['author-avatar'],
800                                 'verb'         => ACTIVITY_POST,
801                                 'otype'        => 'item',
802                                 'parent'       => $toplevel_item_id,
803                                 'parent_uri'   => $toplevel_item['uri']
804                         ]);
805                 }
806         } else {
807                 if (($contact_record != $author) && !count($forum_contact)) {
808                         notification([
809                                 'type'         => NOTIFY_WALL,
810                                 'notify_flags' => $user['notify-flags'],
811                                 'language'     => $user['language'],
812                                 'to_name'      => $user['username'],
813                                 'to_email'     => $user['email'],
814                                 'uid'          => $user['uid'],
815                                 'item'         => $datarray,
816                                 'link'         => System::baseUrl().'/display/'.urlencode($datarray['guid']),
817                                 'source_name'  => $datarray['author-name'],
818                                 'source_link'  => $datarray['author-link'],
819                                 'source_photo' => $datarray['author-avatar'],
820                                 'verb'         => ACTIVITY_POST,
821                                 'otype'        => 'item'
822                         ]);
823                 }
824         }
825
826         Hook::callAll('post_local_end', $datarray);
827
828         if (strlen($emailcc) && $profile_uid == local_user()) {
829                 $erecips = explode(',', $emailcc);
830                 if (count($erecips)) {
831                         foreach ($erecips as $recip) {
832                                 $addr = trim($recip);
833                                 if (!strlen($addr)) {
834                                         continue;
835                                 }
836                                 $disclaimer = '<hr />' . L10n::t('This message was sent to you by %s, a member of the Friendica social network.', $a->user['username'])
837                                         . '<br />';
838                                 $disclaimer .= L10n::t('You may visit them online at %s', System::baseUrl() . '/profile/' . $a->user['nickname']) . EOL;
839                                 $disclaimer .= L10n::t('Please contact the sender by replying to this post if you do not wish to receive these messages.') . EOL;
840                                 if (!$datarray['title']=='') {
841                                         $subject = Email::encodeHeader($datarray['title'], 'UTF-8');
842                                 } else {
843                                         $subject = Email::encodeHeader('[Friendica]' . ' ' . L10n::t('%s posted an update.', $a->user['username']), 'UTF-8');
844                                 }
845                                 $link = '<a href="' . System::baseUrl() . '/profile/' . $a->user['nickname'] . '"><img src="' . $author['thumb'] . '" alt="' . $a->user['username'] . '" /></a><br /><br />';
846                                 $html    = Item::prepareBody($datarray);
847                                 $message = '<html><body>' . $link . $html . $disclaimer . '</body></html>';
848                                 $params =  [
849                                         'fromName' => $a->user['username'],
850                                         'fromEmail' => $a->user['email'],
851                                         'toEmail' => $addr,
852                                         'replyTo' => $a->user['email'],
853                                         'messageSubject' => $subject,
854                                         'htmlVersion' => $message,
855                                         'textVersion' => HTML::toPlaintext($html.$disclaimer)
856                                 ];
857                                 Emailer::send($params);
858                         }
859                 }
860         }
861
862         // Insert an item entry for UID=0 for global entries.
863         // We now do it in the background to save some time.
864         // This is important in interactive environments like the frontend or the API.
865         // We don't fork a new process since this is done anyway with the following command
866         Worker::add(['priority' => PRIORITY_HIGH, 'dont_fork' => true], "CreateShadowEntry", $post_id);
867
868         // When we are doing some forum posting via ! we have to start the notifier manually.
869         // These kind of posts don't initiate the notifier call in the item class.
870         if ($only_to_forum) {
871                 Worker::add(PRIORITY_HIGH, "Notifier", Delivery::POST, $post_id);
872         }
873
874         Logger::log('post_complete');
875
876         if ($api_source) {
877                 return $post_id;
878         }
879
880         item_post_return(System::baseUrl(), $api_source, $return_path);
881         // NOTREACHED
882 }
883
884 function item_post_return($baseurl, $api_source, $return_path)
885 {
886         // figure out how to return, depending on from whence we came
887     $a = \get_app();
888
889         if ($api_source) {
890                 return;
891         }
892
893         if ($return_path) {
894                 $a->internalRedirect($return_path);
895         }
896
897         $json = ['success' => 1];
898         if (!empty($_REQUEST['jsreload'])) {
899                 $json['reload'] = $baseurl . '/' . $_REQUEST['jsreload'];
900         }
901
902         Logger::log('post_json: ' . print_r($json, true), Logger::DEBUG);
903
904         echo json_encode($json);
905         exit();
906 }
907
908 function item_content(App $a)
909 {
910         if (!local_user() && !remote_user()) {
911                 return;
912         }
913
914         $o = '';
915
916         if (($a->argc >= 3) && ($a->argv[1] === 'drop') && intval($a->argv[2])) {
917                 if ($a->isAjax()) {
918                         $o = Item::deleteForUser(['id' => $a->argv[2]], local_user());
919                 } else {
920                         if (!empty($a->argv[3])) {
921                                 $o = drop_item($a->argv[2], $a->argv[3]);
922                         }
923                         else {
924                                 $o = drop_item($a->argv[2]);
925                         }
926                 }
927
928                 if ($a->isAjax()) {
929                         // ajax return: [<item id>, 0 (no perm) | <owner id>]
930                         echo json_encode([intval($a->argv[2]), intval($o)]);
931                         exit();
932                 }
933         }
934
935         return $o;
936 }
937
938 /**
939  * This function removes the tag $tag from the text $body and replaces it with
940  * the appropriate link.
941  *
942  * @param App     $a
943  * @param string  $body     the text to replace the tag in
944  * @param string  $inform   a comma-seperated string containing everybody to inform
945  * @param string  $str_tags string to add the tag to
946  * @param integer $profile_uid
947  * @param string  $tag      the tag to replace
948  * @param string  $network  The network of the post
949  *
950  * @return array|bool ['replaced' => $replaced, 'contact' => $contact];
951  * @throws ImagickException
952  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
953  */
954 function handle_tag(&$body, &$inform, &$str_tags, $profile_uid, $tag, $network = "")
955 {
956         $replaced = false;
957         $r = null;
958
959         //is it a person tag?
960         if (Term::isType($tag, Term::MENTION, Term::IMPLICIT_MENTION, Term::EXCLUSIVE_MENTION)) {
961                 $tag_type = substr($tag, 0, 1);
962                 //is it already replaced?
963                 if (strpos($tag, '[url=')) {
964                         //append tag to str_tags
965                         if (!stristr($str_tags, $tag)) {
966                                 if (strlen($str_tags)) {
967                                         $str_tags .= ',';
968                                 }
969                                 $str_tags .= $tag;
970                         }
971
972                         // Checking for the alias that is used for OStatus
973                         $pattern = "/[@!]\[url\=(.*?)\](.*?)\[\/url\]/ism";
974                         if (preg_match($pattern, $tag, $matches)) {
975                                 $data = Contact::getDetailsByURL($matches[1]);
976
977                                 if ($data["alias"] != "") {
978                                         $newtag = '@[url=' . $data["alias"] . ']' . $data["nick"] . '[/url]';
979
980                                         if (!stripos($str_tags, '[url=' . $data["alias"] . ']')) {
981                                                 if (strlen($str_tags)) {
982                                                         $str_tags .= ',';
983                                                 }
984
985                                                 $str_tags .= $newtag;
986                                         }
987                                 }
988                         }
989
990                         return $replaced;
991                 }
992
993                 //get the person's name
994                 $name = substr($tag, 1);
995
996                 // Sometimes the tag detection doesn't seem to work right
997                 // This is some workaround
998                 $nameparts = explode(" ", $name);
999                 $name = $nameparts[0];
1000
1001                 // Try to detect the contact in various ways
1002                 if (strpos($name, 'http://')) {
1003                         // At first we have to ensure that the contact exists
1004                         Contact::getIdForURL($name);
1005
1006                         // Now we should have something
1007                         $contact = Contact::getDetailsByURL($name);
1008                 } elseif (strpos($name, '@')) {
1009                         // This function automatically probes when no entry was found
1010                         $contact = Contact::getDetailsByAddr($name);
1011                 } else {
1012                         $contact = false;
1013                         $fields = ['id', 'url', 'nick', 'name', 'alias', 'network', 'forum', 'prv'];
1014
1015                         if (strrpos($name, '+')) {
1016                                 // Is it in format @nick+number?
1017                                 $tagcid = intval(substr($name, strrpos($name, '+') + 1));
1018                                 $contact = DBA::selectFirst('contact', $fields, ['id' => $tagcid, 'uid' => $profile_uid]);
1019                         }
1020
1021                         // select someone by nick or attag in the current network
1022                         if (!DBA::isResult($contact) && ($network != "")) {
1023                                 $condition = ["(`nick` = ? OR `attag` = ?) AND `network` = ? AND `uid` = ?",
1024                                                 $name, $name, $network, $profile_uid];
1025                                 $contact = DBA::selectFirst('contact', $fields, $condition);
1026                         }
1027
1028                         //select someone by name in the current network
1029                         if (!DBA::isResult($contact) && ($network != "")) {
1030                                 $condition = ['name' => $name, 'network' => $network, 'uid' => $profile_uid];
1031                                 $contact = DBA::selectFirst('contact', $fields, $condition);
1032                         }
1033
1034                         // select someone by nick or attag in any network
1035                         if (!DBA::isResult($contact)) {
1036                                 $condition = ["(`nick` = ? OR `attag` = ?) AND `uid` = ?", $name, $name, $profile_uid];
1037                                 $contact = DBA::selectFirst('contact', $fields, $condition);
1038                         }
1039
1040                         // select someone by name in any network
1041                         if (!DBA::isResult($contact)) {
1042                                 $condition = ['name' => $name, 'uid' => $profile_uid];
1043                                 $contact = DBA::selectFirst('contact', $fields, $condition);
1044                         }
1045                 }
1046
1047                 // Check if $contact has been successfully loaded
1048                 if (DBA::isResult($contact)) {
1049                         if (strlen($inform) && (isset($contact["notify"]) || isset($contact["id"]))) {
1050                                 $inform .= ',';
1051                         }
1052
1053                         if (isset($contact["id"])) {
1054                                 $inform .= 'cid:' . $contact["id"];
1055                         } elseif (isset($contact["notify"])) {
1056                                 $inform  .= $contact["notify"];
1057                         }
1058
1059                         $profile = $contact["url"];
1060                         $alias   = $contact["alias"];
1061                         $newname = defaults($contact, "name", $contact["nick"]);
1062                 }
1063
1064                 //if there is an url for this persons profile
1065                 if (isset($profile) && ($newname != "")) {
1066                         $replaced = true;
1067                         // create profile link
1068                         $profile = str_replace(',', '%2c', $profile);
1069                         $newtag = $tag_type.'[url=' . $profile . ']' . $newname . '[/url]';
1070                         $body = str_replace($tag_type . $name, $newtag, $body);
1071                         // append tag to str_tags
1072                         if (!stristr($str_tags, $newtag)) {
1073                                 if (strlen($str_tags)) {
1074                                         $str_tags .= ',';
1075                                 }
1076                                 $str_tags .= $newtag;
1077                         }
1078
1079                         /*
1080                          * Status.Net seems to require the numeric ID URL in a mention if the person isn't
1081                          * subscribed to you. But the nickname URL is OK if they are. Grrr. We'll tag both.
1082                          */
1083                         if (!empty($alias)) {
1084                                 $newtag = '@[url=' . $alias . ']' . $newname . '[/url]';
1085                                 if (!stripos($str_tags, '[url=' . $alias . ']')) {
1086                                         if (strlen($str_tags)) {
1087                                                 $str_tags .= ',';
1088                                         }
1089                                         $str_tags .= $newtag;
1090                                 }
1091                         }
1092                 }
1093         }
1094
1095         return ['replaced' => $replaced, 'contact' => $contact];
1096 }
1097
1098 function item_add_implicit_mentions(array $tags, array $thread_parent_contact, $thread_parent_id)
1099 {
1100         if (Config::get('system', 'disable_implicit_mentions')) {
1101                 // Add a tag if the parent contact is from ActivityPub or OStatus (This will notify them)
1102                 if (in_array($thread_parent_contact['network'], [Protocol::OSTATUS, Protocol::ACTIVITYPUB])) {
1103                         $contact = Term::TAG_CHARACTER[Term::MENTION] . '[url=' . $thread_parent_contact['url'] . ']' . $thread_parent_contact['nick'] . '[/url]';
1104                         if (!stripos(implode($tags), '[url=' . $thread_parent_contact['url'] . ']')) {
1105                                 $tags[] = $contact;
1106                         }
1107                 }
1108         } else {
1109                 $implicit_mentions = [
1110                         $thread_parent_contact['url'] => $thread_parent_contact['nick']
1111                 ];
1112
1113                 $parent_terms = Term::tagArrayFromItemId($thread_parent_id, [Term::MENTION, Term::IMPLICIT_MENTION]);
1114
1115                 foreach ($parent_terms as $parent_term) {
1116                         $implicit_mentions[$parent_term['url']] = $parent_term['term'];
1117                 }
1118
1119                 foreach ($implicit_mentions as $url => $label) {
1120                         if ($url != \Friendica\Model\Profile::getMyURL() && !stripos(implode($tags), '[url=' . $url . ']')) {
1121                                 $tags[] = Term::TAG_CHARACTER[Term::IMPLICIT_MENTION] . '[url=' . $url . ']' . $label . '[/url]';
1122                         }
1123                 }
1124         }
1125
1126         return $tags;
1127 }