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