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