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