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