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