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.
11 * All of these become an "item" which is our basic unit of
14 * Posts that originate externally or do not fall into the above
15 * posting categories go through item_store() instead of this function.
18 require_once 'include/crypto.php';
19 require_once 'include/enotify.php';
20 require_once 'include/email.php';
21 require_once 'include/tags.php';
22 require_once 'include/files.php';
23 require_once 'include/threads.php';
24 require_once 'include/text.php';
25 require_once 'include/items.php';
26 require_once 'include/Scrape.php';
27 require_once 'include/diaspora.php';
28 require_once 'include/Contact.php';
30 function item_post(App $a) {
32 if ((! local_user()) && (! remote_user()) && (! x($_REQUEST,'commenter'))) {
36 require_once 'include/security.php';
40 if (x($_REQUEST, 'dropitems')) {
41 $arr_drop = explode(',', $_REQUEST['dropitems']);
42 drop_items($arr_drop);
43 $json = array('success' => 1);
44 echo json_encode($json);
48 call_hooks('post_local_start', $_REQUEST);
49 // logger('postinput ' . file_get_contents('php://input'));
50 logger('postvars ' . print_r($_REQUEST,true), LOGGER_DATA);
52 $api_source = ((x($_REQUEST, 'api_source') && $_REQUEST['api_source']) ? true : false);
54 $message_id = ((x($_REQUEST, 'message_id') && $api_source) ? strip_tags($_REQUEST['message_id']) : '');
56 $return_path = ((x($_REQUEST, 'return')) ? $_REQUEST['return'] : '');
57 $preview = ((x($_REQUEST, 'preview')) ? intval($_REQUEST['preview']) : 0);
60 * Check for doubly-submitted posts, and reject duplicates
61 * Note that we have to ignore previews, otherwise nothing will post
62 * after it's been previewed
64 if (!$preview && x($_REQUEST, 'post_id_random')) {
65 if (x($_SESSION, 'post-random') && $_SESSION['post-random'] == $_REQUEST['post_id_random']) {
66 logger("item post: duplicate post", LOGGER_DEBUG);
67 item_post_return(App::get_baseurl(), $api_source, $return_path);
69 $_SESSION['post-random'] = $_REQUEST['post_id_random'];
73 // Is this a reply to something?
74 $parent = ((x($_REQUEST,'parent')) ? intval($_REQUEST['parent']) : 0);
75 $parent_uri = ((x($_REQUEST,'parent_uri')) ? trim($_REQUEST['parent_uri']) : '');
78 $parent_contact = null;
84 if ($parent || $parent_uri) {
86 $objecttype = ACTIVITY_OBJ_COMMENT;
88 if (! x($_REQUEST,'type')) {
89 $_REQUEST['type'] = 'net-comment';
93 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
96 } elseif ($parent_uri && local_user()) {
97 // This is coming from an API source, and we are logged in
98 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
104 // if this isn't the real parent of the conversation, find it
105 if (dbm::is_result($r)) {
106 $parid = $r[0]['parent'];
107 $parent_uri = $r[0]['uri'];
108 if ($r[0]['id'] != $r[0]['parent']) {
109 $r = q("SELECT * FROM `item` WHERE `id` = `parent` AND `parent` = %d LIMIT 1",
115 if (! dbm::is_result($r)) {
116 notice( t('Unable to locate original post.') . EOL);
117 if (x($_REQUEST,'return')) {
118 goaway($return_path);
122 $parent_item = $r[0];
123 $parent = $r[0]['id'];
125 // multi-level threading - preserve the info but re-parent to our single level threading
126 //if(($parid) && ($parid != $parent))
127 $thr_parent = $parent_uri;
129 if ($parent_item['contact-id'] && $uid) {
130 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
131 intval($parent_item['contact-id']),
134 if (dbm::is_result($r)) {
135 $parent_contact = $r[0];
138 // If the contact id doesn't fit with the contact, then set the contact to null
139 $thrparent = q("SELECT `author-link`, `network` FROM `item` WHERE `uri` = '%s' LIMIT 1", dbesc($thr_parent));
140 if (dbm::is_result($thrparent) AND ($thrparent[0]["network"] === NETWORK_OSTATUS)
141 AND (normalise_link($parent_contact["url"]) != normalise_link($thrparent[0]["author-link"]))) {
142 $parent_contact = get_contact_details_by_url($thrparent[0]["author-link"]);
144 if (!isset($parent_contact["nick"])) {
145 require_once 'include/Scrape.php';
146 $probed_contact = probe_url($thrparent[0]["author-link"]);
147 if ($probed_contact["network"] != NETWORK_FEED) {
148 $parent_contact = $probed_contact;
149 $parent_contact["nurl"] = normalise_link($probed_contact["url"]);
150 $parent_contact["thumb"] = $probed_contact["photo"];
151 $parent_contact["micro"] = $probed_contact["photo"];
152 $parent_contact["addr"] = $probed_contact["addr"];
155 logger('no contact found: ' . print_r($thrparent, true), LOGGER_DEBUG);
157 logger('parent contact: ' . print_r($parent_contact, true), LOGGER_DEBUG);
160 if ($parent_contact["nick"] == "") {
161 $parent_contact["nick"] = $parent_contact["name"];
167 logger('mod_item: item_post parent=' . $parent);
170 $profile_uid = ((x($_REQUEST,'profile_uid')) ? intval($_REQUEST['profile_uid']) : 0);
171 $post_id = ((x($_REQUEST,'post_id')) ? intval($_REQUEST['post_id']) : 0);
172 $app = ((x($_REQUEST,'source')) ? strip_tags($_REQUEST['source']) : '');
173 $extid = ((x($_REQUEST,'extid')) ? strip_tags($_REQUEST['extid']) : '');
174 $object = ((x($_REQUEST,'object')) ? $_REQUEST['object'] : '');
176 // Check for multiple posts with the same message id (when the post was created via API)
177 if (($message_id != '') AND ($profile_uid != 0)) {
178 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
183 if (dbm::is_result($r)) {
184 logger("Message with URI ".$message_id." already exists for user ".$profile_uid, LOGGER_DEBUG);
189 $allow_moderated = false;
191 // here is where we are going to check for permission to post a moderated comment.
193 // First check that the parent exists and it is a wall item.
195 if ((x($_REQUEST, 'commenter')) && ((! $parent) || (! $parent_item['wall']))) {
196 notice(t('Permission denied.') . EOL) ;
197 if (x($_REQUEST, 'return')) {
198 goaway($return_path);
204 * Now check that it is a page_type of PAGE_BLOG, and that valid personal details
205 * have been provided, and run any anti-spam plugins
207 if ((! can_write_wall($a, $profile_uid)) && (! $allow_moderated)) {
208 notice(t('Permission denied.') . EOL) ;
209 if (x($_REQUEST, 'return')) {
210 goaway($return_path);
216 // is this an edited post?
221 $i = q("SELECT * FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
222 intval($profile_uid),
225 if (! dbm::is_result($i)) {
233 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
236 if (dbm::is_result($r)) {
241 $str_group_allow = $orig_post['allow_gid'];
242 $str_contact_allow = $orig_post['allow_cid'];
243 $str_group_deny = $orig_post['deny_gid'];
244 $str_contact_deny = $orig_post['deny_cid'];
245 $location = $orig_post['location'];
246 $coord = $orig_post['coord'];
247 $verb = $orig_post['verb'];
248 $objecttype = $orig_post['object-type'];
249 $emailcc = $orig_post['emailcc'];
250 $app = $orig_post['app'];
251 $categories = $orig_post['file'];
252 $title = notags(trim($_REQUEST['title']));
253 $body = escape_tags(trim($_REQUEST['body']));
254 $private = $orig_post['private'];
255 $pubmail_enable = $orig_post['pubmail'];
256 $network = $orig_post['network'];
257 $guid = $orig_post['guid'];
258 $extid = $orig_post['extid'];
263 * if coming from the API and no privacy settings are set,
264 * use the user default permissions - as they won't have
265 * been supplied via a form.
267 /// @TODO use x($_REQUEST, 'foo') here
269 && (! array_key_exists('contact_allow', $_REQUEST))
270 && (! array_key_exists('group_allow', $_REQUEST))
271 && (! array_key_exists('contact_deny', $_REQUEST))
272 && (! array_key_exists('group_deny', $_REQUEST))) {
273 $str_group_allow = $user['allow_gid'];
274 $str_contact_allow = $user['allow_cid'];
275 $str_group_deny = $user['deny_gid'];
276 $str_contact_deny = $user['deny_cid'];
279 // use the posted permissions
281 $str_group_allow = perms2str($_REQUEST['group_allow']);
282 $str_contact_allow = perms2str($_REQUEST['contact_allow']);
283 $str_group_deny = perms2str($_REQUEST['group_deny']);
284 $str_contact_deny = perms2str($_REQUEST['contact_deny']);
287 $title = notags(trim($_REQUEST['title']));
288 $location = notags(trim($_REQUEST['location']));
289 $coord = notags(trim($_REQUEST['coord']));
290 $verb = notags(trim($_REQUEST['verb']));
291 $emailcc = notags(trim($_REQUEST['emailcc']));
292 $body = escape_tags(trim($_REQUEST['body']));
293 $network = notags(trim($_REQUEST['network']));
294 $guid = get_guid(32);
296 item_add_language_opt($_REQUEST);
297 $postopts = $_REQUEST['postopts'] ? $_REQUEST['postopts'] : "";
299 $private = ((strlen($str_group_allow) || strlen($str_contact_allow) || strlen($str_group_deny) || strlen($str_contact_deny)) ? 1 : 0);
301 if ($user['hidewall']) {
305 // If this is a comment, set the permissions from the parent.
309 // for non native networks use the network of the original post as network of the item
310 if (($parent_item['network'] != NETWORK_DIASPORA)
311 AND ($parent_item['network'] != NETWORK_OSTATUS)
312 AND ($network == "")) {
313 $network = $parent_item['network'];
316 $str_contact_allow = $parent_item['allow_cid'];
317 $str_group_allow = $parent_item['allow_gid'];
318 $str_contact_deny = $parent_item['deny_cid'];
319 $str_group_deny = $parent_item['deny_gid'];
320 $private = $parent_item['private'];
323 $pubmail_enable = ((x($_REQUEST, 'pubmail_enable') && intval($_REQUEST['pubmail_enable']) && (! $private)) ? 1 : 0);
325 // if using the API, we won't see pubmail_enable - figure out if it should be set
327 if ($api_source && $profile_uid && $profile_uid == local_user() && (! $private)) {
328 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
329 if (! $mail_disabled) {
330 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
333 if (dbm::is_result($r) && intval($r[0]['pubmail'])) {
334 $pubmail_enabled = true;
339 if (! strlen($body)) {
343 info(t('Empty post discarded.') . EOL );
344 if (x($_REQUEST, 'return')) {
345 goaway($return_path);
351 if (strlen($categories)) {
352 // get the "fileas" tags for this post
353 $filedas = file_tag_file_to_list($categories, 'file');
355 // save old and new categories, so we can determine what needs to be deleted from pconfig
356 $categories_old = $categories;
357 $categories = file_tag_list_to_file(trim($_REQUEST['category']), 'category');
358 $categories_new = $categories;
359 if (strlen($filedas)) {
360 // append the fileas stuff to the new categories list
361 $categories .= file_tag_list_to_file($filedas, 'file');
364 // get contact info for poster
370 if ((local_user()) && (local_user() == $profile_uid)) {
372 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
373 intval($_SESSION['uid']));
374 } elseif(remote_user()) {
375 if (is_array($_SESSION['remote'])) {
376 foreach ($_SESSION['remote'] as $v) {
377 if ($v['uid'] == $profile_uid) {
378 $contact_id = $v['cid'];
384 $r = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
390 if (dbm::is_result($r)) {
392 $contact_id = $author['id'];
395 // get contact info for owner
397 if ($profile_uid == local_user()) {
398 $contact_record = $author;
400 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
403 if (dbm::is_result($r)) {
404 $contact_record = $r[0];
408 $post_type = notags(trim($_REQUEST['type']));
410 if ($post_type === 'net-comment' && $parent_item !== null) {
411 if ($parent_item['wall'] == 1) {
412 $post_type = 'wall-comment';
414 $post_type = 'remote-comment';
419 * When a photo was uploaded into the message using the (profile wall) ajax
420 * uploader, The permissions are initially set to disallow anybody but the
421 * owner from seeing it. This is because the permissions may not yet have been
422 * set for the post. If it's private, the photo permissions should be set
423 * appropriately. But we didn't know the final permissions on the post until
424 * now. So now we'll look for links of uploaded messages that are in the
425 * post and set them to the same permissions as the post itself.
430 if ((! $preview) && preg_match_all("/\[img([\=0-9x]*?)\](.*?)\[\/img\]/",$body,$match)) {
432 if (count($images)) {
434 $objecttype = ACTIVITY_OBJ_IMAGE;
436 foreach ($images as $image) {
437 if (! stristr($image,App::get_baseurl() . '/photo/')) {
440 $image_uri = substr($image,strrpos($image,'/') + 1);
441 $image_uri = substr($image_uri,0, strpos($image_uri,'-'));
442 if (! strlen($image_uri)) {
445 $srch = '<' . intval($contact_id) . '>';
447 $r = q("SELECT `id` FROM `photo` WHERE `allow_cid` = '%s' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = ''
448 AND `resource-id` = '%s' AND `uid` = %d LIMIT 1",
454 if (! dbm::is_result($r)) {
458 $r = q("UPDATE `photo` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'
459 WHERE `resource-id` = '%s' AND `uid` = %d AND `album` = '%s' ",
460 dbesc($str_contact_allow),
461 dbesc($str_group_allow),
462 dbesc($str_contact_deny),
463 dbesc($str_group_deny),
465 intval($profile_uid),
466 dbesc( t('Wall Photos'))
474 * Next link in any attachment references we find in the post.
478 if ((! $preview) && preg_match_all("/\[attachment\](.*?)\[\/attachment\]/", $body, $match)) {
479 $attaches = $match[1];
480 if (count($attaches)) {
481 foreach ($attaches as $attach) {
482 $r = q("SELECT * FROM `attach` WHERE `uid` = %d AND `id` = %d LIMIT 1",
483 intval($profile_uid),
486 if (dbm::is_result($r)) {
487 $r = q("UPDATE `attach` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'
488 WHERE `uid` = %d AND `id` = %d",
489 dbesc($str_contact_allow),
490 dbesc($str_group_allow),
491 dbesc($str_contact_deny),
492 dbesc($str_group_deny),
493 intval($profile_uid),
501 // embedded bookmark or attachment in post? set bookmark flag
504 $data = get_attachment_data($body);
505 if (preg_match_all("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", $body, $match, PREG_SET_ORDER) OR isset($data["type"])) {
506 $objecttype = ACTIVITY_OBJ_BOOKMARK;
510 $body = bb_translate_video($body);
513 // Fold multi-line [code] sequences
514 $body = preg_replace('/\[\/code\]\s*\[code\]/ism', "\n", $body);
516 $body = scale_external_images($body, false);
518 // Setting the object type if not defined before
520 $objecttype = ACTIVITY_OBJ_NOTE; // Default value
521 require_once 'include/plaintext.php';
522 $objectdata = get_attached_data($body);
524 if ($post["type"] == "link") {
525 $objecttype = ACTIVITY_OBJ_BOOKMARK;
526 } elseif ($post["type"] == "video") {
527 $objecttype = ACTIVITY_OBJ_VIDEO;
528 } elseif ($post["type"] == "photo") {
529 $objecttype = ACTIVITY_OBJ_IMAGE;
534 // Look for any tags and linkify them
538 $tags = get_tags($body);
541 * add a statusnet style reply tag if the original post was from there
542 * and we are replying, and there isn't one already
544 if ($parent AND ($parent_contact['network'] == NETWORK_OSTATUS)) {
545 $contact = '@[url=' . $parent_contact['url'] . ']' . $parent_contact['nick'] . '[/url]';
547 if (!in_array($contact,$tags)) {
548 $body = $contact . ' ' . $body;
552 $toplevel_contact = "";
553 $toplevel_parent = q("SELECT `contact`.* FROM `contact`
554 INNER JOIN `item` ON `item`.`contact-id` = `contact`.`id` AND `contact`.`url` = `item`.`author-link`
555 WHERE `item`.`id` = `item`.`parent` AND `item`.`parent` = %d", intval($parent));
556 if (dbm::is_result($toplevel_parent)) {
557 $toplevel_contact = '@' . $toplevel_parent[0]['nick'] . '+' . $toplevel_parent[0]['id'];
559 $toplevel_parent = q("SELECT `author-link`, `author-name` FROM `item` WHERE `id` = `parent` AND `parent` = %d", intval($parent));
560 $toplevel_contact = '@[url=' . $toplevel_parent[0]['author-link'] . ']' . $toplevel_parent[0]['author-name'] . '[/url]';
563 if (!in_array($toplevel_contact, $tags)) {
564 $tags[] = $toplevel_contact;
570 $private_forum = false;
573 foreach ($tags as $tag) {
575 if (strpos($tag, '#') === 0) {
580 * If we already tagged 'Robert Johnson', don't try and tag 'Robert'.
581 * Robert Johnson should be first in the $tags array
583 $fullnametagged = false;
584 foreach ($tagged as $nextTag) {
585 if (stristr($nextTag, $tag . ' ')) {
586 $fullnametagged = true;
590 if ($fullnametagged) {
594 $success = handle_tag($a, $body, $inform, $str_tags, (local_user()) ? local_user() : $profile_uid , $tag, $network);
595 if ($success['replaced']) {
598 if (is_array($success['contact']) && intval($success['contact']['prv'])) {
599 $private_forum = true;
600 $private_id = $success['contact']['id'];
605 if (($private_forum) && (! $parent) && (! $private)) {
606 // we tagged a private forum in a top level post and the message was public.
609 $str_contact_allow = '<' . $private_id . '>';
615 if (preg_match_all('/(\[attachment\]([0-9]+)\[\/attachment\])/',$body,$match)) {
616 foreach ($match[2] as $mtch) {
617 $r = q("SELECT `id`,`filename`,`filesize`,`filetype` FROM `attach` WHERE `uid` = %d AND `id` = %d LIMIT 1",
618 intval($profile_uid),
621 if (dbm::is_result($r)) {
622 if (strlen($attachments)) {
625 $attachments .= '[attach]href="' . App::get_baseurl() . '/attach/' . $r[0]['id'] . '" length="' . $r[0]['filesize'] . '" type="' . $r[0]['filetype'] . '" title="' . (($r[0]['filename']) ? $r[0]['filename'] : '') . '"[/attach]';
627 $body = str_replace($match[1],'',$body);
633 if ($post_type === 'wall' || $post_type === 'wall-comment') {
637 if (! strlen($verb)) {
638 $verb = ACTIVITY_POST ;
641 if ($network == "") {
642 $network = NETWORK_DFRN;
645 $gravity = (($parent) ? 6 : 0 );
647 // even if the post arrived via API we are considering that it
648 // originated on this site by default for determining relayability.
650 $origin = ((x($_REQUEST,'origin')) ? intval($_REQUEST['origin']) : 1);
652 $notify_type = (($parent) ? 'comment-new' : 'wall-new' );
654 $uri = (($message_id) ? $message_id : item_new_uri($a->get_hostname(),$profile_uid, $guid));
656 // Fallback so that we alway have a thr-parent
662 $datarray['uid'] = $profile_uid;
663 $datarray['type'] = $post_type;
664 $datarray['wall'] = $wall;
665 $datarray['gravity'] = $gravity;
666 $datarray['network'] = $network;
667 $datarray['contact-id'] = $contact_id;
668 $datarray['owner-name'] = $contact_record['name'];
669 $datarray['owner-link'] = $contact_record['url'];
670 $datarray['owner-avatar'] = $contact_record['thumb'];
671 $datarray['owner-id'] = get_contact($datarray['owner-link'], 0);
672 $datarray['author-name'] = $author['name'];
673 $datarray['author-link'] = $author['url'];
674 $datarray['author-avatar'] = $author['thumb'];
675 $datarray['author-id'] = get_contact($datarray['author-link'], 0);
676 $datarray['created'] = datetime_convert();
677 $datarray['edited'] = datetime_convert();
678 $datarray['commented'] = datetime_convert();
679 $datarray['received'] = datetime_convert();
680 $datarray['changed'] = datetime_convert();
681 $datarray['extid'] = $extid;
682 $datarray['guid'] = $guid;
683 $datarray['uri'] = $uri;
684 $datarray['title'] = $title;
685 $datarray['body'] = $body;
686 $datarray['app'] = $app;
687 $datarray['location'] = $location;
688 $datarray['coord'] = $coord;
689 $datarray['tag'] = $str_tags;
690 $datarray['file'] = $categories;
691 $datarray['inform'] = $inform;
692 $datarray['verb'] = $verb;
693 $datarray['object-type'] = $objecttype;
694 $datarray['allow_cid'] = $str_contact_allow;
695 $datarray['allow_gid'] = $str_group_allow;
696 $datarray['deny_cid'] = $str_contact_deny;
697 $datarray['deny_gid'] = $str_group_deny;
698 $datarray['private'] = $private;
699 $datarray['pubmail'] = $pubmail_enable;
700 $datarray['attach'] = $attachments;
701 $datarray['bookmark'] = intval($bookmark);
702 $datarray['thr-parent'] = $thr_parent;
703 $datarray['postopts'] = $postopts;
704 $datarray['origin'] = $origin;
705 $datarray['moderated'] = $allow_moderated;
706 $datarray['gcontact-id'] = get_gcontact_id(array("url" => $datarray['author-link'], "network" => $datarray['network'],
707 "photo" => $datarray['author-avatar'], "name" => $datarray['author-name']));
708 $datarray['object'] = $object;
711 * These fields are for the convenience of plugins...
712 * 'self' if true indicates the owner is posting on their own wall
713 * If parent is 0 it is a top-level post.
715 $datarray['parent'] = $parent;
716 $datarray['self'] = $self;
717 // $datarray['prvnets'] = $user['prvnets'];
719 $datarray['parent-uri'] = ($parent == 0) ? $uri : $parent_item['uri'];
720 $datarray['plink'] = App::get_baseurl() . '/display/' . urlencode($datarray['guid']);
721 $datarray['last-child'] = 1;
722 $datarray['visible'] = 1;
725 $datarray['edit'] = true;
728 // Search for hashtags
729 item_body_set_hashtags($datarray);
731 // preview mode - prepare the body for display and send it via json
733 require_once 'include/conversation.php';
734 // We set the datarray ID to -1 because in preview mode the dataray
735 // doesn't have an ID.
736 $datarray["id"] = -1;
737 $o = conversation($a,array(array_merge($contact_record,$datarray)),'search', false, true);
738 logger('preview: ' . $o);
739 echo json_encode(array('preview' => $o));
743 call_hooks('post_local',$datarray);
745 if (x($datarray, 'cancel')) {
746 logger('mod_item: post cancelled by plugin.');
748 goaway($return_path);
751 $json = array('cancel' => 1);
752 if (x($_REQUEST,'jsreload') && strlen($_REQUEST['jsreload'])) {
753 $json['reload'] = App::get_baseurl() . '/' . $_REQUEST['jsreload'];
756 echo json_encode($json);
760 // Fill the cache field
761 put_item_in_cache($datarray);
764 $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",
765 dbesc($datarray['title']),
766 dbesc($datarray['body']),
767 dbesc($datarray['tag']),
768 dbesc($datarray['attach']),
769 dbesc($datarray['file']),
770 dbesc($datarray['rendered-html']),
771 dbesc($datarray['rendered-hash']),
772 dbesc(datetime_convert()),
773 dbesc(datetime_convert()),
778 create_tags_from_item($post_id);
779 create_files_from_item($post_id);
780 update_thread($post_id);
782 // update filetags in pconfig
783 file_tag_update_pconfig($uid,$categories_old,$categories_new,'category');
785 proc_run(PRIORITY_HIGH, "include/notifier.php", 'edit_post', $post_id);
786 if ((x($_REQUEST,'return')) && strlen($return_path)) {
787 logger('return: ' . $return_path);
788 goaway($return_path);
796 q("START TRANSACTION;");
798 $r = q("INSERT INTO `item` (`guid`, `extid`, `uid`,`type`,`wall`,`gravity`, `network`, `contact-id`,
799 `owner-name`,`owner-link`,`owner-avatar`, `owner-id`,
800 `author-name`, `author-link`, `author-avatar`, `author-id`,
801 `created`, `edited`, `commented`, `received`, `changed`,
802 `uri`, `thr-parent`, `title`, `body`, `app`, `location`, `coord`,
803 `tag`, `inform`, `verb`, `object-type`, `postopts`,
804 `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`, `private`,
805 `pubmail`, `attach`, `bookmark`,`origin`, `moderated`, `file`,
806 `rendered-html`, `rendered-hash`, `gcontact-id`, `object`,
807 `parent`, `parent-uri`, `plink`, `last-child`, `visible`)
808 VALUES('%s', '%s', %d, '%s', %d, %d, '%s', %d,
809 '%s', '%s', '%s', %d,
810 '%s', '%s', '%s', %d,
811 '%s', '%s', '%s', '%s', '%s',
812 '%s', '%s', '%s', '%s', '%s', '%s', '%s',
813 '%s', '%s', '%s', '%s', '%s',
814 '%s', '%s', '%s', '%s', %d,
815 %d, '%s', %d, %d, %d, '%s',
816 '%s', '%s', %d, '%s',
817 %d, '%s', '%s', %d, %d)",
818 dbesc($datarray['guid']),
819 dbesc($datarray['extid']),
820 intval($datarray['uid']),
821 dbesc($datarray['type']),
822 intval($datarray['wall']),
823 intval($datarray['gravity']),
824 dbesc($datarray['network']),
825 intval($datarray['contact-id']),
826 dbesc($datarray['owner-name']),
827 dbesc($datarray['owner-link']),
828 dbesc($datarray['owner-avatar']),
829 intval($datarray['owner-id']),
830 dbesc($datarray['author-name']),
831 dbesc($datarray['author-link']),
832 dbesc($datarray['author-avatar']),
833 intval($datarray['author-id']),
834 dbesc($datarray['created']),
835 dbesc($datarray['edited']),
836 dbesc($datarray['commented']),
837 dbesc($datarray['received']),
838 dbesc($datarray['changed']),
839 dbesc($datarray['uri']),
840 dbesc($datarray['thr-parent']),
841 dbesc($datarray['title']),
842 dbesc($datarray['body']),
843 dbesc($datarray['app']),
844 dbesc($datarray['location']),
845 dbesc($datarray['coord']),
846 dbesc($datarray['tag']),
847 dbesc($datarray['inform']),
848 dbesc($datarray['verb']),
849 dbesc($datarray['object-type']),
850 dbesc($datarray['postopts']),
851 dbesc($datarray['allow_cid']),
852 dbesc($datarray['allow_gid']),
853 dbesc($datarray['deny_cid']),
854 dbesc($datarray['deny_gid']),
855 intval($datarray['private']),
856 intval($datarray['pubmail']),
857 dbesc($datarray['attach']),
858 intval($datarray['bookmark']),
859 intval($datarray['origin']),
860 intval($datarray['moderated']),
861 dbesc($datarray['file']),
862 dbesc($datarray['rendered-html']),
863 dbesc($datarray['rendered-hash']),
864 intval($datarray['gcontact-id']),
865 dbesc($datarray['object']),
866 intval($datarray['parent']),
867 dbesc($datarray['parent-uri']),
868 dbesc($datarray['plink']),
869 intval($datarray['last-child']),
870 intval($datarray['visible'])
873 if (dbm::is_result($r)) {
874 $r = q("SELECT LAST_INSERT_ID() AS `item-id`");
875 if (dbm::is_result($r)) {
876 $post_id = $r[0]['item-id'];
881 logger('mod_item: unable to create post.');
887 logger('mod_item: unable to retrieve post that was just stored.');
888 notice(t('System error. Post not saved.') . EOL);
889 goaway($return_path);
893 logger('mod_item: saved item ' . $post_id);
895 $datarray["id"] = $post_id;
897 item_set_last_item($datarray);
899 // update filetags in pconfig
900 file_tag_update_pconfig($uid,$categories_old,$categories_new,'category');
904 // This item is the last leaf and gets the comment box, clear any ancestors
905 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent` = %d AND `last-child` AND `id` != %d",
906 dbesc(datetime_convert()),
911 // update the commented timestamp on the parent
912 q("UPDATE `item` SET `visible` = 1, `commented` = '%s', `changed` = '%s' WHERE `id` = %d",
913 dbesc(datetime_convert()),
914 dbesc(datetime_convert()),
918 if ($contact_record != $author) {
920 'type' => NOTIFY_COMMENT,
921 'notify_flags' => $user['notify-flags'],
922 'language' => $user['language'],
923 'to_name' => $user['username'],
924 'to_email' => $user['email'],
925 'uid' => $user['uid'],
927 'link' => App::get_baseurl().'/display/'.urlencode($datarray['guid']),
928 'source_name' => $datarray['author-name'],
929 'source_link' => $datarray['author-link'],
930 'source_photo' => $datarray['author-avatar'],
931 'verb' => ACTIVITY_POST,
934 'parent_uri' => $parent_item['uri']
940 // Store the comment signature information in case we need to relay to Diaspora
941 Diaspora::store_comment_signature($datarray, $author, ($self ? $user['prvkey'] : false), $post_id);
946 $r = q("UPDATE `item` SET `parent` = %d WHERE `id` = %d",
950 if ($contact_record != $author) {
952 'type' => NOTIFY_WALL,
953 'notify_flags' => $user['notify-flags'],
954 'language' => $user['language'],
955 'to_name' => $user['username'],
956 'to_email' => $user['email'],
957 'uid' => $user['uid'],
959 'link' => App::get_baseurl().'/display/'.urlencode($datarray['guid']),
960 'source_name' => $datarray['author-name'],
961 'source_link' => $datarray['author-link'],
962 'source_photo' => $datarray['author-avatar'],
963 'verb' => ACTIVITY_POST,
969 call_hooks('post_local_end', $datarray);
971 if (strlen($emailcc) && $profile_uid == local_user()) {
972 $erecips = explode(',', $emailcc);
973 if (count($erecips)) {
974 foreach ($erecips as $recip) {
975 $addr = trim($recip);
976 if (! strlen($addr)) {
979 $disclaimer = '<hr />' . sprintf( t('This message was sent to you by %s, a member of the Friendica social network.'),$a->user['username'])
981 $disclaimer .= sprintf( t('You may visit them online at %s'), App::get_baseurl() . '/profile/' . $a->user['nickname']) . EOL;
982 $disclaimer .= t('Please contact the sender by replying to this post if you do not wish to receive these messages.') . EOL;
983 if (!$datarray['title']=='') {
984 $subject = email_header_encode($datarray['title'], 'UTF-8');
986 $subject = email_header_encode('[Friendica]' . ' ' . sprintf( t('%s posted an update.'), $a->user['username']), 'UTF-8');
988 $link = '<a href="' . App::get_baseurl() . '/profile/' . $a->user['nickname'] . '"><img src="' . $author['thumb'] . '" alt="' . $a->user['username'] . '" /></a><br /><br />';
989 $html = prepare_body($datarray);
990 $message = '<html><body>' . $link . $html . $disclaimer . '</body></html>';
991 include_once 'include/html2plain.php';
993 'fromName' => $a->user['username'],
994 'fromEmail' => $a->user['email'],
996 'replyTo' => $a->user['email'],
997 'messageSubject' => $subject,
998 'htmlVersion' => $message,
999 'textVersion' => html2plain($html.$disclaimer),
1001 Emailer::send($params);
1006 if ($post_id == $parent) {
1007 add_thread($post_id);
1009 update_thread($parent, true);
1014 create_tags_from_item($post_id);
1015 create_files_from_item($post_id);
1017 // Insert an item entry for UID=0 for global entries.
1018 // We now do it in the background to save some time.
1019 // This is important in interactive environments like the frontend or the API.
1020 // We don't fork a new process since this is done anyway with the following command
1021 proc_run(array('priority' => PRIORITY_HIGH, 'dont_fork' => true), "include/create_shadowentry.php", $post_id);
1023 // Call the background process that is delivering the item to the receivers
1024 proc_run(PRIORITY_HIGH, "include/notifier.php", $notify_type, $post_id);
1026 logger('post_complete');
1028 item_post_return(App::get_baseurl(), $api_source, $return_path);
1032 function item_post_return($baseurl, $api_source, $return_path) {
1033 // figure out how to return, depending on from whence we came
1040 goaway($return_path);
1043 $json = array('success' => 1);
1044 if (x($_REQUEST, 'jsreload') && strlen($_REQUEST['jsreload'])) {
1045 $json['reload'] = $baseurl . '/' . $_REQUEST['jsreload'];
1048 logger('post_json: ' . print_r($json,true), LOGGER_DEBUG);
1050 echo json_encode($json);
1056 function item_content(App $a) {
1058 if ((! local_user()) && (! remote_user())) {
1062 require_once 'include/security.php';
1065 if (($a->argc == 3) && ($a->argv[1] === 'drop') && intval($a->argv[2])) {
1066 $o = drop_item($a->argv[2], !is_ajax());
1068 // ajax return: [<item id>, 0 (no perm) | <owner id>]
1069 echo json_encode(array(intval($a->argv[2]), intval($o)));
1077 * This function removes the tag $tag from the text $body and replaces it with
1078 * the appropiate link.
1080 * @param App $a Application instance @TODO is unused in this function's scope (excluding included files)
1081 * @param unknown_type $body the text to replace the tag in
1082 * @param string $inform a comma-seperated string containing everybody to inform
1083 * @param string $str_tags string to add the tag to
1084 * @param integer $profile_uid
1085 * @param string $tag the tag to replace
1086 * @param string $network The network of the post
1088 * @return boolean true if replaced, false if not replaced
1090 function handle_tag(App $a, &$body, &$inform, &$str_tags, $profile_uid, $tag, $network = "") {
1091 require_once 'include/Scrape.php';
1092 require_once 'include/socgraph.php';
1097 //is it a person tag?
1098 if (strpos($tag, '@') === 0) {
1099 //is it already replaced?
1100 if (strpos($tag, '[url=')) {
1101 //append tag to str_tags
1102 if (!stristr($str_tags, $tag)) {
1103 if (strlen($str_tags)) {
1109 // Checking for the alias that is used for OStatus
1110 $pattern = "/@\[url\=(.*?)\](.*?)\[\/url\]/ism";
1111 if (preg_match($pattern, $tag, $matches)) {
1113 $r = q("SELECT `alias`, `name` FROM `contact` WHERE `nurl` = '%s' AND `alias` != '' AND `uid` = 0",
1114 normalise_link($matches[1]));
1115 if (!dbm::is_result($r)) {
1116 $r = q("SELECT `alias`, `name` FROM `gcontact` WHERE `nurl` = '%s' AND `alias` != ''",
1117 normalise_link($matches[1]));
1119 if (dbm::is_result($r)) {
1122 $data = probe_url($matches[1]);
1125 if ($data["alias"] != "") {
1126 $newtag = '@[url=' . $data["alias"] . ']' . $data["name"] . '[/url]';
1127 if (!stristr($str_tags, $newtag)) {
1128 if (strlen($str_tags)) {
1131 $str_tags .= $newtag;
1139 //get the person's name
1140 $name = substr($tag, 1);
1142 // Sometimes the tag detection doesn't seem to work right
1143 // This is some workaround
1144 $nameparts = explode(" ", $name);
1145 $name = $nameparts[0];
1147 // Try to detect the contact in various ways
1148 if ((strpos($name, '@')) || (strpos($name, 'http://'))) {
1149 // Is it in format @user@domain.tld or @http://domain.tld/...?
1151 // First check the contact table for the address
1152 $r = q("SELECT `id`, `url`, `nick`, `name`, `alias`, `network`, `notify` FROM `contact`
1153 WHERE `addr` = '%s' AND `uid` = %d AND
1154 (`network` != '%s' OR (`notify` != '' AND `alias` != ''))
1157 intval($profile_uid),
1158 dbesc(NETWORK_OSTATUS)
1161 // Then check in the contact table for the url
1162 if (!dbm::is_result($r)) {
1163 $r = q("SELECT `id`, `url`, `nick`, `name`, `alias`, `network`, `notify` FROM `contact`
1164 WHERE `nurl` = '%s' AND `uid` = %d AND
1165 (`network` != '%s' OR (`notify` != '' AND `alias` != ''))
1167 dbesc(normalise_link($name)),
1168 intval($profile_uid),
1169 dbesc(NETWORK_OSTATUS)
1173 // Then check in the global contacts for the address
1174 if (!dbm::is_result($r)) {
1175 $r = q("SELECT `url`, `nick`, `name`, `alias`, `network`, `notify` FROM `gcontact`
1176 WHERE `addr` = '%s' AND (`network` != '%s' OR (`notify` != '' AND `alias` != ''))
1179 dbesc(NETWORK_OSTATUS)
1183 // Then check in the global contacts for the url
1184 if (!dbm::is_result($r)) {
1185 $r = q("SELECT `url`, `nick`, `name`, `alias`, `network`, `notify` FROM `gcontact`
1186 WHERE `nurl` = '%s' AND (`network` != '%s' OR (`notify` != '' AND `alias` != ''))
1188 dbesc(normalise_link($name)),
1189 dbesc(NETWORK_OSTATUS)
1193 if (!dbm::is_result($r)) {
1194 $probed = probe_url($name);
1195 if ($result['network'] != NETWORK_PHANTOM) {
1196 update_gcontact($probed);
1197 $r = q("SELECT `url`, `name`, `nick`, `network`, `alias`, `notify` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
1198 dbesc(normalise_link($probed["url"])));
1203 if (strrpos($name,'+')) {
1204 // Is it in format @nick+number?
1205 $tagcid = intval(substr($name,strrpos($name,'+') + 1));
1207 $r = q("SELECT `id`, `url`, `nick`, `name`, `alias`, `network` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
1209 intval($profile_uid)
1213 // select someone by attag or nick and the name passed in the current network
1214 if(!dbm::is_result($r) AND ($network != ""))
1215 $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",
1219 intval($profile_uid)
1222 //select someone from this user's contacts by name in the current network
1223 if (!dbm::is_result($r) AND ($network != "")) {
1224 $r = q("SELECT `id`, `url`, `nick`, `name`, `alias`, `network` FROM `contact` WHERE `name` = '%s' AND `network` = '%s' AND `uid` = %d LIMIT 1",
1227 intval($profile_uid)
1231 // select someone by attag or nick and the name passed in
1232 if(!dbm::is_result($r)) {
1233 $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",
1236 intval($profile_uid)
1240 // select someone from this user's contacts by name
1241 if(!dbm::is_result($r)) {
1242 $r = q("SELECT `id`, `url`, `nick`, `name`, `alias`, `network` FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
1244 intval($profile_uid)
1249 if (dbm::is_result($r)) {
1250 if (strlen($inform) AND (isset($r[0]["notify"]) OR isset($r[0]["id"]))) {
1254 if (isset($r[0]["id"])) {
1255 $inform .= 'cid:' . $r[0]["id"];
1256 } elseif (isset($r[0]["notify"])) {
1257 $inform .= $r[0]["notify"];
1260 $profile = $r[0]["url"];
1261 $alias = $r[0]["alias"];
1262 $newname = $r[0]["nick"];
1263 if (($newname == "") OR (($r[0]["network"] != NETWORK_OSTATUS) AND ($r[0]["network"] != NETWORK_TWITTER)
1264 AND ($r[0]["network"] != NETWORK_STATUSNET) AND ($r[0]["network"] != NETWORK_APPNET))) {
1265 $newname = $r[0]["name"];
1269 //if there is an url for this persons profile
1270 if (isset($profile) AND ($newname != "")) {
1273 // create profile link
1274 $profile = str_replace(',','%2c',$profile);
1275 $newtag = '@[url='.$profile.']'.$newname.'[/url]';
1276 $body = str_replace('@'.$name, $newtag, $body);
1277 // append tag to str_tags
1278 if (! stristr($str_tags,$newtag)) {
1279 if (strlen($str_tags)) {
1282 $str_tags .= $newtag;
1285 // Status.Net seems to require the numeric ID URL in a mention if the person isn't
1286 // subscribed to you. But the nickname URL is OK if they are. Grrr. We'll tag both.
1287 if (strlen($alias)) {
1288 $newtag = '@[url='.$alias.']'.$newname.'[/url]';
1289 if (! stristr($str_tags,$newtag)) {
1290 if (strlen($str_tags)) {
1293 $str_tags .= $newtag;
1299 return array('replaced' => $replaced, 'contact' => $r[0]);