]> git.mxchange.org Git - friendica.git/blob - include/items.php
521298647fc94dd3042118766cf823d4ac3e4520
[friendica.git] / include / items.php
1 <?php
2
3 /**
4  * @file include/items.php
5  */
6
7 use Friendica\App;
8 use Friendica\ParseUrl;
9 use Friendica\Util\Lock;
10 use Friendica\Core\Config;
11
12 require_once 'include/bbcode.php';
13 require_once 'include/oembed.php';
14 require_once 'include/salmon.php';
15 require_once 'include/crypto.php';
16 require_once 'include/Photo.php';
17 require_once 'include/tags.php';
18 require_once 'include/files.php';
19 require_once 'include/text.php';
20 require_once 'include/email.php';
21 require_once 'include/threads.php';
22 require_once 'include/socgraph.php';
23 require_once 'include/plaintext.php';
24 require_once 'include/ostatus.php';
25 require_once 'include/feed.php';
26 require_once 'include/Contact.php';
27 require_once 'mod/share.php';
28 require_once 'include/enotify.php';
29 require_once 'include/dfrn.php';
30 require_once 'include/group.php';
31
32 /// @TODO one day with composer autoloader no more needed
33 require_once 'library/defuse/php-encryption-1.2.1/Crypto.php';
34
35 function construct_verb($item) {
36         if ($item['verb']) {
37                 return $item['verb'];
38         }
39         return ACTIVITY_POST;
40 }
41
42 /* limit_body_size()
43  *
44  *              The purpose of this function is to apply system message length limits to
45  *              imported messages without including any embedded photos in the length
46  */
47 if (! function_exists('limit_body_size')) {
48 function limit_body_size($body) {
49
50 //      logger('limit_body_size: start', LOGGER_DEBUG);
51
52         $maxlen = get_max_import_size();
53
54         // If the length of the body, including the embedded images, is smaller
55         // than the maximum, then don't waste time looking for the images
56         if ($maxlen && (strlen($body) > $maxlen)) {
57
58                 logger('limit_body_size: the total body length exceeds the limit', LOGGER_DEBUG);
59
60                 $orig_body = $body;
61                 $new_body = '';
62                 $textlen = 0;
63                 $max_found = false;
64
65                 $img_start = strpos($orig_body, '[img');
66                 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
67                 $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
68                 while (($img_st_close !== false) && ($img_end !== false)) {
69
70                         $img_st_close++; // make it point to AFTER the closing bracket
71                         $img_end += $img_start;
72                         $img_end += strlen('[/img]');
73
74                         if (! strcmp(substr($orig_body, $img_start + $img_st_close, 5), 'data:')) {
75                                 // This is an embedded image
76
77                                 if (($textlen + $img_start) > $maxlen ) {
78                                         if ($textlen < $maxlen) {
79                                                 logger('limit_body_size: the limit happens before an embedded image', LOGGER_DEBUG);
80                                                 $new_body = $new_body . substr($orig_body, 0, $maxlen - $textlen);
81                                                 $textlen = $maxlen;
82                                         }
83                                 } else {
84                                         $new_body = $new_body . substr($orig_body, 0, $img_start);
85                                         $textlen += $img_start;
86                                 }
87
88                                 $new_body = $new_body . substr($orig_body, $img_start, $img_end - $img_start);
89                         } else {
90
91                                 if (($textlen + $img_end) > $maxlen ) {
92                                         if ($textlen < $maxlen) {
93                                                 logger('limit_body_size: the limit happens before the end of a non-embedded image', LOGGER_DEBUG);
94                                                 $new_body = $new_body . substr($orig_body, 0, $maxlen - $textlen);
95                                                 $textlen = $maxlen;
96                                         }
97                                 } else {
98                                         $new_body = $new_body . substr($orig_body, 0, $img_end);
99                                         $textlen += $img_end;
100                                 }
101                         }
102                         $orig_body = substr($orig_body, $img_end);
103
104                         if ($orig_body === false) {
105                                 // in case the body ends on a closing image tag
106                                 $orig_body = '';
107                         }
108
109                         $img_start = strpos($orig_body, '[img');
110                         $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
111                         $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
112                 }
113
114                 if (($textlen + strlen($orig_body)) > $maxlen) {
115                         if ($textlen < $maxlen) {
116                                 logger('limit_body_size: the limit happens after the end of the last image', LOGGER_DEBUG);
117                                 $new_body = $new_body . substr($orig_body, 0, $maxlen - $textlen);
118                                 $textlen = $maxlen;
119                         }
120                 } else {
121                         logger('limit_body_size: the text size with embedded images extracted did not violate the limit', LOGGER_DEBUG);
122                         $new_body = $new_body . $orig_body;
123                         $textlen += strlen($orig_body);
124                 }
125
126                 return $new_body;
127         } else {
128                 return $body;
129         }
130 }}
131
132 function title_is_body($title, $body) {
133
134         $title = strip_tags($title);
135         $title = trim($title);
136         $title = html_entity_decode($title, ENT_QUOTES, 'UTF-8');
137         $title = str_replace(array("\n", "\r", "\t", " "), array("", "", "", ""), $title);
138
139         $body = strip_tags($body);
140         $body = trim($body);
141         $body = html_entity_decode($body, ENT_QUOTES, 'UTF-8');
142         $body = str_replace(array("\n", "\r", "\t", " "), array("", "", "", ""), $body);
143
144         if (strlen($title) < strlen($body)) {
145                 $body = substr($body, 0, strlen($title));
146         }
147
148         if (($title != $body) && (substr($title, -3) == "...")) {
149                 $pos = strrpos($title, "...");
150                 if ($pos > 0) {
151                         $title = substr($title, 0, $pos);
152                         $body = substr($body, 0, $pos);
153                 }
154         }
155
156         return ($title == $body);
157 }
158
159 function add_page_info_data($data) {
160         call_hooks('page_info_data', $data);
161
162         // It maybe is a rich content, but if it does have everything that a link has,
163         // then treat it that way
164         if (($data["type"] == "rich") && is_string($data["title"]) &&
165                 is_string($data["text"]) && (sizeof($data["images"]) > 0)) {
166                 $data["type"] = "link";
167         }
168
169         if ((($data["type"] != "link") && ($data["type"] != "video") && ($data["type"] != "photo")) || ($data["title"] == $data["url"])) {
170                 return "";
171         }
172
173         if ($no_photos && ($data["type"] == "photo")) {
174                 return "";
175         }
176
177         if (sizeof($data["images"]) > 0) {
178                 $preview = $data["images"][0];
179         } else {
180                 $preview = "";
181         }
182
183         // Escape some bad characters
184         $data["url"] = str_replace(array("[", "]"), array("&#91;", "&#93;"), htmlentities($data["url"], ENT_QUOTES, 'UTF-8', false));
185         $data["title"] = str_replace(array("[", "]"), array("&#91;", "&#93;"), htmlentities($data["title"], ENT_QUOTES, 'UTF-8', false));
186
187         $text = "[attachment type='".$data["type"]."'";
188
189         if ($data["text"] == "") {
190                 $data["text"] = $data["title"];
191         }
192
193         if ($data["text"] == "") {
194                 $data["text"] = $data["url"];
195         }
196
197         if ($data["url"] != "") {
198                 $text .= " url='".$data["url"]."'";
199         }
200
201         if ($data["title"] != "") {
202                 $text .= " title='".$data["title"]."'";
203         }
204
205         if (sizeof($data["images"]) > 0) {
206                 $preview = str_replace(array("[", "]"), array("&#91;", "&#93;"), htmlentities($data["images"][0]["src"], ENT_QUOTES, 'UTF-8', false));
207                 // if the preview picture is larger than 500 pixels then show it in a larger mode
208                 // But only, if the picture isn't higher than large (To prevent huge posts)
209                 if (($data["images"][0]["width"] >= 500) && ($data["images"][0]["width"] >= $data["images"][0]["height"])) {
210                         $text .= " image='".$preview."'";
211                 } else {
212                         $text .= " preview='".$preview."'";
213                 }
214         }
215
216         $text .= "]".$data["text"]."[/attachment]";
217
218         $hashtags = "";
219         if (isset($data["keywords"]) && count($data["keywords"])) {
220                 $hashtags = "\n";
221                 foreach ($data["keywords"] AS $keyword) {
222                         /// @todo make a positive list of allowed characters
223                         $hashtag = str_replace(array(" ", "+", "/", ".", "#", "'", "’", "`", "(", ")", "„", "“"),
224                                                 array("", "", "", "", "", "", "", "", "", "", "", ""), $keyword);
225                         $hashtags .= "#[url=" . App::get_baseurl() . "/search?tag=" . rawurlencode($hashtag) . "]" . $hashtag . "[/url] ";
226                 }
227         }
228
229         return "\n".$text.$hashtags;
230 }
231
232 function query_page_info($url, $no_photos = false, $photo = "", $keywords = false, $keyword_blacklist = "") {
233
234         $data = ParseUrl::getSiteinfoCached($url, true);
235
236         if ($photo != "") {
237                 $data["images"][0]["src"] = $photo;
238         }
239
240         logger('fetch page info for ' . $url . ' ' . print_r($data, true), LOGGER_DEBUG);
241
242         if (!$keywords && isset($data["keywords"])) {
243                 unset($data["keywords"]);
244         }
245
246         if (($keyword_blacklist != "") && isset($data["keywords"])) {
247                 $list = explode(", ", $keyword_blacklist);
248                 foreach ($list AS $keyword) {
249                         $keyword = trim($keyword);
250                         $index = array_search($keyword, $data["keywords"]);
251                         if ($index !== false) {
252                                 unset($data["keywords"][$index]);
253                         }
254                 }
255         }
256
257         return $data;
258 }
259
260 function add_page_keywords($url, $no_photos = false, $photo = "", $keywords = false, $keyword_blacklist = "") {
261         $data = query_page_info($url, $no_photos, $photo, $keywords, $keyword_blacklist);
262
263         $tags = "";
264         if (isset($data["keywords"]) && count($data["keywords"])) {
265                 foreach ($data["keywords"] AS $keyword) {
266                         $hashtag = str_replace(array(" ", "+", "/", ".", "#", "'"),
267                                 array("", "", "", "", "", ""), $keyword);
268
269                         if ($tags != "") {
270                                 $tags .= ", ";
271                         }
272
273                         $tags .= "#[url=" . App::get_baseurl() . "/search?tag=" . rawurlencode($hashtag) . "]" . $hashtag . "[/url]";
274                 }
275         }
276
277         return $tags;
278 }
279
280 function add_page_info($url, $no_photos = false, $photo = "", $keywords = false, $keyword_blacklist = "") {
281         $data = query_page_info($url, $no_photos, $photo, $keywords, $keyword_blacklist);
282
283         $text = add_page_info_data($data);
284
285         return $text;
286 }
287
288 function add_page_info_to_body($body, $texturl = false, $no_photos = false) {
289
290         logger('add_page_info_to_body: fetch page info for body ' . $body, LOGGER_DEBUG);
291
292         $URLSearchString = "^\[\]";
293
294         // Fix for Mastodon where the mentions are in a different format
295         $body = preg_replace("/\[url\=([$URLSearchString]*)\]([#!@])(.*?)\[\/url\]/ism",
296                 '$2[url=$1]$3[/url]', $body);
297
298         // Adding these spaces is a quick hack due to my problems with regular expressions :)
299         preg_match("/[^!#@]\[url\]([$URLSearchString]*)\[\/url\]/ism", " " . $body, $matches);
300
301         if (!$matches) {
302                 preg_match("/[^!#@]\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", " " . $body, $matches);
303         }
304
305         // Convert urls without bbcode elements
306         if (!$matches && $texturl) {
307                 preg_match("/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", " ".$body, $matches);
308
309                 // Yeah, a hack. I really hate regular expressions :)
310                 if ($matches) {
311                         $matches[1] = $matches[2];
312                 }
313         }
314
315         if ($matches) {
316                 $footer = add_page_info($matches[1], $no_photos);
317         }
318
319         // Remove the link from the body if the link is attached at the end of the post
320         if (isset($footer) && (trim($footer) != "") && (strpos($footer, $matches[1]))) {
321                 $removedlink = trim(str_replace($matches[1], "", $body));
322                 if (($removedlink == "") || strstr($body, $removedlink)) {
323                         $body = $removedlink;
324                 }
325
326                 $url = str_replace(array('/', '.'), array('\/', '\.'), $matches[1]);
327                 $removedlink = preg_replace("/\[url\=" . $url . "\](.*?)\[\/url\]/ism", '', $body);
328                 if (($removedlink == "") || strstr($body, $removedlink)) {
329                         $body = $removedlink;
330                 }
331         }
332
333         // Add the page information to the bottom
334         if (isset($footer) && (trim($footer) != "")) {
335                 $body .= $footer;
336         }
337
338         return $body;
339 }
340
341 /**
342  * Adds a "lang" specification in a "postopts" element of given $arr,
343  * if possible and not already present.
344  * Expects "body" element to exist in $arr.
345  *
346  * @todo Add a parameter to request forcing override
347  */
348 function item_add_language_opt(&$arr) {
349
350         if (version_compare(PHP_VERSION, '5.3.0', '<')) {
351                  // LanguageDetect.php not available ?
352                 return;
353         }
354
355         if (x($arr, 'postopts') ) {
356                 if (strstr($arr['postopts'], 'lang=') ) {
357                         // do not override
358                         /// @TODO Add parameter to request overriding
359                         return;
360                 }
361                 $postopts = $arr['postopts'];
362         } else {
363                 $postopts = "";
364         }
365
366         require_once('library/langdet/Text/LanguageDetect.php');
367
368         $naked_body = preg_replace('/\[(.+?)\]/','', $arr['body']);
369         $l = new Text_LanguageDetect();
370         //$lng = $l->detectConfidence($naked_body);
371         //$arr['postopts'] = (($lng['language']) ? 'lang=' . $lng['language'] . ';' . $lng['confidence'] : '');
372         $lng = $l->detect($naked_body, 3);
373
374         if (sizeof($lng) > 0) {
375                 if ($postopts != "") $postopts .= '&'; // arbitrary separator, to be reviewed
376                 $postopts .= 'lang=';
377                 $sep = "";
378                 foreach ($lng as $language => $score) {
379                         $postopts .= $sep . $language . ";" . $score;
380                         $sep = ':';
381                 }
382                 $arr['postopts'] = $postopts;
383         }
384 }
385
386 /**
387  * @brief Creates an unique guid out of a given uri
388  *
389  * @param string $uri uri of an item entry
390  * @param string $host (Optional) hostname for the GUID prefix
391  * @return string unique guid
392  */
393 function uri_to_guid($uri, $host = "") {
394
395         // Our regular guid routine is using this kind of prefix as well
396         // We have to avoid that different routines could accidentally create the same value
397         $parsed = parse_url($uri);
398
399         if ($host == "") {
400                 $host = $parsed["host"];
401         }
402
403         $guid_prefix = hash("crc32", $host);
404
405         // Remove the scheme to make sure that "https" and "http" doesn't make a difference
406         unset($parsed["scheme"]);
407
408         $host_id = implode("/", $parsed);
409
410         // We could use any hash algorithm since it isn't a security issue
411         $host_hash = hash("ripemd128", $host_id);
412
413         return $guid_prefix.$host_hash;
414 }
415
416 /**
417  * @brief Store the conversation data
418  *
419  * @param array $arr Item array with conversation data
420  * @return array Item array with removed conversation data
421  */
422 function store_conversation($arr) {
423         if (in_array($arr['network'], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) {
424                 $conversation = array('item-uri' => $arr['uri'], 'received' => dbm::date());
425
426                 if (isset($arr['parent-uri']) && ($arr['parent-uri'] != $arr['uri'])) {
427                         $conversation['reply-to-uri'] = $arr['parent-uri'];
428                 }
429                 if (isset($arr['thr-parent']) && ($arr['thr-parent'] != $arr['uri'])) {
430                         $conversation['reply-to-uri'] = $arr['thr-parent'];
431                 }
432
433                 if (isset($arr['conversation-uri'])) {
434                         $conversation['conversation-uri'] = $arr['conversation-uri'];
435                 }
436
437                 if (isset($arr['conversation-href'])) {
438                         $conversation['conversation-href'] = $arr['conversation-href'];
439                 }
440
441                 if (isset($arr['protocol'])) {
442                         $conversation['protocol'] = $arr['protocol'];
443                 }
444
445                 if (isset($arr['source'])) {
446                         $conversation['source'] = $arr['source'];
447                 }
448
449                 $old_conv = dba::fetch_first("SELECT `item-uri`, `reply-to-uri`, `conversation-uri`, `conversation-href`, `protocol`, `source`
450                                 FROM `conversation` WHERE `item-uri` = ?", $conversation['item-uri']);
451                 if (dbm::is_result($old_conv)) {
452                         // Don't update when only the source has changed.
453                         // Only do this when there had been no source before.
454                         if ($old_conv['source'] != '') {
455                                 unset($old_conv['source']);
456                         }
457                         // Update structure data all the time but the source only when its from a better protocol.
458                         if (($old_conv['protocol'] < $conversation['protocol']) && ($old_conv['protocol'] != 0)) {
459                                 unset($conversation['protocol']);
460                                 unset($conversation['source']);
461                         }
462                         if (!dba::update('conversation', $conversation, array('item-uri' => $conversation['item-uri']), $old_conv)) {
463                                 logger('Conversation: update for '.$conversation['item-uri'].' from '.$conv['protocol'].' to '.$conversation['protocol'].' failed', LOGGER_DEBUG);
464                         }
465                 } else {
466                         if (!dba::insert('conversation', $conversation, true)) {
467                                 logger('Conversation: insert for '.$conversation['item-uri'].' (protocol '.$conversation['protocol'].') failed', LOGGER_DEBUG);
468                         }
469                 }
470         }
471
472         unset($arr['conversation-uri']);
473         unset($arr['conversation-href']);
474         unset($arr['protocol']);
475         unset($arr['source']);
476
477         return $arr;
478 }
479
480 /// @TODO add type-hint array
481 function item_store($arr, $force_parent = false, $notify = false, $dontcache = false) {
482
483         $a = get_app();
484
485         // If it is a posting where users should get notifications, then define it as wall posting
486         if ($notify) {
487                 $arr['wall'] = 1;
488                 $arr['type'] = 'wall';
489                 $arr['origin'] = 1;
490                 $arr['last-child'] = 1;
491                 $arr['network'] = NETWORK_DFRN;
492                 $arr['protocol'] = PROTOCOL_DFRN;
493
494                 // We have to avoid duplicates. So we create the GUID in form of a hash of the plink or uri.
495                 // In difference to the call to "uri_to_guid" several lines below we add the hash of our own host.
496                 // This is done because our host is the original creator of the post.
497                 if (!isset($arr['guid'])) {
498                         if (isset($arr['plink'])) {
499                                 $arr['guid'] = uri_to_guid($arr['plink'], $a->get_hostname());
500                         } elseif (isset($arr['uri'])) {
501                                 $arr['guid'] = uri_to_guid($arr['uri'], $a->get_hostname());
502                         }
503                 }
504         }
505
506         if ($notify) {
507                 $guid_prefix = "";
508         } elseif ((trim($arr['guid']) == "") && (trim($arr['plink']) != "")) {
509                 $arr['guid'] = uri_to_guid($arr['plink']);
510         } elseif ((trim($arr['guid']) == "") && (trim($arr['uri']) != "")) {
511                 $arr['guid'] = uri_to_guid($arr['uri']);
512         } else {
513                 $parsed = parse_url($arr["author-link"]);
514                 $guid_prefix = hash("crc32", $parsed["host"]);
515         }
516
517         $arr['guid']          = ((x($arr, 'guid'))          ? notags(trim($arr['guid']))          : get_guid(32, $guid_prefix));
518         $arr['uri']           = ((x($arr, 'uri'))           ? notags(trim($arr['uri']))           : item_new_uri($a->get_hostname(), $uid, $arr['guid']));
519
520         // Store conversation data
521         $arr = store_conversation($arr);
522
523         /*
524          * If a Diaspora signature structure was passed in, pull it out of the
525          * item array and set it aside for later storage.
526          */
527
528         $dsprsig = null;
529         if (x($arr, 'dsprsig')) {
530                 $encoded_signature = $arr['dsprsig'];
531                 $dsprsig = json_decode(base64_decode($arr['dsprsig']));
532                 unset($arr['dsprsig']);
533         }
534
535         // Converting the plink
536         if ($arr['network'] == NETWORK_OSTATUS) {
537                 if (isset($arr['plink'])) {
538                         $arr['plink'] = ostatus::convert_href($arr['plink']);
539                 } elseif (isset($arr['uri'])) {
540                         $arr['plink'] = ostatus::convert_href($arr['uri']);
541                 }
542         }
543
544         if (x($arr, 'gravity')) {
545                 $arr['gravity'] = intval($arr['gravity']);
546         } elseif ($arr['parent-uri'] === $arr['uri']) {
547                 $arr['gravity'] = 0;
548         } elseif (activity_match($arr['verb'],ACTIVITY_POST)) {
549                 $arr['gravity'] = 6;
550         } else {
551                 $arr['gravity'] = 6;   // extensible catchall
552         }
553
554         if (! x($arr, 'type')) {
555                 $arr['type']      = 'remote';
556         }
557
558         $uid = intval($arr['uid']);
559
560         // check for create date and expire time
561         $expire_interval = Config::get('system', 'dbclean-expire-days', 0);
562
563         $r = dba::select('user', array('expire'), array('uid' => $uid), array("limit" => 1));
564         if (dbm::is_result($r) && ($r['expire'] > 0) && ($r['expire'] < $expire_interval)) {
565                 $expire_interval = $r['expire'];
566         }
567
568         if (($expire_interval > 0) && !empty($arr['created'])) {
569                 $expire_date = time() - ($expire_interval * 86400);
570                 $created_date = strtotime($arr['created']);
571                 if ($created_date < $expire_date) {
572                         logger('item-store: item created ('.date('c', $created_date).') before expiration time ('.date('c', $expire_date).'). ignored. ' . print_r($arr,true), LOGGER_DEBUG);
573                         return 0;
574                 }
575         }
576
577         /*
578          * Do we already have this item?
579          * We have to check several networks since Friendica posts could be repeated
580          * via OStatus (maybe Diasporsa as well)
581          */
582         if (in_array(trim($arr['network']), array(NETWORK_DIASPORA, NETWORK_DFRN, NETWORK_OSTATUS, ""))) {
583                 $r = q("SELECT `id`, `network` FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `network` IN ('%s', '%s', '%s')  LIMIT 1",
584                                 dbesc(trim($arr['uri'])),
585                                 intval($uid),
586                                 dbesc(NETWORK_DIASPORA),
587                                 dbesc(NETWORK_DFRN),
588                                 dbesc(NETWORK_OSTATUS)
589                         );
590                 if (dbm::is_result($r)) {
591                         // We only log the entries with a different user id than 0. Otherwise we would have too many false positives
592                         if ($uid != 0) {
593                                 logger("Item with uri ".$arr['uri']." already existed for user ".$uid." with id ".$r[0]["id"]." target network ".$r[0]["network"]." - new network: ".$arr['network']);
594                         }
595
596                         return $r[0]["id"];
597                 }
598         }
599
600         /// @TODO old-lost code?
601         // Shouldn't happen but we want to make absolutely sure it doesn't leak from a plugin.
602         // Deactivated, since the bbcode parser can handle with it - and it destroys posts with some smileys that contain "<"
603         //if ((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false))
604         //      $arr['body'] = strip_tags($arr['body']);
605
606         item_add_language_opt($arr);
607
608         $arr['wall']          = ((x($arr, 'wall'))          ? intval($arr['wall'])                : 0);
609         $arr['extid']         = ((x($arr, 'extid'))         ? notags(trim($arr['extid']))         : '');
610         $arr['author-name']   = ((x($arr, 'author-name'))   ? trim($arr['author-name'])   : '');
611         $arr['author-link']   = ((x($arr, 'author-link'))   ? notags(trim($arr['author-link']))   : '');
612         $arr['author-avatar'] = ((x($arr, 'author-avatar')) ? notags(trim($arr['author-avatar'])) : '');
613         $arr['owner-name']    = ((x($arr, 'owner-name'))    ? trim($arr['owner-name'])    : '');
614         $arr['owner-link']    = ((x($arr, 'owner-link'))    ? notags(trim($arr['owner-link']))    : '');
615         $arr['owner-avatar']  = ((x($arr, 'owner-avatar'))  ? notags(trim($arr['owner-avatar']))  : '');
616         $arr['received']      = ((x($arr, 'received') !== false) ? datetime_convert('UTC','UTC', $arr['received']) : datetime_convert());
617         $arr['created']       = ((x($arr, 'created') !== false) ? datetime_convert('UTC','UTC', $arr['created']) : $arr['received']);
618         $arr['edited']        = ((x($arr, 'edited') !== false) ? datetime_convert('UTC','UTC', $arr['edited']) : $arr['created']);
619         $arr['changed']       = ((x($arr, 'changed') !== false) ? datetime_convert('UTC','UTC', $arr['changed']) : $arr['created']);
620         $arr['commented']     = ((x($arr, 'commented') !== false) ? datetime_convert('UTC','UTC', $arr['commented']) : $arr['created']);
621         $arr['title']         = ((x($arr, 'title'))         ? trim($arr['title'])         : '');
622         $arr['location']      = ((x($arr, 'location'))      ? trim($arr['location'])      : '');
623         $arr['coord']         = ((x($arr, 'coord'))         ? notags(trim($arr['coord']))         : '');
624         $arr['last-child']    = ((x($arr, 'last-child'))    ? intval($arr['last-child'])          : 0 );
625         $arr['visible']       = ((x($arr, 'visible') !== false) ? intval($arr['visible'])         : 1 );
626         $arr['deleted']       = 0;
627         $arr['parent-uri']    = ((x($arr, 'parent-uri'))    ? notags(trim($arr['parent-uri']))    : $arr['uri']);
628         $arr['verb']          = ((x($arr, 'verb'))          ? notags(trim($arr['verb']))          : '');
629         $arr['object-type']   = ((x($arr, 'object-type'))   ? notags(trim($arr['object-type']))   : '');
630         $arr['object']        = ((x($arr, 'object'))        ? trim($arr['object'])                : '');
631         $arr['target-type']   = ((x($arr, 'target-type'))   ? notags(trim($arr['target-type']))   : '');
632         $arr['target']        = ((x($arr, 'target'))        ? trim($arr['target'])                : '');
633         $arr['plink']         = ((x($arr, 'plink'))         ? notags(trim($arr['plink']))         : '');
634         $arr['allow_cid']     = ((x($arr, 'allow_cid'))     ? trim($arr['allow_cid'])             : '');
635         $arr['allow_gid']     = ((x($arr, 'allow_gid'))     ? trim($arr['allow_gid'])             : '');
636         $arr['deny_cid']      = ((x($arr, 'deny_cid'))      ? trim($arr['deny_cid'])              : '');
637         $arr['deny_gid']      = ((x($arr, 'deny_gid'))      ? trim($arr['deny_gid'])              : '');
638         $arr['private']       = ((x($arr, 'private'))       ? intval($arr['private'])             : 0 );
639         $arr['bookmark']      = ((x($arr, 'bookmark'))      ? intval($arr['bookmark'])            : 0 );
640         $arr['body']          = ((x($arr, 'body'))          ? trim($arr['body'])                  : '');
641         $arr['tag']           = ((x($arr, 'tag'))           ? notags(trim($arr['tag']))           : '');
642         $arr['attach']        = ((x($arr, 'attach'))        ? notags(trim($arr['attach']))        : '');
643         $arr['app']           = ((x($arr, 'app'))           ? notags(trim($arr['app']))           : '');
644         $arr['origin']        = ((x($arr, 'origin'))        ? intval($arr['origin'])              : 0 );
645         $arr['network']       = ((x($arr, 'network'))       ? trim($arr['network'])               : '');
646         $arr['postopts']      = ((x($arr, 'postopts'))      ? trim($arr['postopts'])              : '');
647         $arr['resource-id']   = ((x($arr, 'resource-id'))   ? trim($arr['resource-id'])           : '');
648         $arr['event-id']      = ((x($arr, 'event-id'))      ? intval($arr['event-id'])            : 0 );
649         $arr['inform']        = ((x($arr, 'inform'))        ? trim($arr['inform'])                : '');
650         $arr['file']          = ((x($arr, 'file'))          ? trim($arr['file'])                  : '');
651
652         // When there is no content then we don't post it
653         if ($arr['body'].$arr['title'] == '') {
654                 return 0;
655         }
656
657         // Items cannot be stored before they happen ...
658         if ($arr['created'] > datetime_convert()) {
659                 $arr['created'] = datetime_convert();
660         }
661
662         // We haven't invented time travel by now.
663         if ($arr['edited'] > datetime_convert()) {
664                 $arr['edited'] = datetime_convert();
665         }
666
667         if (($arr['author-link'] == "") && ($arr['owner-link'] == "")) {
668                 logger("Both author-link and owner-link are empty. Called by: " . App::callstack(), LOGGER_DEBUG);
669         }
670
671         if ($arr['plink'] == "") {
672                 $arr['plink'] = App::get_baseurl() . '/display/' . urlencode($arr['guid']);
673         }
674
675         if ($arr['network'] == "") {
676                 $r = q("SELECT `network` FROM `contact` WHERE `network` IN ('%s', '%s', '%s') AND `nurl` = '%s' AND `uid` = %d LIMIT 1",
677                         dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS),
678                         dbesc(normalise_link($arr['author-link'])),
679                         intval($arr['uid'])
680                 );
681
682                 if (!dbm::is_result($r))
683                         $r = q("SELECT `network` FROM `gcontact` WHERE `network` IN ('%s', '%s', '%s') AND `nurl` = '%s' LIMIT 1",
684                                 dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS),
685                                 dbesc(normalise_link($arr['author-link']))
686                         );
687
688                 if (!dbm::is_result($r)) {
689                         $r = q("SELECT `network` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
690                                 intval($arr['contact-id']),
691                                 intval($arr['uid'])
692                         );
693                 }
694
695                 if (dbm::is_result($r)) {
696                         $arr['network'] = $r[0]["network"];
697                 }
698
699                 // Fallback to friendica (why is it empty in some cases?)
700                 if ($arr['network'] == "") {
701                         $arr['network'] = NETWORK_DFRN;
702                 }
703
704                 logger("item_store: Set network to " . $arr["network"] . " for " . $arr["uri"], LOGGER_DEBUG);
705         }
706
707         // The contact-id should be set before "item_store" was called - but there seems to be some issues
708         if ($arr["contact-id"] == 0) {
709                 /*
710                  * First we are looking for a suitable contact that matches with the author of the post
711                  * This is done only for comments (See below explanation at "gcontact-id")
712                  */
713                 if ($arr['parent-uri'] != $arr['uri']) {
714                         $arr["contact-id"] = get_contact($arr['author-link'], $uid);
715                 }
716
717                 // If not present then maybe the owner was found
718                 if ($arr["contact-id"] == 0) {
719                         $arr["contact-id"] = get_contact($arr['owner-link'], $uid);
720                 }
721
722                 // Still missing? Then use the "self" contact of the current user
723                 if ($arr["contact-id"] == 0) {
724                         $r = q("SELECT `id` FROM `contact` WHERE `self` AND `uid` = %d", intval($uid));
725
726                         if (dbm::is_result($r)) {
727                                 $arr["contact-id"] = $r[0]["id"];
728                         }
729                 }
730
731                 logger("Contact-id was missing for post ".$arr["guid"]." from user id ".$uid." - now set to ".$arr["contact-id"], LOGGER_DEBUG);
732         }
733
734         if ($arr["gcontact-id"] == 0) {
735                 /*
736                  * The gcontact should mostly behave like the contact. But is is supposed to be global for the system.
737                  * This means that wall posts, repeated posts, etc. should have the gcontact id of the owner.
738                  * On comments the author is the better choice.
739                  */
740                 if ($arr['parent-uri'] === $arr['uri']) {
741                         $arr["gcontact-id"] = get_gcontact_id(array("url" => $arr['owner-link'], "network" => $arr['network'],
742                                                                  "photo" => $arr['owner-avatar'], "name" => $arr['owner-name']));
743                 } else {
744                         $arr["gcontact-id"] = get_gcontact_id(array("url" => $arr['author-link'], "network" => $arr['network'],
745                                                                  "photo" => $arr['author-avatar'], "name" => $arr['author-name']));
746                 }
747         }
748
749         if ($arr["author-id"] == 0) {
750                 $arr["author-id"] = get_contact($arr["author-link"], 0);
751         }
752
753         if ($arr["owner-id"] == 0) {
754                 $arr["owner-id"] = get_contact($arr["owner-link"], 0);
755         }
756
757         if ($arr['guid'] != "") {
758                 // Checking if there is already an item with the same guid
759                 logger('checking for an item for user '.$arr['uid'].' on network '.$arr['network'].' with the guid '.$arr['guid'], LOGGER_DEBUG);
760                 $r = q("SELECT `guid` FROM `item` WHERE `guid` = '%s' AND `network` = '%s' AND `uid` = '%d' LIMIT 1",
761                         dbesc($arr['guid']), dbesc($arr['network']), intval($arr['uid']));
762
763                 if (dbm::is_result($r)) {
764                         logger('found item with guid '.$arr['guid'].' for user '.$arr['uid'].' on network '.$arr['network'], LOGGER_DEBUG);
765                         return 0;
766                 }
767         }
768
769         // Check for hashtags in the body and repair or add hashtag links
770         item_body_set_hashtags($arr);
771
772         $arr['thr-parent'] = $arr['parent-uri'];
773
774         if ($arr['parent-uri'] === $arr['uri']) {
775                 $parent_id = 0;
776                 $parent_deleted = 0;
777                 $allow_cid = $arr['allow_cid'];
778                 $allow_gid = $arr['allow_gid'];
779                 $deny_cid  = $arr['deny_cid'];
780                 $deny_gid  = $arr['deny_gid'];
781                 $notify_type = 'wall-new';
782         } else {
783
784                 // find the parent and snarf the item id and ACLs
785                 // and anything else we need to inherit
786
787                 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d ORDER BY `id` ASC LIMIT 1",
788                         dbesc($arr['parent-uri']),
789                         intval($arr['uid'])
790                 );
791
792                 if (dbm::is_result($r)) {
793
794                         // is the new message multi-level threaded?
795                         // even though we don't support it now, preserve the info
796                         // and re-attach to the conversation parent.
797
798                         if ($r[0]['uri'] != $r[0]['parent-uri']) {
799                                 $arr['parent-uri'] = $r[0]['parent-uri'];
800                                 $z = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `parent-uri` = '%s' AND `uid` = %d
801                                         ORDER BY `id` ASC LIMIT 1",
802                                         dbesc($r[0]['parent-uri']),
803                                         dbesc($r[0]['parent-uri']),
804                                         intval($arr['uid'])
805                                 );
806
807                                 if (dbm::is_result($z)) {
808                                         $r = $z;
809                                 }
810                         }
811
812                         $parent_id      = $r[0]['id'];
813                         $parent_deleted = $r[0]['deleted'];
814                         $allow_cid      = $r[0]['allow_cid'];
815                         $allow_gid      = $r[0]['allow_gid'];
816                         $deny_cid       = $r[0]['deny_cid'];
817                         $deny_gid       = $r[0]['deny_gid'];
818                         $arr['wall']    = $r[0]['wall'];
819                         $notify_type    = 'comment-new';
820
821                         /*
822                          * If the parent is private, force privacy for the entire conversation
823                          * This differs from the above settings as it subtly allows comments from
824                          * email correspondents to be private even if the overall thread is not.
825                          */
826                         if ($r[0]['private']) {
827                                 $arr['private'] = $r[0]['private'];
828                         }
829
830                         /*
831                          * Edge case. We host a public forum that was originally posted to privately.
832                          * The original author commented, but as this is a comment, the permissions
833                          * weren't fixed up so it will still show the comment as private unless we fix it here.
834                          */
835                         if ((intval($r[0]['forum_mode']) == 1) && (! $r[0]['private'])) {
836                                 $arr['private'] = 0;
837                         }
838
839                         // If its a post from myself then tag the thread as "mention"
840                         logger("item_store: Checking if parent ".$parent_id." has to be tagged as mention for user ".$arr['uid'], LOGGER_DEBUG);
841                         $u = q("SELECT `nickname` FROM `user` WHERE `uid` = %d", intval($arr['uid']));
842                         if (dbm::is_result($u)) {
843                                 $a = get_app();
844                                 $self = normalise_link(App::get_baseurl() . '/profile/' . $u[0]['nickname']);
845                                 logger("item_store: 'myself' is ".$self." for parent ".$parent_id." checking against ".$arr['author-link']." and ".$arr['owner-link'], LOGGER_DEBUG);
846                                 if ((normalise_link($arr['author-link']) == $self) || (normalise_link($arr['owner-link']) == $self)) {
847                                         q("UPDATE `thread` SET `mention` = 1 WHERE `iid` = %d", intval($parent_id));
848                                         logger("item_store: tagged thread ".$parent_id." as mention for user ".$self, LOGGER_DEBUG);
849                                 }
850                         }
851                 } else {
852                         /*
853                          * Allow one to see reply tweets from status.net even when
854                          * we don't have or can't see the original post.
855                          */
856                         if ($force_parent) {
857                                 logger('item_store: $force_parent=true, reply converted to top-level post.');
858                                 $parent_id = 0;
859                                 $arr['parent-uri'] = $arr['uri'];
860                                 $arr['gravity'] = 0;
861                         } else {
862                                 logger('item_store: item parent '.$arr['parent-uri'].' for '.$arr['uid'].' was not found - ignoring item');
863                                 return 0;
864                         }
865
866                         $parent_deleted = 0;
867                 }
868         }
869
870         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `network` IN ('%s', '%s') AND `uid` = %d LIMIT 1",
871                 dbesc($arr['uri']),
872                 dbesc($arr['network']),
873                 dbesc(NETWORK_DFRN),
874                 intval($arr['uid'])
875         );
876         if (dbm::is_result($r)) {
877                 logger('duplicated item with the same uri found. '.print_r($arr,true));
878                 return 0;
879         }
880
881         // On Friendica and Diaspora the GUID is unique
882         if (in_array($arr['network'], array(NETWORK_DFRN, NETWORK_DIASPORA))) {
883                 $r = q("SELECT `id` FROM `item` WHERE `guid` = '%s' AND `uid` = %d LIMIT 1",
884                         dbesc($arr['guid']),
885                         intval($arr['uid'])
886                 );
887                 if (dbm::is_result($r)) {
888                         logger('duplicated item with the same guid found. '.print_r($arr,true));
889                         return 0;
890                 }
891         } else {
892                 // Check for an existing post with the same content. There seems to be a problem with OStatus.
893                 $r = q("SELECT `id` FROM `item` WHERE `body` = '%s' AND `network` = '%s' AND `created` = '%s' AND `contact-id` = %d AND `uid` = %d LIMIT 1",
894                         dbesc($arr['body']),
895                         dbesc($arr['network']),
896                         dbesc($arr['created']),
897                         intval($arr['contact-id']),
898                         intval($arr['uid'])
899                 );
900                 if (dbm::is_result($r)) {
901                         logger('duplicated item with the same body found. '.print_r($arr,true));
902                         return 0;
903                 }
904         }
905
906         // Is this item available in the global items (with uid=0)?
907         if ($arr["uid"] == 0) {
908                 $arr["global"] = true;
909
910                 // Set the global flag on all items if this was a global item entry
911                 q("UPDATE `item` SET `global` = 1 WHERE `uri` = '%s'", dbesc($arr["uri"]));
912         } else {
913                 $isglobal = q("SELECT `global` FROM `item` WHERE `uid` = 0 AND `uri` = '%s'", dbesc($arr["uri"]));
914
915                 $arr["global"] = (dbm::is_result($isglobal) && count($isglobal) > 0);
916         }
917
918         // ACL settings
919         if (strlen($allow_cid) || strlen($allow_gid) || strlen($deny_cid) || strlen($deny_gid)) {
920                 $private = 1;
921         } else {
922                 $private = $arr['private'];
923         }
924
925         $arr["allow_cid"] = $allow_cid;
926         $arr["allow_gid"] = $allow_gid;
927         $arr["deny_cid"] = $deny_cid;
928         $arr["deny_gid"] = $deny_gid;
929         $arr["private"] = $private;
930         $arr["deleted"] = $parent_deleted;
931
932         // Fill the cache field
933         put_item_in_cache($arr);
934
935         if ($notify) {
936                 call_hooks('post_local', $arr);
937         } else {
938                 call_hooks('post_remote', $arr);
939         }
940
941         if (x($arr, 'cancel')) {
942                 logger('item_store: post cancelled by plugin.');
943                 return 0;
944         }
945
946         /*
947          * Check for already added items.
948          * There is a timing issue here that sometimes creates double postings.
949          * An unique index would help - but the limitations of MySQL (maximum size of index values) prevent this.
950          */
951         if ($arr["uid"] == 0) {
952                 $r = qu("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1", dbesc(trim($arr['uri'])));
953                 if (dbm::is_result($r)) {
954                         logger('Global item already stored. URI: '.$arr['uri'].' on network '.$arr['network'], LOGGER_DEBUG);
955                         return 0;
956                 }
957         }
958
959         logger('item_store: ' . print_r($arr,true), LOGGER_DATA);
960
961         dba::transaction();
962         $r = dba::insert('item', $arr);
963
964         // When the item was successfully stored we fetch the ID of the item.
965         if (dbm::is_result($r)) {
966                 $r = q("SELECT LAST_INSERT_ID() AS `item-id`");
967                 if (dbm::is_result($r)) {
968                         $current_post = $r[0]['item-id'];
969                 } else {
970                         // This shouldn't happen
971                         $current_post = 0;
972                 }
973         } else {
974                 // This can happen - for example - if there are locking timeouts.
975                 dba::rollback();
976
977                 // Store the data into a spool file so that we can try again later.
978
979                 // At first we restore the Diaspora signature that we removed above.
980                 if (isset($encoded_signature)) {
981                         $arr['dsprsig'] = $encoded_signature;
982                 }
983
984                 // Now we store the data in the spool directory
985                 // We use "microtime" to keep the arrival order and "mt_rand" to avoid duplicates
986                 $file = 'item-'.round(microtime(true) * 10000).'-'.mt_rand().'.msg';
987
988                 $spoolpath = get_spoolpath();
989                 if ($spoolpath != "") {
990                         $spool = $spoolpath.'/'.$file;
991                         file_put_contents($spool, json_encode($arr));
992                         logger("Item wasn't stored - Item was spooled into file ".$file, LOGGER_DEBUG);
993                 }
994                 return 0;
995         }
996
997         if ($current_post == 0) {
998                 // This is one of these error messages that never should occur.
999                 logger("couldn't find created item - we better quit now.");
1000                 dba::rollback();
1001                 return 0;
1002         }
1003
1004         // How much entries have we created?
1005         // We wouldn't need this query when we could use an unique index - but MySQL has length problems with them.
1006         $r = q("SELECT COUNT(*) AS `entries` FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `network` = '%s'",
1007                 dbesc($arr['uri']),
1008                 intval($arr['uid']),
1009                 dbesc($arr['network'])
1010         );
1011
1012         if (!dbm::is_result($r)) {
1013                 // This shouldn't happen, since COUNT always works when the database connection is there.
1014                 logger("We couldn't count the stored entries. Very strange ...");
1015                 dba::rollback();
1016                 return 0;
1017         }
1018
1019         if ($r[0]["entries"] > 1) {
1020                 // There are duplicates. We delete our just created entry.
1021                 logger('Duplicated post occurred. uri = ' . $arr['uri'] . ' uid = ' . $arr['uid']);
1022
1023                 // Yes, we could do a rollback here - but we are having many users with MyISAM.
1024                 dba::delete('item', array('id' => $current_post));
1025                 dba::commit();
1026                 return 0;
1027         } elseif ($r[0]["entries"] == 0) {
1028                 // This really should never happen since we quit earlier if there were problems.
1029                 logger("Something is terribly wrong. We haven't found our created entry.");
1030                 dba::rollback();
1031                 return 0;
1032         }
1033
1034         logger('item_store: created item '.$current_post);
1035         item_set_last_item($arr);
1036
1037         if (!$parent_id || ($arr['parent-uri'] === $arr['uri'])) {
1038                 $parent_id = $current_post;
1039         }
1040
1041         // Set parent id
1042         $r = q("UPDATE `item` SET `parent` = %d WHERE `id` = %d",
1043                 intval($parent_id),
1044                 intval($current_post)
1045         );
1046
1047         $arr['id'] = $current_post;
1048         $arr['parent'] = $parent_id;
1049
1050         // update the commented timestamp on the parent
1051         // Only update "commented" if it is really a comment
1052         if (($arr['verb'] == ACTIVITY_POST) || !get_config("system", "like_no_comment")) {
1053                 q("UPDATE `item` SET `commented` = '%s', `changed` = '%s' WHERE `id` = %d",
1054                         dbesc(datetime_convert()),
1055                         dbesc(datetime_convert()),
1056                         intval($parent_id)
1057                 );
1058         } else {
1059                 q("UPDATE `item` SET `changed` = '%s' WHERE `id` = %d",
1060                         dbesc(datetime_convert()),
1061                         intval($parent_id)
1062                 );
1063         }
1064
1065         if ($dsprsig) {
1066
1067                 /*
1068                  * Friendica servers lower than 3.4.3-2 had double encoded the signature ...
1069                  * We can check for this condition when we decode and encode the stuff again.
1070                  */
1071                 if (base64_encode(base64_decode(base64_decode($dsprsig->signature))) == base64_decode($dsprsig->signature)) {
1072                         $dsprsig->signature = base64_decode($dsprsig->signature);
1073                         logger("Repaired double encoded signature from handle ".$dsprsig->signer, LOGGER_DEBUG);
1074                 }
1075
1076                 q("INSERT INTO `sign` (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
1077                         intval($current_post),
1078                         dbesc($dsprsig->signed_text),
1079                         dbesc($dsprsig->signature),
1080                         dbesc($dsprsig->signer)
1081                 );
1082         }
1083
1084         $deleted = tag_deliver($arr['uid'], $current_post);
1085
1086         /*
1087          * current post can be deleted if is for a community page and no mention are
1088          * in it.
1089          */
1090         if (!$deleted && !$dontcache) {
1091
1092                 $r = q('SELECT * FROM `item` WHERE `id` = %d', intval($current_post));
1093                 if ((dbm::is_result($r)) && (count($r) == 1)) {
1094                         if ($notify) {
1095                                 call_hooks('post_local_end', $r[0]);
1096                         } else {
1097                                 call_hooks('post_remote_end', $r[0]);
1098                         }
1099                 } else {
1100                         logger('item_store: new item not found in DB, id ' . $current_post);
1101                 }
1102         }
1103
1104         if ($arr['parent-uri'] === $arr['uri']) {
1105                 add_thread($current_post);
1106         } else {
1107                 update_thread($parent_id);
1108         }
1109
1110         dba::commit();
1111
1112         /*
1113          * Due to deadlock issues with the "term" table we are doing these steps after the commit.
1114          * This is not perfect - but a workable solution until we found the reason for the problem.
1115          */
1116         create_tags_from_item($current_post);
1117         create_files_from_item($current_post);
1118
1119         /*
1120          * If this is now the last-child, force all _other_ children of this parent to *not* be last-child
1121          * It is done after the transaction to avoid dead locks.
1122          */
1123         if ($arr['last-child']) {
1124                 $r = q("UPDATE `item` SET `last-child` = 0 WHERE `parent-uri` = '%s' AND `uid` = %d AND `id` != %d",
1125                         dbesc($arr['uri']),
1126                         intval($arr['uid']),
1127                         intval($current_post)
1128                 );
1129         }
1130
1131         if ($arr['parent-uri'] === $arr['uri']) {
1132                 add_shadow_thread($current_post);
1133         } else {
1134                 add_shadow_entry($current_post);
1135         }
1136
1137         check_item_notification($current_post, $uid);
1138
1139         if ($notify) {
1140                 proc_run(array('priority' => PRIORITY_HIGH, 'dont_fork' => true), "include/notifier.php", $notify_type, $current_post);
1141         }
1142
1143         return $current_post;
1144 }
1145
1146 /**
1147  * @brief Set "success_update" and "last-item" to the date of the last time we heard from this contact
1148  *
1149  * This can be used to filter for inactive contacts.
1150  * Only do this for public postings to avoid privacy problems, since poco data is public.
1151  * Don't set this value if it isn't from the owner (could be an author that we don't know)
1152  *
1153  * @param array $arr Contains the just posted item record
1154  */
1155 function item_set_last_item($arr) {
1156
1157         $update = (!$arr['private'] && (($arr["author-link"] === $arr["owner-link"]) || ($arr["parent-uri"] === $arr["uri"])));
1158
1159         // Is it a forum? Then we don't care about the rules from above
1160         if (!$update && ($arr["network"] == NETWORK_DFRN) && ($arr["parent-uri"] === $arr["uri"])) {
1161                 $isforum = q("SELECT `forum` FROM `contact` WHERE `id` = %d AND `forum`",
1162                                 intval($arr['contact-id']));
1163                 if (dbm::is_result($isforum)) {
1164                         $update = true;
1165                 }
1166         }
1167
1168         if ($update) {
1169                 q("UPDATE `contact` SET `success_update` = '%s', `last-item` = '%s' WHERE `id` = %d",
1170                         dbesc($arr['received']),
1171                         dbesc($arr['received']),
1172                         intval($arr['contact-id'])
1173                 );
1174         }
1175         // Now do the same for the system wide contacts with uid=0
1176         if (!$arr['private']) {
1177                 q("UPDATE `contact` SET `success_update` = '%s', `last-item` = '%s' WHERE `id` = %d",
1178                         dbesc($arr['received']),
1179                         dbesc($arr['received']),
1180                         intval($arr['owner-id'])
1181                 );
1182
1183                 if ($arr['owner-id'] != $arr['author-id']) {
1184                         q("UPDATE `contact` SET `success_update` = '%s', `last-item` = '%s' WHERE `id` = %d",
1185                                 dbesc($arr['received']),
1186                                 dbesc($arr['received']),
1187                                 intval($arr['author-id'])
1188                         );
1189                 }
1190         }
1191 }
1192
1193 function item_body_set_hashtags(&$item) {
1194
1195         $tags = get_tags($item["body"]);
1196
1197         // No hashtags?
1198         if (!count($tags)) {
1199                 return false;
1200         }
1201
1202         // This sorting is important when there are hashtags that are part of other hashtags
1203         // Otherwise there could be problems with hashtags like #test and #test2
1204         rsort($tags);
1205
1206         $a = get_app();
1207
1208         $URLSearchString = "^\[\]";
1209
1210         /// @TODO old-lost code?
1211         // All hashtags should point to the home server
1212         //$item["body"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1213         //              "#[url=".App::get_baseurl()."/search?tag=$2]$2[/url]", $item["body"]);
1214
1215         //$item["tag"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1216         //              "#[url=".App::get_baseurl()."/search?tag=$2]$2[/url]", $item["tag"]);
1217
1218         // mask hashtags inside of url, bookmarks and attachments to avoid urls in urls
1219         $item["body"] = preg_replace_callback("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1220                 function ($match) {
1221                         return ("[url=" . str_replace("#", "&num;", $match[1]) . "]" . str_replace("#", "&num;", $match[2]) . "[/url]");
1222                 }, $item["body"]);
1223
1224         $item["body"] = preg_replace_callback("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism",
1225                 function ($match) {
1226                         return ("[bookmark=" . str_replace("#", "&num;", $match[1]) . "]" . str_replace("#", "&num;", $match[2]) . "[/bookmark]");
1227                 }, $item["body"]);
1228
1229         $item["body"] = preg_replace_callback("/\[attachment (.*)\](.*?)\[\/attachment\]/ism",
1230                 function ($match) {
1231                         return ("[attachment " . str_replace("#", "&num;", $match[1]) . "]" . $match[2] . "[/attachment]");
1232                 }, $item["body"]);
1233
1234         // Repair recursive urls
1235         $item["body"] = preg_replace("/&num;\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1236                         "&num;$2", $item["body"]);
1237
1238         foreach ($tags as $tag) {
1239                 if ((strpos($tag, '#') !== 0) || (strpos($tag, '[url='))) {
1240                         continue;
1241                 }
1242
1243                 $basetag = str_replace('_',' ',substr($tag,1));
1244
1245                 $newtag = '#[url=' . App::get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
1246
1247                 $item["body"] = str_replace($tag, $newtag, $item["body"]);
1248
1249                 if (!stristr($item["tag"], "/search?tag=" . $basetag . "]" . $basetag . "[/url]")) {
1250                         if (strlen($item["tag"])) {
1251                                 $item["tag"] = ','.$item["tag"];
1252                         }
1253                         $item["tag"] = $newtag.$item["tag"];
1254                 }
1255         }
1256
1257         // Convert back the masked hashtags
1258         $item["body"] = str_replace("&num;", "#", $item["body"]);
1259 }
1260
1261 function get_item_guid($id) {
1262         $r = q("SELECT `guid` FROM `item` WHERE `id` = %d LIMIT 1", intval($id));
1263         if (dbm::is_result($r)) {
1264                 return $r[0]["guid"];
1265         } else {
1266                 /// @TODO This else-block can be elimited again
1267                 return "";
1268         }
1269 }
1270
1271 function get_item_id($guid, $uid = 0) {
1272
1273         $nick = "";
1274         $id = 0;
1275
1276         if ($uid == 0) {
1277                 $uid == local_user();
1278         }
1279
1280         // Does the given user have this item?
1281         if ($uid) {
1282                 $r = q("SELECT `item`.`id`, `user`.`nickname` FROM `item` INNER JOIN `user` ON `user`.`uid` = `item`.`uid`
1283                         WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 AND `item`.`moderated` = 0
1284                                 AND `item`.`guid` = '%s' AND `item`.`uid` = %d", dbesc($guid), intval($uid));
1285                 if (dbm::is_result($r)) {
1286                         $id = $r[0]["id"];
1287                         $nick = $r[0]["nickname"];
1288                 }
1289         }
1290
1291         // Or is it anywhere on the server?
1292         if ($nick == "") {
1293                 $r = q("SELECT `item`.`id`, `user`.`nickname` FROM `item` INNER JOIN `user` ON `user`.`uid` = `item`.`uid`
1294                         WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 AND `item`.`moderated` = 0
1295                                 AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
1296                                 AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
1297                                 AND `item`.`private` = 0 AND `item`.`wall` = 1
1298                                 AND `item`.`guid` = '%s'", dbesc($guid));
1299                 if (dbm::is_result($r)) {
1300                         $id = $r[0]["id"];
1301                         $nick = $r[0]["nickname"];
1302                 }
1303         }
1304         return array("nick" => $nick, "id" => $id);
1305 }
1306
1307 // return - test
1308 function get_item_contact($item, $contacts) {
1309         if (! count($contacts) || (! is_array($item))) {
1310                 return false;
1311         }
1312         foreach ($contacts as $contact) {
1313                 if ($contact['id'] == $item['contact-id']) {
1314                         return $contact;
1315                         break; // NOTREACHED
1316                 }
1317         }
1318         return false;
1319 }
1320
1321 /**
1322  * look for mention tags and setup a second delivery chain for forum/community posts if appropriate
1323  * @param int $uid
1324  * @param int $item_id
1325  * @return bool true if item was deleted, else false
1326  */
1327 function tag_deliver($uid, $item_id) {
1328
1329         $a = get_app();
1330
1331         $mention = false;
1332
1333         $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
1334                 intval($uid)
1335         );
1336
1337         if (! dbm::is_result($u)) {
1338                 return;
1339         }
1340
1341         $community_page = (($u[0]['page-flags'] == PAGE_COMMUNITY) ? true : false);
1342         $prvgroup = (($u[0]['page-flags'] == PAGE_PRVGROUP) ? true : false);
1343
1344
1345         $i = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
1346                 intval($item_id),
1347                 intval($uid)
1348         );
1349         if (! dbm::is_result($i)) {
1350                 return;
1351         }
1352
1353         $item = $i[0];
1354
1355         $link = normalise_link(App::get_baseurl() . '/profile/' . $u[0]['nickname']);
1356
1357         /*
1358          * Diaspora uses their own hardwired link URL in @-tags
1359          * instead of the one we supply with webfinger
1360          */
1361         $dlink = normalise_link(App::get_baseurl() . '/u/' . $u[0]['nickname']);
1362
1363         $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
1364         if ($cnt) {
1365                 foreach ($matches as $mtch) {
1366                         if (link_compare($link, $mtch[1]) || link_compare($dlink, $mtch[1])) {
1367                                 $mention = true;
1368                                 logger('tag_deliver: mention found: ' . $mtch[2]);
1369                         }
1370                 }
1371         }
1372
1373         if (! $mention) {
1374                 if (($community_page || $prvgroup) &&
1375                           (!$item['wall']) && (!$item['origin']) && ($item['id'] == $item['parent'])) {
1376                         // mmh.. no mention.. community page or private group... no wall.. no origin.. top-post (not a comment)
1377                         // delete it!
1378                         logger("tag_deliver: no-mention top-level post to communuty or private group. delete.");
1379                         dba::delete('item', array('id' => $item_id));
1380                         return true;
1381                 }
1382                 return;
1383         }
1384
1385         $arr = array('item' => $item, 'user' => $u[0], 'contact' => $r[0]);
1386
1387         call_hooks('tagged', $arr);
1388
1389         if ((! $community_page) && (! $prvgroup)) {
1390                 return;
1391         }
1392
1393         /*
1394          * tgroup delivery - setup a second delivery chain
1395          * prevent delivery looping - only proceed
1396          * if the message originated elsewhere and is a top-level post
1397          */
1398         if (($item['wall']) || ($item['origin']) || ($item['id'] != $item['parent'])) {
1399                 return;
1400         }
1401
1402         // now change this copy of the post to a forum head message and deliver to all the tgroup members
1403         $c = q("SELECT `name`, `url`, `thumb` FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1404                 intval($u[0]['uid'])
1405         );
1406         if (! dbm::is_result($c)) {
1407                 return;
1408         }
1409
1410         // also reset all the privacy bits to the forum default permissions
1411
1412         $private = ($u[0]['allow_cid'] || $u[0]['allow_gid'] || $u[0]['deny_cid'] || $u[0]['deny_gid']) ? 1 : 0;
1413
1414         $forum_mode = (($prvgroup) ? 2 : 1);
1415
1416         q("UPDATE `item` SET `wall` = 1, `origin` = 1, `forum_mode` = %d, `owner-name` = '%s', `owner-link` = '%s', `owner-avatar` = '%s',
1417                 `private` = %d, `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'  WHERE `id` = %d",
1418                 intval($forum_mode),
1419                 dbesc($c[0]['name']),
1420                 dbesc($c[0]['url']),
1421                 dbesc($c[0]['thumb']),
1422                 intval($private),
1423                 dbesc($u[0]['allow_cid']),
1424                 dbesc($u[0]['allow_gid']),
1425                 dbesc($u[0]['deny_cid']),
1426                 dbesc($u[0]['deny_gid']),
1427                 intval($item_id)
1428         );
1429         update_thread($item_id);
1430
1431         proc_run(array('priority' => PRIORITY_HIGH, 'dont_fork' => true), 'include/notifier.php', 'tgroup', $item_id);
1432
1433 }
1434
1435
1436
1437 function tgroup_check($uid, $item) {
1438
1439         $mention = false;
1440
1441         // check that the message originated elsewhere and is a top-level post
1442
1443         if (($item['wall']) || ($item['origin']) || ($item['uri'] != $item['parent-uri'])) {
1444                 return false;
1445         }
1446
1447         /// @TODO Encapsulate this or find it encapsulated and replace all occurrances
1448         $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
1449                 intval($uid)
1450         );
1451         if (! dbm::is_result($u)) {
1452                 return false;
1453         }
1454
1455         $community_page = (($u[0]['page-flags'] == PAGE_COMMUNITY) ? true : false);
1456         $prvgroup = (($u[0]['page-flags'] == PAGE_PRVGROUP) ? true : false);
1457
1458         $link = normalise_link(App::get_baseurl() . '/profile/' . $u[0]['nickname']);
1459
1460         /*
1461          * Diaspora uses their own hardwired link URL in @-tags
1462          * instead of the one we supply with webfinger
1463          */
1464         $dlink = normalise_link(App::get_baseurl() . '/u/' . $u[0]['nickname']);
1465
1466         $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
1467         if ($cnt) {
1468                 foreach ($matches as $mtch) {
1469                         if (link_compare($link, $mtch[1]) || link_compare($dlink, $mtch[1])) {
1470                                 $mention = true;
1471                                 logger('tgroup_check: mention found: ' . $mtch[2]);
1472                         }
1473                 }
1474         }
1475
1476         if (! $mention) {
1477                 return false;
1478         }
1479
1480         /// @TODO Combine both return statements into one
1481         return (($community_page) || ($prvgroup));
1482 }
1483
1484 /**
1485  * This function returns true if $update has an edited timestamp newer
1486  * than $existing, i.e. $update contains new data which should override
1487  * what's already there.  If there is no timestamp yet, the update is
1488  * assumed to be newer.  If the update has no timestamp, the existing
1489  * item is assumed to be up-to-date.  If the timestamps are equal it
1490  * assumes the update has been seen before and should be ignored.
1491  *
1492  * @todo fix type-hints (both array)
1493  */
1494 function edited_timestamp_is_newer ($existing, $update) {
1495         if (!x($existing, 'edited') || !$existing['edited']) {
1496                 return true;
1497         }
1498         if (!x($update, 'edited') || !$update['edited']) {
1499                 return false;
1500         }
1501
1502         $existing_edited = datetime_convert('UTC', 'UTC', $existing['edited']);
1503         $update_edited = datetime_convert('UTC', 'UTC', $update['edited']);
1504         return (strcmp($existing_edited, $update_edited) < 0);
1505 }
1506
1507 /**
1508  *
1509  * consume_feed - process atom feed and update anything/everything we might need to update
1510  *
1511  * $xml = the (atom) feed to consume - RSS isn't as fully supported but may work for simple feeds.
1512  *
1513  * $importer = the contact_record (joined to user_record) of the local user who owns this relationship.
1514  *             It is this person's stuff that is going to be updated.
1515  * $contact =  the person who is sending us stuff. If not set, we MAY be processing a "follow" activity
1516  *             from an external network and MAY create an appropriate contact record. Otherwise, we MUST
1517  *             have a contact record.
1518  * $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or
1519  *        might not) try and subscribe to it.
1520  * $datedir sorts in reverse order
1521  * $pass - by default ($pass = 0) we cannot guarantee that a parent item has been
1522  *      imported prior to its children being seen in the stream unless we are certain
1523  *      of how the feed is arranged/ordered.
1524  * With $pass = 1, we only pull parent items out of the stream.
1525  * With $pass = 2, we only pull children (comments/likes).
1526  *
1527  * So running this twice, first with pass 1 and then with pass 2 will do the right
1528  * thing regardless of feed ordering. This won't be adequate in a fully-threaded
1529  * model where comments can have sub-threads. That would require some massive sorting
1530  * to get all the feed items into a mostly linear ordering, and might still require
1531  * recursion.
1532  *
1533  * @todo find proper type-hints
1534  */
1535 function consume_feed($xml, $importer, &$contact, &$hub, $datedir = 0, $pass = 0) {
1536         if ($contact['network'] === NETWORK_OSTATUS) {
1537                 if ($pass < 2) {
1538                         // Test - remove before flight
1539                         //$tempfile = tempnam(get_temppath(), "ostatus2");
1540                         //file_put_contents($tempfile, $xml);
1541                         logger("Consume OStatus messages ", LOGGER_DEBUG);
1542                         ostatus::import($xml, $importer, $contact, $hub);
1543                 }
1544                 return;
1545         }
1546
1547         if ($contact['network'] === NETWORK_FEED) {
1548                 if ($pass < 2) {
1549                         logger("Consume feeds", LOGGER_DEBUG);
1550                         feed_import($xml, $importer, $contact, $hub);
1551                 }
1552                 return;
1553         }
1554
1555         if ($contact['network'] === NETWORK_DFRN) {
1556                 logger("Consume DFRN messages", LOGGER_DEBUG);
1557
1558                 $r = q("SELECT `contact`.*, `contact`.`uid` AS `importer_uid`,
1559                                         `contact`.`pubkey` AS `cpubkey`,
1560                                         `contact`.`prvkey` AS `cprvkey`,
1561                                         `contact`.`thumb` AS `thumb`,
1562                                         `contact`.`url` as `url`,
1563                                         `contact`.`name` as `senderName`,
1564                                         `user`.*
1565                         FROM `contact`
1566                         LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
1567                         WHERE `contact`.`id` = %d AND `user`.`uid` = %d",
1568                         dbesc($contact["id"]), dbesc($importer["uid"])
1569                 );
1570                 if (dbm::is_result($r)) {
1571                         logger("Now import the DFRN feed");
1572                         dfrn::import($xml, $r[0], true);
1573                         return;
1574                 }
1575         }
1576 }
1577
1578 /// @TODO type-hint is array
1579 function item_is_remote_self($contact, &$datarray) {
1580         $a = get_app();
1581
1582         if (!$contact['remote_self']) {
1583                 return false;
1584         }
1585
1586         // Prevent the forwarding of posts that are forwarded
1587         if ($datarray["extid"] == NETWORK_DFRN) {
1588                 return false;
1589         }
1590
1591         // Prevent to forward already forwarded posts
1592         if ($datarray["app"] == $a->get_hostname()) {
1593                 return false;
1594         }
1595
1596         // Only forward posts
1597         if ($datarray["verb"] != ACTIVITY_POST) {
1598                 return false;
1599         }
1600
1601         if (($contact['network'] != NETWORK_FEED) && $datarray['private']) {
1602                 return false;
1603         }
1604
1605         $datarray2 = $datarray;
1606         logger('remote-self start - Contact '.$contact['url'].' - '.$contact['remote_self'].' Item '.print_r($datarray, true), LOGGER_DEBUG);
1607         if ($contact['remote_self'] == 2) {
1608                 $r = q("SELECT `id`,`url`,`name`,`thumb` FROM `contact` WHERE `uid` = %d AND `self`",
1609                         intval($contact['uid']));
1610                 if (dbm::is_result($r)) {
1611                         $datarray['contact-id'] = $r[0]["id"];
1612
1613                         $datarray['owner-name'] = $r[0]["name"];
1614                         $datarray['owner-link'] = $r[0]["url"];
1615                         $datarray['owner-avatar'] = $r[0]["thumb"];
1616
1617                         $datarray['author-name']   = $datarray['owner-name'];
1618                         $datarray['author-link']   = $datarray['owner-link'];
1619                         $datarray['author-avatar'] = $datarray['owner-avatar'];
1620
1621                         unset($datarray['created']);
1622                         unset($datarray['edited']);
1623                 }
1624
1625                 if ($contact['network'] != NETWORK_FEED) {
1626                         $datarray["guid"] = get_guid(32);
1627                         unset($datarray["plink"]);
1628                         $datarray["uri"] = item_new_uri($a->get_hostname(), $contact['uid'], $datarray["guid"]);
1629                         $datarray["parent-uri"] = $datarray["uri"];
1630                         $datarray["extid"] = $contact['network'];
1631                         $urlpart = parse_url($datarray2['author-link']);
1632                         $datarray["app"] = $urlpart["host"];
1633                 } else {
1634                         $datarray['private'] = 0;
1635                 }
1636         }
1637
1638         if ($contact['network'] != NETWORK_FEED) {
1639                 // Store the original post
1640                 $r = item_store($datarray2, false, false);
1641                 logger('remote-self post original item - Contact '.$contact['url'].' return '.$r.' Item '.print_r($datarray2, true), LOGGER_DEBUG);
1642         } else {
1643                 $datarray["app"] = "Feed";
1644         }
1645
1646         return true;
1647 }
1648
1649 /// @TODO find proper type-hints
1650 function new_follower($importer, $contact, $datarray, $item, $sharing = false) {
1651         $url = notags(trim($datarray['author-link']));
1652         $name = notags(trim($datarray['author-name']));
1653         $photo = notags(trim($datarray['author-avatar']));
1654
1655         if (is_object($item)) {
1656                 $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor');
1657                 if ($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data']) {
1658                         $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'];
1659                 }
1660         } else {
1661                 $nick = $item;
1662         }
1663
1664         if (is_array($contact)) {
1665                 if (($contact['network'] == NETWORK_OSTATUS && $contact['rel'] == CONTACT_IS_SHARING)
1666                         || ($sharing && $contact['rel'] == CONTACT_IS_FOLLOWER)) {
1667                         $r = q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d",
1668                                 intval(CONTACT_IS_FRIEND),
1669                                 intval($contact['id']),
1670                                 intval($importer['uid'])
1671                         );
1672                 }
1673                 // send email notification to owner?
1674         } else {
1675
1676                 // create contact record
1677
1678                 $r = q("INSERT INTO `contact` (`uid`, `created`, `url`, `nurl`, `name`, `nick`, `photo`, `network`, `rel`,
1679                         `blocked`, `readonly`, `pending`, `writable`)
1680                         VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, 1)",
1681                         intval($importer['uid']),
1682                         dbesc(datetime_convert()),
1683                         dbesc($url),
1684                         dbesc(normalise_link($url)),
1685                         dbesc($name),
1686                         dbesc($nick),
1687                         dbesc($photo),
1688                         dbesc(($sharing) ? NETWORK_ZOT : NETWORK_OSTATUS),
1689                         intval(($sharing) ? CONTACT_IS_SHARING : CONTACT_IS_FOLLOWER)
1690                 );
1691                 $r = q("SELECT `id`, `network` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 LIMIT 1",
1692                                 intval($importer['uid']),
1693                                 dbesc($url)
1694                 );
1695                 if (dbm::is_result($r)) {
1696                         $contact_record = $r[0];
1697                         update_contact_avatar($photo, $importer["uid"], $contact_record["id"], true);
1698                 }
1699
1700                 /// @TODO Encapsulate this into a function/method
1701                 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
1702                         intval($importer['uid'])
1703                 );
1704
1705                 if (dbm::is_result($r) && !in_array($r[0]['page-flags'], array(PAGE_SOAPBOX, PAGE_FREELOVE))) {
1706
1707                         // create notification
1708                         $hash = random_string();
1709
1710                         if (is_array($contact_record)) {
1711                                 $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `hash`, `datetime`)
1712                                         VALUES ( %d, %d, 0, 0, '%s', '%s' )",
1713                                         intval($importer['uid']),
1714                                         intval($contact_record['id']),
1715                                         dbesc($hash),
1716                                         dbesc(datetime_convert())
1717                                 );
1718                         }
1719
1720                         $def_gid = get_default_group($importer['uid'], $contact_record["network"]);
1721
1722                         if (intval($def_gid)) {
1723                                 group_add_member($importer['uid'], '', $contact_record['id'], $def_gid);
1724                         }
1725
1726                         if (($r[0]['notify-flags'] & NOTIFY_INTRO) &&
1727                                 in_array($r[0]['page-flags'], array(PAGE_NORMAL))) {
1728
1729                                 notification(array(
1730                                         'type'         => NOTIFY_INTRO,
1731                                         'notify_flags' => $r[0]['notify-flags'],
1732                                         'language'     => $r[0]['language'],
1733                                         'to_name'      => $r[0]['username'],
1734                                         'to_email'     => $r[0]['email'],
1735                                         'uid'          => $r[0]['uid'],
1736                                         'link'             => App::get_baseurl() . '/notifications/intro',
1737                                         'source_name'  => ((strlen(stripslashes($contact_record['name']))) ? stripslashes($contact_record['name']) : t('[Name Withheld]')),
1738                                         'source_link'  => $contact_record['url'],
1739                                         'source_photo' => $contact_record['photo'],
1740                                         'verb'         => ($sharing ? ACTIVITY_FRIEND : ACTIVITY_FOLLOW),
1741                                         'otype'        => 'intro'
1742                                 ));
1743
1744                         }
1745                 } elseif (dbm::is_result($r) && in_array($r[0]['page-flags'], array(PAGE_SOAPBOX, PAGE_FREELOVE))) {
1746                         $r = q("UPDATE `contact` SET `pending` = 0 WHERE `uid` = %d AND `url` = '%s' AND `pending` LIMIT 1",
1747                                         intval($importer['uid']),
1748                                         dbesc($url)
1749                         );
1750                 }
1751
1752         }
1753 }
1754
1755 function lose_follower($importer, $contact, array $datarray = array(), $item = "") {
1756
1757         if (($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_SHARING)) {
1758                 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d",
1759                         intval(CONTACT_IS_SHARING),
1760                         intval($contact['id'])
1761                 );
1762         } else {
1763                 contact_remove($contact['id']);
1764         }
1765 }
1766
1767 function lose_sharer($importer, $contact, array $datarray = array(), $item = "") {
1768
1769         if (($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_FOLLOWER)) {
1770                 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d",
1771                         intval(CONTACT_IS_FOLLOWER),
1772                         intval($contact['id'])
1773                 );
1774         } else {
1775                 contact_remove($contact['id']);
1776         }
1777 }
1778
1779 function subscribe_to_hub($url, $importer, $contact, $hubmode = 'subscribe') {
1780
1781         $a = get_app();
1782
1783         if (is_array($importer)) {
1784                 $r = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1",
1785                         intval($importer['uid'])
1786                 );
1787         }
1788
1789         /*
1790          * Diaspora has different message-ids in feeds than they do
1791          * through the direct Diaspora protocol. If we try and use
1792          * the feed, we'll get duplicates. So don't.
1793          */
1794         if ((! dbm::is_result($r)) || $contact['network'] === NETWORK_DIASPORA) {
1795                 return;
1796         }
1797
1798         $push_url = get_config('system','url') . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id'];
1799
1800         // Use a single verify token, even if multiple hubs
1801         $verify_token = ((strlen($contact['hub-verify'])) ? $contact['hub-verify'] : random_string());
1802
1803         $params= 'hub.mode=' . $hubmode . '&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
1804
1805         logger('subscribe_to_hub: ' . $hubmode . ' ' . $contact['name'] . ' to hub ' . $url . ' endpoint: '  . $push_url . ' with verifier ' . $verify_token);
1806
1807         if (!strlen($contact['hub-verify']) || ($contact['hub-verify'] != $verify_token)) {
1808                 $r = q("UPDATE `contact` SET `hub-verify` = '%s' WHERE `id` = %d",
1809                         dbesc($verify_token),
1810                         intval($contact['id'])
1811                 );
1812         }
1813
1814         post_url($url, $params);
1815
1816         logger('subscribe_to_hub: returns: ' . $a->get_curl_code(), LOGGER_DEBUG);
1817
1818         return;
1819
1820 }
1821
1822 function fix_private_photos($s, $uid, $item = null, $cid = 0) {
1823
1824         if (get_config('system','disable_embedded')) {
1825                 return $s;
1826         }
1827
1828         $a = get_app();
1829
1830         logger('fix_private_photos: check for photos', LOGGER_DEBUG);
1831         $site = substr(App::get_baseurl(),strpos(App::get_baseurl(),'://'));
1832
1833         $orig_body = $s;
1834         $new_body = '';
1835
1836         $img_start = strpos($orig_body, '[img');
1837         $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
1838         $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
1839         while ( ($img_st_close !== false) && ($img_len !== false) ) {
1840
1841                 $img_st_close++; // make it point to AFTER the closing bracket
1842                 $image = substr($orig_body, $img_start + $img_st_close, $img_len);
1843
1844                 logger('fix_private_photos: found photo ' . $image, LOGGER_DEBUG);
1845
1846
1847                 if (stristr($image , $site . '/photo/')) {
1848                         // Only embed locally hosted photos
1849                         $replace = false;
1850                         $i = basename($image);
1851                         $i = str_replace(array('.jpg', '.png', '.gif'),array('', '',''), $i);
1852                         $x = strpos($i, '-');
1853
1854                         if ($x) {
1855                                 $res = substr($i, $x + 1);
1856                                 $i = substr($i, 0, $x);
1857                                 $r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `scale` = %d AND `uid` = %d",
1858                                         dbesc($i),
1859                                         intval($res),
1860                                         intval($uid)
1861
1862                                 );
1863                                 if (dbm::is_result($r)) {
1864                                         /*
1865                                          * Check to see if we should replace this photo link with an embedded image
1866                                          * 1. No need to do so if the photo is public
1867                                          * 2. If there's a contact-id provided, see if they're in the access list
1868                                          *    for the photo. If so, embed it.
1869                                          * 3. Otherwise, if we have an item, see if the item permissions match the photo
1870                                          *    permissions, regardless of order but first check to see if they're an exact
1871                                          *    match to save some processing overhead.
1872                                          */
1873                                         if (has_permissions($r[0])) {
1874                                                 if ($cid) {
1875                                                         $recips = enumerate_permissions($r[0]);
1876                                                         if (in_array($cid, $recips)) {
1877                                                                 $replace = true;
1878                                                         }
1879                                                 } elseif ($item) {
1880                                                         if (compare_permissions($item, $r[0])) {
1881                                                                 $replace = true;
1882                                                         }
1883                                                 }
1884                                         }
1885                                         if ($replace) {
1886                                                 $data = $r[0]['data'];
1887                                                 $type = $r[0]['type'];
1888
1889                                                 // If a custom width and height were specified, apply before embedding
1890                                                 if (preg_match("/\[img\=([0-9]*)x([0-9]*)\]/is", substr($orig_body, $img_start, $img_st_close), $match)) {
1891                                                         logger('fix_private_photos: scaling photo', LOGGER_DEBUG);
1892
1893                                                         $width = intval($match[1]);
1894                                                         $height = intval($match[2]);
1895
1896                                                         $ph = new Photo($data, $type);
1897                                                         if ($ph->is_valid()) {
1898                                                                 $ph->scaleImage(max($width, $height));
1899                                                                 $data = $ph->imageString();
1900                                                                 $type = $ph->getType();
1901                                                         }
1902                                                 }
1903
1904                                                 logger('fix_private_photos: replacing photo', LOGGER_DEBUG);
1905                                                 $image = 'data:' . $type . ';base64,' . base64_encode($data);
1906                                                 logger('fix_private_photos: replaced: ' . $image, LOGGER_DATA);
1907                                         }
1908                                 }
1909                         }
1910                 }
1911
1912                 $new_body = $new_body . substr($orig_body, 0, $img_start + $img_st_close) . $image . '[/img]';
1913                 $orig_body = substr($orig_body, $img_start + $img_st_close + $img_len + strlen('[/img]'));
1914                 if ($orig_body === false) {
1915                         $orig_body = '';
1916                 }
1917
1918                 $img_start = strpos($orig_body, '[img');
1919                 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
1920                 $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
1921         }
1922
1923         $new_body = $new_body . $orig_body;
1924
1925         return $new_body;
1926 }
1927
1928 /// @TODO type-hint is array
1929 function has_permissions($obj) {
1930         return (
1931                 (
1932                         x($obj, 'allow_cid')
1933                 ) || (
1934                         x($obj, 'allow_gid')
1935                 ) || (
1936                         x($obj, 'deny_cid')
1937                 ) || (
1938                         x($obj, 'deny_gid')
1939                 )
1940         );
1941 }
1942
1943 /// @TODO type-hint is array
1944 function compare_permissions($obj1, $obj2) {
1945         // first part is easy. Check that these are exactly the same.
1946         if (($obj1['allow_cid'] == $obj2['allow_cid'])
1947                 && ($obj1['allow_gid'] == $obj2['allow_gid'])
1948                 && ($obj1['deny_cid'] == $obj2['deny_cid'])
1949                 && ($obj1['deny_gid'] == $obj2['deny_gid'])) {
1950                 return true;
1951         }
1952
1953         // This is harder. Parse all the permissions and compare the resulting set.
1954         $recipients1 = enumerate_permissions($obj1);
1955         $recipients2 = enumerate_permissions($obj2);
1956         sort($recipients1);
1957         sort($recipients2);
1958
1959         /// @TODO Comparison of arrays, maybe use array_diff_assoc() here?
1960         return ($recipients1 == $recipients2);
1961 }
1962
1963 // returns an array of contact-ids that are allowed to see this object
1964 /// @TODO type-hint is array
1965 function enumerate_permissions($obj) {
1966         $allow_people = expand_acl($obj['allow_cid']);
1967         $allow_groups = expand_groups(expand_acl($obj['allow_gid']));
1968         $deny_people  = expand_acl($obj['deny_cid']);
1969         $deny_groups  = expand_groups(expand_acl($obj['deny_gid']));
1970         $recipients   = array_unique(array_merge($allow_people, $allow_groups));
1971         $deny         = array_unique(array_merge($deny_people, $deny_groups));
1972         $recipients   = array_diff($recipients, $deny);
1973         return $recipients;
1974 }
1975
1976 function item_getfeedtags($item) {
1977         $ret = array();
1978         $matches = false;
1979         $cnt = preg_match_all('|\#\[url\=(.*?)\](.*?)\[\/url\]|', $item['tag'], $matches);
1980         if ($cnt) {
1981                 for ($x = 0; $x < $cnt; $x ++) {
1982                         if ($matches[1][$x]) {
1983                                 $ret[$matches[2][$x]] = array('#', $matches[1][$x], $matches[2][$x]);
1984                         }
1985                 }
1986         }
1987         $matches = false;
1988         $cnt = preg_match_all('|\@\[url\=(.*?)\](.*?)\[\/url\]|', $item['tag'], $matches);
1989         if ($cnt) {
1990                 for ($x = 0; $x < $cnt; $x ++) {
1991                         if ($matches[1][$x]) {
1992                                 $ret[] = array('@', $matches[1][$x], $matches[2][$x]);
1993                         }
1994                 }
1995         }
1996         return $ret;
1997 }
1998
1999 function item_expire($uid, $days, $network = "", $force = false) {
2000
2001         if ((! $uid) || ($days < 1)) {
2002                 return;
2003         }
2004
2005         /*
2006          * $expire_network_only = save your own wall posts
2007          * and just expire conversations started by others
2008          */
2009         $expire_network_only = get_pconfig($uid,'expire', 'network_only');
2010         $sql_extra = ((intval($expire_network_only)) ? " AND wall = 0 " : "");
2011
2012         if ($network != "") {
2013                 $sql_extra .= sprintf(" AND network = '%s' ", dbesc($network));
2014
2015                 /*
2016                  * There is an index "uid_network_received" but not "uid_network_created"
2017                  * This avoids the creation of another index just for one purpose.
2018                  * And it doesn't really matter wether to look at "received" or "created"
2019                  */
2020                 $range = "AND `received` < UTC_TIMESTAMP() - INTERVAL %d DAY ";
2021         } else {
2022                 $range = "AND `created` < UTC_TIMESTAMP() - INTERVAL %d DAY ";
2023         }
2024
2025         $r = q("SELECT `file`, `resource-id`, `starred`, `type`, `id` FROM `item`
2026                 WHERE `uid` = %d $range
2027                 AND `id` = `parent`
2028                 $sql_extra
2029                 AND `deleted` = 0",
2030                 intval($uid),
2031                 intval($days)
2032         );
2033
2034         if (! dbm::is_result($r)) {
2035                 return;
2036         }
2037
2038         $expire_items = get_pconfig($uid, 'expire', 'items');
2039         $expire_items = (($expire_items === false) ? 1 : intval($expire_items)); // default if not set: 1
2040
2041         // Forcing expiring of items - but not notes and marked items
2042         if ($force) {
2043                 $expire_items = true;
2044         }
2045
2046         $expire_notes = get_pconfig($uid, 'expire', 'notes');
2047         $expire_notes = (($expire_notes === false) ? 1 : intval($expire_notes)); // default if not set: 1
2048
2049         $expire_starred = get_pconfig($uid, 'expire', 'starred');
2050         $expire_starred = (($expire_starred === false) ? 1 : intval($expire_starred)); // default if not set: 1
2051
2052         $expire_photos = get_pconfig($uid, 'expire', 'photos');
2053         $expire_photos = (($expire_photos === false) ? 0 : intval($expire_photos)); // default if not set: 0
2054
2055         logger('User '.$uid.': expire: # items=' . count($r). "; expire items: $expire_items, expire notes: $expire_notes, expire starred: $expire_starred, expire photos: $expire_photos");
2056
2057         foreach ($r as $item) {
2058
2059                 // don't expire filed items
2060
2061                 if (strpos($item['file'],'[') !== false) {
2062                         continue;
2063                 }
2064
2065                 // Only expire posts, not photos and photo comments
2066
2067                 if ($expire_photos == 0 && strlen($item['resource-id'])) {
2068                         continue;
2069                 } elseif ($expire_starred == 0 && intval($item['starred'])) {
2070                         continue;
2071                 } elseif ($expire_notes == 0 && $item['type'] == 'note') {
2072                         continue;
2073                 } elseif ($expire_items == 0 && $item['type'] != 'note') {
2074                         continue;
2075                 }
2076
2077                 drop_item($item['id'], false);
2078         }
2079
2080         proc_run(array('priority' => PRIORITY_LOW, 'dont_fork' => true), "include/notifier.php", "expire", $uid);
2081
2082 }
2083
2084 /// @TODO type-hint is array
2085 function drop_items($items) {
2086         $uid = 0;
2087
2088         if (! local_user() && ! remote_user()) {
2089                 return;
2090         }
2091
2092         if (count($items)) {
2093                 foreach ($items as $item) {
2094                         $owner = drop_item($item,false);
2095                         if ($owner && ! $uid)
2096                                 $uid = $owner;
2097                 }
2098         }
2099
2100         // multiple threads may have been deleted, send an expire notification
2101
2102         if ($uid) {
2103                 proc_run(array('priority' => PRIORITY_LOW, 'dont_fork' => true), "include/notifier.php", "expire", $uid);
2104         }
2105 }
2106
2107
2108 function drop_item($id, $interactive = true) {
2109
2110         $a = get_app();
2111
2112         // locate item to be deleted
2113
2114         $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
2115                 intval($id)
2116         );
2117
2118         if (! dbm::is_result($r)) {
2119                 if (! $interactive) {
2120                         return 0;
2121                 }
2122                 notice( t('Item not found.') . EOL);
2123                 goaway(App::get_baseurl() . '/' . $_SESSION['return_url']);
2124         }
2125
2126         $item = $r[0];
2127
2128         if ($item['deleted']) {
2129                 return 0;
2130         }
2131
2132         $owner = $item['uid'];
2133
2134         $contact_id = 0;
2135
2136         // check if logged in user is either the author or owner of this item
2137
2138         if (is_array($_SESSION['remote'])) {
2139                 foreach ($_SESSION['remote'] as $visitor) {
2140                         if ($visitor['uid'] == $item['uid'] && $visitor['cid'] == $item['contact-id']) {
2141                                 $contact_id = $visitor['cid'];
2142                                 break;
2143                         }
2144                 }
2145         }
2146
2147
2148         if ((local_user() == $item['uid']) || ($contact_id) || (! $interactive)) {
2149
2150                 // Check if we should do HTML-based delete confirmation
2151                 if ($_REQUEST['confirm']) {
2152                         // <form> can't take arguments in its "action" parameter
2153                         // so add any arguments as hidden inputs
2154                         $query = explode_querystring($a->query_string);
2155                         $inputs = array();
2156                         foreach ($query['args'] as $arg) {
2157                                 if (strpos($arg, 'confirm=') === false) {
2158                                         $arg_parts = explode('=', $arg);
2159                                         $inputs[] = array('name' => $arg_parts[0], 'value' => $arg_parts[1]);
2160                                 }
2161                         }
2162
2163                         return replace_macros(get_markup_template('confirm.tpl'), array(
2164                                 '$method' => 'get',
2165                                 '$message' => t('Do you really want to delete this item?'),
2166                                 '$extra_inputs' => $inputs,
2167                                 '$confirm' => t('Yes'),
2168                                 '$confirm_url' => $query['base'],
2169                                 '$confirm_name' => 'confirmed',
2170                                 '$cancel' => t('Cancel'),
2171                         ));
2172                 }
2173                 // Now check how the user responded to the confirmation query
2174                 if ($_REQUEST['canceled']) {
2175                         goaway(App::get_baseurl() . '/' . $_SESSION['return_url']);
2176                 }
2177
2178                 logger('delete item: ' . $item['id'], LOGGER_DEBUG);
2179                 // delete the item
2180
2181                 $r = q("UPDATE `item` SET `deleted` = 1, `title` = '', `body` = '', `edited` = '%s', `changed` = '%s' WHERE `id` = %d",
2182                         dbesc(datetime_convert()),
2183                         dbesc(datetime_convert()),
2184                         intval($item['id'])
2185                 );
2186                 create_tags_from_item($item['id']);
2187                 create_files_from_item($item['id']);
2188                 delete_thread($item['id'], $item['parent-uri']);
2189
2190                 // clean up categories and tags so they don't end up as orphans
2191
2192                 $matches = false;
2193                 $cnt = preg_match_all('/<(.*?)>/', $item['file'], $matches, PREG_SET_ORDER);
2194                 if ($cnt) {
2195                         foreach ($matches as $mtch) {
2196                                 file_tag_unsave_file($item['uid'], $item['id'], $mtch[1],true);
2197                         }
2198                 }
2199
2200                 $matches = false;
2201
2202                 $cnt = preg_match_all('/\[(.*?)\]/', $item['file'], $matches, PREG_SET_ORDER);
2203                 if ($cnt) {
2204                         foreach ($matches as $mtch) {
2205                                 file_tag_unsave_file($item['uid'], $item['id'], $mtch[1],false);
2206                         }
2207                 }
2208
2209                 /*
2210                  * If item is a link to a photo resource, nuke all the associated photos
2211                  * (visitors will not have photo resources)
2212                  * This only applies to photos uploaded from the photos page. Photos inserted into a post do not
2213                  * generate a resource-id and therefore aren't intimately linked to the item.
2214                  */
2215                 if (strlen($item['resource-id'])) {
2216                         q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d ",
2217                                 dbesc($item['resource-id']),
2218                                 intval($item['uid'])
2219                         );
2220                         // ignore the result
2221                 }
2222
2223                 // If item is a link to an event, nuke the event record.
2224                 if (intval($item['event-id'])) {
2225                         q("DELETE FROM `event` WHERE `id` = %d AND `uid` = %d",
2226                                 intval($item['event-id']),
2227                                 intval($item['uid'])
2228                         );
2229                         // ignore the result
2230                 }
2231
2232                 // If item has attachments, drop them
2233                 foreach (explode(", ", $item['attach']) as $attach) {
2234                         preg_match("|attach/(\d+)|", $attach, $matches);
2235                         q("DELETE FROM `attach` WHERE `id` = %d AND `uid` = %d",
2236                                 intval($matches[1]),
2237                                 local_user()
2238                         );
2239                         // ignore the result
2240                 }
2241
2242                 // The new code splits the queries since the mysql optimizer really has bad problems with subqueries
2243
2244                 // Creating list of parents
2245                 $r = q("SELECT `id` FROM `item` WHERE `parent` = %d AND `uid` = %d",
2246                         intval($item['id']),
2247                         intval($item['uid'])
2248                 );
2249
2250                 $parentid = "";
2251
2252                 foreach ($r as $row) {
2253                         if ($parentid != "") {
2254                                 $parentid .= ", ";
2255                         }
2256
2257                         $parentid .= $row["id"];
2258                 }
2259
2260                 // Now delete them
2261                 if ($parentid != "") {
2262                         $r = q("DELETE FROM `item_id` WHERE `iid` IN (%s)", dbesc($parentid));
2263                         $r = q("DELETE FROM `sign` WHERE `iid` IN (%s)", dbesc($parentid));
2264                 }
2265
2266                 // If it's the parent of a comment thread, kill all the kids
2267                 if ($item['uri'] == $item['parent-uri']) {
2268                         $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s', `body` = '' , `title` = ''
2269                                 WHERE `parent-uri` = '%s' AND `uid` = %d ",
2270                                 dbesc(datetime_convert()),
2271                                 dbesc(datetime_convert()),
2272                                 dbesc($item['parent-uri']),
2273                                 intval($item['uid'])
2274                         );
2275                         create_tags_from_itemuri($item['parent-uri'], $item['uid']);
2276                         create_files_from_itemuri($item['parent-uri'], $item['uid']);
2277                         delete_thread_uri($item['parent-uri'], $item['uid']);
2278                         // ignore the result
2279                 } else {
2280                         // ensure that last-child is set in case the comment that had it just got wiped.
2281                         q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
2282                                 dbesc(datetime_convert()),
2283                                 dbesc($item['parent-uri']),
2284                                 intval($item['uid'])
2285                         );
2286                         // who is the last child now?
2287                         $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `uid` = %d ORDER BY `edited` DESC LIMIT 1",
2288                                 dbesc($item['parent-uri']),
2289                                 intval($item['uid'])
2290                         );
2291                         if (dbm::is_result($r)) {
2292                                 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d",
2293                                         intval($r[0]['id'])
2294                                 );
2295                         }
2296                 }
2297
2298                 // send the notification upstream/downstream
2299                 // The priority depends on how the deletion is done.
2300                 $drop_id = intval($item['id']);
2301                 $priority = ($interactive ? PRIORITY_HIGH : PRIORITY_LOW);
2302
2303                 proc_run(array('priority' => $priority, 'dont_fork' => true), "include/notifier.php", "drop", $drop_id);
2304
2305                 if (! $interactive) {
2306                         return $owner;
2307                 }
2308                 goaway(App::get_baseurl() . '/' . $_SESSION['return_url']);
2309                 //NOTREACHED
2310         } else {
2311                 if (! $interactive) {
2312                         return 0;
2313                 }
2314                 notice( t('Permission denied.') . EOL);
2315                 goaway(App::get_baseurl() . '/' . $_SESSION['return_url']);
2316                 //NOTREACHED
2317         }
2318
2319 }
2320
2321 /// @todo: This query seems to be really slow
2322 function first_post_date($uid, $wall = false) {
2323         $r = q("SELECT `id`, `created` FROM `item`
2324                 WHERE `uid` = %d AND `wall` = %d AND `deleted` = 0 AND `visible` = 1 AND `moderated` = 0
2325                 AND `id` = `parent`
2326                 ORDER BY `created` ASC LIMIT 1",
2327                 intval($uid),
2328                 intval($wall ? 1 : 0)
2329         );
2330         if (dbm::is_result($r)) {
2331                 // logger('first_post_date: ' . $r[0]['id'] . ' ' . $r[0]['created'], LOGGER_DATA);
2332                 return substr(datetime_convert('',date_default_timezone_get(), $r[0]['created']),0,10);
2333         }
2334         return false;
2335 }
2336
2337 /* modified posted_dates() {below} to arrange the list in years */
2338 function list_post_dates($uid, $wall) {
2339         $dnow = datetime_convert('',date_default_timezone_get(), 'now','Y-m-d');
2340
2341         $dthen = first_post_date($uid, $wall);
2342         if (! $dthen) {
2343                 return array();
2344         }
2345
2346         // Set the start and end date to the beginning of the month
2347         $dnow = substr($dnow, 0, 8) . '01';
2348         $dthen = substr($dthen, 0, 8) . '01';
2349
2350         $ret = array();
2351
2352         /*
2353          * Starting with the current month, get the first and last days of every
2354          * month down to and including the month of the first post
2355          */
2356         while (substr($dnow, 0, 7) >= substr($dthen, 0, 7)) {
2357                 $dyear = intval(substr($dnow, 0, 4));
2358                 $dstart = substr($dnow, 0, 8) . '01';
2359                 $dend = substr($dnow, 0, 8) . get_dim(intval($dnow), intval(substr($dnow, 5)));
2360                 $start_month = datetime_convert('', '', $dstart, 'Y-m-d');
2361                 $end_month = datetime_convert('', '', $dend, 'Y-m-d');
2362                 $str = day_translate(datetime_convert('', '', $dnow, 'F'));
2363                 if (!$ret[$dyear]) {
2364                         $ret[$dyear] = array();
2365                 }
2366                 $ret[$dyear][] = array($str, $end_month, $start_month);
2367                 $dnow = datetime_convert('', '', $dnow . ' -1 month', 'Y-m-d');
2368         }
2369         return $ret;
2370 }
2371
2372 function posted_dates($uid, $wall) {
2373         $dnow = datetime_convert('', date_default_timezone_get(), 'now', 'Y-m-d');
2374
2375         $dthen = first_post_date($uid, $wall);
2376         if (! $dthen) {
2377                 return array();
2378         }
2379
2380         // Set the start and end date to the beginning of the month
2381         $dnow = substr($dnow, 0, 8) . '01';
2382         $dthen = substr($dthen, 0, 8) . '01';
2383
2384         $ret = array();
2385         /*
2386          * Starting with the current month, get the first and last days of every
2387          * month down to and including the month of the first post
2388          */
2389         while (substr($dnow, 0, 7) >= substr($dthen, 0, 7)) {
2390                 $dstart = substr($dnow, 0, 8) . '01';
2391                 $dend = substr($dnow, 0, 8) . get_dim(intval($dnow), intval(substr($dnow, 5)));
2392                 $start_month = datetime_convert('', '', $dstart, 'Y-m-d');
2393                 $end_month = datetime_convert('', '', $dend, 'Y-m-d');
2394                 $str = day_translate(datetime_convert('', '', $dnow, 'F Y'));
2395                 $ret[] = array($str, $end_month, $start_month);
2396                 $dnow = datetime_convert('', '', $dnow . ' -1 month', 'Y-m-d');
2397         }
2398         return $ret;
2399 }
2400
2401
2402 function posted_date_widget($url, $uid, $wall) {
2403         $o = '';
2404
2405         if (! feature_enabled($uid, 'archives')) {
2406                 return $o;
2407         }
2408
2409         // For former Facebook folks that left because of "timeline"
2410         /*
2411          * @TODO old-lost code?
2412         if ($wall && intval(get_pconfig($uid, 'system', 'no_wall_archive_widget')))
2413                 return $o;
2414         */
2415
2416         $visible_years = get_pconfig($uid,'system','archive_visible_years');
2417         if (! $visible_years) {
2418                 $visible_years = 5;
2419         }
2420
2421         $ret = list_post_dates($uid, $wall);
2422
2423         if (! dbm::is_result($ret)) {
2424                 return $o;
2425         }
2426
2427         $cutoff_year = intval(datetime_convert('',date_default_timezone_get(), 'now', 'Y')) - $visible_years;
2428         $cutoff = ((array_key_exists($cutoff_year, $ret))? true : false);
2429
2430         $o = replace_macros(get_markup_template('posted_date_widget.tpl'),array(
2431                 '$title' => t('Archives'),
2432                 '$size' => $visible_years,
2433                 '$cutoff_year' => $cutoff_year,
2434                 '$cutoff' => $cutoff,
2435                 '$url' => $url,
2436                 '$dates' => $ret,
2437                 '$showmore' => t('show more')
2438
2439         ));
2440         return $o;
2441 }