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