5 * This is the POST destination for most all locally posted
6 * text stuff. This function handles status, wall-to-wall status,
7 * local comments, and remote coments that are posted on this site
8 * (as opposed to being delivered in a feed).
9 * Also processed here are posts and comments coming through the
10 * statusnet/twitter API.
11 * All of these become an "item" which is our basic unit of
13 * Posts that originate externally or do not fall into the above
14 * 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('Text/LanguageDetect.php');
23 function item_post(&$a) {
25 if((! local_user()) && (! remote_user()) && (! x($_REQUEST,'commenter')))
28 require_once('include/security.php');
32 if(x($_REQUEST,'dropitems')) {
33 require_once('include/items.php');
34 $arr_drop = explode(',',$_REQUEST['dropitems']);
35 drop_items($arr_drop);
36 $json = array('success' => 1);
37 echo json_encode($json);
41 call_hooks('post_local_start', $_REQUEST);
42 // logger('postinput ' . file_get_contents('php://input'));
43 logger('postvars ' . print_r($_REQUEST,true), LOGGER_DATA);
45 $api_source = ((x($_REQUEST,'api_source') && $_REQUEST['api_source']) ? true : false);
46 $return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : '');
47 $preview = ((x($_REQUEST,'preview')) ? intval($_REQUEST['preview']) : 0);
50 * Is this a reply to something?
53 $parent = ((x($_REQUEST,'parent')) ? intval($_REQUEST['parent']) : 0);
54 $parent_uri = ((x($_REQUEST,'parent_uri')) ? trim($_REQUEST['parent_uri']) : '');
57 $parent_contact = null;
62 if($parent || $parent_uri) {
64 if(! x($_REQUEST,'type'))
65 $_REQUEST['type'] = 'net-comment';
68 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
72 elseif($parent_uri && local_user()) {
73 // This is coming from an API source, and we are logged in
74 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
79 // if this isn't the real parent of the conversation, find it
80 if($r !== false && count($r)) {
81 $parid = $r[0]['parent'];
82 $parent_uri = $r[0]['uri'];
83 if($r[0]['id'] != $r[0]['parent']) {
84 $r = q("SELECT * FROM `item` WHERE `id` = `parent` AND `parent` = %d LIMIT 1",
90 if(($r === false) || (! count($r))) {
91 notice( t('Unable to locate original post.') . EOL);
92 if(x($_REQUEST,'return'))
93 goaway($a->get_baseurl() . "/" . $return_path );
97 $parent = $r[0]['id'];
99 // multi-level threading - preserve the info but re-parent to our single level threading
100 //if(($parid) && ($parid != $parent))
101 $thr_parent = $parent_uri;
103 if($parent_item['contact-id'] && $uid) {
104 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
105 intval($parent_item['contact-id']),
109 $parent_contact = $r[0];
113 if($parent) logger('mod_item: item_post parent=' . $parent);
115 $profile_uid = ((x($_REQUEST,'profile_uid')) ? intval($_REQUEST['profile_uid']) : 0);
116 $post_id = ((x($_REQUEST,'post_id')) ? intval($_REQUEST['post_id']) : 0);
117 $app = ((x($_REQUEST,'source')) ? strip_tags($_REQUEST['source']) : '');
119 $allow_moderated = false;
121 // here is where we are going to check for permission to post a moderated comment.
123 // First check that the parent exists and it is a wall item.
125 if((x($_REQUEST,'commenter')) && ((! $parent) || (! $parent_item['wall']))) {
126 notice( t('Permission denied.') . EOL) ;
127 if(x($_REQUEST,'return'))
128 goaway($a->get_baseurl() . "/" . $return_path );
132 // Now check that it is a page_type of PAGE_BLOG, and that valid personal details
133 // have been provided, and run any anti-spam plugins
141 if((! can_write_wall($a,$profile_uid)) && (! $allow_moderated)) {
142 notice( t('Permission denied.') . EOL) ;
143 if(x($_REQUEST,'return'))
144 goaway($a->get_baseurl() . "/" . $return_path );
149 // is this an edited post?
154 $i = q("SELECT * FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
155 intval($profile_uid),
165 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
172 $str_group_allow = $orig_post['allow_gid'];
173 $str_contact_allow = $orig_post['allow_cid'];
174 $str_group_deny = $orig_post['deny_gid'];
175 $str_contact_deny = $orig_post['deny_cid'];
176 $location = $orig_post['location'];
177 $coord = $orig_post['coord'];
178 $verb = $orig_post['verb'];
179 $emailcc = $orig_post['emailcc'];
180 $app = $orig_post['app'];
181 $categories = $orig_post['file'];
182 $title = notags(trim($_REQUEST['title']));
183 $body = escape_tags(trim($_REQUEST['body']));
184 $private = $orig_post['private'];
185 $pubmail_enable = $orig_post['pubmail'];
190 // if coming from the API and no privacy settings are set,
191 // use the user default permissions - as they won't have
192 // been supplied via a form.
195 && (! array_key_exists('contact_allow',$_REQUEST))
196 && (! array_key_exists('group_allow',$_REQUEST))
197 && (! array_key_exists('contact_deny',$_REQUEST))
198 && (! array_key_exists('group_deny',$_REQUEST))) {
199 $str_group_allow = $user['allow_gid'];
200 $str_contact_allow = $user['allow_cid'];
201 $str_group_deny = $user['deny_gid'];
202 $str_contact_deny = $user['deny_cid'];
206 // use the posted permissions
208 $str_group_allow = perms2str($_REQUEST['group_allow']);
209 $str_contact_allow = perms2str($_REQUEST['contact_allow']);
210 $str_group_deny = perms2str($_REQUEST['group_deny']);
211 $str_contact_deny = perms2str($_REQUEST['contact_deny']);
214 $title = notags(trim($_REQUEST['title']));
215 $location = notags(trim($_REQUEST['location']));
216 $coord = notags(trim($_REQUEST['coord']));
217 $verb = notags(trim($_REQUEST['verb']));
218 $emailcc = notags(trim($_REQUEST['emailcc']));
219 $body = escape_tags(trim($_REQUEST['body']));
222 $naked_body = preg_replace('/\[(.+?)\]/','',$body);
224 if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
225 $l = new Text_LanguageDetect;
226 $lng = $l->detectConfidence($naked_body);
228 $postopts = (($lng['language']) ? 'lang=' . $lng['language'] . ';' . $lng['confidence'] : '');
230 logger('mod_item: detect language' . print_r($lng,true) . $naked_body, LOGGER_DATA);
236 $private = ((strlen($str_group_allow) || strlen($str_contact_allow) || strlen($str_group_deny) || strlen($str_contact_deny)) ? 1 : 0);
238 // If this is a comment, set the permissions from the parent.
243 if(($parent_item['private'])
244 || strlen($parent_item['allow_cid'])
245 || strlen($parent_item['allow_gid'])
246 || strlen($parent_item['deny_cid'])
247 || strlen($parent_item['deny_gid'])) {
248 $private = (($parent_item['private']) ? $parent_item['private'] : 1);
251 $str_contact_allow = $parent_item['allow_cid'];
252 $str_group_allow = $parent_item['allow_gid'];
253 $str_contact_deny = $parent_item['deny_cid'];
254 $str_group_deny = $parent_item['deny_gid'];
257 $pubmail_enable = ((x($_REQUEST,'pubmail_enable') && intval($_REQUEST['pubmail_enable']) && (! $private)) ? 1 : 0);
259 // if using the API, we won't see pubmail_enable - figure out if it should be set
261 if($api_source && $profile_uid && $profile_uid == local_user() && (! $private)) {
262 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
263 if(! $mail_disabled) {
264 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
267 if(count($r) && intval($r[0]['pubmail']))
268 $pubmail_enabled = true;
272 if(! strlen($body)) {
275 info( t('Empty post discarded.') . EOL );
276 if(x($_REQUEST,'return'))
277 goaway($a->get_baseurl() . "/" . $return_path );
282 if(strlen($categories)) {
283 // get the "fileas" tags for this post
284 $filedas = file_tag_file_to_list($categories, 'file');
286 // save old and new categories, so we can determine what needs to be deleted from pconfig
287 $categories_old = $categories;
288 $categories = file_tag_list_to_file(trim($_REQUEST['category']), 'category');
289 $categories_new = $categories;
290 if(strlen($filedas)) {
291 // append the fileas stuff to the new categories list
292 $categories .= file_tag_list_to_file($filedas, 'file');
295 // Work around doubled linefeeds in Tinymce 3.5b2
296 // First figure out if it's a status post that would've been
297 // created using tinymce. Otherwise leave it alone.
299 $plaintext = (local_user() ? intval(get_pconfig(local_user(),'system','plaintext')) : 0);
300 if((! $parent) && (! $api_source) && (! $plaintext)) {
301 $body = fix_mce_lf($body);
305 // get contact info for poster
310 if((local_user()) && (local_user() == $profile_uid)) {
312 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
313 intval($_SESSION['uid'])
316 elseif(remote_user()) {
317 $r = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
318 intval(remote_user())
324 $contact_id = $author['id'];
327 // get contact info for owner
329 if($profile_uid == local_user()) {
330 $contact_record = $author;
333 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
337 $contact_record = $r[0];
340 $post_type = notags(trim($_REQUEST['type']));
342 if($post_type === 'net-comment') {
343 if($parent_item !== null) {
344 if($parent_item['wall'] == 1)
345 $post_type = 'wall-comment';
347 $post_type = 'remote-comment';
353 * When a photo was uploaded into the message using the (profile wall) ajax
354 * uploader, The permissions are initially set to disallow anybody but the
355 * owner from seeing it. This is because the permissions may not yet have been
356 * set for the post. If it's private, the photo permissions should be set
357 * appropriately. But we didn't know the final permissions on the post until
358 * now. So now we'll look for links of uploaded messages that are in the
359 * post and set them to the same permissions as the post itself.
365 if((! $preview) && preg_match_all("/\[img\](.*?)\[\/img\]/",$body,$match)) {
368 foreach($images as $image) {
369 if(! stristr($image,$a->get_baseurl() . '/photo/'))
371 $image_uri = substr($image,strrpos($image,'/') + 1);
372 $image_uri = substr($image_uri,0, strpos($image_uri,'-'));
373 if(! strlen($image_uri))
375 $srch = '<' . intval($contact_id) . '>';
377 $r = q("SELECT `id` FROM `photo` WHERE `allow_cid` = '%s' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = ''
378 AND `resource-id` = '%s' AND `uid` = %d LIMIT 1",
388 $r = q("UPDATE `photo` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'
389 WHERE `resource-id` = '%s' AND `uid` = %d AND `album` = '%s' ",
390 dbesc($str_contact_allow),
391 dbesc($str_group_allow),
392 dbesc($str_contact_deny),
393 dbesc($str_group_deny),
395 intval($profile_uid),
396 dbesc( t('Wall Photos'))
405 * Next link in any attachment references we find in the post.
410 if((! $preview) && preg_match_all("/\[attachment\](.*?)\[\/attachment\]/",$body,$match)) {
411 $attaches = $match[1];
412 if(count($attaches)) {
413 foreach($attaches as $attach) {
414 $r = q("SELECT * FROM `attach` WHERE `uid` = %d AND `id` = %d LIMIT 1",
415 intval($profile_uid),
419 $r = q("UPDATE `attach` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'
420 WHERE `uid` = %d AND `id` = %d LIMIT 1",
421 dbesc($str_contact_allow),
422 dbesc($str_group_allow),
423 dbesc($str_contact_deny),
424 dbesc($str_group_deny),
425 intval($profile_uid),
433 // embedded bookmark in post? set bookmark flag
436 if(preg_match_all("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism",$body,$match,PREG_SET_ORDER)) {
440 $body = bb_translate_video($body);
444 * Fold multi-line [code] sequences
447 $body = preg_replace('/\[\/code\]\s*\[code\]/ism',"\n",$body);
449 $body = scale_external_images($body,false);
454 * Look for any tags and linkify them
461 $tags = get_tags($body);
464 * add a statusnet style reply tag if the original post was from there
465 * and we are replying, and there isn't one already
468 if(($parent_contact) && ($parent_contact['network'] === NETWORK_OSTATUS)
469 && ($parent_contact['nick']) && (! in_array('@' . $parent_contact['nick'],$tags))) {
470 $body = '@' . $parent_contact['nick'] . ' ' . $body;
471 $tags[] = '@' . $parent_contact['nick'];
476 $private_forum = false;
479 foreach($tags as $tag) {
481 // If we already tagged 'Robert Johnson', don't try and tag 'Robert'.
482 // Robert Johnson should be first in the $tags array
484 $fullnametagged = false;
485 for($x = 0; $x < count($tagged); $x ++) {
486 if(stristr($tagged[$x],$tag . ' ')) {
487 $fullnametagged = true;
494 $success = handle_tag($a, $body, $inform, $str_tags, (local_user()) ? local_user() : $profile_uid , $tag);
495 if($success['replaced'])
497 if(is_array($success['contact']) && intval($success['contact']['prv'])) {
498 $private_forum = true;
499 $private_id = $success['contact']['id'];
504 if(($private_forum) && (! $parent) && (! $private)) {
505 // we tagged a private forum in a top level post and the message was public.
508 $str_contact_allow = '<' . $private_id . '>';
514 if(preg_match_all('/(\[attachment\]([0-9]+)\[\/attachment\])/',$body,$match)) {
515 foreach($match[2] as $mtch) {
516 $r = q("SELECT `id`,`filename`,`filesize`,`filetype` FROM `attach` WHERE `uid` = %d AND `id` = %d LIMIT 1",
517 intval($profile_uid),
521 if(strlen($attachments))
523 $attachments .= '[attach]href="' . $a->get_baseurl() . '/attach/' . $r[0]['id'] . '" length="' . $r[0]['filesize'] . '" type="' . $r[0]['filetype'] . '" title="' . (($r[0]['filename']) ? $r[0]['filename'] : '') . '"[/attach]';
525 $body = str_replace($match[1],'',$body);
531 if($post_type === 'wall' || $post_type === 'wall-comment')
535 $verb = ACTIVITY_POST ;
537 $gravity = (($parent) ? 6 : 0 );
539 // even if the post arrived via API we are considering that it
540 // originated on this site by default for determining relayability.
542 $origin = ((x($_REQUEST,'origin')) ? intval($_REQUEST['origin']) : 1);
544 $notify_type = (($parent) ? 'comment-new' : 'wall-new' );
546 $uri = item_new_uri($a->get_hostname(),$profile_uid);
549 $datarray['uid'] = $profile_uid;
550 $datarray['type'] = $post_type;
551 $datarray['wall'] = $wall;
552 $datarray['gravity'] = $gravity;
553 $datarray['contact-id'] = $contact_id;
554 $datarray['owner-name'] = $contact_record['name'];
555 $datarray['owner-link'] = $contact_record['url'];
556 $datarray['owner-avatar'] = $contact_record['thumb'];
557 $datarray['author-name'] = $author['name'];
558 $datarray['author-link'] = $author['url'];
559 $datarray['author-avatar'] = $author['thumb'];
560 $datarray['created'] = datetime_convert();
561 $datarray['edited'] = datetime_convert();
562 $datarray['commented'] = datetime_convert();
563 $datarray['received'] = datetime_convert();
564 $datarray['changed'] = datetime_convert();
565 $datarray['uri'] = $uri;
566 $datarray['title'] = $title;
567 $datarray['body'] = $body;
568 $datarray['app'] = $app;
569 $datarray['location'] = $location;
570 $datarray['coord'] = $coord;
571 $datarray['tag'] = $str_tags;
572 $datarray['file'] = $categories;
573 $datarray['inform'] = $inform;
574 $datarray['verb'] = $verb;
575 $datarray['allow_cid'] = $str_contact_allow;
576 $datarray['allow_gid'] = $str_group_allow;
577 $datarray['deny_cid'] = $str_contact_deny;
578 $datarray['deny_gid'] = $str_group_deny;
579 $datarray['private'] = $private;
580 $datarray['pubmail'] = $pubmail_enable;
581 $datarray['attach'] = $attachments;
582 $datarray['bookmark'] = intval($bookmark);
583 $datarray['thr-parent'] = $thr_parent;
584 $datarray['postopts'] = $postopts;
585 $datarray['origin'] = $origin;
586 $datarray['moderated'] = $allow_moderated;
589 * These fields are for the convenience of plugins...
590 * 'self' if true indicates the owner is posting on their own wall
591 * If parent is 0 it is a top-level post.
594 $datarray['parent'] = $parent;
595 $datarray['self'] = $self;
596 // $datarray['prvnets'] = $user['prvnets'];
599 $datarray['edit'] = true;
601 $datarray['guid'] = get_guid();
603 // preview mode - prepare the body for display and send it via json
606 require_once('include/conversation.php');
607 $o = conversation($a,array(array_merge($contact_record,$datarray)),'search', false);
608 logger('preview: ' . $o);
609 echo json_encode(array('preview' => $o));
614 call_hooks('post_local',$datarray);
616 if(x($datarray,'cancel')) {
617 logger('mod_item: post cancelled by plugin.');
619 goaway($a->get_baseurl() . "/" . $return_path);
622 $json = array('cancel' => 1);
623 if(x($_REQUEST,'jsreload') && strlen($_REQUEST['jsreload']))
624 $json['reload'] = $a->get_baseurl() . '/' . $_REQUEST['jsreload'];
626 echo json_encode($json);
632 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `attach` = '%s', `file` = '%s', `edited` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1",
633 dbesc($datarray['title']),
634 dbesc($datarray['body']),
635 dbesc($datarray['tag']),
636 dbesc($datarray['attach']),
637 dbesc($datarray['file']),
638 dbesc(datetime_convert()),
643 // update filetags in pconfig
644 file_tag_update_pconfig($uid,$categories_old,$categories_new,'category');
646 proc_run('php', "include/notifier.php", 'edit_post', "$post_id");
647 if((x($_REQUEST,'return')) && strlen($return_path)) {
648 logger('return: ' . $return_path);
649 goaway($a->get_baseurl() . "/" . $return_path );
657 $r = q("INSERT INTO `item` (`guid`, `uid`,`type`,`wall`,`gravity`,`contact-id`,`owner-name`,`owner-link`,`owner-avatar`,
658 `author-name`, `author-link`, `author-avatar`, `created`, `edited`, `commented`, `received`, `changed`, `uri`, `thr-parent`, `title`, `body`, `app`, `location`, `coord`,
659 `tag`, `inform`, `verb`, `postopts`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`, `private`, `pubmail`, `attach`, `bookmark`,`origin`, `moderated`, `file` )
660 VALUES( '%s', %d, '%s', %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', %d, %d, %d, '%s' )",
661 dbesc($datarray['guid']),
662 intval($datarray['uid']),
663 dbesc($datarray['type']),
664 intval($datarray['wall']),
665 intval($datarray['gravity']),
666 intval($datarray['contact-id']),
667 dbesc($datarray['owner-name']),
668 dbesc($datarray['owner-link']),
669 dbesc($datarray['owner-avatar']),
670 dbesc($datarray['author-name']),
671 dbesc($datarray['author-link']),
672 dbesc($datarray['author-avatar']),
673 dbesc($datarray['created']),
674 dbesc($datarray['edited']),
675 dbesc($datarray['commented']),
676 dbesc($datarray['received']),
677 dbesc($datarray['changed']),
678 dbesc($datarray['uri']),
679 dbesc($datarray['thr-parent']),
680 dbesc($datarray['title']),
681 dbesc($datarray['body']),
682 dbesc($datarray['app']),
683 dbesc($datarray['location']),
684 dbesc($datarray['coord']),
685 dbesc($datarray['tag']),
686 dbesc($datarray['inform']),
687 dbesc($datarray['verb']),
688 dbesc($datarray['postopts']),
689 dbesc($datarray['allow_cid']),
690 dbesc($datarray['allow_gid']),
691 dbesc($datarray['deny_cid']),
692 dbesc($datarray['deny_gid']),
693 intval($datarray['private']),
694 intval($datarray['pubmail']),
695 dbesc($datarray['attach']),
696 intval($datarray['bookmark']),
697 intval($datarray['origin']),
698 intval($datarray['moderated']),
699 dbesc($datarray['file'])
702 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' LIMIT 1",
703 dbesc($datarray['uri']));
705 $post_id = $r[0]['id'];
706 logger('mod_item: saved item ' . $post_id);
708 // update filetags in pconfig
709 file_tag_update_pconfig($uid,$categories_old,$categories_new,'category');
713 // This item is the last leaf and gets the comment box, clear any ancestors
714 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent` = %d ",
715 dbesc(datetime_convert()),
719 // Inherit ACL's from the parent item.
721 $r = q("UPDATE `item` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d
722 WHERE `id` = %d LIMIT 1",
723 dbesc($parent_item['allow_cid']),
724 dbesc($parent_item['allow_gid']),
725 dbesc($parent_item['deny_cid']),
726 dbesc($parent_item['deny_gid']),
727 intval($parent_item['private']),
731 if($contact_record != $author) {
733 'type' => NOTIFY_COMMENT,
734 'notify_flags' => $user['notify-flags'],
735 'language' => $user['language'],
736 'to_name' => $user['username'],
737 'to_email' => $user['email'],
738 'uid' => $user['uid'],
740 'link' => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id,
741 'source_name' => $datarray['author-name'],
742 'source_link' => $datarray['author-link'],
743 'source_photo' => $datarray['author-avatar'],
744 'verb' => ACTIVITY_POST,
752 // Store the comment signature information in case we need to relay to Diaspora
753 store_diaspora_comment_sig($datarray, $author, ($self ? $a->user['prvkey'] : false), $parent_item, $post_id);
759 if($contact_record != $author) {
761 'type' => NOTIFY_WALL,
762 'notify_flags' => $user['notify-flags'],
763 'language' => $user['language'],
764 'to_name' => $user['username'],
765 'to_email' => $user['email'],
766 'uid' => $user['uid'],
768 'link' => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id,
769 'source_name' => $datarray['author-name'],
770 'source_link' => $datarray['author-link'],
771 'source_photo' => $datarray['author-avatar'],
772 'verb' => ACTIVITY_POST,
778 // fallback so that parent always gets set to non-zero.
783 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s', `plink` = '%s', `changed` = '%s', `last-child` = 1, `visible` = 1
784 WHERE `id` = %d LIMIT 1",
786 dbesc(($parent == $post_id) ? $uri : $parent_item['uri']),
787 dbesc($a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id),
788 dbesc(datetime_convert()),
792 // photo comments turn the corresponding item visible to the profile wall
793 // This way we don't see every picture in your new photo album posted to your wall at once.
794 // They will show up as people comment on them.
796 if(! $parent_item['visible']) {
797 $r = q("UPDATE `item` SET `visible` = 1 WHERE `id` = %d LIMIT 1",
798 intval($parent_item['id'])
803 logger('mod_item: unable to retrieve post that was just stored.');
804 notice( t('System error. Post not saved.') . EOL);
805 goaway($a->get_baseurl() . "/" . $return_path );
809 // update the commented timestamp on the parent
811 q("UPDATE `item` set `commented` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
812 dbesc(datetime_convert()),
813 dbesc(datetime_convert()),
817 $datarray['id'] = $post_id;
818 $datarray['plink'] = $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id;
820 call_hooks('post_local_end', $datarray);
822 if(strlen($emailcc) && $profile_uid == local_user()) {
823 $erecips = explode(',', $emailcc);
824 if(count($erecips)) {
825 foreach($erecips as $recip) {
826 $addr = trim($recip);
829 $disclaimer = '<hr />' . sprintf( t('This message was sent to you by %s, a member of the Friendica social network.'),$a->user['username'])
831 $disclaimer .= sprintf( t('You may visit them online at %s'), $a->get_baseurl() . '/profile/' . $a->user['nickname']) . EOL;
832 $disclaimer .= t('Please contact the sender by replying to this post if you do not wish to receive these messages.') . EOL;
834 $subject = email_header_encode('[Friendica]' . ' ' . sprintf( t('%s posted an update.'),$a->user['username']),'UTF-8');
835 $headers = 'From: ' . email_header_encode($a->user['username'],'UTF-8') . ' <' . $a->user['email'] . '>' . "\n";
836 $headers .= 'MIME-Version: 1.0' . "\n";
837 $headers .= 'Content-Type: text/html; charset=UTF-8' . "\n";
838 $headers .= 'Content-Transfer-Encoding: 8bit' . "\n\n";
839 $link = '<a href="' . $a->get_baseurl() . '/profile/' . $a->user['nickname'] . '"><img src="' . $author['thumb'] . '" alt="' . $a->user['username'] . '" /></a><br /><br />';
840 $html = prepare_body($datarray);
841 $message = '<html><body>' . $link . $html . $disclaimer . '</body></html>';
842 @mail($addr, $subject, $message, $headers);
847 // This is a real juggling act on shared hosting services which kill your processes
848 // e.g. dreamhost. We used to start delivery to our native delivery agents in the background
849 // and then run our plugin delivery from the foreground. We're now doing plugin delivery first,
850 // because as soon as you start loading up a bunch of remote delivey processes, *this* page is
851 // likely to get killed off. If you end up looking at an /item URL and a blank page,
852 // it's very likely the delivery got killed before all your friends could be notified.
853 // Currently the only realistic fixes are to use a reliable server - which precludes shared hosting,
854 // or cut back on plugins which do remote deliveries.
856 proc_run('php', "include/notifier.php", $notify_type, "$post_id");
858 logger('post_complete');
860 // figure out how to return, depending on from whence we came
866 goaway($a->get_baseurl() . "/" . $return_path);
869 $json = array('success' => 1);
870 if(x($_REQUEST,'jsreload') && strlen($_REQUEST['jsreload']))
871 $json['reload'] = $a->get_baseurl() . '/' . $_REQUEST['jsreload'];
873 logger('post_json: ' . print_r($json,true), LOGGER_DEBUG);
875 echo json_encode($json);
884 function item_content(&$a) {
886 if((! local_user()) && (! remote_user()))
889 require_once('include/security.php');
891 if(($a->argc == 3) && ($a->argv[1] === 'drop') && intval($a->argv[2])) {
892 require_once('include/items.php');
893 drop_item($a->argv[2]);
898 * This function removes the tag $tag from the text $body and replaces it with
899 * the appropiate link.
901 * @param unknown_type $body the text to replace the tag in
902 * @param unknown_type $inform a comma-seperated string containing everybody to inform
903 * @param unknown_type $str_tags string to add the tag to
904 * @param unknown_type $profile_uid
905 * @param unknown_type $tag the tag to replace
907 * @return boolean true if replaced, false if not replaced
909 function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
915 if(strpos($tag,'#') === 0) {
916 //if the tag is replaced...
917 if(strpos($tag,'[url='))
920 //base tag has the tags name only
921 $basetag = str_replace('_',' ',substr($tag,1));
922 //create text for link
923 $newtag = '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
924 //replace tag by the link
925 $body = str_replace($tag, $newtag, $body);
928 //is the link already in str_tags?
929 if(! stristr($str_tags,$newtag)) {
930 //append or set str_tags
931 if(strlen($str_tags))
933 $str_tags .= $newtag;
937 //is it a person tag?
938 if(strpos($tag,'@') === 0) {
939 //is it already replaced?
940 if(strpos($tag,'[url='))
943 //get the person's name
944 $name = substr($tag,1);
945 //is it a link or a full dfrn address?
946 if((strpos($name,'@')) || (strpos($name,'http://'))) {
948 //get the profile links
949 $links = @lrdd($name);
951 //for all links, collect how is to inform and how's profile is to link
952 foreach($links as $link) {
953 if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page')
954 $profile = $link['@attributes']['href'];
955 if($link['@attributes']['rel'] === 'salmon') {
958 $inform .= 'url:' . str_replace(',','%2c',$link['@attributes']['href']);
962 } else { //if it is a name rather than an address
966 //is it some generated name?
967 if(strrpos($newname,'+')) {
969 $tagcid = intval(substr($newname,strrpos($newname,'+') + 1));
970 //remove the next word from tag's name
971 if(strpos($name,' ')) {
972 $name = substr($name,0,strpos($name,' '));
975 if($tagcid) { //if there was an id
976 //select contact with that id from the logged in user's contact list
977 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
981 } elseif(strstr($name,'_') || strstr($name,' ')) { //no id
983 $newname = str_replace('_',' ',$name);
984 //select someone from this user's contacts by name
985 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
990 //select someone by attag or nick and the name passed in
991 $r = q("SELECT * FROM `contact` WHERE `attag` = '%s' OR `nick` = '%s' AND `uid` = %d ORDER BY `attag` DESC LIMIT 1",
997 //$r is set, if someone could be selected
999 $profile = $r[0]['url'];
1000 //set newname to nick, find alias
1001 if($r[0]['network'] === 'stat') {
1002 $newname = $r[0]['nick'];
1005 $alias = $r[0]['alias'];
1008 $newname = $r[0]['name'];
1009 //add person's id to $inform
1012 $inform .= 'cid:' . $r[0]['id'];
1015 //if there is an url for this persons profile
1016 if(isset($profile)) {
1018 //create profile link
1019 $profile = str_replace(',','%2c',$profile);
1020 $newtag = '@[url=' . $profile . ']' . $newname . '[/url]';
1021 $body = str_replace('@' . $name, $newtag, $body);
1022 //append tag to str_tags
1023 if(! stristr($str_tags,$newtag)) {
1024 if(strlen($str_tags))
1026 $str_tags .= $newtag;
1029 // Status.Net seems to require the numeric ID URL in a mention if the person isn't
1030 // subscribed to you. But the nickname URL is OK if they are. Grrr. We'll tag both.
1032 if(strlen($alias)) {
1033 $newtag = '@[url=' . $alias . ']' . $newname . '[/url]';
1034 if(! stristr($str_tags,$newtag)) {
1035 if(strlen($str_tags))
1037 $str_tags .= $newtag;
1043 return array('replaced' => $replaced, 'contact' => $r[0]);
1047 function store_diaspora_comment_sig($datarray, $author, $uprvkey, $parent_item, $post_id) {
1048 // We won't be able to sign Diaspora comments for authenticated visitors - we don't have their private key
1050 $enabled = intval(get_config('system','diaspora_enabled'));
1052 logger('mod_item: diaspora support disabled, not storing comment signature', LOGGER_DEBUG);
1057 logger('mod_item: storing diaspora comment signature');
1059 require_once('include/bb2diaspora.php');
1060 $signed_body = html_entity_decode(bb2diaspora($datarray['body']));
1062 // Only works for NETWORK_DFRN
1063 $contact_baseurl_start = strpos($author['url'],'://') + 3;
1064 $contact_baseurl_length = strpos($author['url'],'/profile') - $contact_baseurl_start;
1065 $contact_baseurl = substr($author['url'], $contact_baseurl_start, $contact_baseurl_length);
1066 $diaspora_handle = $author['nick'] . '@' . $contact_baseurl;
1068 $signed_text = $datarray['guid'] . ';' . $parent_item['guid'] . ';' . $signed_body . ';' . $diaspora_handle;
1070 if( $uprvkey !== false )
1071 $authorsig = base64_encode(rsa_sign($signed_text,$uprvkey,'sha256'));
1075 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
1077 dbesc($signed_text),
1078 dbesc(base64_encode($authorsig)),
1079 dbesc($diaspora_handle)