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