]> git.mxchange.org Git - friendica.git/blob - mod/item.php
Merge remote branch 'upstream/master'
[friendica.git] / mod / item.php
1 <?php
2
3 /**
4  *
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 
12  * information.
13  * Posts that originate externally or do not fall into the above 
14  * posting categories go through item_store() instead of this function. 
15  *
16  */  
17
18 require_once('include/crypto.php');
19 require_once('include/enotify.php');
20 require_once('include/email.php');
21 require_once('Text/LanguageDetect.php');
22
23 function item_post(&$a) {
24
25         if((! local_user()) && (! remote_user()) && (! x($_REQUEST,'commenter')))
26                 return;
27
28         require_once('include/security.php');
29
30         $uid = local_user();
31
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);
38                 killme();
39         }
40
41         call_hooks('post_local_start', $_REQUEST);
42 //      logger('postinput ' . file_get_contents('php://input'));
43         logger('postvars ' . print_r($_REQUEST,true), LOGGER_DATA);
44
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);
48
49         /**
50          * Is this a reply to something?
51          */
52
53         $parent = ((x($_REQUEST,'parent')) ? intval($_REQUEST['parent']) : 0);
54         $parent_uri = ((x($_REQUEST,'parent_uri')) ? trim($_REQUEST['parent_uri']) : '');
55
56         $parent_item = null;
57         $parent_contact = null;
58         $thr_parent = '';
59         $parid = 0;
60         $r = false;
61
62         if($parent || $parent_uri) {
63
64                 if(! x($_REQUEST,'type'))
65                         $_REQUEST['type'] = 'net-comment';
66
67                 if($parent) {
68                         $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
69                                 intval($parent)
70                         );
71                 }
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",
75                                 dbesc($parent_uri),
76                                 intval(local_user())
77                         );
78                 }
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                         if($r[0]['id'] != $r[0]['parent']) {
83                                 $r = q("SELECT * FROM `item` WHERE `id` = `parent` AND `parent` = %d LIMIT 1",
84                                         intval($parid)
85                                 );
86                         }
87                 }
88
89                 if(($r === false) || (! count($r))) {
90                         notice( t('Unable to locate original post.') . EOL);
91                         if(x($_REQUEST,'return')) 
92                                 goaway($a->get_baseurl() . "/" . $return_path );
93                         killme();
94                 }
95                 $parent_item = $r[0];
96                 $parent = $r[0]['id'];
97
98                 // multi-level threading - preserve the info but re-parent to our single level threading
99                 if(($parid) && ($parid != $parent))
100                         $thr_parent = $parent_uri;
101
102                 if($parent_item['contact-id'] && $uid) {
103                         $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
104                                 intval($parent_item['contact-id']),
105                                 intval($uid)
106                         );
107                         if(count($r))
108                                 $parent_contact = $r[0];
109                 }
110         }
111
112         if($parent) logger('mod_item: item_post parent=' . $parent);
113
114         $profile_uid = ((x($_REQUEST,'profile_uid')) ? intval($_REQUEST['profile_uid']) : 0);
115         $post_id     = ((x($_REQUEST,'post_id'))     ? intval($_REQUEST['post_id'])     : 0);
116         $app         = ((x($_REQUEST,'source'))      ? strip_tags($_REQUEST['source'])  : '');
117
118         $allow_moderated = false;
119
120         // here is where we are going to check for permission to post a moderated comment.
121
122         // First check that the parent exists and it is a wall item.
123
124         if((x($_REQUEST,'commenter')) && ((! $parent) || (! $parent_item['wall']))) {
125                 notice( t('Permission denied.') . EOL) ;
126                 if(x($_REQUEST,'return')) 
127                         goaway($a->get_baseurl() . "/" . $return_path );
128                 killme();
129         }
130
131         // Now check that it is a page_type of PAGE_BLOG, and that valid personal details
132         // have been provided, and run any anti-spam plugins
133
134
135         // TODO
136
137
138
139
140         if((! can_write_wall($a,$profile_uid)) && (! $allow_moderated)) {
141                 notice( t('Permission denied.') . EOL) ;
142                 if(x($_REQUEST,'return')) 
143                         goaway($a->get_baseurl() . "/" . $return_path );
144                 killme();
145         }
146
147
148         // is this an edited post?
149
150         $orig_post = null;
151
152         if($post_id) {
153                 $i = q("SELECT * FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
154                         intval($profile_uid),
155                         intval($post_id)
156                 );
157                 if(! count($i))
158                         killme();
159                 $orig_post = $i[0];
160         }
161
162         $user = null;
163
164         $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
165                 intval($profile_uid)
166         );
167         if(count($r))
168                 $user = $r[0];
169
170         if($orig_post) {
171                 $str_group_allow   = $orig_post['allow_gid'];
172                 $str_contact_allow = $orig_post['allow_cid'];
173                 $str_group_deny    = $orig_post['deny_gid'];
174                 $str_contact_deny  = $orig_post['deny_cid'];
175                 $location          = $orig_post['location'];
176                 $coord             = $orig_post['coord'];
177                 $verb              = $orig_post['verb'];
178                 $emailcc           = $orig_post['emailcc'];
179                 $app                       = $orig_post['app'];
180                 $categories        = $orig_post['file'];
181                 $title             = notags(trim($_REQUEST['title']));
182                 $body              = escape_tags(trim($_REQUEST['body']));
183                 $private           = $orig_post['private'];
184                 $pubmail_enable    = $orig_post['pubmail'];
185
186         }
187         else {
188
189                 // if coming from the API and no privacy settings are set, 
190                 // use the user default permissions - as they won't have
191                 // been supplied via a form.
192
193                 if(($api_source) 
194                         && (! array_key_exists('contact_allow',$_REQUEST))
195                         && (! array_key_exists('group_allow',$_REQUEST))
196                         && (! array_key_exists('contact_deny',$_REQUEST))
197                         && (! array_key_exists('group_deny',$_REQUEST))) {
198                         $str_group_allow   = $user['allow_gid'];
199                         $str_contact_allow = $user['allow_cid'];
200                         $str_group_deny    = $user['deny_gid'];
201                         $str_contact_deny  = $user['deny_cid'];
202                 }
203                 else {
204
205                         // use the posted permissions
206
207                         $str_group_allow   = perms2str($_REQUEST['group_allow']);
208                         $str_contact_allow = perms2str($_REQUEST['contact_allow']);
209                         $str_group_deny    = perms2str($_REQUEST['group_deny']);
210                         $str_contact_deny  = perms2str($_REQUEST['contact_deny']);
211                 }
212
213                 $title             = notags(trim($_REQUEST['title']));
214                 $location          = notags(trim($_REQUEST['location']));
215                 $coord             = notags(trim($_REQUEST['coord']));
216                 $verb              = notags(trim($_REQUEST['verb']));
217                 $emailcc           = notags(trim($_REQUEST['emailcc']));
218                 $body              = escape_tags(trim($_REQUEST['body']));
219
220
221                 $naked_body = preg_replace('/\[(.+?)\]/','',$body);
222
223                 if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
224                         $l = new Text_LanguageDetect;
225                         $lng = $l->detectConfidence($naked_body);
226
227                         $postopts = (($lng['language']) ? 'lang=' . $lng['language'] . ';' . $lng['confidence'] : '');
228
229                         logger('mod_item: detect language' . print_r($lng,true) . $naked_body, LOGGER_DATA);
230                 }
231                 else
232                         $postopts = '';
233
234
235                 $private = ((strlen($str_group_allow) || strlen($str_contact_allow) || strlen($str_group_deny) || strlen($str_contact_deny)) ? 1 : 0);
236
237                 // If this is a comment, set the permissions from the parent.
238
239                 if($parent_item) {
240                         $private = 0;
241
242                         if(($parent_item['private']) 
243                                 || strlen($parent_item['allow_cid']) 
244                                 || strlen($parent_item['allow_gid']) 
245                                 || strlen($parent_item['deny_cid']) 
246                                 || strlen($parent_item['deny_gid'])) {
247                                 $private = (($parent_item['private']) ? $parent_item['private'] : 1);
248                         }
249
250                         $str_contact_allow = $parent_item['allow_cid'];
251                         $str_group_allow   = $parent_item['allow_gid'];
252                         $str_contact_deny  = $parent_item['deny_cid'];
253                         $str_group_deny    = $parent_item['deny_gid'];
254                 }
255         
256                 $pubmail_enable    = ((x($_REQUEST,'pubmail_enable') && intval($_REQUEST['pubmail_enable']) && (! $private)) ? 1 : 0);
257
258                 // if using the API, we won't see pubmail_enable - figure out if it should be set
259
260                 if($api_source && $profile_uid && $profile_uid == local_user() && (! $private)) {
261                         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
262                         if(! $mail_disabled) {
263                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
264                                         intval(local_user())
265                                 );
266                                 if(count($r) && intval($r[0]['pubmail']))
267                                         $pubmail_enabled = true;
268                         }
269                 }
270
271                 if(! strlen($body)) {
272                         if($preview)
273                                 killme();
274                         info( t('Empty post discarded.') . EOL );
275                         if(x($_REQUEST,'return')) 
276                                 goaway($a->get_baseurl() . "/" . $return_path );
277                         killme();
278                 }
279         }
280
281         if(strlen($categories)) {
282                 // get the "fileas" tags for this post
283                 $filedas = file_tag_file_to_list($categories, 'file');
284         }
285         // save old and new categories, so we can determine what needs to be deleted from pconfig
286         $categories_old = $categories;
287         $categories = file_tag_list_to_file(trim($_REQUEST['category']), 'category');
288         $categories_new = $categories;
289         if(strlen($filedas)) {
290                 // append the fileas stuff to the new categories list
291                 $categories .= file_tag_list_to_file($filedas, 'file');
292         }
293
294         // Work around doubled linefeeds in Tinymce 3.5b2
295         // First figure out if it's a status post that would've been
296         // created using tinymce. Otherwise leave it alone. 
297
298         $plaintext = (local_user() ? intval(get_pconfig(local_user(),'system','plaintext')) : 0);
299         if((! $parent) && (! $api_source) && (! $plaintext)) {
300                 $body = fix_mce_lf($body);
301         }
302
303
304         // get contact info for poster
305
306         $author = null;
307         $self   = false;
308
309         if((local_user()) && (local_user() == $profile_uid)) {
310                 $self = true;
311                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
312                         intval($_SESSION['uid'])
313                 );
314         }
315         elseif(remote_user()) {
316                 $r = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
317                         intval(remote_user())
318                 );
319         }
320
321         if(count($r)) {
322                 $author = $r[0];
323                 $contact_id = $author['id'];
324         }
325
326         // get contact info for owner
327         
328         if($profile_uid == local_user()) {
329                 $contact_record = $author;
330         }
331         else {
332                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
333                         intval($profile_uid)
334                 );
335                 if(count($r))
336                         $contact_record = $r[0];
337         }
338
339         $post_type = notags(trim($_REQUEST['type']));
340
341         if($post_type === 'net-comment') {
342                 if($parent_item !== null) {
343                         if($parent_item['wall'] == 1)
344                                 $post_type = 'wall-comment';
345                         else
346                                 $post_type = 'remote-comment';
347                 }
348         }
349
350         /**
351          *
352          * When a photo was uploaded into the message using the (profile wall) ajax 
353          * uploader, The permissions are initially set to disallow anybody but the
354          * owner from seeing it. This is because the permissions may not yet have been
355          * set for the post. If it's private, the photo permissions should be set
356          * appropriately. But we didn't know the final permissions on the post until
357          * now. So now we'll look for links of uploaded messages that are in the
358          * post and set them to the same permissions as the post itself.
359          *
360          */
361
362         $match = null;
363
364         if((! $preview) && preg_match_all("/\[img\](.*?)\[\/img\]/",$body,$match)) {
365                 $images = $match[1];
366                 if(count($images)) {
367                         foreach($images as $image) {
368                                 if(! stristr($image,$a->get_baseurl() . '/photo/'))
369                                         continue;
370                                 $image_uri = substr($image,strrpos($image,'/') + 1);
371                                 $image_uri = substr($image_uri,0, strpos($image_uri,'-'));
372                                 if(! strlen($image_uri))
373                                         continue;
374                                 $srch = '<' . intval($contact_id) . '>';
375
376                                 $r = q("SELECT `id` FROM `photo` WHERE `allow_cid` = '%s' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = ''
377                                         AND `resource-id` = '%s' AND `uid` = %d LIMIT 1",
378                                         dbesc($srch),
379                                         dbesc($image_uri),
380                                         intval($profile_uid)
381                                 );
382
383                                 if(! count($r))
384                                         continue;
385  
386
387                                 $r = q("UPDATE `photo` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'
388                                         WHERE `resource-id` = '%s' AND `uid` = %d AND `album` = '%s' ",
389                                         dbesc($str_contact_allow),
390                                         dbesc($str_group_allow),
391                                         dbesc($str_contact_deny),
392                                         dbesc($str_group_deny),
393                                         dbesc($image_uri),
394                                         intval($profile_uid),
395                                         dbesc( t('Wall Photos'))
396                                 );
397  
398                         }
399                 }
400         }
401
402
403         /**
404          * Next link in any attachment references we find in the post.
405          */
406
407         $match = false;
408
409         if((! $preview) && preg_match_all("/\[attachment\](.*?)\[\/attachment\]/",$body,$match)) {
410                 $attaches = $match[1];
411                 if(count($attaches)) {
412                         foreach($attaches as $attach) {
413                                 $r = q("SELECT * FROM `attach` WHERE `uid` = %d AND `id` = %d LIMIT 1",
414                                         intval($profile_uid),
415                                         intval($attach)
416                                 );                              
417                                 if(count($r)) {
418                                         $r = q("UPDATE `attach` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'
419                                                 WHERE `uid` = %d AND `id` = %d LIMIT 1",
420                                                 dbesc($str_contact_allow),
421                                                 dbesc($str_group_allow),
422                                                 dbesc($str_contact_deny),
423                                                 dbesc($str_group_deny),
424                                                 intval($profile_uid),
425                                                 intval($attach)
426                                         );
427                                 }
428                         }
429                 }
430         }
431
432         // embedded bookmark in post? set bookmark flag
433
434         $bookmark = 0;
435         if(preg_match_all("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism",$body,$match,PREG_SET_ORDER)) {
436                 $bookmark = 1;
437         }
438
439         $body = bb_translate_video($body);
440
441         /**
442          * Fold multi-line [code] sequences
443          */
444
445         $body = preg_replace('/\[\/code\]\s*\[code\]/ism',"\n",$body); 
446
447         $body = scale_external_images($body,false);
448
449         /**
450          * Look for any tags and linkify them
451          */
452
453         $str_tags = '';
454         $inform   = '';
455
456
457         $tags = get_tags($body);
458
459         /**
460          * add a statusnet style reply tag if the original post was from there
461          * and we are replying, and there isn't one already
462          */
463
464         if(($parent_contact) && ($parent_contact['network'] === NETWORK_OSTATUS) 
465                 && ($parent_contact['nick']) && (! in_array('@' . $parent_contact['nick'],$tags))) {
466                 $body = '@' . $parent_contact['nick'] . ' ' . $body;
467                 $tags[] = '@' . $parent_contact['nick'];
468         }               
469
470         $tagged = array();
471
472         $private_forum = false;
473
474         if(count($tags)) {
475                 foreach($tags as $tag) {
476
477                         // If we already tagged 'Robert Johnson', don't try and tag 'Robert'.
478                         // Robert Johnson should be first in the $tags array
479
480                         $fullnametagged = false;
481                         for($x = 0; $x < count($tagged); $x ++) {
482                                 if(stristr($tagged[$x],$tag . ' ')) {
483                                         $fullnametagged = true;
484                                         break;
485                                 }
486                         }
487                         if($fullnametagged)
488                                 continue;
489
490                         $success = handle_tag($a, $body, $inform, $str_tags, (local_user()) ? local_user() : $profile_uid , $tag); 
491                         if($success['replaced'])
492                                 $tagged[] = $tag;
493                         if(is_array($success['contact']) && intval($success['contact']['prv'])) {
494                                 $private_forum = true;
495                                 $private_id = $success['contact']['id'];
496                         }
497                 }
498         }
499
500         if(($private_forum) && (! $parent) && (! $private)) {
501                 // we tagged a private forum in a top level post and the message was public.
502                 // Restrict it.
503                 $private = 1;
504                 $str_contact_allow = '<' . $private_id . '>'; 
505         }
506
507         $attachments = '';
508         $match = false;
509
510         if(preg_match_all('/(\[attachment\]([0-9]+)\[\/attachment\])/',$body,$match)) {
511                 foreach($match[2] as $mtch) {
512                         $r = q("SELECT `id`,`filename`,`filesize`,`filetype` FROM `attach` WHERE `uid` = %d AND `id` = %d LIMIT 1",
513                                 intval($profile_uid),
514                                 intval($mtch)
515                         );
516                         if(count($r)) {
517                                 if(strlen($attachments))
518                                         $attachments .= ',';
519                                 $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]'; 
520                         }
521                         $body = str_replace($match[1],'',$body);
522                 }
523         }
524
525         $wall = 0;
526
527         if($post_type === 'wall' || $post_type === 'wall-comment')
528                 $wall = 1;
529
530         if(! strlen($verb))
531                 $verb = ACTIVITY_POST ;
532
533         $gravity = (($parent) ? 6 : 0 );
534
535         // even if the post arrived via API we are considering that it 
536         // originated on this site by default for determining relayability.
537
538         $origin = ((x($_REQUEST,'origin')) ? intval($_REQUEST['origin']) : 1);
539         
540         $notify_type = (($parent) ? 'comment-new' : 'wall-new' );
541
542         $uri = item_new_uri($a->get_hostname(),$profile_uid);
543
544         $datarray = array();
545         $datarray['uid']           = $profile_uid;
546         $datarray['type']          = $post_type;
547         $datarray['wall']          = $wall;
548         $datarray['gravity']       = $gravity;
549         $datarray['contact-id']    = $contact_id;
550         $datarray['owner-name']    = $contact_record['name'];
551         $datarray['owner-link']    = $contact_record['url'];
552         $datarray['owner-avatar']  = $contact_record['thumb'];
553         $datarray['author-name']   = $author['name'];
554         $datarray['author-link']   = $author['url'];
555         $datarray['author-avatar'] = $author['thumb'];
556         $datarray['created']       = datetime_convert();
557         $datarray['edited']        = datetime_convert();
558         $datarray['commented']     = datetime_convert();
559         $datarray['received']      = datetime_convert();
560         $datarray['changed']       = datetime_convert();
561         $datarray['uri']           = $uri;
562         $datarray['title']         = $title;
563         $datarray['body']          = $body;
564         $datarray['app']           = $app;
565         $datarray['location']      = $location;
566         $datarray['coord']         = $coord;
567         $datarray['tag']           = $str_tags;
568         $datarray['file']          = $categories;
569         $datarray['inform']        = $inform;
570         $datarray['verb']          = $verb;
571         $datarray['allow_cid']     = $str_contact_allow;
572         $datarray['allow_gid']     = $str_group_allow;
573         $datarray['deny_cid']      = $str_contact_deny;
574         $datarray['deny_gid']      = $str_group_deny;
575         $datarray['private']       = $private;
576         $datarray['pubmail']       = $pubmail_enable;
577         $datarray['attach']        = $attachments;
578         $datarray['bookmark']      = intval($bookmark);
579         $datarray['thr-parent']    = $thr_parent;
580         $datarray['postopts']      = $postopts;
581         $datarray['origin']        = $origin;
582         $datarray['moderated']     = $allow_moderated;
583
584         /**
585          * These fields are for the convenience of plugins...
586          * 'self' if true indicates the owner is posting on their own wall
587          * If parent is 0 it is a top-level post.
588          */
589
590         $datarray['parent']        = $parent;
591         $datarray['self']          = $self;
592 //      $datarray['prvnets']       = $user['prvnets'];
593
594         if($orig_post)
595                 $datarray['edit']      = true;
596         else
597                 $datarray['guid']      = get_guid();
598
599         // preview mode - prepare the body for display and send it via json
600
601         if($preview) {
602                 require_once('include/conversation.php');
603                 $o = conversation($a,array(array_merge($contact_record,$datarray)),'search',false,true);
604                 logger('preview: ' . $o);
605                 echo json_encode(array('preview' => $o));
606                 killme();
607         }
608
609
610         call_hooks('post_local',$datarray);
611
612         if(x($datarray,'cancel')) {
613                 logger('mod_item: post cancelled by plugin.');
614                 if($return_path) {
615                         goaway($a->get_baseurl() . "/" . $return_path);
616                 }
617
618                 $json = array('cancel' => 1);
619                 if(x($_REQUEST,'jsreload') && strlen($_REQUEST['jsreload']))
620                         $json['reload'] = $a->get_baseurl() . '/' . $_REQUEST['jsreload'];
621
622                 echo json_encode($json);
623                 killme();
624         }
625
626
627         if($orig_post) {
628                 $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",
629                         dbesc($datarray['title']),
630                         dbesc($datarray['body']),
631                         dbesc($datarray['tag']),
632                         dbesc($datarray['attach']),
633                         dbesc($datarray['file']),
634                         dbesc(datetime_convert()),
635                         intval($post_id),
636                         intval($profile_uid)
637                 );
638
639                 // update filetags in pconfig
640                 file_tag_update_pconfig($uid,$categories_old,$categories_new,'category');
641
642                 proc_run('php', "include/notifier.php", 'edit_post', "$post_id");
643                 if((x($_REQUEST,'return')) && strlen($return_path)) {
644                         logger('return: ' . $return_path);
645                         goaway($a->get_baseurl() . "/" . $return_path );
646                 }
647                 killme();
648         }
649         else
650                 $post_id = 0;
651
652
653         $r = q("INSERT INTO `item` (`guid`, `uid`,`type`,`wall`,`gravity`,`contact-id`,`owner-name`,`owner-link`,`owner-avatar`, 
654                 `author-name`, `author-link`, `author-avatar`, `created`, `edited`, `commented`, `received`, `changed`, `uri`, `thr-parent`, `title`, `body`, `app`, `location`, `coord`, 
655                 `tag`, `inform`, `verb`, `postopts`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`, `private`, `pubmail`, `attach`, `bookmark`,`origin`, `moderated`, `file` )
656                 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' )",
657                 dbesc($datarray['guid']),
658                 intval($datarray['uid']),
659                 dbesc($datarray['type']),
660                 intval($datarray['wall']),
661                 intval($datarray['gravity']),
662                 intval($datarray['contact-id']),
663                 dbesc($datarray['owner-name']),
664                 dbesc($datarray['owner-link']),
665                 dbesc($datarray['owner-avatar']),
666                 dbesc($datarray['author-name']),
667                 dbesc($datarray['author-link']),
668                 dbesc($datarray['author-avatar']),
669                 dbesc($datarray['created']),
670                 dbesc($datarray['edited']),
671                 dbesc($datarray['commented']),
672                 dbesc($datarray['received']),
673                 dbesc($datarray['changed']),
674                 dbesc($datarray['uri']),
675                 dbesc($datarray['thr-parent']),
676                 dbesc($datarray['title']),
677                 dbesc($datarray['body']),
678                 dbesc($datarray['app']),
679                 dbesc($datarray['location']),
680                 dbesc($datarray['coord']),
681                 dbesc($datarray['tag']),
682                 dbesc($datarray['inform']),
683                 dbesc($datarray['verb']),
684                 dbesc($datarray['postopts']),
685                 dbesc($datarray['allow_cid']),
686                 dbesc($datarray['allow_gid']),
687                 dbesc($datarray['deny_cid']),
688                 dbesc($datarray['deny_gid']),
689                 intval($datarray['private']),
690                 intval($datarray['pubmail']),
691                 dbesc($datarray['attach']),
692                 intval($datarray['bookmark']),
693                 intval($datarray['origin']),
694                 intval($datarray['moderated']),
695                 dbesc($datarray['file'])
696                );
697
698         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' LIMIT 1",
699                 dbesc($datarray['uri']));
700         if(count($r)) {
701                 $post_id = $r[0]['id'];
702                 logger('mod_item: saved item ' . $post_id);
703
704                 // update filetags in pconfig
705                 file_tag_update_pconfig($uid,$categories_old,$categories_new,'category');
706
707                 if($parent) {
708
709                         // This item is the last leaf and gets the comment box, clear any ancestors
710                         $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent` = %d ",
711                                 dbesc(datetime_convert()),
712                                 intval($parent)
713                         );
714
715                         // Inherit ACL's from the parent item.
716
717                         $r = q("UPDATE `item` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d
718                                 WHERE `id` = %d LIMIT 1",
719                                 dbesc($parent_item['allow_cid']),
720                                 dbesc($parent_item['allow_gid']),
721                                 dbesc($parent_item['deny_cid']),
722                                 dbesc($parent_item['deny_gid']),
723                                 intval($parent_item['private']),
724                                 intval($post_id)
725                         );
726
727                         if($contact_record != $author) {
728                                 notification(array(
729                                         'type'         => NOTIFY_COMMENT,
730                                         'notify_flags' => $user['notify-flags'],
731                                         'language'     => $user['language'],
732                                         'to_name'      => $user['username'],
733                                         'to_email'     => $user['email'],
734                                         'uid'          => $user['uid'],
735                                         'item'         => $datarray,
736                                         'link'             => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id,
737                                         'source_name'  => $datarray['author-name'],
738                                         'source_link'  => $datarray['author-link'],
739                                         'source_photo' => $datarray['author-avatar'],
740                                         'verb'         => ACTIVITY_POST,
741                                         'otype'        => 'item',
742                                         'parent'       => $parent,
743                                 ));
744                         
745                         }
746
747
748                         // Store the comment signature information in case we need to relay to Diaspora
749                         store_diaspora_comment_sig($datarray, $author, ($self ? $a->user['prvkey'] : false), $parent_item, $post_id);
750
751                 }
752                 else {
753                         $parent = $post_id;
754
755                         if($contact_record != $author) {
756                                 notification(array(
757                                         'type'         => NOTIFY_WALL,
758                                         'notify_flags' => $user['notify-flags'],
759                                         'language'     => $user['language'],
760                                         'to_name'      => $user['username'],
761                                         'to_email'     => $user['email'],
762                                         'uid'          => $user['uid'],
763                                         'item'         => $datarray,
764                                         'link'             => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id,
765                                         'source_name'  => $datarray['author-name'],
766                                         'source_link'  => $datarray['author-link'],
767                                         'source_photo' => $datarray['author-avatar'],
768                                         'verb'         => ACTIVITY_POST,
769                                         'otype'        => 'item'
770                                 ));
771                         }
772                 }
773
774                 // fallback so that parent always gets set to non-zero.
775
776                 if(! $parent)
777                         $parent = $post_id;
778
779                 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s', `plink` = '%s', `changed` = '%s', `last-child` = 1, `visible` = 1
780                         WHERE `id` = %d LIMIT 1",
781                         intval($parent),
782                         dbesc(($parent == $post_id) ? $uri : $parent_item['uri']),
783                         dbesc($a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id),
784                         dbesc(datetime_convert()),
785                         intval($post_id)
786                 );
787
788                 // photo comments turn the corresponding item visible to the profile wall
789                 // This way we don't see every picture in your new photo album posted to your wall at once.
790                 // They will show up as people comment on them.
791
792                 if(! $parent_item['visible']) {
793                         $r = q("UPDATE `item` SET `visible` = 1 WHERE `id` = %d LIMIT 1",
794                                 intval($parent_item['id'])
795                         );
796                 }
797         }
798         else {
799                 logger('mod_item: unable to retrieve post that was just stored.');
800                 notice( t('System error. Post not saved.') . EOL);
801                 goaway($a->get_baseurl() . "/" . $return_path );
802                 // NOTREACHED
803         }
804
805         // update the commented timestamp on the parent
806
807         q("UPDATE `item` set `commented` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
808                 dbesc(datetime_convert()),
809                 dbesc(datetime_convert()),
810                 intval($parent)
811         );
812
813         $datarray['id']    = $post_id;
814         $datarray['plink'] = $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id;
815
816         call_hooks('post_local_end', $datarray);
817
818         if(strlen($emailcc) && $profile_uid == local_user()) {
819                 $erecips = explode(',', $emailcc);
820                 if(count($erecips)) {
821                         foreach($erecips as $recip) {
822                                 $addr = trim($recip);
823                                 if(! strlen($addr))
824                                         continue;
825                                 $disclaimer = '<hr />' . sprintf( t('This message was sent to you by %s, a member of the Friendica social network.'),$a->user['username']) 
826                                         . '<br />';
827                                 $disclaimer .= sprintf( t('You may visit them online at %s'), $a->get_baseurl() . '/profile/' . $a->user['nickname']) . EOL;
828                                 $disclaimer .= t('Please contact the sender by replying to this post if you do not wish to receive these messages.') . EOL; 
829
830                                 $subject  = email_header_encode('[Friendica]' . ' ' . sprintf( t('%s posted an update.'),$a->user['username']),'UTF-8');
831                                 $headers  = 'From: ' . email_header_encode($a->user['username'],'UTF-8') . ' <' . $a->user['email'] . '>' . "\n";
832                                 $headers .= 'MIME-Version: 1.0' . "\n";
833                                 $headers .= 'Content-Type: text/html; charset=UTF-8' . "\n";
834                                 $headers .= 'Content-Transfer-Encoding: 8bit' . "\n\n";
835                                 $link = '<a href="' . $a->get_baseurl() . '/profile/' . $a->user['nickname'] . '"><img src="' . $author['thumb'] . '" alt="' . $a->user['username'] . '" /></a><br /><br />';
836                                 $html    = prepare_body($datarray);
837                                 $message = '<html><body>' . $link . $html . $disclaimer . '</body></html>';
838                                 @mail($addr, $subject, $message, $headers);
839                         }
840                 }
841         }
842
843         // This is a real juggling act on shared hosting services which kill your processes
844         // e.g. dreamhost. We used to start delivery to our native delivery agents in the background
845         // and then run our plugin delivery from the foreground. We're now doing plugin delivery first,
846         // because as soon as you start loading up a bunch of remote delivey processes, *this* page is
847         // likely to get killed off. If you end up looking at an /item URL and a blank page,
848         // it's very likely the delivery got killed before all your friends could be notified.
849         // Currently the only realistic fixes are to use a reliable server - which precludes shared hosting,
850         // or cut back on plugins which do remote deliveries.  
851
852         proc_run('php', "include/notifier.php", $notify_type, "$post_id");
853
854         logger('post_complete');
855
856         // figure out how to return, depending on from whence we came
857
858         if($api_source)
859                 return;
860
861         if($return_path) {
862                 goaway($a->get_baseurl() . "/" . $return_path);
863         }
864
865         $json = array('success' => 1);
866         if(x($_REQUEST,'jsreload') && strlen($_REQUEST['jsreload']))
867                 $json['reload'] = $a->get_baseurl() . '/' . $_REQUEST['jsreload'];
868
869         logger('post_json: ' . print_r($json,true), LOGGER_DEBUG);
870
871         echo json_encode($json);
872         killme();
873         // NOTREACHED
874 }
875
876
877
878
879
880 function item_content(&$a) {
881
882         if((! local_user()) && (! remote_user()))
883                 return;
884
885         require_once('include/security.php');
886
887         if(($a->argc == 3) && ($a->argv[1] === 'drop') && intval($a->argv[2])) {
888                 require_once('include/items.php');
889                 drop_item($a->argv[2]);
890         }
891 }
892
893 /**
894  * This function removes the tag $tag from the text $body and replaces it with 
895  * the appropiate link. 
896  * 
897  * @param unknown_type $body the text to replace the tag in
898  * @param unknown_type $inform a comma-seperated string containing everybody to inform
899  * @param unknown_type $str_tags string to add the tag to
900  * @param unknown_type $profile_uid
901  * @param unknown_type $tag the tag to replace
902  *
903  * @return boolean true if replaced, false if not replaced
904  */
905 function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
906
907         $replaced = false;
908         $r = null;
909
910         //is it a hash tag? 
911         if(strpos($tag,'#') === 0) {
912                 //if the tag is replaced...
913                 if(strpos($tag,'[url='))
914                         //...do nothing
915                         return $replaced;
916                 //base tag has the tags name only
917                 $basetag = str_replace('_',' ',substr($tag,1));
918                 //create text for link
919                 $newtag = '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
920                 //replace tag by the link
921                 $body = str_replace($tag, $newtag, $body);
922                 $replaced = true;
923
924                 //is the link already in str_tags?
925                 if(! stristr($str_tags,$newtag)) {
926                         //append or set str_tags
927                         if(strlen($str_tags))
928                                 $str_tags .= ',';
929                         $str_tags .= $newtag;
930                 }
931                 return $replaced;
932         }
933         //is it a person tag? 
934         if(strpos($tag,'@') === 0) {
935                 //is it already replaced? 
936                 if(strpos($tag,'[url='))
937                         return $replaced;
938                 $stat = false;
939                 //get the person's name
940                 $name = substr($tag,1);
941                 //is it a link or a full dfrn address? 
942                 if((strpos($name,'@')) || (strpos($name,'http://'))) {
943                         $newname = $name;
944                         //get the profile links
945                         $links = @lrdd($name);
946                         if(count($links)) {
947                                 //for all links, collect how is to inform and how's profile is to link
948                                 foreach($links as $link) {
949                                         if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page')
950                                                 $profile = $link['@attributes']['href'];
951                                         if($link['@attributes']['rel'] === 'salmon') {
952                                                 if(strlen($inform))
953                                                         $inform .= ',';
954                                                 $inform .= 'url:' . str_replace(',','%2c',$link['@attributes']['href']);
955                                         }
956                                 }
957                         }
958                 } else { //if it is a name rather than an address
959                         $newname = $name;
960                         $alias = '';
961                         $tagcid = 0;
962                         //is it some generated name?
963                         if(strrpos($newname,'+')) {
964                                 //get the id
965                                 $tagcid = intval(substr($newname,strrpos($newname,'+') + 1));
966                                 //remove the next word from tag's name
967                                 if(strpos($name,' ')) {
968                                         $name = substr($name,0,strpos($name,' '));
969                                 }
970                         }
971                         if($tagcid) { //if there was an id
972                                 //select contact with that id from the logged in user's contact list
973                                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
974                                                 intval($tagcid),
975                                                 intval($profile_uid)
976                                 );
977                         } elseif(strstr($name,'_') || strstr($name,' ')) { //no id
978                                 //get the real name
979                                 $newname = str_replace('_',' ',$name);
980                                 //select someone from this user's contacts by name
981                                 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
982                                                 dbesc($newname),
983                                                 intval($profile_uid)
984                                 );
985                         } else {
986                                 //select someone by attag or nick and the name passed in
987                                 $r = q("SELECT * FROM `contact` WHERE `attag` = '%s' OR `nick` = '%s' AND `uid` = %d ORDER BY `attag` DESC LIMIT 1",
988                                                 dbesc($name),
989                                                 dbesc($name),
990                                                 intval($profile_uid)
991                                 );
992                         }
993                         //$r is set, if someone could be selected
994                         if(count($r)) {
995                                 $profile = $r[0]['url'];
996                                 //set newname to nick, find alias
997                                 if($r[0]['network'] === 'stat') {
998                                         $newname = $r[0]['nick'];
999                                         $stat = true;
1000                                         if($r[0]['alias'])
1001                                                 $alias = $r[0]['alias'];
1002                                 }
1003                                 else
1004                                         $newname = $r[0]['name'];
1005                                 //add person's id to $inform
1006                                 if(strlen($inform))
1007                                         $inform .= ',';
1008                                 $inform .= 'cid:' . $r[0]['id'];
1009                         }
1010                 }
1011                 //if there is an url for this persons profile
1012                 if(isset($profile)) {
1013                         $replaced = true;
1014                         //create profile link
1015                         $profile = str_replace(',','%2c',$profile);
1016                         $newtag = '@[url=' . $profile . ']' . $newname  . '[/url]';
1017                         $body = str_replace('@' . $name, $newtag, $body);
1018                         //append tag to str_tags
1019                         if(! stristr($str_tags,$newtag)) {
1020                                 if(strlen($str_tags))
1021                                         $str_tags .= ',';
1022                                 $str_tags .= $newtag;
1023                         }
1024         
1025                         // Status.Net seems to require the numeric ID URL in a mention if the person isn't
1026                         // subscribed to you. But the nickname URL is OK if they are. Grrr. We'll tag both.
1027         
1028                         if(strlen($alias)) {
1029                                 $newtag = '@[url=' . $alias . ']' . $newname    . '[/url]';
1030                                 if(! stristr($str_tags,$newtag)) {
1031                                         if(strlen($str_tags))
1032                                                 $str_tags .= ',';
1033                                         $str_tags .= $newtag;
1034                                 }
1035                         }
1036                 }
1037         }
1038
1039         return array('replaced' => $replaced, 'contact' => $r[0]);      
1040 }
1041
1042
1043 function store_diaspora_comment_sig($datarray, $author, $uprvkey, $parent_item, $post_id) {
1044         // We won't be able to sign Diaspora comments for authenticated visitors - we don't have their private key
1045
1046         $enabled = intval(get_config('system','diaspora_enabled'));
1047         if(! $enabled) {
1048                 logger('mod_item: diaspora support disabled, not storing comment signature', LOGGER_DEBUG);
1049                 return;
1050         }
1051
1052
1053         logger('mod_item: storing diaspora comment signature');
1054
1055         require_once('include/bb2diaspora.php');
1056         $signed_body = html_entity_decode(bb2diaspora($datarray['body']));
1057
1058         // Only works for NETWORK_DFRN
1059         $contact_baseurl_start = strpos($author['url'],'://') + 3;
1060         $contact_baseurl_length = strpos($author['url'],'/profile') - $contact_baseurl_start;
1061         $contact_baseurl = substr($author['url'], $contact_baseurl_start, $contact_baseurl_length);
1062         $diaspora_handle = $author['nick'] . '@' . $contact_baseurl;
1063
1064         $signed_text = $datarray['guid'] . ';' . $parent_item['guid'] . ';' . $signed_body . ';' . $diaspora_handle;
1065
1066         if( $uprvkey !== false )
1067                 $authorsig = base64_encode(rsa_sign($signed_text,$uprvkey,'sha256'));
1068         else
1069                 $authorsig = '';
1070
1071         q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
1072                 intval($post_id),
1073                 dbesc($signed_text),
1074                 dbesc(base64_encode($authorsig)),
1075                 dbesc($diaspora_handle)
1076         );
1077
1078         return;
1079 }