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