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