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