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