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