]> git.mxchange.org Git - friendica.git/blob - src/Model/Item.php
Merge pull request #5060 from annando/item-delete
[friendica.git] / src / Model / Item.php
1 <?php
2
3 /**
4  * @file src/Model/Item.php
5  */
6
7 namespace Friendica\Model;
8
9 use Friendica\BaseObject;
10 use Friendica\Content\Text;
11 use Friendica\Core\Addon;
12 use Friendica\Core\Config;
13 use Friendica\Core\L10n;
14 use Friendica\Core\PConfig;
15 use Friendica\Core\System;
16 use Friendica\Core\Worker;
17 use Friendica\Database\DBM;
18 use Friendica\Model\Contact;
19 use Friendica\Model\Conversation;
20 use Friendica\Model\Group;
21 use Friendica\Model\Term;
22 use Friendica\Object\Image;
23 use Friendica\Protocol\Diaspora;
24 use Friendica\Protocol\OStatus;
25 use Friendica\Util\DateTimeFormat;
26 use Friendica\Util\XML;
27 use dba;
28 use Text_LanguageDetect;
29
30 require_once 'boot.php';
31 require_once 'include/items.php';
32 require_once 'include/text.php';
33
34 class Item extends BaseObject
35 {
36         /**
37          * @brief Update existing item entries
38          *
39          * @param array $fields The fields that are to be changed
40          * @param array $condition The condition for finding the item entries
41          *
42          * In the future we may have to change permissions as well.
43          * Then we had to add the user id as third parameter.
44          *
45          * A return value of "0" doesn't mean an error - but that 0 rows had been changed.
46          *
47          * @return integer|boolean number of affected rows - or "false" if there was an error
48          */
49         public static function update(array $fields, array $condition)
50         {
51                 if (empty($condition) || empty($fields)) {
52                         return false;
53                 }
54
55                 // To ensure the data integrity we do it in an transaction
56                 dba::transaction();
57
58                 // We cannot simply expand the condition to check for origin entries
59                 // The condition needn't to be a simple array but could be a complex condition.
60                 // And we have to execute this query before the update to ensure to fetch the same data.
61                 $items = dba::select('item', ['id', 'origin'], $condition);
62
63                 $success = dba::update('item', $fields, $condition);
64
65                 if (!$success) {
66                         dba::close($items);
67                         dba::rollback();
68                         return false;
69                 }
70
71                 $rows = dba::affected_rows();
72
73                 while ($item = dba::fetch($items)) {
74                         Term::insertFromTagFieldByItemId($item['id']);
75                         Term::insertFromFileFieldByItemId($item['id']);
76                         self::updateThread($item['id']);
77
78                         // We only need to notfiy others when it is an original entry from us
79                         if ($item['origin']) {
80                                 Worker::add(PRIORITY_HIGH, "Notifier", 'edit_post', $item['id']);
81                         }
82                 }
83
84                 dba::close($items);
85                 dba::commit();
86                 return $rows;
87         }
88
89         /**
90          * @brief Delete an item and notify others about it - if it was ours
91          *
92          * @param array $condition The condition for finding the item entries
93          * @param integer $priority Priority for the notification
94          */
95         public static function delete($condition, $priority = PRIORITY_HIGH)
96         {
97                 $items = dba::select('item', ['id'], $condition);
98                 while ($item = dba::fetch($items)) {
99                         self::deleteById($item['id'], $priority);
100                 }
101                 dba::close($items);
102         }
103
104         /**
105          * @brief Delete an item and notify others about it - if it was ours
106          *
107          * @param integer $item_id Item ID that should be delete
108          * @param integer $priority Priority for the notification
109          *
110          * @return boolean success
111          */
112         public static function deleteById($item_id, $priority = PRIORITY_HIGH)
113         {
114                 // locate item to be deleted
115                 $fields = ['id', 'uri', 'uid', 'parent', 'parent-uri', 'origin',
116                         'deleted', 'file', 'resource-id', 'event-id', 'attach',
117                         'verb', 'object-type', 'object', 'target', 'contact-id'];
118                 $item = dba::selectFirst('item', $fields, ['id' => $item_id]);
119                 if (!DBM::is_result($item)) {
120                         logger('Item with ID ' . $item_id . " hasn't been found.", LOGGER_DEBUG);
121                         return false;
122                 }
123
124                 if ($item['deleted']) {
125                         logger('Item with ID ' . $item_id . ' has already been deleted.', LOGGER_DEBUG);
126                         return false;
127                 }
128
129                 $parent = dba::selectFirst('item', ['origin'], ['id' => $item['parent']]);
130                 if (!DBM::is_result($parent)) {
131                         $parent = ['origin' => false];
132                 }
133
134                 // clean up categories and tags so they don't end up as orphans
135
136                 $matches = false;
137                 $cnt = preg_match_all('/<(.*?)>/', $item['file'], $matches, PREG_SET_ORDER);
138                 if ($cnt) {
139                         foreach ($matches as $mtch) {
140                                 file_tag_unsave_file($item['uid'], $item['id'], $mtch[1],true);
141                         }
142                 }
143
144                 $matches = false;
145
146                 $cnt = preg_match_all('/\[(.*?)\]/', $item['file'], $matches, PREG_SET_ORDER);
147                 if ($cnt) {
148                         foreach ($matches as $mtch) {
149                                 file_tag_unsave_file($item['uid'], $item['id'], $mtch[1],false);
150                         }
151                 }
152
153                 /*
154                  * If item is a link to a photo resource, nuke all the associated photos
155                  * (visitors will not have photo resources)
156                  * This only applies to photos uploaded from the photos page. Photos inserted into a post do not
157                  * generate a resource-id and therefore aren't intimately linked to the item.
158                  */
159                 if (strlen($item['resource-id'])) {
160                         dba::delete('photo', ['resource-id' => $item['resource-id'], 'uid' => $item['uid']]);
161                 }
162
163                 // If item is a link to an event, delete the event.
164                 if (intval($item['event-id'])) {
165                         Event::delete($item['event-id']);
166                 }
167
168                 // If item has attachments, drop them
169                 foreach (explode(", ", $item['attach']) as $attach) {
170                         preg_match("|attach/(\d+)|", $attach, $matches);
171                         dba::delete('attach', ['id' => $matches[1], 'uid' => $item['uid']]);
172                 }
173
174                 // Delete tags that had been attached to other items
175                 self::deleteTagsFromItem($item);
176
177                 // Set the item to "deleted"
178                 dba::update('item', ['deleted' => true, 'title' => '', 'body' => '',
179                                         'edited' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow()],
180                                 ['id' => $item['id']]);
181
182                 Term::insertFromTagFieldByItemId($item['id']);
183                 Term::insertFromFileFieldByItemId($item['id']);
184                 self::deleteThread($item['id'], $item['parent-uri']);
185
186                 if (!dba::exists('item', ["`uri` = ? AND `uid` != 0 AND NOT `deleted`", $item['uri']])) {
187                         self::delete(['uri' => $item['uri'], 'uid' => 0, 'deleted' => false], $priority);
188                 }
189
190                 // If it's the parent of a comment thread, kill all the kids
191                 if ($item['id'] == $item['parent']) {
192                         self::delete(['parent' => $item['parent'], 'deleted' => false], $priority);
193                 }
194
195                 // Is it our comment and/or our thread?
196                 if ($item['origin'] || $parent['origin']) {
197
198                         // When we delete the original post we will delete all existing copies on the server as well
199                         self::delete(['uri' => $item['uri'], 'deleted' => false], $priority);
200
201                         // send the notification upstream/downstream
202                         Worker::add(['priority' => $priority, 'dont_fork' => true], "Notifier", "drop", intval($item['id']));
203                 }
204
205                 logger('Item with ID ' . $item_id . " has been deleted.", LOGGER_DEBUG);
206
207                 return true;
208         }
209
210         private static function deleteTagsFromItem($item)
211         {
212                 if (($item["verb"] != ACTIVITY_TAG) || ($item["object-type"] != ACTIVITY_OBJ_TAGTERM)) {
213                         return;
214                 }
215
216                 $xo = XML::parseString($item["object"], false);
217                 $xt = XML::parseString($item["target"], false);
218
219                 if ($xt->type != ACTIVITY_OBJ_NOTE) {
220                         return;
221                 }
222
223                 $i = dba::selectFirst('item', ['id', 'contact-id', 'tag'], ['uri' => $xt->id, 'uid' => $item['uid']]);
224                 if (!DBM::is_result($i)) {
225                         return;
226                 }
227
228                 // For tags, the owner cannot remove the tag on the author's copy of the post.
229                 $owner_remove = ($item["contact-id"] == $i["contact-id"]);
230                 $author_copy = $item["origin"];
231
232                 if (($owner_remove && $author_copy) || !$owner_remove) {
233                         return;
234                 }
235
236                 $tags = explode(',', $i["tag"]);
237                 $newtags = [];
238                 if (count($tags)) {
239                         foreach ($tags as $tag) {
240                                 if (trim($tag) !== trim($xo->body)) {
241                                        $newtags[] = trim($tag);
242                                 }
243                         }
244                 }
245                 self::update(['tag' => implode(',', $newtags)], ['id' => $i["id"]]);
246         }
247
248         private static function guid($item, $notify)
249         {
250                 $guid = notags(trim($item['guid']));
251
252                 if (!empty($guid)) {
253                         return $guid;
254                 }
255
256                 if ($notify) {
257                         // We have to avoid duplicates. So we create the GUID in form of a hash of the plink or uri.
258                         // We add the hash of our own host because our host is the original creator of the post.
259                         $prefix_host = get_app()->get_hostname();
260                 } else {
261                         $prefix_host = '';
262
263                         // We are only storing the post so we create a GUID from the original hostname.
264                         if (!empty($item['author-link'])) {
265                                 $parsed = parse_url($item['author-link']);
266                                 if (!empty($parsed['host'])) {
267                                         $prefix_host = $parsed['host'];
268                                 }
269                         }
270
271                         if (empty($prefix_host) && !empty($item['plink'])) {
272                                 $parsed = parse_url($item['plink']);
273                                 if (!empty($parsed['host'])) {
274                                         $prefix_host = $parsed['host'];
275                                 }
276                         }
277
278                         if (empty($prefix_host) && !empty($item['uri'])) {
279                                 $parsed = parse_url($item['uri']);
280                                 if (!empty($parsed['host'])) {
281                                         $prefix_host = $parsed['host'];
282                                 }
283                         }
284
285                         // Is it in the format data@host.tld? - Used for mail contacts
286                         if (empty($prefix_host) && !empty($item['author-link']) && strstr($item['author-link'], '@')) {
287                                 $mailparts = explode('@', $item['author-link']);
288                                 $prefix_host = array_pop($mailparts);
289                         }
290                 }
291
292                 if (!empty($item['plink'])) {
293                         $guid = self::guidFromUri($item['plink'], $prefix_host);
294                 } elseif (!empty($item['uri'])) {
295                         $guid = self::guidFromUri($item['uri'], $prefix_host);
296                 } else {
297                         $guid = get_guid(32, hash('crc32', $prefix_host));
298                 }
299
300                 return $guid;
301         }
302
303         private static function contactId($item)
304         {
305                 $contact_id = (int)$item["contact-id"];
306
307                 if (!empty($contact_id)) {
308                         return $contact_id;
309                 }
310                 logger('Missing contact-id. Called by: '.System::callstack(), LOGGER_DEBUG);
311                 /*
312                  * First we are looking for a suitable contact that matches with the author of the post
313                  * This is done only for comments
314                  */
315                 if ($item['parent-uri'] != $item['uri']) {
316                         $contact_id = Contact::getIdForURL($item['author-link'], $item['uid']);
317                 }
318
319                 // If not present then maybe the owner was found
320                 if ($contact_id == 0) {
321                         $contact_id = Contact::getIdForURL($item['owner-link'], $item['uid']);
322                 }
323
324                 // Still missing? Then use the "self" contact of the current user
325                 if ($contact_id == 0) {
326                         $self = dba::selectFirst('contact', ['id'], ['self' => true, 'uid' => $item['uid']]);
327                         if (DBM::is_result($self)) {
328                                 $contact_id = $self["id"];
329                         }
330                 }
331                 logger("Contact-id was missing for post ".$item['guid']." from user id ".$item['uid']." - now set to ".$contact_id, LOGGER_DEBUG);
332
333                 return $contact_id;
334         }
335
336         public static function insert($item, $force_parent = false, $notify = false, $dontcache = false)
337         {
338                 $a = get_app();
339
340                 // If it is a posting where users should get notifications, then define it as wall posting
341                 if ($notify) {
342                         $item['wall'] = 1;
343                         $item['type'] = 'wall';
344                         $item['origin'] = 1;
345                         $item['network'] = NETWORK_DFRN;
346                         $item['protocol'] = PROTOCOL_DFRN;
347
348                         if (is_int($notify)) {
349                                 $priority = $notify;
350                         } else {
351                                 $priority = PRIORITY_HIGH;
352                         }
353                 } else {
354                         $item['network'] = trim(defaults($item, 'network', NETWORK_PHANTOM));
355                 }
356
357                 $item['guid'] = self::guid($item, $notify);
358                 $item['uri'] = notags(trim(defaults($item, 'uri', item_new_uri($a->get_hostname(), $item['uid'], $item['guid']))));
359
360                 // Store conversation data
361                 $item = Conversation::insert($item);
362
363                 /*
364                  * If a Diaspora signature structure was passed in, pull it out of the
365                  * item array and set it aside for later storage.
366                  */
367
368                 $dsprsig = null;
369                 if (x($item, 'dsprsig')) {
370                         $encoded_signature = $item['dsprsig'];
371                         $dsprsig = json_decode(base64_decode($item['dsprsig']));
372                         unset($item['dsprsig']);
373                 }
374
375                 if (!empty($item['diaspora_signed_text'])) {
376                         $diaspora_signed_text = $item['diaspora_signed_text'];
377                         unset($item['diaspora_signed_text']);
378                 } else {
379                         $diaspora_signed_text = '';
380                 }
381
382                 // Converting the plink
383                 /// @TODO Check if this is really still needed
384                 if ($item['network'] == NETWORK_OSTATUS) {
385                         if (isset($item['plink'])) {
386                                 $item['plink'] = OStatus::convertHref($item['plink']);
387                         } elseif (isset($item['uri'])) {
388                                 $item['plink'] = OStatus::convertHref($item['uri']);
389                         }
390                 }
391
392                 if (!empty($item['thr-parent'])) {
393                         $item['parent-uri'] = $item['thr-parent'];
394                 }
395
396                 if (x($item, 'gravity')) {
397                         $item['gravity'] = intval($item['gravity']);
398                 } elseif ($item['parent-uri'] === $item['uri']) {
399                         $item['gravity'] = 0;
400                 } elseif (activity_match($item['verb'],ACTIVITY_POST)) {
401                         $item['gravity'] = 6;
402                 } else {
403                         $item['gravity'] = 6;   // extensible catchall
404                 }
405
406                 $item['type'] = defaults($item, 'type', 'remote');
407
408                 $uid = intval($item['uid']);
409
410                 // check for create date and expire time
411                 $expire_interval = Config::get('system', 'dbclean-expire-days', 0);
412
413                 $user = dba::selectFirst('user', ['expire'], ['uid' => $uid]);
414                 if (DBM::is_result($user) && ($user['expire'] > 0) && (($user['expire'] < $expire_interval) || ($expire_interval == 0))) {
415                         $expire_interval = $user['expire'];
416                 }
417
418                 if (($expire_interval > 0) && !empty($item['created'])) {
419                         $expire_date = time() - ($expire_interval * 86400);
420                         $created_date = strtotime($item['created']);
421                         if ($created_date < $expire_date) {
422                                 logger('item-store: item created ('.date('c', $created_date).') before expiration time ('.date('c', $expire_date).'). ignored. ' . print_r($item,true), LOGGER_DEBUG);
423                                 return 0;
424                         }
425                 }
426
427                 /*
428                  * Do we already have this item?
429                  * We have to check several networks since Friendica posts could be repeated
430                  * via OStatus (maybe Diasporsa as well)
431                  */
432                 if (in_array($item['network'], [NETWORK_DIASPORA, NETWORK_DFRN, NETWORK_OSTATUS, ""])) {
433                         $condition = ["`uri` = ? AND `uid` = ? AND `network` IN (?, ?, ?)",
434                                 trim($item['uri']), $item['uid'],
435                                 NETWORK_DIASPORA, NETWORK_DFRN, NETWORK_OSTATUS];
436                         $existing = dba::selectFirst('item', ['id', 'network'], $condition);
437                         if (DBM::is_result($existing)) {
438                                 // We only log the entries with a different user id than 0. Otherwise we would have too many false positives
439                                 if ($uid != 0) {
440                                         logger("Item with uri ".$item['uri']." already existed for user ".$uid." with id ".$existing["id"]." target network ".$existing["network"]." - new network: ".$item['network']);
441                                 }
442
443                                 return $existing["id"];
444                         }
445                 }
446
447                 self::addLanguageInPostopts($item);
448
449                 $item['wall']          = intval(defaults($item, 'wall', 0));
450                 $item['extid']         = trim(defaults($item, 'extid', ''));
451                 $item['author-name']   = trim(defaults($item, 'author-name', ''));
452                 $item['author-link']   = trim(defaults($item, 'author-link', ''));
453                 $item['author-avatar'] = trim(defaults($item, 'author-avatar', ''));
454                 $item['owner-name']    = trim(defaults($item, 'owner-name', ''));
455                 $item['owner-link']    = trim(defaults($item, 'owner-link', ''));
456                 $item['owner-avatar']  = trim(defaults($item, 'owner-avatar', ''));
457                 $item['received']      = ((x($item, 'received') !== false) ? DateTimeFormat::utc($item['received']) : DateTimeFormat::utcNow());
458                 $item['created']       = ((x($item, 'created') !== false) ? DateTimeFormat::utc($item['created']) : $item['received']);
459                 $item['edited']        = ((x($item, 'edited') !== false) ? DateTimeFormat::utc($item['edited']) : $item['created']);
460                 $item['changed']       = ((x($item, 'changed') !== false) ? DateTimeFormat::utc($item['changed']) : $item['created']);
461                 $item['commented']     = ((x($item, 'commented') !== false) ? DateTimeFormat::utc($item['commented']) : $item['created']);
462                 $item['title']         = trim(defaults($item, 'title', ''));
463                 $item['location']      = trim(defaults($item, 'location', ''));
464                 $item['coord']         = trim(defaults($item, 'coord', ''));
465                 $item['visible']       = ((x($item, 'visible') !== false) ? intval($item['visible'])         : 1);
466                 $item['deleted']       = 0;
467                 $item['parent-uri']    = trim(defaults($item, 'parent-uri', $item['uri']));
468                 $item['verb']          = trim(defaults($item, 'verb', ''));
469                 $item['object-type']   = trim(defaults($item, 'object-type', ''));
470                 $item['object']        = trim(defaults($item, 'object', ''));
471                 $item['target-type']   = trim(defaults($item, 'target-type', ''));
472                 $item['target']        = trim(defaults($item, 'target', ''));
473                 $item['plink']         = trim(defaults($item, 'plink', ''));
474                 $item['allow_cid']     = trim(defaults($item, 'allow_cid', ''));
475                 $item['allow_gid']     = trim(defaults($item, 'allow_gid', ''));
476                 $item['deny_cid']      = trim(defaults($item, 'deny_cid', ''));
477                 $item['deny_gid']      = trim(defaults($item, 'deny_gid', ''));
478                 $item['private']       = intval(defaults($item, 'private', 0));
479                 $item['bookmark']      = intval(defaults($item, 'bookmark', 0));
480                 $item['body']          = trim(defaults($item, 'body', ''));
481                 $item['tag']           = trim(defaults($item, 'tag', ''));
482                 $item['attach']        = trim(defaults($item, 'attach', ''));
483                 $item['app']           = trim(defaults($item, 'app', ''));
484                 $item['origin']        = intval(defaults($item, 'origin', 0));
485                 $item['postopts']      = trim(defaults($item, 'postopts', ''));
486                 $item['resource-id']   = trim(defaults($item, 'resource-id', ''));
487                 $item['event-id']      = intval(defaults($item, 'event-id', 0));
488                 $item['inform']        = trim(defaults($item, 'inform', ''));
489                 $item['file']          = trim(defaults($item, 'file', ''));
490
491                 // When there is no content then we don't post it
492                 if ($item['body'].$item['title'] == '') {
493                         return 0;
494                 }
495
496                 // Items cannot be stored before they happen ...
497                 if ($item['created'] > DateTimeFormat::utcNow()) {
498                         $item['created'] = DateTimeFormat::utcNow();
499                 }
500
501                 // We haven't invented time travel by now.
502                 if ($item['edited'] > DateTimeFormat::utcNow()) {
503                         $item['edited'] = DateTimeFormat::utcNow();
504                 }
505
506                 if (($item['author-link'] == "") && ($item['owner-link'] == "")) {
507                         logger("Both author-link and owner-link are empty. Called by: " . System::callstack(), LOGGER_DEBUG);
508                 }
509
510                 $item['plink'] = defaults($item, 'plink', System::baseUrl() . '/display/' . urlencode($item['guid']));
511
512                 // The contact-id should be set before "self::insert" was called - but there seems to be issues sometimes
513                 $item["contact-id"] = self::contactId($item);
514
515                 $default = ['url' => $item['author-link'], 'name' => $item['author-name'],
516                         'photo' => $item['author-avatar'], 'network' => $item['network']];
517
518                 $item['author-id'] = defaults($item, 'author-id', Contact::getIdForURL($item["author-link"], 0, false, $default));
519
520                 if (Contact::isBlocked($item["author-id"])) {
521                         logger('Contact '.$item["author-id"].' is blocked, item '.$item["uri"].' will not be stored');
522                         return 0;
523                 }
524
525                 $default = ['url' => $item['owner-link'], 'name' => $item['owner-name'],
526                         'photo' => $item['owner-avatar'], 'network' => $item['network']];
527
528                 $item['owner-id'] = defaults($item, 'owner-id', Contact::getIdForURL($item["owner-link"], 0, false, $default));
529
530                 if (Contact::isBlocked($item["owner-id"])) {
531                         logger('Contact '.$item["owner-id"].' is blocked, item '.$item["uri"].' will not be stored');
532                         return 0;
533                 }
534
535                 if ($item['network'] == NETWORK_PHANTOM) {
536                         logger('Missing network. Called by: '.System::callstack(), LOGGER_DEBUG);
537
538                         $contact = Contact::getDetailsByURL($item['author-link'], $item['uid']);
539                         if (!empty($contact['network'])) {
540                                 $item['network'] = $contact["network"];
541                         } else {
542                                 $item['network'] = NETWORK_DFRN;
543                         }
544                         logger("Set network to " . $item["network"] . " for " . $item["uri"], LOGGER_DEBUG);
545                 }
546
547                 // Checking if there is already an item with the same guid
548                 logger('Checking for an item for user '.$item['uid'].' on network '.$item['network'].' with the guid '.$item['guid'], LOGGER_DEBUG);
549                 $condition = ['guid' => $item['guid'], 'network' => $item['network'], 'uid' => $item['uid']];
550                 if (dba::exists('item', $condition)) {
551                         logger('found item with guid '.$item['guid'].' for user '.$item['uid'].' on network '.$item['network'], LOGGER_DEBUG);
552                         return 0;
553                 }
554
555                 // Check for hashtags in the body and repair or add hashtag links
556                 self::setHashtags($item);
557
558                 $item['thr-parent'] = $item['parent-uri'];
559
560                 $notify_type = '';
561                 $allow_cid = '';
562                 $allow_gid = '';
563                 $deny_cid  = '';
564                 $deny_gid  = '';
565
566                 if ($item['parent-uri'] === $item['uri']) {
567                         $parent_id = 0;
568                         $parent_deleted = 0;
569                         $allow_cid = $item['allow_cid'];
570                         $allow_gid = $item['allow_gid'];
571                         $deny_cid  = $item['deny_cid'];
572                         $deny_gid  = $item['deny_gid'];
573                         $notify_type = 'wall-new';
574                 } else {
575                         // find the parent and snarf the item id and ACLs
576                         // and anything else we need to inherit
577
578                         $fields = ['uri', 'parent-uri', 'id', 'deleted',
579                                 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
580                                 'wall', 'private', 'forum_mode', 'origin'];
581                         $condition = ['uri' => $item['parent-uri'], 'uid' => $item['uid']];
582                         $params = ['order' => ['id' => false]];
583                         $parent = dba::selectFirst('item', $fields, $condition, $params);
584
585                         if (DBM::is_result($parent)) {
586                                 // is the new message multi-level threaded?
587                                 // even though we don't support it now, preserve the info
588                                 // and re-attach to the conversation parent.
589
590                                 if ($parent['uri'] != $parent['parent-uri']) {
591                                         $item['parent-uri'] = $parent['parent-uri'];
592
593                                         $condition = ['uri' => $item['parent-uri'],
594                                                 'parent-uri' => $item['parent-uri'],
595                                                 'uid' => $item['uid']];
596                                         $params = ['order' => ['id' => false]];
597                                         $toplevel_parent = dba::selectFirst('item', $fields, $condition, $params);
598
599                                         if (DBM::is_result($toplevel_parent)) {
600                                                 $parent = $toplevel_parent;
601                                         }
602                                 }
603
604                                 $parent_id      = $parent['id'];
605                                 $parent_deleted = $parent['deleted'];
606                                 $allow_cid      = $parent['allow_cid'];
607                                 $allow_gid      = $parent['allow_gid'];
608                                 $deny_cid       = $parent['deny_cid'];
609                                 $deny_gid       = $parent['deny_gid'];
610                                 $item['wall']    = $parent['wall'];
611                                 $notify_type    = 'comment-new';
612
613                                 /*
614                                  * If the parent is private, force privacy for the entire conversation
615                                  * This differs from the above settings as it subtly allows comments from
616                                  * email correspondents to be private even if the overall thread is not.
617                                  */
618                                 if ($parent['private']) {
619                                         $item['private'] = $parent['private'];
620                                 }
621
622                                 /*
623                                  * Edge case. We host a public forum that was originally posted to privately.
624                                  * The original author commented, but as this is a comment, the permissions
625                                  * weren't fixed up so it will still show the comment as private unless we fix it here.
626                                  */
627                                 if ((intval($parent['forum_mode']) == 1) && $parent['private']) {
628                                         $item['private'] = 0;
629                                 }
630
631                                 // If its a post from myself then tag the thread as "mention"
632                                 logger("Checking if parent ".$parent_id." has to be tagged as mention for user ".$item['uid'], LOGGER_DEBUG);
633                                 $user = dba::selectFirst('user', ['nickname'], ['uid' => $item['uid']]);
634                                 if (DBM::is_result($user)) {
635                                         $self = normalise_link(System::baseUrl() . '/profile/' . $user['nickname']);
636                                         logger("'myself' is ".$self." for parent ".$parent_id." checking against ".$item['author-link']." and ".$item['owner-link'], LOGGER_DEBUG);
637                                         if ((normalise_link($item['author-link']) == $self) || (normalise_link($item['owner-link']) == $self)) {
638                                                 dba::update('thread', ['mention' => true], ['iid' => $parent_id]);
639                                                 logger("tagged thread ".$parent_id." as mention for user ".$self, LOGGER_DEBUG);
640                                         }
641                                 }
642                         } else {
643                                 /*
644                                  * Allow one to see reply tweets from status.net even when
645                                  * we don't have or can't see the original post.
646                                  */
647                                 if ($force_parent) {
648                                         logger('$force_parent=true, reply converted to top-level post.');
649                                         $parent_id = 0;
650                                         $item['parent-uri'] = $item['uri'];
651                                         $item['gravity'] = 0;
652                                 } else {
653                                         logger('item parent '.$item['parent-uri'].' for '.$item['uid'].' was not found - ignoring item');
654                                         return 0;
655                                 }
656
657                                 $parent_deleted = 0;
658                         }
659                 }
660
661                 $condition = ["`uri` = ? AND `network` IN (?, ?) AND `uid` = ?",
662                         $item['uri'], $item['network'], NETWORK_DFRN, $item['uid']];
663                 if (dba::exists('item', $condition)) {
664                         logger('duplicated item with the same uri found. '.print_r($item,true));
665                         return 0;
666                 }
667
668                 // On Friendica and Diaspora the GUID is unique
669                 if (in_array($item['network'], [NETWORK_DFRN, NETWORK_DIASPORA])) {
670                         $condition = ['guid' => $item['guid'], 'uid' => $item['uid']];
671                         if (dba::exists('item', $condition)) {
672                                 logger('duplicated item with the same guid found. '.print_r($item,true));
673                                 return 0;
674                         }
675                 } else {
676                         // Check for an existing post with the same content. There seems to be a problem with OStatus.
677                         $condition = ["`body` = ? AND `network` = ? AND `created` = ? AND `contact-id` = ? AND `uid` = ?",
678                                         $item['body'], $item['network'], $item['created'], $item['contact-id'], $item['uid']];
679                         if (dba::exists('item', $condition)) {
680                                 logger('duplicated item with the same body found. '.print_r($item,true));
681                                 return 0;
682                         }
683                 }
684
685                 // Is this item available in the global items (with uid=0)?
686                 if ($item["uid"] == 0) {
687                         $item["global"] = true;
688
689                         // Set the global flag on all items if this was a global item entry
690                         dba::update('item', ['global' => true], ['uri' => $item["uri"]]);
691                 } else {
692                         $item["global"] = dba::exists('item', ['uid' => 0, 'uri' => $item["uri"]]);
693                 }
694
695                 // ACL settings
696                 if (strlen($allow_cid) || strlen($allow_gid) || strlen($deny_cid) || strlen($deny_gid)) {
697                         $private = 1;
698                 } else {
699                         $private = $item['private'];
700                 }
701
702                 $item["allow_cid"] = $allow_cid;
703                 $item["allow_gid"] = $allow_gid;
704                 $item["deny_cid"] = $deny_cid;
705                 $item["deny_gid"] = $deny_gid;
706                 $item["private"] = $private;
707                 $item["deleted"] = $parent_deleted;
708
709                 // Fill the cache field
710                 put_item_in_cache($item);
711
712                 if ($notify) {
713                         Addon::callHooks('post_local', $item);
714                 } else {
715                         Addon::callHooks('post_remote', $item);
716                 }
717
718                 // This array field is used to trigger some automatic reactions
719                 // It is mainly used in the "post_local" hook.
720                 unset($item['api_source']);
721
722                 if (x($item, 'cancel')) {
723                         logger('post cancelled by addon.');
724                         return 0;
725                 }
726
727                 /*
728                  * Check for already added items.
729                  * There is a timing issue here that sometimes creates double postings.
730                  * An unique index would help - but the limitations of MySQL (maximum size of index values) prevent this.
731                  */
732                 if ($item["uid"] == 0) {
733                         if (dba::exists('item', ['uri' => trim($item['uri']), 'uid' => 0])) {
734                                 logger('Global item already stored. URI: '.$item['uri'].' on network '.$item['network'], LOGGER_DEBUG);
735                                 return 0;
736                         }
737                 }
738
739                 logger('' . print_r($item,true), LOGGER_DATA);
740
741                 dba::transaction();
742                 $ret = dba::insert('item', $item);
743
744                 // When the item was successfully stored we fetch the ID of the item.
745                 if (DBM::is_result($ret)) {
746                         $current_post = dba::lastInsertId();
747                 } else {
748                         // This can happen - for example - if there are locking timeouts.
749                         dba::rollback();
750
751                         // Store the data into a spool file so that we can try again later.
752
753                         // At first we restore the Diaspora signature that we removed above.
754                         if (isset($encoded_signature)) {
755                                 $item['dsprsig'] = $encoded_signature;
756                         }
757
758                         // Now we store the data in the spool directory
759                         // We use "microtime" to keep the arrival order and "mt_rand" to avoid duplicates
760                         $file = 'item-'.round(microtime(true) * 10000).'-'.mt_rand().'.msg';
761
762                         $spoolpath = get_spoolpath();
763                         if ($spoolpath != "") {
764                                 $spool = $spoolpath.'/'.$file;
765                                 file_put_contents($spool, json_encode($item));
766                                 logger("Item wasn't stored - Item was spooled into file ".$file, LOGGER_DEBUG);
767                         }
768                         return 0;
769                 }
770
771                 if ($current_post == 0) {
772                         // This is one of these error messages that never should occur.
773                         logger("couldn't find created item - we better quit now.");
774                         dba::rollback();
775                         return 0;
776                 }
777
778                 // How much entries have we created?
779                 // We wouldn't need this query when we could use an unique index - but MySQL has length problems with them.
780                 $entries = dba::count('item', ['uri' => $item['uri'], 'uid' => $item['uid'], 'network' => $item['network']]);
781
782                 if ($entries > 1) {
783                         // There are duplicates. We delete our just created entry.
784                         logger('Duplicated post occurred. uri = ' . $item['uri'] . ' uid = ' . $item['uid']);
785
786                         // Yes, we could do a rollback here - but we are having many users with MyISAM.
787                         dba::delete('item', ['id' => $current_post]);
788                         dba::commit();
789                         return 0;
790                 } elseif ($entries == 0) {
791                         // This really should never happen since we quit earlier if there were problems.
792                         logger("Something is terribly wrong. We haven't found our created entry.");
793                         dba::rollback();
794                         return 0;
795                 }
796
797                 logger('created item '.$current_post);
798                 self::updateContact($item);
799
800                 if (!$parent_id || ($item['parent-uri'] === $item['uri'])) {
801                         $parent_id = $current_post;
802                 }
803
804                 // Set parent id
805                 dba::update('item', ['parent' => $parent_id], ['id' => $current_post]);
806
807                 $item['id'] = $current_post;
808                 $item['parent'] = $parent_id;
809
810                 // update the commented timestamp on the parent
811                 // Only update "commented" if it is really a comment
812                 if (($item['verb'] == ACTIVITY_POST) || !Config::get("system", "like_no_comment")) {
813                         dba::update('item', ['commented' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow()], ['id' => $parent_id]);
814                 } else {
815                         dba::update('item', ['changed' => DateTimeFormat::utcNow()], ['id' => $parent_id]);
816                 }
817
818                 if ($dsprsig) {
819                         /*
820                          * Friendica servers lower than 3.4.3-2 had double encoded the signature ...
821                          * We can check for this condition when we decode and encode the stuff again.
822                          */
823                         if (base64_encode(base64_decode(base64_decode($dsprsig->signature))) == base64_decode($dsprsig->signature)) {
824                                 $dsprsig->signature = base64_decode($dsprsig->signature);
825                                 logger("Repaired double encoded signature from handle ".$dsprsig->signer, LOGGER_DEBUG);
826                         }
827
828                         dba::insert('sign', ['iid' => $current_post, 'signed_text' => $dsprsig->signed_text,
829                                                 'signature' => $dsprsig->signature, 'signer' => $dsprsig->signer]);
830                 }
831
832                 if (!empty($diaspora_signed_text)) {
833                         // Formerly we stored the signed text, the signature and the author in different fields.
834                         // We now store the raw data so that we are more flexible.
835                         dba::insert('sign', ['iid' => $current_post, 'signed_text' => $diaspora_signed_text]);
836                 }
837
838                 $deleted = self::tagDeliver($item['uid'], $current_post);
839
840                 /*
841                  * current post can be deleted if is for a community page and no mention are
842                  * in it.
843                  */
844                 if (!$deleted && !$dontcache) {
845                         $posted_item = dba::selectFirst('item', [], ['id' => $current_post]);
846                         if (DBM::is_result($posted_item)) {
847                                 if ($notify) {
848                                         Addon::callHooks('post_local_end', $posted_item);
849                                 } else {
850                                         Addon::callHooks('post_remote_end', $posted_item);
851                                 }
852                         } else {
853                                 logger('new item not found in DB, id ' . $current_post);
854                         }
855                 }
856
857                 if ($item['parent-uri'] === $item['uri']) {
858                         self::addThread($current_post);
859                 } else {
860                         self::updateThread($parent_id);
861                 }
862
863                 dba::commit();
864
865                 /*
866                  * Due to deadlock issues with the "term" table we are doing these steps after the commit.
867                  * This is not perfect - but a workable solution until we found the reason for the problem.
868                  */
869                 Term::insertFromTagFieldByItemId($current_post);
870                 Term::insertFromFileFieldByItemId($current_post);
871
872                 if ($item['parent-uri'] === $item['uri']) {
873                         self::addShadow($current_post);
874                 } else {
875                         self::addShadowPost($current_post);
876                 }
877
878                 check_user_notification($current_post);
879
880                 if ($notify) {
881                         Worker::add(['priority' => $priority, 'dont_fork' => true], "Notifier", $notify_type, $current_post);
882                 } elseif (!empty($parent) && $parent['origin']) {
883                         Worker::add(['priority' => PRIORITY_HIGH, 'dont_fork' => true], "Notifier", "comment-import", $current_post);
884                 }
885
886                 return $current_post;
887         }
888
889         /**
890          * @brief Distributes public items to the receivers
891          *
892          * @param integer $itemid      Item ID that should be added
893          * @param string  $signed_text Original text (for Diaspora signatures), JSON encoded.
894          */
895         public static function distribute($itemid, $signed_text = '')
896         {
897                 $condition = ["`id` IN (SELECT `parent` FROM `item` WHERE `id` = ?)", $itemid];
898                 $parent = dba::selectFirst('item', ['owner-id'], $condition);
899                 if (!DBM::is_result($parent)) {
900                         return;
901                 }
902
903                 // Only distribute public items from native networks
904                 $condition = ['id' => $itemid, 'uid' => 0,
905                         'network' => [NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, ""],
906                         'visible' => true, 'deleted' => false, 'moderated' => false, 'private' => false];
907                 $item = dba::selectFirst('item', [], ['id' => $itemid]);
908                 if (!DBM::is_result($item)) {
909                         return;
910                 }
911
912                 unset($item['id']);
913                 unset($item['parent']);
914                 unset($item['mention']);
915                 unset($item['wall']);
916                 unset($item['origin']);
917                 unset($item['starred']);
918                 unset($item['rendered-hash']);
919                 unset($item['rendered-html']);
920
921                 $users = [];
922
923                 $condition = ["`nurl` IN (SELECT `nurl` FROM `contact` WHERE `id` = ?) AND `uid` != 0 AND NOT `blocked` AND `rel` IN (?, ?)",
924                         $parent['owner-id'], CONTACT_IS_SHARING,  CONTACT_IS_FRIEND];
925                 $contacts = dba::select('contact', ['uid'], $condition);
926                 while ($contact = dba::fetch($contacts)) {
927                         $users[$contact['uid']] = $contact['uid'];
928                 }
929
930                 $origin_uid = 0;
931
932                 if ($item['uri'] != $item['parent-uri']) {
933                         $parents = dba::select('item', ['uid', 'origin'], ["`uri` = ? AND `uid` != 0", $item['parent-uri']]);
934                         while ($parent = dba::fetch($parents)) {
935                                 $users[$parent['uid']] = $parent['uid'];
936                                 if ($parent['origin'] && !$item['origin']) {
937                                         $origin_uid = $parent['uid'];
938                                 }
939                         }
940                 }
941
942                 foreach ($users as $uid) {
943                         if ($origin_uid == $uid) {
944                                 $item['diaspora_signed_text'] = $signed_text;
945                         }
946                         self::storeForUser($itemid, $item, $uid);
947                 }
948         }
949
950         /**
951          * @brief Store public items for the receivers
952          *
953          * @param integer $itemid Item ID that should be added
954          * @param array   $item   The item entry that will be stored
955          * @param integer $uid    The user that will receive the item entry
956          */
957         private static function storeForUser($itemid, $item, $uid)
958         {
959                 $item['uid'] = $uid;
960                 $item['origin'] = 0;
961                 $item['wall'] = 0;
962                 if ($item['uri'] == $item['parent-uri']) {
963                         $item['contact-id'] = Contact::getIdForURL($item['owner-link'], $uid);
964                 } else {
965                         $item['contact-id'] = Contact::getIdForURL($item['author-link'], $uid);
966                 }
967
968                 if (empty($item['contact-id'])) {
969                         $self = dba::selectFirst('contact', ['id'], ['self' => true, 'uid' => $uid]);
970                         if (!DBM::is_result($self)) {
971                                 return;
972                         }
973                         $item['contact-id'] = $self['id'];
974                 }
975
976                 if (in_array($item['type'], ["net-comment", "wall-comment"])) {
977                         $item['type'] = 'remote-comment';
978                 } elseif ($item['type'] == 'wall') {
979                         $item['type'] = 'remote';
980                 }
981
982                 /// @todo Handling of "event-id"
983
984                 $notify = false;
985                 if ($item['uri'] == $item['parent-uri']) {
986                         $contact = dba::selectFirst('contact', [], ['id' => $item['contact-id'], 'self' => false]);
987                         if (DBM::is_result($contact)) {
988                                 $notify = self::isRemoteSelf($contact, $item);
989                         }
990                 }
991
992                 $distributed = self::insert($item, false, $notify, true);
993
994                 if (!$distributed) {
995                         logger("Distributed public item " . $itemid . " for user " . $uid . " wasn't stored", LOGGER_DEBUG);
996                 } else {
997                         logger("Distributed public item " . $itemid . " for user " . $uid . " with id " . $distributed, LOGGER_DEBUG);
998                 }
999         }
1000
1001         /**
1002          * @brief Add a shadow entry for a given item id that is a thread starter
1003          *
1004          * We store every public item entry additionally with the user id "0".
1005          * This is used for the community page and for the search.
1006          * It is planned that in the future we will store public item entries only once.
1007          *
1008          * @param integer $itemid Item ID that should be added
1009          */
1010         public static function addShadow($itemid)
1011         {
1012                 $fields = ['uid', 'private', 'moderated', 'visible', 'deleted', 'network'];
1013                 $condition = ['id' => $itemid, 'parent' => [0, $itemid]];
1014                 $item = dba::selectFirst('item', $fields, $condition);
1015
1016                 if (!DBM::is_result($item)) {
1017                         return;
1018                 }
1019
1020                 // is it already a copy?
1021                 if (($itemid == 0) || ($item['uid'] == 0)) {
1022                         return;
1023                 }
1024
1025                 // Is it a visible public post?
1026                 if (!$item["visible"] || $item["deleted"] || $item["moderated"] || $item["private"]) {
1027                         return;
1028                 }
1029
1030                 // is it an entry from a connector? Only add an entry for natively connected networks
1031                 if (!in_array($item["network"], [NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, ""])) {
1032                         return;
1033                 }
1034
1035                 $item = dba::selectFirst('item', [], ['id' => $itemid]);
1036
1037                 if (DBM::is_result($item) && ($item["allow_cid"] == '') && ($item["allow_gid"] == '') &&
1038                         ($item["deny_cid"] == '') && ($item["deny_gid"] == '')) {
1039
1040                         if (!dba::exists('item', ['uri' => $item['uri'], 'uid' => 0])) {
1041                                 // Preparing public shadow (removing user specific data)
1042                                 $item['uid'] = 0;
1043                                 unset($item['id']);
1044                                 unset($item['parent']);
1045                                 unset($item['wall']);
1046                                 unset($item['mention']);
1047                                 unset($item['origin']);
1048                                 unset($item['starred']);
1049                                 unset($item['rendered-hash']);
1050                                 unset($item['rendered-html']);
1051                                 if ($item['uri'] == $item['parent-uri']) {
1052                                         $item['contact-id'] = Contact::getIdForURL($item['owner-link']);
1053                                 } else {
1054                                         $item['contact-id'] = Contact::getIdForURL($item['author-link']);
1055                                 }
1056
1057                                 if (in_array($item['type'], ["net-comment", "wall-comment"])) {
1058                                         $item['type'] = 'remote-comment';
1059                                 } elseif ($item['type'] == 'wall') {
1060                                         $item['type'] = 'remote';
1061                                 }
1062
1063                                 $public_shadow = self::insert($item, false, false, true);
1064
1065                                 logger("Stored public shadow for thread ".$itemid." under id ".$public_shadow, LOGGER_DEBUG);
1066                         }
1067                 }
1068         }
1069
1070         /**
1071          * @brief Add a shadow entry for a given item id that is a comment
1072          *
1073          * This function does the same like the function above - but for comments
1074          *
1075          * @param integer $itemid Item ID that should be added
1076          */
1077         public static function addShadowPost($itemid)
1078         {
1079                 $item = dba::selectFirst('item', [], ['id' => $itemid]);
1080                 if (!DBM::is_result($item)) {
1081                         return;
1082                 }
1083
1084                 // Is it a toplevel post?
1085                 if ($item['id'] == $item['parent']) {
1086                         self::addShadow($itemid);
1087                         return;
1088                 }
1089
1090                 // Is this a shadow entry?
1091                 if ($item['uid'] == 0)
1092                         return;
1093
1094                 // Is there a shadow parent?
1095                 if (!dba::exists('item', ['uri' => $item['parent-uri'], 'uid' => 0])) {
1096                         return;
1097                 }
1098
1099                 // Is there already a shadow entry?
1100                 if (dba::exists('item', ['uri' => $item['uri'], 'uid' => 0])) {
1101                         return;
1102                 }
1103
1104                 // Save "origin" and "parent" state
1105                 $origin = $item['origin'];
1106                 $parent = $item['parent'];
1107
1108                 // Preparing public shadow (removing user specific data)
1109                 $item['uid'] = 0;
1110                 unset($item['id']);
1111                 unset($item['parent']);
1112                 unset($item['wall']);
1113                 unset($item['mention']);
1114                 unset($item['origin']);
1115                 unset($item['starred']);
1116                 unset($item['rendered-hash']);
1117                 unset($item['rendered-html']);
1118                 $item['contact-id'] = Contact::getIdForURL($item['author-link']);
1119
1120                 if (in_array($item['type'], ["net-comment", "wall-comment"])) {
1121                         $item['type'] = 'remote-comment';
1122                 } elseif ($item['type'] == 'wall') {
1123                         $item['type'] = 'remote';
1124                 }
1125
1126                 $public_shadow = self::insert($item, false, false, true);
1127
1128                 logger("Stored public shadow for comment ".$item['uri']." under id ".$public_shadow, LOGGER_DEBUG);
1129
1130                 // If this was a comment to a Diaspora post we don't get our comment back.
1131                 // This means that we have to distribute the comment by ourselves.
1132                 if ($origin) {
1133                         if (dba::exists('item', ['id' => $parent, 'network' => NETWORK_DIASPORA])) {
1134                                 self::distribute($public_shadow);
1135                         }
1136                 }
1137         }
1138
1139          /**
1140          * Adds a "lang" specification in a "postopts" element of given $arr,
1141          * if possible and not already present.
1142          * Expects "body" element to exist in $arr.
1143          */
1144         private static function addLanguageInPostopts(&$item)
1145         {
1146                 if (!empty($item['postopts'])) {
1147                         if (strstr($item['postopts'], 'lang=')) {
1148                                 // do not override
1149                                 return;
1150                         }
1151                         $postopts = $item['postopts'];
1152                 } else {
1153                         $postopts = "";
1154                 }
1155
1156                 $naked_body = Text\BBCode::toPlaintext($item['body'], false);
1157
1158                 $languages = (new Text_LanguageDetect())->detect($naked_body, 3);
1159
1160                 if (sizeof($languages) > 0) {
1161                         if ($postopts != '') {
1162                                 $postopts .= '&'; // arbitrary separator, to be reviewed
1163                         }
1164
1165                         $postopts .= 'lang=';
1166                         $sep = "";
1167
1168                         foreach ($languages as $language => $score) {
1169                                 $postopts .= $sep . $language . ";" . $score;
1170                                 $sep = ':';
1171                         }
1172                         $item['postopts'] = $postopts;
1173                 }
1174         }
1175
1176         /**
1177          * @brief Creates an unique guid out of a given uri
1178          *
1179          * @param string $uri uri of an item entry
1180          * @param string $host hostname for the GUID prefix
1181          * @return string unique guid
1182          */
1183         public static function guidFromUri($uri, $host)
1184         {
1185                 // Our regular guid routine is using this kind of prefix as well
1186                 // We have to avoid that different routines could accidentally create the same value
1187                 $parsed = parse_url($uri);
1188
1189                 // We use a hash of the hostname as prefix for the guid
1190                 $guid_prefix = hash("crc32", $host);
1191
1192                 // Remove the scheme to make sure that "https" and "http" doesn't make a difference
1193                 unset($parsed["scheme"]);
1194
1195                 // Glue it together to be able to make a hash from it
1196                 $host_id = implode("/", $parsed);
1197
1198                 // We could use any hash algorithm since it isn't a security issue
1199                 $host_hash = hash("ripemd128", $host_id);
1200
1201                 return $guid_prefix.$host_hash;
1202         }
1203
1204         /**
1205          * @brief Set "success_update" and "last-item" to the date of the last time we heard from this contact
1206          *
1207          * This can be used to filter for inactive contacts.
1208          * Only do this for public postings to avoid privacy problems, since poco data is public.
1209          * Don't set this value if it isn't from the owner (could be an author that we don't know)
1210          *
1211          * @param array $arr Contains the just posted item record
1212          */
1213         private static function updateContact($arr)
1214         {
1215                 // Unarchive the author
1216                 $contact = dba::selectFirst('contact', [], ['id' => $arr["author-id"]]);
1217                 if (DBM::is_result($contact)) {
1218                         Contact::unmarkForArchival($contact);
1219                 }
1220
1221                 // Unarchive the contact if it's not our own contact
1222                 $contact = dba::selectFirst('contact', [], ['id' => $arr["contact-id"], 'self' => false]);
1223                 if (DBM::is_result($contact)) {
1224                         Contact::unmarkForArchival($contact);
1225                 }
1226
1227                 $update = (!$arr['private'] && (($arr["author-link"] === $arr["owner-link"]) || ($arr["parent-uri"] === $arr["uri"])));
1228
1229                 // Is it a forum? Then we don't care about the rules from above
1230                 if (!$update && ($arr["network"] == NETWORK_DFRN) && ($arr["parent-uri"] === $arr["uri"])) {
1231                         if (dba::exists('contact', ['id' => $arr['contact-id'], 'forum' => true])) {
1232                                 $update = true;
1233                         }
1234                 }
1235
1236                 if ($update) {
1237                         dba::update('contact', ['success_update' => $arr['received'], 'last-item' => $arr['received']],
1238                                 ['id' => $arr['contact-id']]);
1239                 }
1240                 // Now do the same for the system wide contacts with uid=0
1241                 if (!$arr['private']) {
1242                         dba::update('contact', ['success_update' => $arr['received'], 'last-item' => $arr['received']],
1243                                 ['id' => $arr['owner-id']]);
1244
1245                         if ($arr['owner-id'] != $arr['author-id']) {
1246                                 dba::update('contact', ['success_update' => $arr['received'], 'last-item' => $arr['received']],
1247                                         ['id' => $arr['author-id']]);
1248                         }
1249                 }
1250         }
1251
1252         private static function setHashtags(&$item)
1253         {
1254
1255                 $tags = get_tags($item["body"]);
1256
1257                 // No hashtags?
1258                 if (!count($tags)) {
1259                         return false;
1260                 }
1261
1262                 // This sorting is important when there are hashtags that are part of other hashtags
1263                 // Otherwise there could be problems with hashtags like #test and #test2
1264                 rsort($tags);
1265
1266                 $URLSearchString = "^\[\]";
1267
1268                 // All hashtags should point to the home server if "local_tags" is activated
1269                 if (Config::get('system', 'local_tags')) {
1270                         $item["body"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1271                                         "#[url=".System::baseUrl()."/search?tag=$2]$2[/url]", $item["body"]);
1272
1273                         $item["tag"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1274                                         "#[url=".System::baseUrl()."/search?tag=$2]$2[/url]", $item["tag"]);
1275                 }
1276
1277                 // mask hashtags inside of url, bookmarks and attachments to avoid urls in urls
1278                 $item["body"] = preg_replace_callback("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1279                         function ($match) {
1280                                 return ("[url=" . str_replace("#", "&num;", $match[1]) . "]" . str_replace("#", "&num;", $match[2]) . "[/url]");
1281                         }, $item["body"]);
1282
1283                 $item["body"] = preg_replace_callback("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism",
1284                         function ($match) {
1285                                 return ("[bookmark=" . str_replace("#", "&num;", $match[1]) . "]" . str_replace("#", "&num;", $match[2]) . "[/bookmark]");
1286                         }, $item["body"]);
1287
1288                 $item["body"] = preg_replace_callback("/\[attachment (.*)\](.*?)\[\/attachment\]/ism",
1289                         function ($match) {
1290                                 return ("[attachment " . str_replace("#", "&num;", $match[1]) . "]" . $match[2] . "[/attachment]");
1291                         }, $item["body"]);
1292
1293                 // Repair recursive urls
1294                 $item["body"] = preg_replace("/&num;\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1295                                 "&num;$2", $item["body"]);
1296
1297                 foreach ($tags as $tag) {
1298                         if ((strpos($tag, '#') !== 0) || strpos($tag, '[url=')) {
1299                                 continue;
1300                         }
1301
1302                         $basetag = str_replace('_',' ',substr($tag,1));
1303
1304                         $newtag = '#[url=' . System::baseUrl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
1305
1306                         $item["body"] = str_replace($tag, $newtag, $item["body"]);
1307
1308                         if (!stristr($item["tag"], "/search?tag=" . $basetag . "]" . $basetag . "[/url]")) {
1309                                 if (strlen($item["tag"])) {
1310                                         $item["tag"] = ','.$item["tag"];
1311                                 }
1312                                 $item["tag"] = $newtag.$item["tag"];
1313                         }
1314                 }
1315
1316                 // Convert back the masked hashtags
1317                 $item["body"] = str_replace("&num;", "#", $item["body"]);
1318         }
1319
1320         public static function getGuidById($id)
1321         {
1322                 $item = dba::selectFirst('item', ['guid'], ['id' => $id]);
1323                 if (DBM::is_result($item)) {
1324                         return $item['guid'];
1325                 } else {
1326                         return '';
1327                 }
1328         }
1329
1330         public static function getIdAndNickByGuid($guid, $uid = 0)
1331         {
1332                 $nick = "";
1333                 $id = 0;
1334
1335                 if ($uid == 0) {
1336                         $uid == local_user();
1337                 }
1338
1339                 // Does the given user have this item?
1340                 if ($uid) {
1341                         $item = dba::fetch_first("SELECT `item`.`id`, `user`.`nickname` FROM `item`
1342                                 INNER JOIN `user` ON `user`.`uid` = `item`.`uid`
1343                                 WHERE `item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated`
1344                                         AND `item`.`guid` = ? AND `item`.`uid` = ?", $guid, $uid);
1345                         if (DBM::is_result($item)) {
1346                                 $id = $item["id"];
1347                                 $nick = $item["nickname"];
1348                         }
1349                 }
1350
1351                 // Or is it anywhere on the server?
1352                 if ($nick == "") {
1353                         $item = dba::fetch_first("SELECT `item`.`id`, `user`.`nickname` FROM `item`
1354                                 INNER JOIN `user` ON `user`.`uid` = `item`.`uid`
1355                                 WHERE `item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated`
1356                                         AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
1357                                         AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
1358                                         AND NOT `item`.`private` AND `item`.`wall`
1359                                         AND `item`.`guid` = ?", $guid);
1360                         if (DBM::is_result($item)) {
1361                                 $id = $item["id"];
1362                                 $nick = $item["nickname"];
1363                         }
1364                 }
1365                 return ["nick" => $nick, "id" => $id];
1366         }
1367
1368         /**
1369          * look for mention tags and setup a second delivery chain for forum/community posts if appropriate
1370          * @param int $uid
1371          * @param int $item_id
1372          * @return bool true if item was deleted, else false
1373          */
1374         private static function tagDeliver($uid, $item_id)
1375         {
1376                 $mention = false;
1377
1378                 $user = dba::selectFirst('user', [], ['uid' => $uid]);
1379                 if (!DBM::is_result($user)) {
1380                         return;
1381                 }
1382
1383                 $community_page = (($user['page-flags'] == PAGE_COMMUNITY) ? true : false);
1384                 $prvgroup = (($user['page-flags'] == PAGE_PRVGROUP) ? true : false);
1385
1386                 $item = dba::selectFirst('item', [], ['id' => $item_id]);
1387                 if (!DBM::is_result($item)) {
1388                         return;
1389                 }
1390
1391                 $link = normalise_link(System::baseUrl() . '/profile/' . $user['nickname']);
1392
1393                 /*
1394                  * Diaspora uses their own hardwired link URL in @-tags
1395                  * instead of the one we supply with webfinger
1396                  */
1397                 $dlink = normalise_link(System::baseUrl() . '/u/' . $user['nickname']);
1398
1399                 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
1400                 if ($cnt) {
1401                         foreach ($matches as $mtch) {
1402                                 if (link_compare($link, $mtch[1]) || link_compare($dlink, $mtch[1])) {
1403                                         $mention = true;
1404                                         logger('mention found: ' . $mtch[2]);
1405                                 }
1406                         }
1407                 }
1408
1409                 if (!$mention) {
1410                         if (($community_page || $prvgroup) &&
1411                                   !$item['wall'] && !$item['origin'] && ($item['id'] == $item['parent'])) {
1412                                 // mmh.. no mention.. community page or private group... no wall.. no origin.. top-post (not a comment)
1413                                 // delete it!
1414                                 logger("no-mention top-level post to community or private group. delete.");
1415                                 dba::delete('item', ['id' => $item_id]);
1416                                 return true;
1417                         }
1418                         return;
1419                 }
1420
1421                 $arr = ['item' => $item, 'user' => $user];
1422
1423                 Addon::callHooks('tagged', $arr);
1424
1425                 if (!$community_page && !$prvgroup) {
1426                         return;
1427                 }
1428
1429                 /*
1430                  * tgroup delivery - setup a second delivery chain
1431                  * prevent delivery looping - only proceed
1432                  * if the message originated elsewhere and is a top-level post
1433                  */
1434                 if ($item['wall'] || $item['origin'] || ($item['id'] != $item['parent'])) {
1435                         return;
1436                 }
1437
1438                 // now change this copy of the post to a forum head message and deliver to all the tgroup members
1439                 $self = dba::selectFirst('contact', ['id', 'name', 'url', 'thumb'], ['uid' => $uid, 'self' => true]);
1440                 if (!DBM::is_result($self)) {
1441                         return;
1442                 }
1443
1444                 $owner_id = Contact::getIdForURL($self['url']);
1445
1446                 // also reset all the privacy bits to the forum default permissions
1447
1448                 $private = ($user['allow_cid'] || $user['allow_gid'] || $user['deny_cid'] || $user['deny_gid']) ? 1 : 0;
1449
1450                 $forum_mode = ($prvgroup ? 2 : 1);
1451
1452                 $fields = ['wall' => true, 'origin' => true, 'forum_mode' => $forum_mode, 'contact-id' => $self['id'],
1453                         'owner-id' => $owner_id, 'owner-name' => $self['name'], 'owner-link' => $self['url'],
1454                         'owner-avatar' => $self['thumb'], 'private' => $private, 'allow_cid' => $user['allow_cid'],
1455                         'allow_gid' => $user['allow_gid'], 'deny_cid' => $user['deny_cid'], 'deny_gid' => $user['deny_gid']];
1456                 dba::update('item', $fields, ['id' => $item_id]);
1457
1458                 self::updateThread($item_id);
1459
1460                 Worker::add(['priority' => PRIORITY_HIGH, 'dont_fork' => true], 'Notifier', 'tgroup', $item_id);
1461         }
1462
1463         public static function isRemoteSelf($contact, &$datarray)
1464         {
1465                 $a = get_app();
1466
1467                 if (!$contact['remote_self']) {
1468                         return false;
1469                 }
1470
1471                 // Prevent the forwarding of posts that are forwarded
1472                 if ($datarray["extid"] == NETWORK_DFRN) {
1473                         logger('Already forwarded', LOGGER_DEBUG);
1474                         return false;
1475                 }
1476
1477                 // Prevent to forward already forwarded posts
1478                 if ($datarray["app"] == $a->get_hostname()) {
1479                         logger('Already forwarded (second test)', LOGGER_DEBUG);
1480                         return false;
1481                 }
1482
1483                 // Only forward posts
1484                 if ($datarray["verb"] != ACTIVITY_POST) {
1485                         logger('No post', LOGGER_DEBUG);
1486                         return false;
1487                 }
1488
1489                 if (($contact['network'] != NETWORK_FEED) && $datarray['private']) {
1490                         logger('Not public', LOGGER_DEBUG);
1491                         return false;
1492                 }
1493
1494                 $datarray2 = $datarray;
1495                 logger('remote-self start - Contact '.$contact['url'].' - '.$contact['remote_self'].' Item '.print_r($datarray, true), LOGGER_DEBUG);
1496                 if ($contact['remote_self'] == 2) {
1497                         $self = dba::selectFirst('contact', ['id', 'name', 'url', 'thumb'],
1498                                         ['uid' => $contact['uid'], 'self' => true]);
1499                         if (DBM::is_result($self)) {
1500                                 $datarray['contact-id'] = $self["id"];
1501
1502                                 $datarray['owner-name'] = $self["name"];
1503                                 $datarray['owner-link'] = $self["url"];
1504                                 $datarray['owner-avatar'] = $self["thumb"];
1505
1506                                 $datarray['author-name']   = $datarray['owner-name'];
1507                                 $datarray['author-link']   = $datarray['owner-link'];
1508                                 $datarray['author-avatar'] = $datarray['owner-avatar'];
1509
1510                                 unset($datarray['created']);
1511                                 unset($datarray['edited']);
1512
1513                                 unset($datarray['network']);
1514                                 unset($datarray['owner-id']);
1515                                 unset($datarray['author-id']);
1516                         }
1517
1518                         if ($contact['network'] != NETWORK_FEED) {
1519                                 $datarray["guid"] = get_guid(32);
1520                                 unset($datarray["plink"]);
1521                                 $datarray["uri"] = item_new_uri($a->get_hostname(), $contact['uid'], $datarray["guid"]);
1522                                 $datarray["parent-uri"] = $datarray["uri"];
1523                                 $datarray["thr-parent"] = $datarray["uri"];
1524                                 $datarray["extid"] = NETWORK_DFRN;
1525                                 $urlpart = parse_url($datarray2['author-link']);
1526                                 $datarray["app"] = $urlpart["host"];
1527                         } else {
1528                                 $datarray['private'] = 0;
1529                         }
1530                 }
1531
1532                 if ($contact['network'] != NETWORK_FEED) {
1533                         // Store the original post
1534                         $result = self::insert($datarray2, false, false);
1535                         logger('remote-self post original item - Contact '.$contact['url'].' return '.$result.' Item '.print_r($datarray2, true), LOGGER_DEBUG);
1536                 } else {
1537                         $datarray["app"] = "Feed";
1538                         $result = true;
1539                 }
1540
1541                 // Trigger automatic reactions for addons
1542                 $datarray['api_source'] = true;
1543
1544                 // We have to tell the hooks who we are - this really should be improved
1545                 $_SESSION["authenticated"] = true;
1546                 $_SESSION["uid"] = $contact['uid'];
1547
1548                 return $result;
1549         }
1550
1551         /**
1552          *
1553          * @param string $s
1554          * @param int    $uid
1555          * @param array  $item
1556          * @param int    $cid
1557          * @return string
1558          */
1559         public static function fixPrivatePhotos($s, $uid, $item = null, $cid = 0)
1560         {
1561                 if (Config::get('system', 'disable_embedded')) {
1562                         return $s;
1563                 }
1564
1565                 logger('check for photos', LOGGER_DEBUG);
1566                 $site = substr(System::baseUrl(), strpos(System::baseUrl(), '://'));
1567
1568                 $orig_body = $s;
1569                 $new_body = '';
1570
1571                 $img_start = strpos($orig_body, '[img');
1572                 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
1573                 $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
1574
1575                 while (($img_st_close !== false) && ($img_len !== false)) {
1576                         $img_st_close++; // make it point to AFTER the closing bracket
1577                         $image = substr($orig_body, $img_start + $img_st_close, $img_len);
1578
1579                         logger('found photo ' . $image, LOGGER_DEBUG);
1580
1581                         if (stristr($image, $site . '/photo/')) {
1582                                 // Only embed locally hosted photos
1583                                 $replace = false;
1584                                 $i = basename($image);
1585                                 $i = str_replace(['.jpg', '.png', '.gif'], ['', '', ''], $i);
1586                                 $x = strpos($i, '-');
1587
1588                                 if ($x) {
1589                                         $res = substr($i, $x + 1);
1590                                         $i = substr($i, 0, $x);
1591                                         $fields = ['data', 'type', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid'];
1592                                         $photo = dba::selectFirst('photo', $fields, ['resource-id' => $i, 'scale' => $res, 'uid' => $uid]);
1593                                         if (DBM::is_result($photo)) {
1594                                                 /*
1595                                                  * Check to see if we should replace this photo link with an embedded image
1596                                                  * 1. No need to do so if the photo is public
1597                                                  * 2. If there's a contact-id provided, see if they're in the access list
1598                                                  *    for the photo. If so, embed it.
1599                                                  * 3. Otherwise, if we have an item, see if the item permissions match the photo
1600                                                  *    permissions, regardless of order but first check to see if they're an exact
1601                                                  *    match to save some processing overhead.
1602                                                  */
1603                                                 if (self::hasPermissions($photo)) {
1604                                                         if ($cid) {
1605                                                                 $recips = self::enumeratePermissions($photo);
1606                                                                 if (in_array($cid, $recips)) {
1607                                                                         $replace = true;
1608                                                                 }
1609                                                         } elseif ($item) {
1610                                                                 if (self::samePermissions($item, $photo)) {
1611                                                                         $replace = true;
1612                                                                 }
1613                                                         }
1614                                                 }
1615                                                 if ($replace) {
1616                                                         $data = $photo['data'];
1617                                                         $type = $photo['type'];
1618
1619                                                         // If a custom width and height were specified, apply before embedding
1620                                                         if (preg_match("/\[img\=([0-9]*)x([0-9]*)\]/is", substr($orig_body, $img_start, $img_st_close), $match)) {
1621                                                                 logger('scaling photo', LOGGER_DEBUG);
1622
1623                                                                 $width = intval($match[1]);
1624                                                                 $height = intval($match[2]);
1625
1626                                                                 $Image = new Image($data, $type);
1627                                                                 if ($Image->isValid()) {
1628                                                                         $Image->scaleDown(max($width, $height));
1629                                                                         $data = $Image->asString();
1630                                                                         $type = $Image->getType();
1631                                                                 }
1632                                                         }
1633
1634                                                         logger('replacing photo', LOGGER_DEBUG);
1635                                                         $image = 'data:' . $type . ';base64,' . base64_encode($data);
1636                                                         logger('replaced: ' . $image, LOGGER_DATA);
1637                                                 }
1638                                         }
1639                                 }
1640                         }
1641
1642                         $new_body = $new_body . substr($orig_body, 0, $img_start + $img_st_close) . $image . '[/img]';
1643                         $orig_body = substr($orig_body, $img_start + $img_st_close + $img_len + strlen('[/img]'));
1644                         if ($orig_body === false) {
1645                                 $orig_body = '';
1646                         }
1647
1648                         $img_start = strpos($orig_body, '[img');
1649                         $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
1650                         $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
1651                 }
1652
1653                 $new_body = $new_body . $orig_body;
1654
1655                 return $new_body;
1656         }
1657
1658         private static function hasPermissions($obj)
1659         {
1660                 return (
1661                         (
1662                                 x($obj, 'allow_cid')
1663                         ) || (
1664                                 x($obj, 'allow_gid')
1665                         ) || (
1666                                 x($obj, 'deny_cid')
1667                         ) || (
1668                                 x($obj, 'deny_gid')
1669                         )
1670                 );
1671         }
1672
1673         private static function samePermissions($obj1, $obj2)
1674         {
1675                 // first part is easy. Check that these are exactly the same.
1676                 if (($obj1['allow_cid'] == $obj2['allow_cid'])
1677                         && ($obj1['allow_gid'] == $obj2['allow_gid'])
1678                         && ($obj1['deny_cid'] == $obj2['deny_cid'])
1679                         && ($obj1['deny_gid'] == $obj2['deny_gid'])) {
1680                         return true;
1681                 }
1682
1683                 // This is harder. Parse all the permissions and compare the resulting set.
1684                 $recipients1 = self::enumeratePermissions($obj1);
1685                 $recipients2 = self::enumeratePermissions($obj2);
1686                 sort($recipients1);
1687                 sort($recipients2);
1688
1689                 /// @TODO Comparison of arrays, maybe use array_diff_assoc() here?
1690                 return ($recipients1 == $recipients2);
1691         }
1692
1693         // returns an array of contact-ids that are allowed to see this object
1694         private static function enumeratePermissions($obj)
1695         {
1696                 $allow_people = expand_acl($obj['allow_cid']);
1697                 $allow_groups = Group::expand(expand_acl($obj['allow_gid']));
1698                 $deny_people  = expand_acl($obj['deny_cid']);
1699                 $deny_groups  = Group::expand(expand_acl($obj['deny_gid']));
1700                 $recipients   = array_unique(array_merge($allow_people, $allow_groups));
1701                 $deny         = array_unique(array_merge($deny_people, $deny_groups));
1702                 $recipients   = array_diff($recipients, $deny);
1703                 return $recipients;
1704         }
1705
1706         public static function getFeedTags($item)
1707         {
1708                 $ret = [];
1709                 $matches = false;
1710                 $cnt = preg_match_all('|\#\[url\=(.*?)\](.*?)\[\/url\]|', $item['tag'], $matches);
1711                 if ($cnt) {
1712                         for ($x = 0; $x < $cnt; $x ++) {
1713                                 if ($matches[1][$x]) {
1714                                         $ret[$matches[2][$x]] = ['#', $matches[1][$x], $matches[2][$x]];
1715                                 }
1716                         }
1717                 }
1718                 $matches = false;
1719                 $cnt = preg_match_all('|\@\[url\=(.*?)\](.*?)\[\/url\]|', $item['tag'], $matches);
1720                 if ($cnt) {
1721                         for ($x = 0; $x < $cnt; $x ++) {
1722                                 if ($matches[1][$x]) {
1723                                         $ret[] = ['@', $matches[1][$x], $matches[2][$x]];
1724                                 }
1725                         }
1726                 }
1727                 return $ret;
1728         }
1729
1730         public static function expire($uid, $days, $network = "", $force = false)
1731         {
1732                 if (!$uid || ($days < 1)) {
1733                         return;
1734                 }
1735
1736                 /*
1737                  * $expire_network_only = save your own wall posts
1738                  * and just expire conversations started by others
1739                  */
1740                 $expire_network_only = PConfig::get($uid,'expire', 'network_only');
1741                 $sql_extra = (intval($expire_network_only) ? " AND wall = 0 " : "");
1742
1743                 if ($network != "") {
1744                         $sql_extra .= sprintf(" AND network = '%s' ", dbesc($network));
1745
1746                         /*
1747                          * There is an index "uid_network_received" but not "uid_network_created"
1748                          * This avoids the creation of another index just for one purpose.
1749                          * And it doesn't really matter wether to look at "received" or "created"
1750                          */
1751                         $range = "AND `received` < UTC_TIMESTAMP() - INTERVAL %d DAY ";
1752                 } else {
1753                         $range = "AND `created` < UTC_TIMESTAMP() - INTERVAL %d DAY ";
1754                 }
1755
1756                 $r = q("SELECT `file`, `resource-id`, `starred`, `type`, `id` FROM `item`
1757                         WHERE `uid` = %d $range
1758                         AND `id` = `parent`
1759                         $sql_extra
1760                         AND `deleted` = 0",
1761                         intval($uid),
1762                         intval($days)
1763                 );
1764
1765                 if (!DBM::is_result($r)) {
1766                         return;
1767                 }
1768
1769                 $expire_items = PConfig::get($uid, 'expire', 'items', 1);
1770
1771                 // Forcing expiring of items - but not notes and marked items
1772                 if ($force) {
1773                         $expire_items = true;
1774                 }
1775
1776                 $expire_notes = PConfig::get($uid, 'expire', 'notes', 1);
1777                 $expire_starred = PConfig::get($uid, 'expire', 'starred', 1);
1778                 $expire_photos = PConfig::get($uid, 'expire', 'photos', 0);
1779
1780                 logger('User '.$uid.': expire: # items=' . count($r). "; expire items: $expire_items, expire notes: $expire_notes, expire starred: $expire_starred, expire photos: $expire_photos");
1781
1782                 foreach ($r as $item) {
1783
1784                         // don't expire filed items
1785
1786                         if (strpos($item['file'],'[') !== false) {
1787                                 continue;
1788                         }
1789
1790                         // Only expire posts, not photos and photo comments
1791
1792                         if ($expire_photos == 0 && strlen($item['resource-id'])) {
1793                                 continue;
1794                         } elseif ($expire_starred == 0 && intval($item['starred'])) {
1795                                 continue;
1796                         } elseif ($expire_notes == 0 && $item['type'] == 'note') {
1797                                 continue;
1798                         } elseif ($expire_items == 0 && $item['type'] != 'note') {
1799                                 continue;
1800                         }
1801
1802                         self::deleteById($item['id'], PRIORITY_LOW);
1803                 }
1804         }
1805
1806         public static function firstPostDate($uid, $wall = false)
1807         {
1808                 $condition = ['uid' => $uid, 'wall' => $wall, 'deleted' => false, 'visible' => true, 'moderated' => false];
1809                 $params = ['order' => ['created' => false]];
1810                 $thread = dba::selectFirst('thread', ['created'], $condition, $params);
1811                 if (DBM::is_result($thread)) {
1812                         return substr(DateTimeFormat::local($thread['created']), 0, 10);
1813                 }
1814                 return false;
1815         }
1816
1817         /**
1818          * @brief add/remove activity to an item
1819          *
1820          * Toggle activities as like,dislike,attend of an item
1821          *
1822          * @param string $item_id
1823          * @param string $verb
1824          *              Activity verb. One of
1825          *                      like, unlike, dislike, undislike, attendyes, unattendyes,
1826          *                      attendno, unattendno, attendmaybe, unattendmaybe
1827          * @hook 'post_local_end'
1828          *              array $arr
1829          *                      'post_id' => ID of posted item
1830          */
1831         public static function performLike($item_id, $verb)
1832         {
1833                 if (!local_user() && !remote_user()) {
1834                         return false;
1835                 }
1836
1837                 switch ($verb) {
1838                         case 'like':
1839                         case 'unlike':
1840                                 $bodyverb = L10n::t('%1$s likes %2$s\'s %3$s');
1841                                 $activity = ACTIVITY_LIKE;
1842                                 break;
1843                         case 'dislike':
1844                         case 'undislike':
1845                                 $bodyverb = L10n::t('%1$s doesn\'t like %2$s\'s %3$s');
1846                                 $activity = ACTIVITY_DISLIKE;
1847                                 break;
1848                         case 'attendyes':
1849                         case 'unattendyes':
1850                                 $bodyverb = L10n::t('%1$s is attending %2$s\'s %3$s');
1851                                 $activity = ACTIVITY_ATTEND;
1852                                 break;
1853                         case 'attendno':
1854                         case 'unattendno':
1855                                 $bodyverb = L10n::t('%1$s is not attending %2$s\'s %3$s');
1856                                 $activity = ACTIVITY_ATTENDNO;
1857                                 break;
1858                         case 'attendmaybe':
1859                         case 'unattendmaybe':
1860                                 $bodyverb = L10n::t('%1$s may attend %2$s\'s %3$s');
1861                                 $activity = ACTIVITY_ATTENDMAYBE;
1862                                 break;
1863                         default:
1864                                 logger('like: unknown verb ' . $verb . ' for item ' . $item_id);
1865                                 return false;
1866                 }
1867
1868                 // Enable activity toggling instead of on/off
1869                 $event_verb_flag = $activity === ACTIVITY_ATTEND || $activity === ACTIVITY_ATTENDNO || $activity === ACTIVITY_ATTENDMAYBE;
1870
1871                 logger('like: verb ' . $verb . ' item ' . $item_id);
1872
1873                 $item = dba::selectFirst('item', [], ['`id` = ? OR `uri` = ?', $item_id, $item_id]);
1874                 if (!DBM::is_result($item)) {
1875                         logger('like: unknown item ' . $item_id);
1876                         return false;
1877                 }
1878
1879                 $uid = $item['uid'];
1880                 if (($uid == 0) && local_user()) {
1881                         $uid = local_user();
1882                 }
1883
1884                 if (!can_write_wall($uid)) {
1885                         logger('like: unable to write on wall ' . $uid);
1886                         return false;
1887                 }
1888
1889                 // Retrieves the local post owner
1890                 $owner_self_contact = dba::selectFirst('contact', [], ['uid' => $uid, 'self' => true]);
1891                 if (!DBM::is_result($owner_self_contact)) {
1892                         logger('like: unknown owner ' . $uid);
1893                         return false;
1894                 }
1895
1896                 // Retrieve the current logged in user's public contact
1897                 $author_id = public_contact();
1898
1899                 $author_contact = dba::selectFirst('contact', [], ['id' => $author_id]);
1900                 if (!DBM::is_result($author_contact)) {
1901                         logger('like: unknown author ' . $author_id);
1902                         return false;
1903                 }
1904
1905                 // Contact-id is the uid-dependant author contact
1906                 if (local_user() == $uid) {
1907                         $item_contact_id = $owner_self_contact['id'];
1908                         $item_contact = $owner_self_contact;
1909                 } else {
1910                         $item_contact_id = Contact::getIdForURL($author_contact['url'], $uid, true);
1911                         $item_contact = dba::selectFirst('contact', [], ['id' => $item_contact_id]);
1912                         if (!DBM::is_result($item_contact)) {
1913                                 logger('like: unknown item contact ' . $item_contact_id);
1914                                 return false;
1915                         }
1916                 }
1917
1918                 // Look for an existing verb row
1919                 // event participation are essentially radio toggles. If you make a subsequent choice,
1920                 // we need to eradicate your first choice.
1921                 if ($event_verb_flag) {
1922                         $verbs = "'" . dbesc(ACTIVITY_ATTEND) . "', '" . dbesc(ACTIVITY_ATTENDNO) . "', '" . dbesc(ACTIVITY_ATTENDMAYBE) . "'";
1923                 } else {
1924                         $verbs = "'".dbesc($activity)."'";
1925                 }
1926
1927                 /// @todo This query is expected to be a performance eater due to the "OR" - it has to be changed totally
1928                 $existing_like = q("SELECT `id`, `guid`, `verb` FROM `item`
1929                         WHERE `verb` IN ($verbs)
1930                         AND `deleted` = 0
1931                         AND `author-id` = %d
1932                         AND `uid` = %d
1933                         AND (`parent` = '%s' OR `parent-uri` = '%s' OR `thr-parent` = '%s')
1934                         LIMIT 1",
1935                         intval($author_contact['id']),
1936                         intval($item['uid']),
1937                         dbesc($item_id), dbesc($item_id), dbesc($item['uri'])
1938                 );
1939
1940                 // If it exists, mark it as deleted
1941                 if (DBM::is_result($existing_like)) {
1942                         $like_item = $existing_like[0];
1943
1944                         // Already voted, undo it
1945                         $fields = ['deleted' => true, 'unseen' => true, 'changed' => DateTimeFormat::utcNow()];
1946                         dba::update('item', $fields, ['id' => $like_item['id']]);
1947
1948                         // Clean up the Diaspora signatures for this like
1949                         // Go ahead and do it even if Diaspora support is disabled. We still want to clean up
1950                         // if it had been enabled in the past
1951                         dba::delete('sign', ['iid' => $like_item['id']]);
1952
1953                         $like_item_id = $like_item['id'];
1954                         Worker::add(PRIORITY_HIGH, "Notifier", "like", $like_item_id);
1955
1956                         if (!$event_verb_flag || $like_item['verb'] == $activity) {
1957                                 return true;
1958                         }
1959                 }
1960
1961                 // Verb is "un-something", just trying to delete existing entries
1962                 if (strpos($verb, 'un') === 0) {
1963                         return true;
1964                 }
1965
1966                 // Else or if event verb different from existing row, create a new item row
1967                 $post_type = (($item['resource-id']) ? L10n::t('photo') : L10n::t('status'));
1968                 if ($item['object-type'] === ACTIVITY_OBJ_EVENT) {
1969                         $post_type = L10n::t('event');
1970                 }
1971                 $objtype = $item['resource-id'] ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE ;
1972                 $link = xmlify('<link rel="alternate" type="text/html" href="' . System::baseUrl() . '/display/' . $owner_self_contact['nick'] . '/' . $item['id'] . '" />' . "\n") ;
1973                 $body = $item['body'];
1974
1975                 $obj = <<< EOT
1976
1977                 <object>
1978                         <type>$objtype</type>
1979                         <local>1</local>
1980                         <id>{$item['uri']}</id>
1981                         <link>$link</link>
1982                         <title></title>
1983                         <content>$body</content>
1984                 </object>
1985 EOT;
1986
1987                 $ulink = '[url=' . $author_contact['url'] . ']' . $author_contact['name'] . '[/url]';
1988                 $alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
1989                 $plink = '[url=' . System::baseUrl() . '/display/' . $owner_self_contact['nick'] . '/' . $item['id'] . ']' . $post_type . '[/url]';
1990
1991                 $new_item = [
1992                         'guid'          => get_guid(32),
1993                         'uri'           => item_new_uri(self::getApp()->get_hostname(), $item['uid']),
1994                         'uid'           => $item['uid'],
1995                         'contact-id'    => $item_contact_id,
1996                         'type'          => 'activity',
1997                         'wall'          => $item['wall'],
1998                         'origin'        => 1,
1999                         'gravity'       => GRAVITY_LIKE,
2000                         'parent'        => $item['id'],
2001                         'parent-uri'    => $item['uri'],
2002                         'thr-parent'    => $item['uri'],
2003                         'owner-id'      => $item['owner-id'],
2004                         'owner-name'    => $item['owner-name'],
2005                         'owner-link'    => $item['owner-link'],
2006                         'owner-avatar'  => $item['owner-avatar'],
2007                         'author-id'     => $author_contact['id'],
2008                         'author-name'   => $author_contact['name'],
2009                         'author-link'   => $author_contact['url'],
2010                         'author-avatar' => $author_contact['thumb'],
2011                         'body'          => sprintf($bodyverb, $ulink, $alink, $plink),
2012                         'verb'          => $activity,
2013                         'object-type'   => $objtype,
2014                         'object'        => $obj,
2015                         'allow_cid'     => $item['allow_cid'],
2016                         'allow_gid'     => $item['allow_gid'],
2017                         'deny_cid'      => $item['deny_cid'],
2018                         'deny_gid'      => $item['deny_gid'],
2019                         'visible'       => 1,
2020                         'unseen'        => 1,
2021                 ];
2022
2023                 $new_item_id = self::insert($new_item);
2024
2025                 // If the parent item isn't visible then set it to visible
2026                 if (!$item['visible']) {
2027                         self::update(['visible' => true], ['id' => $item['id']]);
2028                 }
2029
2030                 // Save the author information for the like in case we need to relay to Diaspora
2031                 Diaspora::storeLikeSignature($item_contact, $new_item_id);
2032
2033                 $new_item['id'] = $new_item_id;
2034
2035                 Addon::callHooks('post_local_end', $new_item);
2036
2037                 Worker::add(PRIORITY_HIGH, "Notifier", "like", $new_item_id);
2038
2039                 return true;
2040         }
2041
2042         private static function addThread($itemid, $onlyshadow = false)
2043         {
2044                 $fields = ['uid', 'created', 'edited', 'commented', 'received', 'changed', 'wall', 'private', 'pubmail',
2045                         'moderated', 'visible', 'spam', 'starred', 'bookmark', 'contact-id',
2046                         'deleted', 'origin', 'forum_mode', 'mention', 'network', 'author-id', 'owner-id'];
2047                 $condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
2048                 $item = dba::selectFirst('item', $fields, $condition);
2049
2050                 if (!DBM::is_result($item)) {
2051                         return;
2052                 }
2053
2054                 $item['iid'] = $itemid;
2055
2056                 if (!$onlyshadow) {
2057                         $result = dba::insert('thread', $item);
2058
2059                         logger("Add thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
2060                 }
2061         }
2062
2063         private static function updateThread($itemid, $setmention = false)
2064         {
2065                 $fields = ['uid', 'guid', 'title', 'body', 'created', 'edited', 'commented', 'received', 'changed',
2066                         'wall', 'private', 'pubmail', 'moderated', 'visible', 'spam', 'starred', 'bookmark', 'contact-id',
2067                         'deleted', 'origin', 'forum_mode', 'network', 'author-id', 'owner-id', 'rendered-html', 'rendered-hash'];
2068                 $condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
2069
2070                 $item = dba::selectFirst('item', $fields, $condition);
2071                 if (!DBM::is_result($item)) {
2072                         return;
2073                 }
2074
2075                 if ($setmention) {
2076                         $item["mention"] = 1;
2077                 }
2078
2079                 $sql = "";
2080
2081                 $fields = [];
2082
2083                 foreach ($item as $field => $data) {
2084                         if (!in_array($field, ["guid", "title", "body", "rendered-html", "rendered-hash"])) {
2085                                 $fields[$field] = $data;
2086                         }
2087                 }
2088
2089                 $result = dba::update('thread', $fields, ['iid' => $itemid]);
2090
2091                 logger("Update thread for item ".$itemid." - guid ".$item["guid"]." - ".(int)$result, LOGGER_DEBUG);
2092
2093                 // Updating a shadow item entry
2094                 $items = dba::selectFirst('item', ['id'], ['guid' => $item['guid'], 'uid' => 0]);
2095
2096                 if (!DBM::is_result($items)) {
2097                         return;
2098                 }
2099
2100                 $fields = ['title' => $item['title'], 'body' => $item['body'],
2101                         'rendered-html' => $item['rendered-html'], 'rendered-hash' => $item['rendered-hash']];
2102                 $result = dba::update('item', $fields, ['id' => $items['id']]);
2103
2104                 logger("Updating public shadow for post ".$items["id"]." - guid ".$item["guid"]." Result: ".print_r($result, true), LOGGER_DEBUG);
2105         }
2106
2107         private static function deleteThread($itemid, $itemuri = "")
2108         {
2109                 $item = dba::selectFirst('thread', ['uid'], ['iid' => $itemid]);
2110                 if (!DBM::is_result($item)) {
2111                         logger('No thread found for id '.$itemid, LOGGER_DEBUG);
2112                         return;
2113                 }
2114
2115                 // Using dba::delete at this time could delete the associated item entries
2116                 $result = dba::e("DELETE FROM `thread` WHERE `iid` = ?", $itemid);
2117
2118                 logger("deleteThread: Deleted thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
2119
2120                 if ($itemuri != "") {
2121                         $condition = ["`uri` = ? AND NOT `deleted` AND NOT (`uid` IN (?, 0))", $itemuri, $item["uid"]];
2122                         if (!dba::exists('item', $condition)) {
2123                                 dba::delete('item', ['uri' => $itemuri, 'uid' => 0]);
2124                                 logger("deleteThread: Deleted shadow for item ".$itemuri, LOGGER_DEBUG);
2125                         }
2126                 }
2127         }
2128 }