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