]> git.mxchange.org Git - friendica.git/blob - include/items.php
Zot was never really supported, so it is now removed completely
[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         }
1169         // Now do the same for the system wide contacts with uid=0
1170         if (!$arr['private']) {
1171                 dba::update('contact', array('success_update' => $arr['received'], 'last-item' => $arr['received']),
1172                         array('id' => $arr['owner-id']));
1173
1174                 if ($arr['owner-id'] != $arr['author-id']) {
1175                         dba::update('contact', array('success_update' => $arr['received'], 'last-item' => $arr['received']),
1176                                 array('id' => $arr['author-id']));
1177                 }
1178         }
1179 }
1180
1181 function item_body_set_hashtags(&$item) {
1182
1183         $tags = get_tags($item["body"]);
1184
1185         // No hashtags?
1186         if (!count($tags)) {
1187                 return false;
1188         }
1189
1190         // This sorting is important when there are hashtags that are part of other hashtags
1191         // Otherwise there could be problems with hashtags like #test and #test2
1192         rsort($tags);
1193
1194         $a = get_app();
1195
1196         $URLSearchString = "^\[\]";
1197
1198         // All hashtags should point to the home server if "local_tags" is activated
1199         if (Config::get('system', 'local_tags')) {
1200                 $item["body"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1201                                 "#[url=".System::baseUrl()."/search?tag=$2]$2[/url]", $item["body"]);
1202
1203                 $item["tag"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1204                                 "#[url=".System::baseUrl()."/search?tag=$2]$2[/url]", $item["tag"]);
1205         }
1206
1207         // mask hashtags inside of url, bookmarks and attachments to avoid urls in urls
1208         $item["body"] = preg_replace_callback("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1209                 function ($match) {
1210                         return ("[url=" . str_replace("#", "&num;", $match[1]) . "]" . str_replace("#", "&num;", $match[2]) . "[/url]");
1211                 }, $item["body"]);
1212
1213         $item["body"] = preg_replace_callback("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism",
1214                 function ($match) {
1215                         return ("[bookmark=" . str_replace("#", "&num;", $match[1]) . "]" . str_replace("#", "&num;", $match[2]) . "[/bookmark]");
1216                 }, $item["body"]);
1217
1218         $item["body"] = preg_replace_callback("/\[attachment (.*)\](.*?)\[\/attachment\]/ism",
1219                 function ($match) {
1220                         return ("[attachment " . str_replace("#", "&num;", $match[1]) . "]" . $match[2] . "[/attachment]");
1221                 }, $item["body"]);
1222
1223         // Repair recursive urls
1224         $item["body"] = preg_replace("/&num;\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1225                         "&num;$2", $item["body"]);
1226
1227         foreach ($tags as $tag) {
1228                 if ((strpos($tag, '#') !== 0) || (strpos($tag, '[url='))) {
1229                         continue;
1230                 }
1231
1232                 $basetag = str_replace('_',' ',substr($tag,1));
1233
1234                 $newtag = '#[url=' . System::baseUrl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
1235
1236                 $item["body"] = str_replace($tag, $newtag, $item["body"]);
1237
1238                 if (!stristr($item["tag"], "/search?tag=" . $basetag . "]" . $basetag . "[/url]")) {
1239                         if (strlen($item["tag"])) {
1240                                 $item["tag"] = ','.$item["tag"];
1241                         }
1242                         $item["tag"] = $newtag.$item["tag"];
1243                 }
1244         }
1245
1246         // Convert back the masked hashtags
1247         $item["body"] = str_replace("&num;", "#", $item["body"]);
1248 }
1249
1250 function get_item_guid($id) {
1251         $r = q("SELECT `guid` FROM `item` WHERE `id` = %d LIMIT 1", intval($id));
1252         if (DBM::is_result($r)) {
1253                 return $r[0]["guid"];
1254         } else {
1255                 /// @TODO This else-block can be elimited again
1256                 return "";
1257         }
1258 }
1259
1260 function get_item_id($guid, $uid = 0) {
1261
1262         $nick = "";
1263         $id = 0;
1264
1265         if ($uid == 0) {
1266                 $uid == local_user();
1267         }
1268
1269         // Does the given user have this item?
1270         if ($uid) {
1271                 $r = q("SELECT `item`.`id`, `user`.`nickname` FROM `item` INNER JOIN `user` ON `user`.`uid` = `item`.`uid`
1272                         WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 AND `item`.`moderated` = 0
1273                                 AND `item`.`guid` = '%s' AND `item`.`uid` = %d", dbesc($guid), intval($uid));
1274                 if (DBM::is_result($r)) {
1275                         $id = $r[0]["id"];
1276                         $nick = $r[0]["nickname"];
1277                 }
1278         }
1279
1280         // Or is it anywhere on the server?
1281         if ($nick == "") {
1282                 $r = q("SELECT `item`.`id`, `user`.`nickname` FROM `item` INNER JOIN `user` ON `user`.`uid` = `item`.`uid`
1283                         WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 AND `item`.`moderated` = 0
1284                                 AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
1285                                 AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
1286                                 AND `item`.`private` = 0 AND `item`.`wall` = 1
1287                                 AND `item`.`guid` = '%s'", dbesc($guid));
1288                 if (DBM::is_result($r)) {
1289                         $id = $r[0]["id"];
1290                         $nick = $r[0]["nickname"];
1291                 }
1292         }
1293         return array("nick" => $nick, "id" => $id);
1294 }
1295
1296 // return - test
1297 function get_item_contact($item, $contacts) {
1298         if (! count($contacts) || (! is_array($item))) {
1299                 return false;
1300         }
1301         foreach ($contacts as $contact) {
1302                 if ($contact['id'] == $item['contact-id']) {
1303                         return $contact;
1304                         break; // NOTREACHED
1305                 }
1306         }
1307         return false;
1308 }
1309
1310 /**
1311  * look for mention tags and setup a second delivery chain for forum/community posts if appropriate
1312  * @param int $uid
1313  * @param int $item_id
1314  * @return bool true if item was deleted, else false
1315  */
1316 function tag_deliver($uid, $item_id) {
1317
1318         $a = get_app();
1319
1320         $mention = false;
1321
1322         $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
1323                 intval($uid)
1324         );
1325
1326         if (! DBM::is_result($u)) {
1327                 return;
1328         }
1329
1330         $community_page = (($u[0]['page-flags'] == PAGE_COMMUNITY) ? true : false);
1331         $prvgroup = (($u[0]['page-flags'] == PAGE_PRVGROUP) ? true : false);
1332
1333
1334         $i = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
1335                 intval($item_id),
1336                 intval($uid)
1337         );
1338         if (! DBM::is_result($i)) {
1339                 return;
1340         }
1341
1342         $item = $i[0];
1343
1344         $link = normalise_link(System::baseUrl() . '/profile/' . $u[0]['nickname']);
1345
1346         /*
1347          * Diaspora uses their own hardwired link URL in @-tags
1348          * instead of the one we supply with webfinger
1349          */
1350         $dlink = normalise_link(System::baseUrl() . '/u/' . $u[0]['nickname']);
1351
1352         $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
1353         if ($cnt) {
1354                 foreach ($matches as $mtch) {
1355                         if (link_compare($link, $mtch[1]) || link_compare($dlink, $mtch[1])) {
1356                                 $mention = true;
1357                                 logger('tag_deliver: mention found: ' . $mtch[2]);
1358                         }
1359                 }
1360         }
1361
1362         if (! $mention) {
1363                 if (($community_page || $prvgroup) &&
1364                           (!$item['wall']) && (!$item['origin']) && ($item['id'] == $item['parent'])) {
1365                         // mmh.. no mention.. community page or private group... no wall.. no origin.. top-post (not a comment)
1366                         // delete it!
1367                         logger("tag_deliver: no-mention top-level post to communuty or private group. delete.");
1368                         dba::delete('item', array('id' => $item_id));
1369                         return true;
1370                 }
1371                 return;
1372         }
1373
1374         $arr = array('item' => $item, 'user' => $u[0], 'contact' => $r[0]);
1375
1376         call_hooks('tagged', $arr);
1377
1378         if ((! $community_page) && (! $prvgroup)) {
1379                 return;
1380         }
1381
1382         /*
1383          * tgroup delivery - setup a second delivery chain
1384          * prevent delivery looping - only proceed
1385          * if the message originated elsewhere and is a top-level post
1386          */
1387         if (($item['wall']) || ($item['origin']) || ($item['id'] != $item['parent'])) {
1388                 return;
1389         }
1390
1391         // now change this copy of the post to a forum head message and deliver to all the tgroup members
1392         $c = q("SELECT `name`, `url`, `thumb` FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1393                 intval($u[0]['uid'])
1394         );
1395         if (! DBM::is_result($c)) {
1396                 return;
1397         }
1398
1399         // also reset all the privacy bits to the forum default permissions
1400
1401         $private = ($u[0]['allow_cid'] || $u[0]['allow_gid'] || $u[0]['deny_cid'] || $u[0]['deny_gid']) ? 1 : 0;
1402
1403         $forum_mode = (($prvgroup) ? 2 : 1);
1404
1405         q("UPDATE `item` SET `wall` = 1, `origin` = 1, `forum_mode` = %d, `owner-name` = '%s', `owner-link` = '%s', `owner-avatar` = '%s',
1406                 `private` = %d, `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'  WHERE `id` = %d",
1407                 intval($forum_mode),
1408                 dbesc($c[0]['name']),
1409                 dbesc($c[0]['url']),
1410                 dbesc($c[0]['thumb']),
1411                 intval($private),
1412                 dbesc($u[0]['allow_cid']),
1413                 dbesc($u[0]['allow_gid']),
1414                 dbesc($u[0]['deny_cid']),
1415                 dbesc($u[0]['deny_gid']),
1416                 intval($item_id)
1417         );
1418         update_thread($item_id);
1419
1420         Worker::add(array('priority' => PRIORITY_HIGH, 'dont_fork' => true), 'Notifier', 'tgroup', $item_id);
1421
1422 }
1423
1424
1425
1426 function tgroup_check($uid, $item) {
1427
1428         $mention = false;
1429
1430         // check that the message originated elsewhere and is a top-level post
1431
1432         if (($item['wall']) || ($item['origin']) || ($item['uri'] != $item['parent-uri'])) {
1433                 return false;
1434         }
1435
1436         /// @TODO Encapsulate this or find it encapsulated and replace all occurrances
1437         $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
1438                 intval($uid)
1439         );
1440         if (! DBM::is_result($u)) {
1441                 return false;
1442         }
1443
1444         $community_page = (($u[0]['page-flags'] == PAGE_COMMUNITY) ? true : false);
1445         $prvgroup = (($u[0]['page-flags'] == PAGE_PRVGROUP) ? true : false);
1446
1447         $link = normalise_link(System::baseUrl() . '/profile/' . $u[0]['nickname']);
1448
1449         /*
1450          * Diaspora uses their own hardwired link URL in @-tags
1451          * instead of the one we supply with webfinger
1452          */
1453         $dlink = normalise_link(System::baseUrl() . '/u/' . $u[0]['nickname']);
1454
1455         $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
1456         if ($cnt) {
1457                 foreach ($matches as $mtch) {
1458                         if (link_compare($link, $mtch[1]) || link_compare($dlink, $mtch[1])) {
1459                                 $mention = true;
1460                                 logger('tgroup_check: mention found: ' . $mtch[2]);
1461                         }
1462                 }
1463         }
1464
1465         if (! $mention) {
1466                 return false;
1467         }
1468
1469         /// @TODO Combine both return statements into one
1470         return (($community_page) || ($prvgroup));
1471 }
1472
1473 /**
1474  * This function returns true if $update has an edited timestamp newer
1475  * than $existing, i.e. $update contains new data which should override
1476  * what's already there.  If there is no timestamp yet, the update is
1477  * assumed to be newer.  If the update has no timestamp, the existing
1478  * item is assumed to be up-to-date.  If the timestamps are equal it
1479  * assumes the update has been seen before and should be ignored.
1480  *
1481  * @todo fix type-hints (both array)
1482  */
1483 function edited_timestamp_is_newer($existing, $update) {
1484         if (!x($existing, 'edited') || !$existing['edited']) {
1485                 return true;
1486         }
1487         if (!x($update, 'edited') || !$update['edited']) {
1488                 return false;
1489         }
1490
1491         $existing_edited = datetime_convert('UTC', 'UTC', $existing['edited']);
1492         $update_edited = datetime_convert('UTC', 'UTC', $update['edited']);
1493         return (strcmp($existing_edited, $update_edited) < 0);
1494 }
1495
1496 /**
1497  *
1498  * consume_feed - process atom feed and update anything/everything we might need to update
1499  *
1500  * $xml = the (atom) feed to consume - RSS isn't as fully supported but may work for simple feeds.
1501  *
1502  * $importer = the contact_record (joined to user_record) of the local user who owns this relationship.
1503  *             It is this person's stuff that is going to be updated.
1504  * $contact =  the person who is sending us stuff. If not set, we MAY be processing a "follow" activity
1505  *             from an external network and MAY create an appropriate contact record. Otherwise, we MUST
1506  *             have a contact record.
1507  * $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or
1508  *        might not) try and subscribe to it.
1509  * $datedir sorts in reverse order
1510  * $pass - by default ($pass = 0) we cannot guarantee that a parent item has been
1511  *      imported prior to its children being seen in the stream unless we are certain
1512  *      of how the feed is arranged/ordered.
1513  * With $pass = 1, we only pull parent items out of the stream.
1514  * With $pass = 2, we only pull children (comments/likes).
1515  *
1516  * So running this twice, first with pass 1 and then with pass 2 will do the right
1517  * thing regardless of feed ordering. This won't be adequate in a fully-threaded
1518  * model where comments can have sub-threads. That would require some massive sorting
1519  * to get all the feed items into a mostly linear ordering, and might still require
1520  * recursion.
1521  *
1522  * @todo find proper type-hints
1523  */
1524 function consume_feed($xml, $importer, &$contact, &$hub, $datedir = 0, $pass = 0) {
1525         if ($contact['network'] === NETWORK_OSTATUS) {
1526                 if ($pass < 2) {
1527                         // Test - remove before flight
1528                         //$tempfile = tempnam(get_temppath(), "ostatus2");
1529                         //file_put_contents($tempfile, $xml);
1530                         logger("Consume OStatus messages ", LOGGER_DEBUG);
1531                         OStatus::import($xml, $importer, $contact, $hub);
1532                 }
1533                 return;
1534         }
1535
1536         if ($contact['network'] === NETWORK_FEED) {
1537                 if ($pass < 2) {
1538                         logger("Consume feeds", LOGGER_DEBUG);
1539                         feed_import($xml, $importer, $contact, $hub);
1540                 }
1541                 return;
1542         }
1543
1544         if ($contact['network'] === NETWORK_DFRN) {
1545                 logger("Consume DFRN messages", LOGGER_DEBUG);
1546
1547                 $r = q("SELECT `contact`.*, `contact`.`uid` AS `importer_uid`,
1548                                         `contact`.`pubkey` AS `cpubkey`,
1549                                         `contact`.`prvkey` AS `cprvkey`,
1550                                         `contact`.`thumb` AS `thumb`,
1551                                         `contact`.`url` as `url`,
1552                                         `contact`.`name` as `senderName`,
1553                                         `user`.*
1554                         FROM `contact`
1555                         LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
1556                         WHERE `contact`.`id` = %d AND `user`.`uid` = %d",
1557                         dbesc($contact["id"]), dbesc($importer["uid"])
1558                 );
1559                 if (DBM::is_result($r)) {
1560                         logger("Now import the DFRN feed");
1561                         DFRN::import($xml, $r[0], true);
1562                         return;
1563                 }
1564         }
1565 }
1566
1567 /// @TODO type-hint is array
1568 function item_is_remote_self($contact, &$datarray) {
1569         $a = get_app();
1570
1571         if (!$contact['remote_self']) {
1572                 return false;
1573         }
1574
1575         // Prevent the forwarding of posts that are forwarded
1576         if ($datarray["extid"] == NETWORK_DFRN) {
1577                 return false;
1578         }
1579
1580         // Prevent to forward already forwarded posts
1581         if ($datarray["app"] == $a->get_hostname()) {
1582                 return false;
1583         }
1584
1585         // Only forward posts
1586         if ($datarray["verb"] != ACTIVITY_POST) {
1587                 return false;
1588         }
1589
1590         if (($contact['network'] != NETWORK_FEED) && $datarray['private']) {
1591                 return false;
1592         }
1593
1594         $datarray2 = $datarray;
1595         logger('remote-self start - Contact '.$contact['url'].' - '.$contact['remote_self'].' Item '.print_r($datarray, true), LOGGER_DEBUG);
1596         if ($contact['remote_self'] == 2) {
1597                 $r = q("SELECT `id`,`url`,`name`,`thumb` FROM `contact` WHERE `uid` = %d AND `self`",
1598                         intval($contact['uid']));
1599                 if (DBM::is_result($r)) {
1600                         $datarray['contact-id'] = $r[0]["id"];
1601
1602                         $datarray['owner-name'] = $r[0]["name"];
1603                         $datarray['owner-link'] = $r[0]["url"];
1604                         $datarray['owner-avatar'] = $r[0]["thumb"];
1605
1606                         $datarray['author-name']   = $datarray['owner-name'];
1607                         $datarray['author-link']   = $datarray['owner-link'];
1608                         $datarray['author-avatar'] = $datarray['owner-avatar'];
1609
1610                         unset($datarray['created']);
1611                         unset($datarray['edited']);
1612                 }
1613
1614                 if ($contact['network'] != NETWORK_FEED) {
1615                         $datarray["guid"] = get_guid(32);
1616                         unset($datarray["plink"]);
1617                         $datarray["uri"] = item_new_uri($a->get_hostname(), $contact['uid'], $datarray["guid"]);
1618                         $datarray["parent-uri"] = $datarray["uri"];
1619                         $datarray["extid"] = $contact['network'];
1620                         $urlpart = parse_url($datarray2['author-link']);
1621                         $datarray["app"] = $urlpart["host"];
1622                 } else {
1623                         $datarray['private'] = 0;
1624                 }
1625         }
1626
1627         if ($contact['network'] != NETWORK_FEED) {
1628                 // Store the original post
1629                 $r = item_store($datarray2, false, false);
1630                 logger('remote-self post original item - Contact '.$contact['url'].' return '.$r.' Item '.print_r($datarray2, true), LOGGER_DEBUG);
1631         } else {
1632                 $datarray["app"] = "Feed";
1633         }
1634
1635         // Trigger automatic reactions for addons
1636         $datarray['api_source'] = true;
1637
1638         // We have to tell the hooks who we are - this really should be improved
1639         $_SESSION["authenticated"] = true;
1640         $_SESSION["uid"] = $contact['uid'];
1641
1642         return true;
1643 }
1644
1645 /// @TODO find proper type-hints
1646 function new_follower($importer, $contact, $datarray, $item, $sharing = false) {
1647         $url = notags(trim($datarray['author-link']));
1648         $name = notags(trim($datarray['author-name']));
1649         $photo = notags(trim($datarray['author-avatar']));
1650
1651         if (is_object($item)) {
1652                 $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor');
1653                 if ($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data']) {
1654                         $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'];
1655                 }
1656         } else {
1657                 $nick = $item;
1658         }
1659
1660         if (is_array($contact)) {
1661                 if (($contact['network'] == NETWORK_OSTATUS && $contact['rel'] == CONTACT_IS_SHARING)
1662                         || ($sharing && $contact['rel'] == CONTACT_IS_FOLLOWER)) {
1663                         $r = dba::update('contact', array('rel' => CONTACT_IS_FRIEND, 'writable' => true),
1664                                         array('id' => $contact['id'], 'uid' => $importer['uid']));
1665                 }
1666                 // send email notification to owner?
1667         } else {
1668
1669                 // create contact record
1670
1671                 $r = q("INSERT INTO `contact` (`uid`, `created`, `url`, `nurl`, `name`, `nick`, `photo`, `network`, `rel`,
1672                         `blocked`, `readonly`, `pending`, `writable`)
1673                         VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, 1)",
1674                         intval($importer['uid']),
1675                         dbesc(datetime_convert()),
1676                         dbesc($url),
1677                         dbesc(normalise_link($url)),
1678                         dbesc($name),
1679                         dbesc($nick),
1680                         dbesc($photo),
1681                         dbesc(NETWORK_OSTATUS),
1682                         intval(CONTACT_IS_FOLLOWER)
1683                 );
1684                 $r = q("SELECT `id`, `network` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 LIMIT 1",
1685                                 intval($importer['uid']),
1686                                 dbesc($url)
1687                 );
1688                 if (DBM::is_result($r)) {
1689                         $contact_record = $r[0];
1690                         Contact::updateAvatar($photo, $importer["uid"], $contact_record["id"], true);
1691                 }
1692
1693                 /// @TODO Encapsulate this into a function/method
1694                 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
1695                         intval($importer['uid'])
1696                 );
1697
1698                 if (DBM::is_result($r) && !in_array($r[0]['page-flags'], array(PAGE_SOAPBOX, PAGE_FREELOVE, PAGE_COMMUNITY))) {
1699
1700                         // create notification
1701                         $hash = random_string();
1702
1703                         if (is_array($contact_record)) {
1704                                 dba::insert('intro', array('uid' => $importer['uid'], 'contact-id' => $contact_record['id'],
1705                                                         'blocked' => false, 'knowyou' => false,
1706                                                         'hash' => $hash, 'datetime' => datetime_convert()));
1707                         }
1708
1709                         $def_gid = get_default_group($importer['uid'], $contact_record["network"]);
1710
1711                         if (intval($def_gid)) {
1712                                 group_add_member($importer['uid'], '', $contact_record['id'], $def_gid);
1713                         }
1714
1715                         if (($r[0]['notify-flags'] & NOTIFY_INTRO) &&
1716                                 in_array($r[0]['page-flags'], array(PAGE_NORMAL))) {
1717
1718                                 notification(array(
1719                                         'type'         => NOTIFY_INTRO,
1720                                         'notify_flags' => $r[0]['notify-flags'],
1721                                         'language'     => $r[0]['language'],
1722                                         'to_name'      => $r[0]['username'],
1723                                         'to_email'     => $r[0]['email'],
1724                                         'uid'          => $r[0]['uid'],
1725                                         'link'             => System::baseUrl() . '/notifications/intro',
1726                                         'source_name'  => ((strlen(stripslashes($contact_record['name']))) ? stripslashes($contact_record['name']) : t('[Name Withheld]')),
1727                                         'source_link'  => $contact_record['url'],
1728                                         'source_photo' => $contact_record['photo'],
1729                                         'verb'         => ($sharing ? ACTIVITY_FRIEND : ACTIVITY_FOLLOW),
1730                                         'otype'        => 'intro'
1731                                 ));
1732
1733                         }
1734                 } elseif (DBM::is_result($r) && in_array($r[0]['page-flags'], array(PAGE_SOAPBOX, PAGE_FREELOVE, PAGE_COMMUNITY))) {
1735                         $r = q("UPDATE `contact` SET `pending` = 0 WHERE `uid` = %d AND `url` = '%s' AND `pending` LIMIT 1",
1736                                         intval($importer['uid']),
1737                                         dbesc($url)
1738                         );
1739                 }
1740
1741         }
1742 }
1743
1744 function lose_follower($importer, $contact, array $datarray = array(), $item = "") {
1745
1746         if (($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_SHARING)) {
1747                 dba::update('contact', array('rel' => CONTACT_IS_SHARING), array('id' => $contact['id']));
1748         } else {
1749                 Contact::remove($contact['id']);
1750         }
1751 }
1752
1753 function lose_sharer($importer, $contact, array $datarray = array(), $item = "") {
1754
1755         if (($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_FOLLOWER)) {
1756                 dba::update('contact', array('rel' => CONTACT_IS_FOLLOWER), array('id' => $contact['id']));
1757         } else {
1758                 Contact::remove($contact['id']);
1759         }
1760 }
1761
1762 function subscribe_to_hub($url, $importer, $contact, $hubmode = 'subscribe') {
1763
1764         $a = get_app();
1765
1766         if (is_array($importer)) {
1767                 $r = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1",
1768                         intval($importer['uid'])
1769                 );
1770         }
1771
1772         /*
1773          * Diaspora has different message-ids in feeds than they do
1774          * through the direct Diaspora protocol. If we try and use
1775          * the feed, we'll get duplicates. So don't.
1776          */
1777         if ((! DBM::is_result($r)) || $contact['network'] === NETWORK_DIASPORA) {
1778                 return;
1779         }
1780
1781         $push_url = Config::get('system','url') . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id'];
1782
1783         // Use a single verify token, even if multiple hubs
1784         $verify_token = ((strlen($contact['hub-verify'])) ? $contact['hub-verify'] : random_string());
1785
1786         $params= 'hub.mode=' . $hubmode . '&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
1787
1788         logger('subscribe_to_hub: ' . $hubmode . ' ' . $contact['name'] . ' to hub ' . $url . ' endpoint: '  . $push_url . ' with verifier ' . $verify_token);
1789
1790         if (!strlen($contact['hub-verify']) || ($contact['hub-verify'] != $verify_token)) {
1791                 $r = dba::update('contact', array('hub-verify' => $verify_token), array('id' => $contact['id']));
1792         }
1793
1794         post_url($url, $params);
1795
1796         logger('subscribe_to_hub: returns: ' . $a->get_curl_code(), LOGGER_DEBUG);
1797
1798         return;
1799
1800 }
1801
1802 function fix_private_photos($s, $uid, $item = null, $cid = 0) {
1803
1804         if (Config::get('system','disable_embedded')) {
1805                 return $s;
1806         }
1807
1808         $a = get_app();
1809
1810         logger('fix_private_photos: check for photos', LOGGER_DEBUG);
1811         $site = substr(System::baseUrl(),strpos(System::baseUrl(),'://'));
1812
1813         $orig_body = $s;
1814         $new_body = '';
1815
1816         $img_start = strpos($orig_body, '[img');
1817         $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
1818         $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
1819         while ( ($img_st_close !== false) && ($img_len !== false) ) {
1820
1821                 $img_st_close++; // make it point to AFTER the closing bracket
1822                 $image = substr($orig_body, $img_start + $img_st_close, $img_len);
1823
1824                 logger('fix_private_photos: found photo ' . $image, LOGGER_DEBUG);
1825
1826
1827                 if (stristr($image , $site . '/photo/')) {
1828                         // Only embed locally hosted photos
1829                         $replace = false;
1830                         $i = basename($image);
1831                         $i = str_replace(array('.jpg', '.png', '.gif'),array('', '',''), $i);
1832                         $x = strpos($i, '-');
1833
1834                         if ($x) {
1835                                 $res = substr($i, $x + 1);
1836                                 $i = substr($i, 0, $x);
1837                                 $r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `scale` = %d AND `uid` = %d",
1838                                         dbesc($i),
1839                                         intval($res),
1840                                         intval($uid)
1841
1842                                 );
1843                                 if (DBM::is_result($r)) {
1844                                         /*
1845                                          * Check to see if we should replace this photo link with an embedded image
1846                                          * 1. No need to do so if the photo is public
1847                                          * 2. If there's a contact-id provided, see if they're in the access list
1848                                          *    for the photo. If so, embed it.
1849                                          * 3. Otherwise, if we have an item, see if the item permissions match the photo
1850                                          *    permissions, regardless of order but first check to see if they're an exact
1851                                          *    match to save some processing overhead.
1852                                          */
1853                                         if (has_permissions($r[0])) {
1854                                                 if ($cid) {
1855                                                         $recips = enumerate_permissions($r[0]);
1856                                                         if (in_array($cid, $recips)) {
1857                                                                 $replace = true;
1858                                                         }
1859                                                 } elseif ($item) {
1860                                                         if (compare_permissions($item, $r[0])) {
1861                                                                 $replace = true;
1862                                                         }
1863                                                 }
1864                                         }
1865                                         if ($replace) {
1866                                                 $data = $r[0]['data'];
1867                                                 $type = $r[0]['type'];
1868
1869                                                 // If a custom width and height were specified, apply before embedding
1870                                                 if (preg_match("/\[img\=([0-9]*)x([0-9]*)\]/is", substr($orig_body, $img_start, $img_st_close), $match)) {
1871                                                         logger('fix_private_photos: scaling photo', LOGGER_DEBUG);
1872
1873                                                         $width = intval($match[1]);
1874                                                         $height = intval($match[2]);
1875
1876                                                         $ph = new Photo($data, $type);
1877                                                         if ($ph->isValid()) {
1878                                                                 $ph->scaleImage(max($width, $height));
1879                                                                 $data = $ph->imageString();
1880                                                                 $type = $ph->getType();
1881                                                         }
1882                                                 }
1883
1884                                                 logger('fix_private_photos: replacing photo', LOGGER_DEBUG);
1885                                                 $image = 'data:' . $type . ';base64,' . base64_encode($data);
1886                                                 logger('fix_private_photos: replaced: ' . $image, LOGGER_DATA);
1887                                         }
1888                                 }
1889                         }
1890                 }
1891
1892                 $new_body = $new_body . substr($orig_body, 0, $img_start + $img_st_close) . $image . '[/img]';
1893                 $orig_body = substr($orig_body, $img_start + $img_st_close + $img_len + strlen('[/img]'));
1894                 if ($orig_body === false) {
1895                         $orig_body = '';
1896                 }
1897
1898                 $img_start = strpos($orig_body, '[img');
1899                 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
1900                 $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
1901         }
1902
1903         $new_body = $new_body . $orig_body;
1904
1905         return $new_body;
1906 }
1907
1908 /// @TODO type-hint is array
1909 function has_permissions($obj) {
1910         return (
1911                 (
1912                         x($obj, 'allow_cid')
1913                 ) || (
1914                         x($obj, 'allow_gid')
1915                 ) || (
1916                         x($obj, 'deny_cid')
1917                 ) || (
1918                         x($obj, 'deny_gid')
1919                 )
1920         );
1921 }
1922
1923 /// @TODO type-hint is array
1924 function compare_permissions($obj1, $obj2) {
1925         // first part is easy. Check that these are exactly the same.
1926         if (($obj1['allow_cid'] == $obj2['allow_cid'])
1927                 && ($obj1['allow_gid'] == $obj2['allow_gid'])
1928                 && ($obj1['deny_cid'] == $obj2['deny_cid'])
1929                 && ($obj1['deny_gid'] == $obj2['deny_gid'])) {
1930                 return true;
1931         }
1932
1933         // This is harder. Parse all the permissions and compare the resulting set.
1934         $recipients1 = enumerate_permissions($obj1);
1935         $recipients2 = enumerate_permissions($obj2);
1936         sort($recipients1);
1937         sort($recipients2);
1938
1939         /// @TODO Comparison of arrays, maybe use array_diff_assoc() here?
1940         return ($recipients1 == $recipients2);
1941 }
1942
1943 // returns an array of contact-ids that are allowed to see this object
1944 /// @TODO type-hint is array
1945 function enumerate_permissions($obj) {
1946         $allow_people = expand_acl($obj['allow_cid']);
1947         $allow_groups = expand_groups(expand_acl($obj['allow_gid']));
1948         $deny_people  = expand_acl($obj['deny_cid']);
1949         $deny_groups  = expand_groups(expand_acl($obj['deny_gid']));
1950         $recipients   = array_unique(array_merge($allow_people, $allow_groups));
1951         $deny         = array_unique(array_merge($deny_people, $deny_groups));
1952         $recipients   = array_diff($recipients, $deny);
1953         return $recipients;
1954 }
1955
1956 function item_getfeedtags($item) {
1957         $ret = array();
1958         $matches = false;
1959         $cnt = preg_match_all('|\#\[url\=(.*?)\](.*?)\[\/url\]|', $item['tag'], $matches);
1960         if ($cnt) {
1961                 for ($x = 0; $x < $cnt; $x ++) {
1962                         if ($matches[1][$x]) {
1963                                 $ret[$matches[2][$x]] = array('#', $matches[1][$x], $matches[2][$x]);
1964                         }
1965                 }
1966         }
1967         $matches = false;
1968         $cnt = preg_match_all('|\@\[url\=(.*?)\](.*?)\[\/url\]|', $item['tag'], $matches);
1969         if ($cnt) {
1970                 for ($x = 0; $x < $cnt; $x ++) {
1971                         if ($matches[1][$x]) {
1972                                 $ret[] = array('@', $matches[1][$x], $matches[2][$x]);
1973                         }
1974                 }
1975         }
1976         return $ret;
1977 }
1978
1979 function item_expire($uid, $days, $network = "", $force = false) {
1980
1981         if ((! $uid) || ($days < 1)) {
1982                 return;
1983         }
1984
1985         /*
1986          * $expire_network_only = save your own wall posts
1987          * and just expire conversations started by others
1988          */
1989         $expire_network_only = PConfig::get($uid,'expire', 'network_only');
1990         $sql_extra = ((intval($expire_network_only)) ? " AND wall = 0 " : "");
1991
1992         if ($network != "") {
1993                 $sql_extra .= sprintf(" AND network = '%s' ", dbesc($network));
1994
1995                 /*
1996                  * There is an index "uid_network_received" but not "uid_network_created"
1997                  * This avoids the creation of another index just for one purpose.
1998                  * And it doesn't really matter wether to look at "received" or "created"
1999                  */
2000                 $range = "AND `received` < UTC_TIMESTAMP() - INTERVAL %d DAY ";
2001         } else {
2002                 $range = "AND `created` < UTC_TIMESTAMP() - INTERVAL %d DAY ";
2003         }
2004
2005         $r = q("SELECT `file`, `resource-id`, `starred`, `type`, `id` FROM `item`
2006                 WHERE `uid` = %d $range
2007                 AND `id` = `parent`
2008                 $sql_extra
2009                 AND `deleted` = 0",
2010                 intval($uid),
2011                 intval($days)
2012         );
2013
2014         if (! DBM::is_result($r)) {
2015                 return;
2016         }
2017
2018         $expire_items = PConfig::get($uid, 'expire', 'items', 1);
2019
2020         // Forcing expiring of items - but not notes and marked items
2021         if ($force) {
2022                 $expire_items = true;
2023         }
2024
2025         $expire_notes = PConfig::get($uid, 'expire', 'notes', 1);
2026         $expire_starred = PConfig::get($uid, 'expire', 'starred', 1);
2027         $expire_photos = PConfig::get($uid, 'expire', 'photos', 0);
2028
2029         logger('User '.$uid.': expire: # items=' . count($r). "; expire items: $expire_items, expire notes: $expire_notes, expire starred: $expire_starred, expire photos: $expire_photos");
2030
2031         foreach ($r as $item) {
2032
2033                 // don't expire filed items
2034
2035                 if (strpos($item['file'],'[') !== false) {
2036                         continue;
2037                 }
2038
2039                 // Only expire posts, not photos and photo comments
2040
2041                 if ($expire_photos == 0 && strlen($item['resource-id'])) {
2042                         continue;
2043                 } elseif ($expire_starred == 0 && intval($item['starred'])) {
2044                         continue;
2045                 } elseif ($expire_notes == 0 && $item['type'] == 'note') {
2046                         continue;
2047                 } elseif ($expire_items == 0 && $item['type'] != 'note') {
2048                         continue;
2049                 }
2050
2051                 drop_item($item['id'], false);
2052         }
2053
2054         Worker::add(array('priority' => PRIORITY_LOW, 'dont_fork' => true), "Notifier", "expire", $uid);
2055 }
2056
2057 /// @TODO type-hint is array
2058 function drop_items($items) {
2059         $uid = 0;
2060
2061         if (! local_user() && ! remote_user()) {
2062                 return;
2063         }
2064
2065         if (count($items)) {
2066                 foreach ($items as $item) {
2067                         $owner = drop_item($item,false);
2068                         if ($owner && ! $uid)
2069                                 $uid = $owner;
2070                 }
2071         }
2072
2073         // multiple threads may have been deleted, send an expire notification
2074
2075         if ($uid) {
2076                 Worker::add(array('priority' => PRIORITY_LOW, 'dont_fork' => true), "Notifier", "expire", $uid);
2077         }
2078 }
2079
2080
2081 function drop_item($id, $interactive = true) {
2082
2083         $a = get_app();
2084
2085         // locate item to be deleted
2086
2087         $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
2088                 intval($id)
2089         );
2090
2091         if (! DBM::is_result($r)) {
2092                 if (! $interactive) {
2093                         return 0;
2094                 }
2095                 notice( t('Item not found.') . EOL);
2096                 goaway(System::baseUrl() . '/' . $_SESSION['return_url']);
2097         }
2098
2099         $item = $r[0];
2100
2101         if ($item['deleted']) {
2102                 return 0;
2103         }
2104
2105         $owner = $item['uid'];
2106
2107         $contact_id = 0;
2108
2109         // check if logged in user is either the author or owner of this item
2110
2111         if (is_array($_SESSION['remote'])) {
2112                 foreach ($_SESSION['remote'] as $visitor) {
2113                         if ($visitor['uid'] == $item['uid'] && $visitor['cid'] == $item['contact-id']) {
2114                                 $contact_id = $visitor['cid'];
2115                                 break;
2116                         }
2117                 }
2118         }
2119
2120
2121         if ((local_user() == $item['uid']) || $contact_id || !$interactive) {
2122
2123                 // Check if we should do HTML-based delete confirmation
2124                 if ($_REQUEST['confirm']) {
2125                         // <form> can't take arguments in its "action" parameter
2126                         // so add any arguments as hidden inputs
2127                         $query = explode_querystring($a->query_string);
2128                         $inputs = array();
2129                         foreach ($query['args'] as $arg) {
2130                                 if (strpos($arg, 'confirm=') === false) {
2131                                         $arg_parts = explode('=', $arg);
2132                                         $inputs[] = array('name' => $arg_parts[0], 'value' => $arg_parts[1]);
2133                                 }
2134                         }
2135
2136                         return replace_macros(get_markup_template('confirm.tpl'), array(
2137                                 '$method' => 'get',
2138                                 '$message' => t('Do you really want to delete this item?'),
2139                                 '$extra_inputs' => $inputs,
2140                                 '$confirm' => t('Yes'),
2141                                 '$confirm_url' => $query['base'],
2142                                 '$confirm_name' => 'confirmed',
2143                                 '$cancel' => t('Cancel'),
2144                         ));
2145                 }
2146                 // Now check how the user responded to the confirmation query
2147                 if ($_REQUEST['canceled']) {
2148                         goaway(System::baseUrl() . '/' . $_SESSION['return_url']);
2149                 }
2150
2151                 logger('delete item: ' . $item['id'], LOGGER_DEBUG);
2152
2153                 // delete the item
2154                 $r = dba::update('item', array('deleted' => true, 'title' => '', 'body' => '',
2155                                         'edited' => datetime_convert(), 'changed' => datetime_convert()),
2156                                 array('id' => $item['id']));
2157
2158                 create_tags_from_item($item['id']);
2159                 create_files_from_item($item['id']);
2160                 delete_thread($item['id'], $item['parent-uri']);
2161
2162                 // clean up categories and tags so they don't end up as orphans
2163
2164                 $matches = false;
2165                 $cnt = preg_match_all('/<(.*?)>/', $item['file'], $matches, PREG_SET_ORDER);
2166                 if ($cnt) {
2167                         foreach ($matches as $mtch) {
2168                                 file_tag_unsave_file($item['uid'], $item['id'], $mtch[1],true);
2169                         }
2170                 }
2171
2172                 $matches = false;
2173
2174                 $cnt = preg_match_all('/\[(.*?)\]/', $item['file'], $matches, PREG_SET_ORDER);
2175                 if ($cnt) {
2176                         foreach ($matches as $mtch) {
2177                                 file_tag_unsave_file($item['uid'], $item['id'], $mtch[1],false);
2178                         }
2179                 }
2180
2181                 /*
2182                  * If item is a link to a photo resource, nuke all the associated photos
2183                  * (visitors will not have photo resources)
2184                  * This only applies to photos uploaded from the photos page. Photos inserted into a post do not
2185                  * generate a resource-id and therefore aren't intimately linked to the item.
2186                  */
2187                 if (strlen($item['resource-id'])) {
2188                         dba::delete('photo', array('resource-id' => $item['resource-id'], 'uid' => $item['uid']));
2189                 }
2190
2191                 // If item is a link to an event, nuke the event record.
2192                 if (intval($item['event-id'])) {
2193                         dba::delete('event', array('id' => $item['event-id'], 'uid' => $item['uid']));
2194                 }
2195
2196                 // If item has attachments, drop them
2197                 foreach (explode(", ", $item['attach']) as $attach) {
2198                         preg_match("|attach/(\d+)|", $attach, $matches);
2199                         dba::delete('attach', array('id' => $matches[1], 'uid' => $item['uid']));
2200                 }
2201
2202                 // The new code splits the queries since the mysql optimizer really has bad problems with subqueries
2203
2204                 // Creating list of parents
2205                 $r = q("SELECT `id` FROM `item` WHERE `parent` = %d AND `uid` = %d",
2206                         intval($item['id']),
2207                         intval($item['uid'])
2208                 );
2209
2210                 $parentid = "";
2211
2212                 foreach ($r as $row) {
2213                         if ($parentid != "") {
2214                                 $parentid .= ", ";
2215                         }
2216
2217                         $parentid .= $row["id"];
2218                 }
2219
2220                 // Now delete them
2221                 if ($parentid != "") {
2222                         $r = q("DELETE FROM `item_id` WHERE `iid` IN (%s)", dbesc($parentid));
2223                         $r = q("DELETE FROM `sign` WHERE `iid` IN (%s)", dbesc($parentid));
2224                 }
2225
2226                 // If it's the parent of a comment thread, kill all the kids
2227                 if ($item['uri'] == $item['parent-uri']) {
2228                         $r = dba::update('item', array('deleted' => true, 'title' => '', 'body' => '',
2229                                         'edited' => datetime_convert(), 'changed' => datetime_convert()),
2230                                 array('parent-uri' => $item['parent-uri'], 'uid' => $item['uid']));
2231
2232                         create_tags_from_itemuri($item['parent-uri'], $item['uid']);
2233                         create_files_from_itemuri($item['parent-uri'], $item['uid']);
2234                         delete_thread_uri($item['parent-uri'], $item['uid']);
2235                         // ignore the result
2236                 } else {
2237                         // ensure that last-child is set in case the comment that had it just got wiped.
2238                         dba::update('item', array('last-child' => false, 'changed' => datetime_convert()),
2239                                         array('parent-uri' => $item['parent-uri'], 'uid' => $item['uid']));
2240
2241                         // who is the last child now?
2242                         $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",
2243                                 dbesc($item['parent-uri']),
2244                                 intval($item['uid'])
2245                         );
2246                         if (DBM::is_result($r)) {
2247                                 dba::update('item', array('last-child' => true), array('id' => $r[0]['id']));
2248                         }
2249                 }
2250
2251                 // send the notification upstream/downstream
2252                 // The priority depends on how the deletion is done.
2253                 $drop_id = intval($item['id']);
2254                 $priority = ($interactive ? PRIORITY_HIGH : PRIORITY_LOW);
2255
2256                 Worker::add(array('priority' => $priority, 'dont_fork' => true), "Notifier", "drop", $drop_id);
2257
2258                 if (! $interactive) {
2259                         return $owner;
2260                 }
2261                 goaway(System::baseUrl() . '/' . $_SESSION['return_url']);
2262                 //NOTREACHED
2263         } else {
2264                 if (! $interactive) {
2265                         return 0;
2266                 }
2267                 notice( t('Permission denied.') . EOL);
2268                 goaway(System::baseUrl() . '/' . $_SESSION['return_url']);
2269                 //NOTREACHED
2270         }
2271
2272 }
2273
2274 /// @todo: This query seems to be really slow
2275 function first_post_date($uid, $wall = false) {
2276         $r = q("SELECT `id`, `created` FROM `item`
2277                 WHERE `uid` = %d AND `wall` = %d AND `deleted` = 0 AND `visible` = 1 AND `moderated` = 0
2278                 AND `id` = `parent`
2279                 ORDER BY `created` ASC LIMIT 1",
2280                 intval($uid),
2281                 intval($wall ? 1 : 0)
2282         );
2283         if (DBM::is_result($r)) {
2284                 // logger('first_post_date: ' . $r[0]['id'] . ' ' . $r[0]['created'], LOGGER_DATA);
2285                 return substr(datetime_convert('',date_default_timezone_get(), $r[0]['created']),0,10);
2286         }
2287         return false;
2288 }
2289
2290 /* modified posted_dates() {below} to arrange the list in years */
2291 function list_post_dates($uid, $wall) {
2292         $dnow = datetime_convert('',date_default_timezone_get(), 'now','Y-m-d');
2293
2294         $dthen = first_post_date($uid, $wall);
2295         if (! $dthen) {
2296                 return array();
2297         }
2298
2299         // Set the start and end date to the beginning of the month
2300         $dnow = substr($dnow, 0, 8) . '01';
2301         $dthen = substr($dthen, 0, 8) . '01';
2302
2303         $ret = array();
2304
2305         /*
2306          * Starting with the current month, get the first and last days of every
2307          * month down to and including the month of the first post
2308          */
2309         while (substr($dnow, 0, 7) >= substr($dthen, 0, 7)) {
2310                 $dyear = intval(substr($dnow, 0, 4));
2311                 $dstart = substr($dnow, 0, 8) . '01';
2312                 $dend = substr($dnow, 0, 8) . get_dim(intval($dnow), intval(substr($dnow, 5)));
2313                 $start_month = datetime_convert('', '', $dstart, 'Y-m-d');
2314                 $end_month = datetime_convert('', '', $dend, 'Y-m-d');
2315                 $str = day_translate(datetime_convert('', '', $dnow, 'F'));
2316                 if (!$ret[$dyear]) {
2317                         $ret[$dyear] = array();
2318                 }
2319                 $ret[$dyear][] = array($str, $end_month, $start_month);
2320                 $dnow = datetime_convert('', '', $dnow . ' -1 month', 'Y-m-d');
2321         }
2322         return $ret;
2323 }
2324
2325 function posted_dates($uid, $wall) {
2326         $dnow = datetime_convert('', date_default_timezone_get(), 'now', 'Y-m-d');
2327
2328         $dthen = first_post_date($uid, $wall);
2329         if (! $dthen) {
2330                 return array();
2331         }
2332
2333         // Set the start and end date to the beginning of the month
2334         $dnow = substr($dnow, 0, 8) . '01';
2335         $dthen = substr($dthen, 0, 8) . '01';
2336
2337         $ret = array();
2338         /*
2339          * Starting with the current month, get the first and last days of every
2340          * month down to and including the month of the first post
2341          */
2342         while (substr($dnow, 0, 7) >= substr($dthen, 0, 7)) {
2343                 $dstart = substr($dnow, 0, 8) . '01';
2344                 $dend = substr($dnow, 0, 8) . get_dim(intval($dnow), intval(substr($dnow, 5)));
2345                 $start_month = datetime_convert('', '', $dstart, 'Y-m-d');
2346                 $end_month = datetime_convert('', '', $dend, 'Y-m-d');
2347                 $str = day_translate(datetime_convert('', '', $dnow, 'F Y'));
2348                 $ret[] = array($str, $end_month, $start_month);
2349                 $dnow = datetime_convert('', '', $dnow . ' -1 month', 'Y-m-d');
2350         }
2351         return $ret;
2352 }
2353
2354
2355 function posted_date_widget($url, $uid, $wall) {
2356         $o = '';
2357
2358         if (! feature_enabled($uid, 'archives')) {
2359                 return $o;
2360         }
2361
2362         // For former Facebook folks that left because of "timeline"
2363         /*
2364          * @TODO old-lost code?
2365         if ($wall && intval(PConfig::get($uid, 'system', 'no_wall_archive_widget')))
2366                 return $o;
2367         */
2368
2369         $visible_years = PConfig::get($uid,'system','archive_visible_years');
2370         if (! $visible_years) {
2371                 $visible_years = 5;
2372         }
2373
2374         $ret = list_post_dates($uid, $wall);
2375
2376         if (! DBM::is_result($ret)) {
2377                 return $o;
2378         }
2379
2380         $cutoff_year = intval(datetime_convert('',date_default_timezone_get(), 'now', 'Y')) - $visible_years;
2381         $cutoff = ((array_key_exists($cutoff_year, $ret))? true : false);
2382
2383         $o = replace_macros(get_markup_template('posted_date_widget.tpl'),array(
2384                 '$title' => t('Archives'),
2385                 '$size' => $visible_years,
2386                 '$cutoff_year' => $cutoff_year,
2387                 '$cutoff' => $cutoff,
2388                 '$url' => $url,
2389                 '$dates' => $ret,
2390                 '$showmore' => t('show more')
2391
2392         ));
2393         return $o;
2394 }