]> git.mxchange.org Git - friendica.git/blob - src/Model/Item.php
Update does work now
[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 Friendica\Util\Lock;
28 use dba;
29 use Text_LanguageDetect;
30
31 require_once 'boot.php';
32 require_once 'include/items.php';
33 require_once 'include/text.php';
34
35 class Item extends BaseObject
36 {
37         // Field list that is used to display the items
38         const DISPLAY_FIELDLIST = ['uid', 'id', 'parent', 'uri', 'thr-parent', 'parent-uri', 'guid', 'network',
39                         'commented', 'created', 'edited', 'received', 'verb', 'object-type', 'postopts', 'plink',
40                         'wall', 'private', 'starred', 'origin', 'title', 'body', 'file', 'attach', 'language',
41                         'content-warning', 'location', 'coord', 'app', 'rendered-hash', 'rendered-html', 'object',
42                         'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'item_id',
43                         'author-id', 'author-link', 'author-name', 'author-avatar', 'author-network',
44                         'owner-id', 'owner-link', 'owner-name', 'owner-avatar', 'owner-network',
45                         'contact-id', 'contact-link', 'contact-name', 'contact-avatar',
46                         'writable', 'self', 'cid', 'alias',
47                         'event-id', 'event-created', 'event-edited', 'event-start', 'event-finish',
48                         'event-summary', 'event-desc', 'event-location', 'event-type',
49                         'event-nofinish', 'event-adjust', 'event-ignore', 'event-id'];
50
51         // Field list that is used to deliver items via the protocols
52         const DELIVER_FIELDLIST = ['uid', 'id', 'parent', 'uri', 'thr-parent', 'parent-uri', 'guid',
53                         'created', 'edited', 'verb', 'object-type', 'object', 'target',
54                         'private', 'title', 'body', 'location', 'coord', 'app',
55                         'attach', 'tag', 'bookmark', 'deleted', 'extid',
56                         'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
57                         'author-id', 'author-link', 'owner-link', 'contact-uid',
58                         'signed_text', 'signature', 'signer'];
59
60         // Field list for "item-content" table that is mixed with the item table
61         const MIXED_CONTENT_FIELDLIST = ['title', 'content-warning', 'body', 'location',
62                         'coord', 'app', 'rendered-hash', 'rendered-html', 'verb',
63                         'object-type', 'object', 'target-type', 'target', 'plink'];
64
65         // Field list for "item-content" table that is not present in the "item" table
66         const CONTENT_FIELDLIST = ['language'];
67
68         // All fields in the item table
69         const ITEM_FIELDLIST = ['id', 'uid', 'parent', 'uri', 'parent-uri', 'thr-parent', 'guid',
70                         'contact-id', 'type', 'wall', 'gravity', 'extid', 'icid', 'iaid',
71                         'created', 'edited', 'commented', 'received', 'changed', 'verb',
72                         'postopts', 'plink', 'resource-id', 'event-id', 'tag', 'attach', 'inform',
73                         'file', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
74                         'private', 'pubmail', 'moderated', 'visible', 'starred', 'bookmark',
75                         'unseen', 'deleted', 'origin', 'forum_mode', 'mention', 'global', 'network',
76                         'title', 'content-warning', 'body', 'location', 'coord', 'app',
77                         'rendered-hash', 'rendered-html', 'object-type', 'object', 'target-type', 'target',
78                         'author-id', 'author-link', 'author-name', 'author-avatar',
79                         'owner-id', 'owner-link', 'owner-name', 'owner-avatar'];
80
81         const ACTIVITIES = [ACTIVITY_LIKE, ACTIVITY_DISLIKE, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE];
82
83         /**
84          * @brief returns an activity index from an activity string
85          *
86          * @param string $activity activity string
87          * @return integer Activity index
88          */
89         private static function activityToIndex($activity)
90         {
91                 $index = array_search($activity, self::ACTIVITIES);
92
93                 if (is_bool($index)) {
94                         $index = -1;
95                 }
96
97                 return $index;
98         }
99
100         /**
101          * @brief returns an activity string from an activity index
102          *
103          * @param integer $index activity index
104          * @return string Activity string
105          */
106         private static function indexToActivity($index)
107         {
108                 if (!isset(self::ACTIVITIES[$index])) {
109                         return '';
110                 }
111
112                 return self::ACTIVITIES[$index];
113         }
114
115         /**
116          * @brief Fetch a single item row
117          *
118          * @param mixed $stmt statement object
119          * @return array current row
120          */
121         public static function fetch($stmt)
122         {
123                 $row = dba::fetch($stmt);
124
125                 if (is_bool($row)) {
126                         return $row;
127                 }
128
129                 // ---------------------- Transform item structure data ----------------------
130
131                 // We prefer the data from the user's contact over the public one
132                 if (!empty($row['author-link']) && !empty($row['contact-link']) &&
133                         ($row['author-link'] == $row['contact-link'])) {
134                         if (isset($row['author-avatar']) && !empty($row['contact-avatar'])) {
135                                 $row['author-avatar'] = $row['contact-avatar'];
136                         }
137                         if (isset($row['author-name']) && !empty($row['contact-name'])) {
138                                 $row['author-name'] = $row['contact-name'];
139                         }
140                 }
141
142                 if (!empty($row['owner-link']) && !empty($row['contact-link']) &&
143                         ($row['owner-link'] == $row['contact-link'])) {
144                         if (isset($row['owner-avatar']) && !empty($row['contact-avatar'])) {
145                                 $row['owner-avatar'] = $row['contact-avatar'];
146                         }
147                         if (isset($row['owner-name']) && !empty($row['contact-name'])) {
148                                 $row['owner-name'] = $row['contact-name'];
149                         }
150                 }
151
152                 // We can always comment on posts from these networks
153                 if (array_key_exists('writable', $row) &&
154                         in_array($row['internal-network'], [NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS])) {
155                         $row['writable'] = true;
156                 }
157
158                 // ---------------------- Transform item content data ----------------------
159
160                 // Fetch data from the item-content table whenever there is content there
161                 foreach (self::MIXED_CONTENT_FIELDLIST as $field) {
162                         if (empty($row[$field]) && !empty($row['internal-item-' . $field])) {
163                                 $row[$field] = $row['internal-item-' . $field];
164                         }
165                         unset($row['internal-item-' . $field]);
166                 }
167
168                 if (!empty($row['internal-iaid']) && array_key_exists('verb', $row)) {
169                         $row['verb'] = self::indexToActivity($row['internal-activity']);
170                         if (array_key_exists('title', $row)) {
171                                 $row['title'] = '';
172                         }
173                         if (array_key_exists('body', $row)) {
174                                 $row['body'] = $row['verb'];
175                         }
176                         if (array_key_exists('object', $row)) {
177                                 $row['object'] = '';
178                         }
179                         if (array_key_exists('object-type', $row)) {
180                                 $row['object-type'] = ACTIVITY_OBJ_NOTE;
181                         }
182                 } elseif (in_array($row['verb'], ['', ACTIVITY_POST, ACTIVITY_SHARE])) {
183                         // Posts don't have an object or target - but having tags or files.
184                         // We safe some performance by building tag and file strings only here.
185                         // We remove object and target since they aren't used for this type.
186                         if (array_key_exists('object', $row)) {
187                                 $row['object'] = '';
188                         }
189                         if (array_key_exists('target', $row)) {
190                                 $row['target'] = '';
191                         }
192                         // Build the tag string out of the term entries
193                         if (array_key_exists('tag', $row)) {
194                                 $row['tag'] = Term::tagTextFromItemId($row['internal-iid']);
195                         }
196
197                         // Build the file string out of the term entries
198                         if (array_key_exists('file', $row)) {
199                                 $row['file'] = Term::fileTextFromItemId($row['internal-iid']);
200                         }
201                 }
202
203                 // Remove internal fields
204                 unset($row['internal-activity']);
205                 unset($row['internal-network']);
206                 unset($row['internal-iid']);
207                 unset($row['internal-iaid']);
208                 unset($row['internal-icid']);
209
210                 return $row;
211         }
212
213         /**
214          * @brief Fills an array with data from an item query
215          *
216          * @param object $stmt statement object
217          * @return array Data array
218          */
219         public static function inArray($stmt, $do_close = true) {
220                 if (is_bool($stmt)) {
221                         return $stmt;
222                 }
223
224                 $data = [];
225                 while ($row = self::fetch($stmt)) {
226                         $data[] = $row;
227                 }
228                 if ($do_close) {
229                         dba::close($stmt);
230                 }
231                 return $data;
232         }
233
234         /**
235          * @brief Check if item data exists
236          *
237          * @param array $condition array of fields for condition
238          *
239          * @return boolean Are there rows for that condition?
240          */
241         public static function exists($condition) {
242                 $stmt = self::select(['id'], $condition, ['limit' => 1]);
243
244                 if (is_bool($stmt)) {
245                         $retval = $stmt;
246                 } else {
247                         $retval = (dba::num_rows($stmt) > 0);
248                 }
249
250                 dba::close($stmt);
251
252                 return $retval;
253         }
254
255         /**
256          * Retrieve a single record from the item table for a given user and returns it in an associative array
257          *
258          * @brief Retrieve a single record from a table
259          * @param integer $uid User ID
260          * @param array  $fields
261          * @param array  $condition
262          * @param array  $params
263          * @return bool|array
264          * @see dba::select
265          */
266         public static function selectFirstForUser($uid, array $selected = [], array $condition = [], $params = [])
267         {
268                 $params['uid'] = $uid;
269
270                 if (empty($selected)) {
271                         $selected = Item::DISPLAY_FIELDLIST;
272                 }
273
274                 return self::selectFirst($selected, $condition, $params);
275         }
276
277         /**
278          * @brief Select rows from the item table for a given user
279          *
280          * @param integer $uid User ID
281          * @param array  $selected  Array of selected fields, empty for all
282          * @param array  $condition Array of fields for condition
283          * @param array  $params    Array of several parameters
284          *
285          * @return boolean|object
286          */
287         public static function selectForUser($uid, array $selected = [], array $condition = [], $params = [])
288         {
289                 $params['uid'] = $uid;
290
291                 if (empty($selected)) {
292                         $selected = Item::DISPLAY_FIELDLIST;
293                 }
294
295                 return self::select($selected, $condition, $params);
296         }
297
298         /**
299          * Retrieve a single record from the item table and returns it in an associative array
300          *
301          * @brief Retrieve a single record from a table
302          * @param array  $fields
303          * @param array  $condition
304          * @param array  $params
305          * @return bool|array
306          * @see dba::select
307          */
308         public static function selectFirst(array $fields = [], array $condition = [], $params = [])
309         {
310                 $params['limit'] = 1;
311
312                 $result = self::select($fields, $condition, $params);
313
314                 if (is_bool($result)) {
315                         return $result;
316                 } else {
317                         $row = self::fetch($result);
318                         dba::close($result);
319                         return $row;
320                 }
321         }
322
323         /**
324          * @brief Select rows from the item table
325          *
326          * @param array  $selected  Array of selected fields, empty for all
327          * @param array  $condition Array of fields for condition
328          * @param array  $params    Array of several parameters
329          *
330          * @return boolean|object
331          */
332         public static function select(array $selected = [], array $condition = [], $params = [])
333         {
334                 $uid = 0;
335                 $usermode = false;
336
337                 if (isset($params['uid'])) {
338                         $uid = $params['uid'];
339                         $usermode = true;
340                 }
341
342                 $fields = self::fieldlist($selected);
343
344                 $select_fields = self::constructSelectFields($fields, $selected);
345
346                 $condition_string = dba::buildCondition($condition);
347
348                 $condition_string = self::addTablesToFields($condition_string, $fields);
349
350                 if ($usermode) {
351                         $condition_string = $condition_string . ' AND ' . self::condition(false);
352                 }
353
354                 $param_string = self::addTablesToFields(dba::buildParameter($params), $fields);
355
356                 $table = "`item` " . self::constructJoins($uid, $select_fields . $condition_string . $param_string, false, $usermode);
357
358                 $sql = "SELECT " . $select_fields . " FROM " . $table . $condition_string . $param_string;
359
360                 return dba::p($sql, $condition);
361         }
362
363         /**
364          * @brief Select rows from the starting post in the item table
365          *
366          * @param integer $uid User ID
367          * @param array  $fields    Array of selected fields, empty for all
368          * @param array  $condition Array of fields for condition
369          * @param array  $params    Array of several parameters
370          *
371          * @return boolean|object
372          */
373         public static function selectThreadForUser($uid, array $selected = [], array $condition = [], $params = [])
374         {
375                 $params['uid'] = $uid;
376
377                 if (empty($selected)) {
378                         $selected = Item::DISPLAY_FIELDLIST;
379                 }
380
381                 return self::selectThread($selected, $condition, $params);
382         }
383
384         /**
385          * Retrieve a single record from the starting post in the item table and returns it in an associative array
386          *
387          * @brief Retrieve a single record from a table
388          * @param integer $uid User ID
389          * @param array  $selected
390          * @param array  $condition
391          * @param array  $params
392          * @return bool|array
393          * @see dba::select
394          */
395         public static function selectFirstThreadForUser($uid, array $selected = [], array $condition = [], $params = [])
396         {
397                 $params['uid'] = $uid;
398
399                 if (empty($selected)) {
400                         $selected = Item::DISPLAY_FIELDLIST;
401                 }
402
403                 return self::selectFirstThread($selected, $condition, $params);
404         }
405
406         /**
407          * Retrieve a single record from the starting post in the item table and returns it in an associative array
408          *
409          * @brief Retrieve a single record from a table
410          * @param array  $fields
411          * @param array  $condition
412          * @param array  $params
413          * @return bool|array
414          * @see dba::select
415          */
416         public static function selectFirstThread(array $fields = [], array $condition = [], $params = [])
417         {
418                 $params['limit'] = 1;
419                 $result = self::selectThread($fields, $condition, $params);
420
421                 if (is_bool($result)) {
422                         return $result;
423                 } else {
424                         $row = self::fetch($result);
425                         dba::close($result);
426                         return $row;
427                 }
428         }
429
430         /**
431          * @brief Select rows from the starting post in the item table
432          *
433          * @param array  $selected  Array of selected fields, empty for all
434          * @param array  $condition Array of fields for condition
435          * @param array  $params    Array of several parameters
436          *
437          * @return boolean|object
438          */
439         public static function selectThread(array $selected = [], array $condition = [], $params = [])
440         {
441                 $uid = 0;
442                 $usermode = false;
443
444                 if (isset($params['uid'])) {
445                         $uid = $params['uid'];
446                         $usermode = true;
447                 }
448
449                 $fields = self::fieldlist($selected);
450
451                 $threadfields = ['thread' => ['iid', 'uid', 'contact-id', 'owner-id', 'author-id',
452                         'created', 'edited', 'commented', 'received', 'changed', 'wall', 'private',
453                         'pubmail', 'moderated', 'visible', 'starred', 'ignored', 'bookmark',
454                         'unseen', 'deleted', 'origin', 'forum_mode', 'mention', 'network']];
455
456                 $select_fields = self::constructSelectFields($fields, $selected);
457
458                 $condition_string = dba::buildCondition($condition);
459
460                 $condition_string = self::addTablesToFields($condition_string, $threadfields);
461                 $condition_string = self::addTablesToFields($condition_string, $fields);
462
463                 if ($usermode) {
464                         $condition_string = $condition_string . ' AND ' . self::condition(true);
465                 }
466
467                 $param_string = dba::buildParameter($params);
468                 $param_string = self::addTablesToFields($param_string, $threadfields);
469                 $param_string = self::addTablesToFields($param_string, $fields);
470
471                 $table = "`thread` " . self::constructJoins($uid, $select_fields . $condition_string . $param_string, true, $usermode);
472
473                 $sql = "SELECT " . $select_fields . " FROM " . $table . $condition_string . $param_string;
474
475                 return dba::p($sql, $condition);
476         }
477
478         /**
479          * @brief Returns a list of fields that are associated with the item table
480          *
481          * @return array field list
482          */
483         private static function fieldlist($selected)
484         {
485                 $fields = [];
486
487                 $fields['item'] = ['id', 'uid', 'parent', 'uri', 'parent-uri', 'thr-parent', 'guid',
488                         'contact-id', 'owner-id', 'author-id', 'type', 'wall', 'gravity', 'extid',
489                         'created', 'edited', 'commented', 'received', 'changed', 'postopts',
490                         'resource-id', 'event-id', 'tag', 'attach', 'inform',
491                         'file', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
492                         'private', 'pubmail', 'moderated', 'visible', 'starred', 'bookmark',
493                         'unseen', 'deleted', 'origin', 'forum_mode', 'mention', 'global',
494                         'id' => 'item_id', 'network', 'icid', 'iaid', 'id' => 'internal-iid',
495                         'network' => 'internal-network', 'icid' => 'internal-icid',
496                         'iaid' => 'internal-iaid'];
497
498                 $fields['item-activity'] = ['activity' => 'internal-activity'];
499
500                 $fields['item-content'] = array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST);
501
502                 $fields['author'] = ['url' => 'author-link', 'name' => 'author-name',
503                         'thumb' => 'author-avatar', 'nick' => 'author-nick', 'network' => 'author-network'];
504
505                 $fields['owner'] = ['url' => 'owner-link', 'name' => 'owner-name',
506                         'thumb' => 'owner-avatar', 'nick' => 'owner-nick', 'network' => 'owner-network'];
507
508                 $fields['contact'] = ['url' => 'contact-link', 'name' => 'contact-name', 'thumb' => 'contact-avatar',
509                         'writable', 'self', 'id' => 'cid', 'alias', 'uid' => 'contact-uid',
510                         'photo', 'name-date', 'uri-date', 'avatar-date', 'thumb', 'dfrn-id'];
511
512                 $fields['parent-item'] = ['guid' => 'parent-guid', 'network' => 'parent-network'];
513
514                 $fields['parent-item-author'] = ['url' => 'parent-author-link', 'name' => 'parent-author-name'];
515
516                 $fields['event'] = ['created' => 'event-created', 'edited' => 'event-edited',
517                         'start' => 'event-start','finish' => 'event-finish',
518                         'summary' => 'event-summary','desc' => 'event-desc',
519                         'location' => 'event-location', 'type' => 'event-type',
520                         'nofinish' => 'event-nofinish','adjust' => 'event-adjust',
521                         'ignore' => 'event-ignore', 'id' => 'event-id'];
522
523                 $fields['sign'] = ['signed_text', 'signature', 'signer'];
524
525                 return $fields;
526         }
527
528         /**
529          * @brief Returns SQL condition for the "select" functions
530          *
531          * @param boolean $thread_mode Called for the items (false) or for the threads (true)
532          *
533          * @return string SQL condition
534          */
535         private static function condition($thread_mode)
536         {
537                 if ($thread_mode) {
538                         $master_table = "`thread`";
539                 } else {
540                         $master_table = "`item`";
541                 }
542                 return "$master_table.`visible` AND NOT $master_table.`deleted` AND NOT $master_table.`moderated` AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`) ";
543         }
544
545         /**
546          * @brief Returns all needed "JOIN" commands for the "select" functions
547          *
548          * @param integer $uid User ID
549          * @param string $sql_commands The parts of the built SQL commands in the "select" functions
550          * @param boolean $thread_mode Called for the items (false) or for the threads (true)
551          *
552          * @return string The SQL joins for the "select" functions
553          */
554         private static function constructJoins($uid, $sql_commands, $thread_mode, $user_mode)
555         {
556                 if ($thread_mode) {
557                         $master_table = "`thread`";
558                         $master_table_key = "`thread`.`iid`";
559                         $joins = "STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid` ";
560                 } else {
561                         $master_table = "`item`";
562                         $master_table_key = "`item`.`id`";
563                         $joins = '';
564                 }
565
566                 if ($user_mode) {
567                         $joins .= sprintf("STRAIGHT_JOIN `contact` ON `contact`.`id` = $master_table.`contact-id`
568                                 AND NOT `contact`.`blocked`
569                                 AND ((NOT `contact`.`readonly` AND NOT `contact`.`pending` AND (`contact`.`rel` IN (%s, %s)))
570                                 OR `contact`.`self` OR (`item`.`id` != `item`.`parent`) OR `contact`.`uid` = 0)
571                                 STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = $master_table.`author-id` AND NOT `author`.`blocked`
572                                 STRAIGHT_JOIN `contact` AS `owner` ON `owner`.`id` = $master_table.`owner-id` AND NOT `owner`.`blocked`
573                                 LEFT JOIN `user-item` ON `user-item`.`iid` = $master_table_key AND `user-item`.`uid` = %d",
574                                 CONTACT_IS_SHARING, CONTACT_IS_FRIEND, intval($uid));
575                 } else {
576                         if (strpos($sql_commands, "`contact`.") !== false) {
577                                 $joins .= "STRAIGHT_JOIN `contact` ON `contact`.`id` = $master_table.`contact-id`";
578                         }
579                         if (strpos($sql_commands, "`author`.") !== false) {
580                                 $joins .= " STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = $master_table.`author-id`";
581                         }
582                         if (strpos($sql_commands, "`owner`.") !== false) {
583                                 $joins .= " STRAIGHT_JOIN `contact` AS `owner` ON `owner`.`id` = $master_table.`owner-id`";
584                         }
585                 }
586
587                 if (strpos($sql_commands, "`group_member`.") !== false) {
588                         $joins .= " STRAIGHT_JOIN `group_member` ON `group_member`.`contact-id` = $master_table.`contact-id`";
589                 }
590
591                 if (strpos($sql_commands, "`user`.") !== false) {
592                         $joins .= " STRAIGHT_JOIN `user` ON `user`.`uid` = $master_table.`uid`";
593                 }
594
595                 if (strpos($sql_commands, "`event`.") !== false) {
596                         $joins .= " LEFT JOIN `event` ON `event-id` = `event`.`id`";
597                 }
598
599                 if (strpos($sql_commands, "`sign`.") !== false) {
600                         $joins .= " LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id`";
601                 }
602
603                 if (strpos($sql_commands, "`item-activity`.") !== false) {
604                         $joins .= " LEFT JOIN `item-activity` ON `item-activity`.`id` = `item`.`iaid`";
605                 }
606
607                 if (strpos($sql_commands, "`item-content`.") !== false) {
608                         $joins .= " LEFT JOIN `item-content` ON `item-content`.`id` = `item`.`icid`";
609                 }
610
611                 if ((strpos($sql_commands, "`parent-item`.") !== false) || (strpos($sql_commands, "`parent-author`.") !== false)) {
612                         $joins .= " STRAIGHT_JOIN `item` AS `parent-item` ON `parent-item`.`id` = `item`.`parent`";
613                 }
614
615                 if (strpos($sql_commands, "`parent-item-author`.") !== false) {
616                         $joins .= " STRAIGHT_JOIN `contact` AS `parent-item-author` ON `parent-item-author`.`id` = `parent-item`.`author-id`";
617                 }
618
619                 return $joins;
620         }
621
622         /**
623          * @brief Add the field list for the "select" functions
624          *
625          * @param array $fields The field definition array
626          * @param array $selected The array with the selected fields from the "select" functions
627          *
628          * @return string The field list
629          */
630         private static function constructSelectFields($fields, $selected)
631         {
632                 if (!empty($selected)) {
633                         $selected[] = 'internal-iid';
634                         $selected[] = 'internal-iaid';
635                         $selected[] = 'internal-icid';
636                         $selected[] = 'internal-network';
637                 }
638
639                 if (in_array('verb', $selected)) {
640                         $selected[] = 'internal-activity';
641                 }
642
643                 $selection = [];
644                 foreach ($fields as $table => $table_fields) {
645                         foreach ($table_fields as $field => $select) {
646                                 if (empty($selected) || in_array($select, $selected)) {
647                                         if (in_array($select, self::MIXED_CONTENT_FIELDLIST)) {
648                                                 $selection[] = "`item`.`".$select."` AS `internal-item-" . $select . "`";
649                                         }
650                                         if (is_int($field)) {
651                                                 $selection[] = "`" . $table . "`.`" . $select . "`";
652                                         } else {
653                                                 $selection[] = "`" . $table . "`.`" . $field . "` AS `" . $select . "`";
654                                         }
655                                 }
656                         }
657                 }
658                 return implode(", ", $selection);
659         }
660
661         /**
662          * @brief add table definition to fields in an SQL query
663          *
664          * @param string $query SQL query
665          * @param array $fields The field definition array
666          *
667          * @return string the changed SQL query
668          */
669         private static function addTablesToFields($query, $fields)
670         {
671                 foreach ($fields as $table => $table_fields) {
672                         foreach ($table_fields as $alias => $field) {
673                                 if (is_int($alias)) {
674                                         $replace_field = $field;
675                                 } else {
676                                         $replace_field = $alias;
677                                 }
678
679                                 $search = "/([^\.])`" . $field . "`/i";
680                                 $replace = "$1`" . $table . "`.`" . $replace_field . "`";
681                                 $query = preg_replace($search, $replace, $query);
682                         }
683                 }
684                 return $query;
685         }
686
687         /**
688          * @brief Update existing item entries
689          *
690          * @param array $fields The fields that are to be changed
691          * @param array $condition The condition for finding the item entries
692          *
693          * In the future we may have to change permissions as well.
694          * Then we had to add the user id as third parameter.
695          *
696          * A return value of "0" doesn't mean an error - but that 0 rows had been changed.
697          *
698          * @return integer|boolean number of affected rows - or "false" if there was an error
699          */
700         public static function update(array $fields, array $condition)
701         {
702                 if (empty($condition) || empty($fields)) {
703                         return false;
704                 }
705
706                 // To ensure the data integrity we do it in an transaction
707                 dba::transaction();
708
709                 // We cannot simply expand the condition to check for origin entries
710                 // The condition needn't to be a simple array but could be a complex condition.
711                 // And we have to execute this query before the update to ensure to fetch the same data.
712                 $items = dba::select('item', ['id', 'origin', 'uri', 'plink', 'iaid', 'icid'], $condition);
713
714                 $content_fields = [];
715                 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
716                         if (isset($fields[$field])) {
717                                 $content_fields[$field] = $fields[$field];
718                                 unset($fields[$field]);
719                         }
720                 }
721
722                 if (array_key_exists('tag', $fields)) {
723                         $tags = $fields['tag'];
724                         unset($fields['tag']);
725                 } else {
726                         $tags = '';
727                 }
728
729                 if (array_key_exists('file', $fields)) {
730                         $files = $fields['file'];
731                         unset($fields['file']);
732                 } else {
733                         $files = '';
734                 }
735
736                 if (!empty($fields)) {
737                         $success = dba::update('item', $fields, $condition);
738
739                         if (!$success) {
740                                 dba::close($items);
741                                 dba::rollback();
742                                 return false;
743                         }
744                 }
745
746                 // When there is no content for the "old" item table, this will count the fetched items
747                 $rows = dba::affected_rows();
748
749                 while ($item = dba::fetch($items)) {
750                         if (!empty($item['plink'])) {
751                                 $content_fields['plink'] = $item['plink'];
752                         }
753                         if (self::updateActivity($content_fields, ['uri' => $item['uri']])) {
754                                 if (empty($item['iaid'])) {
755                                         $item_activity = dba::selectFirst('item-activity', ['id'], ['uri' => $item['uri']]);
756                                         if (DBM::is_result($item_activity)) {
757                                                 $item_fields = ['iaid' => $item_activity['id'], 'icid' => null];
758                                                 foreach (self::MIXED_CONTENT_FIELDLIST as $field) {
759                                                         $item_fields[$field] = '';
760                                                 }
761                                                 dba::update('item', $item_fields, ['id' => $item['id']]);
762
763                                                 if (!empty($item['icid']) && !dba::exists('item', ['icid' => $item['icid']])) {
764                                                         dba::delete('item-content', ['id' => $item['icid']]);
765                                                 }
766                                         }
767                                 }
768                         } else {
769                                 self::updateContent($content_fields, ['uri' => $item['uri']]);
770
771                                 if (empty($item['icid'])) {
772                                         $item_content = dba::selectFirst('item-content', [], ['uri' => $item['uri']]);
773                                         if (DBM::is_result($item_content)) {
774                                                 $item_fields = ['icid' => $item_content['id']];
775                                                 // Clear all fields in the item table that have a content in the item-content table
776                                                 foreach ($item_content as $field => $content) {
777                                                         if (in_array($field, self::MIXED_CONTENT_FIELDLIST) && !empty($item_content[$field])) {
778                                                                 $item_fields[$field] = '';
779                                                         }
780                                                 }
781                                                 dba::update('item', $item_fields, ['id' => $item['id']]);
782                                         }
783                                 }
784                         }
785
786                         if (!empty($tags)) {
787                                 Term::insertFromTagFieldByItemId($item['id'], $tags);
788                         }
789
790                         if (!empty($files)) {
791                                 Term::insertFromFileFieldByItemId($item['id'], $files);
792                         }
793
794                         self::updateThread($item['id']);
795
796                         // We only need to notfiy others when it is an original entry from us.
797                         // Only call the notifier when the item has some content relevant change.
798                         if ($item['origin'] && in_array('edited', array_keys($fields))) {
799                                 Worker::add(PRIORITY_HIGH, "Notifier", 'edit_post', $item['id']);
800                         }
801                 }
802
803                 dba::close($items);
804                 dba::commit();
805                 return $rows;
806         }
807
808         /**
809          * @brief Delete an item and notify others about it - if it was ours
810          *
811          * @param array $condition The condition for finding the item entries
812          * @param integer $priority Priority for the notification
813          */
814         public static function delete($condition, $priority = PRIORITY_HIGH)
815         {
816                 $items = dba::select('item', ['id'], $condition);
817                 while ($item = dba::fetch($items)) {
818                         self::deleteById($item['id'], $priority);
819                 }
820                 dba::close($items);
821         }
822
823         /**
824          * @brief Delete an item for an user and notify others about it - if it was ours
825          *
826          * @param array $condition The condition for finding the item entries
827          * @param integer $uid User who wants to delete this item
828          */
829         public static function deleteForUser($condition, $uid)
830         {
831                 if ($uid == 0) {
832                         return;
833                 }
834
835                 $items = dba::select('item', ['id', 'uid'], $condition);
836                 while ($item = dba::fetch($items)) {
837                         // "Deleting" global items just means hiding them
838                         if ($item['uid'] == 0) {
839                                 dba::update('user-item', ['hidden' => true], ['iid' => $item['id'], 'uid' => $uid], true);
840                         } elseif ($item['uid'] == $uid) {
841                                 self::deleteById($item['id'], PRIORITY_HIGH);
842                         } else {
843                                 logger('Wrong ownership. Not deleting item ' . $item['id']);
844                         }
845                 }
846                 dba::close($items);
847         }
848
849         /**
850          * @brief Delete an item and notify others about it - if it was ours
851          *
852          * @param integer $item_id Item ID that should be delete
853          * @param integer $priority Priority for the notification
854          *
855          * @return boolean success
856          */
857         private static function deleteById($item_id, $priority = PRIORITY_HIGH)
858         {
859                 // locate item to be deleted
860                 $fields = ['id', 'uri', 'uid', 'parent', 'parent-uri', 'origin',
861                         'deleted', 'file', 'resource-id', 'event-id', 'attach',
862                         'verb', 'object-type', 'object', 'target', 'contact-id'];
863                 $item = self::selectFirst($fields, ['id' => $item_id]);
864                 if (!DBM::is_result($item)) {
865                         logger('Item with ID ' . $item_id . " hasn't been found.", LOGGER_DEBUG);
866                         return false;
867                 }
868
869                 if ($item['deleted']) {
870                         logger('Item with ID ' . $item_id . ' has already been deleted.', LOGGER_DEBUG);
871                         return false;
872                 }
873
874                 $parent = self::selectFirst(['origin'], ['id' => $item['parent']]);
875                 if (!DBM::is_result($parent)) {
876                         $parent = ['origin' => false];
877                 }
878
879                 // clean up categories and tags so they don't end up as orphans
880
881                 $matches = false;
882                 $cnt = preg_match_all('/<(.*?)>/', $item['file'], $matches, PREG_SET_ORDER);
883                 if ($cnt) {
884                         foreach ($matches as $mtch) {
885                                 file_tag_unsave_file($item['uid'], $item['id'], $mtch[1],true);
886                         }
887                 }
888
889                 $matches = false;
890
891                 $cnt = preg_match_all('/\[(.*?)\]/', $item['file'], $matches, PREG_SET_ORDER);
892                 if ($cnt) {
893                         foreach ($matches as $mtch) {
894                                 file_tag_unsave_file($item['uid'], $item['id'], $mtch[1],false);
895                         }
896                 }
897
898                 /*
899                  * If item is a link to a photo resource, nuke all the associated photos
900                  * (visitors will not have photo resources)
901                  * This only applies to photos uploaded from the photos page. Photos inserted into a post do not
902                  * generate a resource-id and therefore aren't intimately linked to the item.
903                  */
904                 if (strlen($item['resource-id'])) {
905                         dba::delete('photo', ['resource-id' => $item['resource-id'], 'uid' => $item['uid']]);
906                 }
907
908                 // If item is a link to an event, delete the event.
909                 if (intval($item['event-id'])) {
910                         Event::delete($item['event-id']);
911                 }
912
913                 // If item has attachments, drop them
914                 foreach (explode(", ", $item['attach']) as $attach) {
915                         preg_match("|attach/(\d+)|", $attach, $matches);
916                         dba::delete('attach', ['id' => $matches[1], 'uid' => $item['uid']]);
917                 }
918
919                 // Delete tags that had been attached to other items
920                 self::deleteTagsFromItem($item);
921
922                 // Set the item to "deleted"
923                 // This erasing of item content is superfluous for items with a matching item-content.
924                 // But for the next time we will still have old content in the item table.
925                 $item_fields = ['deleted' => true, 'edited' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow(),
926                         'body' => '', 'title' => '', 'content-warning' => '', 'rendered-hash' => '', 'rendered-html' => '',
927                         'object' => '', 'target' => '', 'tag' => '', 'postopts' => '', 'attach' => '', 'file' => ''];
928                 dba::update('item', $item_fields, ['id' => $item['id']]);
929
930                 Term::insertFromTagFieldByItemId($item['id'], '');
931                 Term::insertFromFileFieldByItemId($item['id'], '');
932                 self::deleteThread($item['id'], $item['parent-uri']);
933
934                 if (!self::exists(["`uri` = ? AND `uid` != 0 AND NOT `deleted`", $item['uri']])) {
935                         self::delete(['uri' => $item['uri'], 'uid' => 0, 'deleted' => false], $priority);
936                 }
937
938                 // If it's the parent of a comment thread, kill all the kids
939                 if ($item['id'] == $item['parent']) {
940                         self::delete(['parent' => $item['parent'], 'deleted' => false], $priority);
941                 }
942
943                 // Is it our comment and/or our thread?
944                 if ($item['origin'] || $parent['origin']) {
945
946                         // When we delete the original post we will delete all existing copies on the server as well
947                         self::delete(['uri' => $item['uri'], 'deleted' => false], $priority);
948
949                         // send the notification upstream/downstream
950                         Worker::add(['priority' => $priority, 'dont_fork' => true], "Notifier", "drop", intval($item['id']));
951                 } elseif ($item['uid'] != 0) {
952
953                         // When we delete just our local user copy of an item, we have to set a marker to hide it
954                         $global_item = self::selectFirst(['id'], ['uri' => $item['uri'], 'uid' => 0, 'deleted' => false]);
955                         if (DBM::is_result($global_item)) {
956                                 dba::update('user-item', ['hidden' => true], ['iid' => $global_item['id'], 'uid' => $item['uid']], true);
957                         }
958                 }
959
960                 logger('Item with ID ' . $item_id . " has been deleted.", LOGGER_DEBUG);
961
962                 return true;
963         }
964
965         private static function deleteTagsFromItem($item)
966         {
967                 if (($item["verb"] != ACTIVITY_TAG) || ($item["object-type"] != ACTIVITY_OBJ_TAGTERM)) {
968                         return;
969                 }
970
971                 $xo = XML::parseString($item["object"], false);
972                 $xt = XML::parseString($item["target"], false);
973
974                 if ($xt->type != ACTIVITY_OBJ_NOTE) {
975                         return;
976                 }
977
978                 $i = self::selectFirst(['id', 'contact-id', 'tag'], ['uri' => $xt->id, 'uid' => $item['uid']]);
979                 if (!DBM::is_result($i)) {
980                         return;
981                 }
982
983                 // For tags, the owner cannot remove the tag on the author's copy of the post.
984                 $owner_remove = ($item["contact-id"] == $i["contact-id"]);
985                 $author_copy = $item["origin"];
986
987                 if (($owner_remove && $author_copy) || !$owner_remove) {
988                         return;
989                 }
990
991                 $tags = explode(',', $i["tag"]);
992                 $newtags = [];
993                 if (count($tags)) {
994                         foreach ($tags as $tag) {
995                                 if (trim($tag) !== trim($xo->body)) {
996                                        $newtags[] = trim($tag);
997                                 }
998                         }
999                 }
1000                 self::update(['tag' => implode(',', $newtags)], ['id' => $i["id"]]);
1001         }
1002
1003         private static function guid($item, $notify)
1004         {
1005                 $guid = notags(trim($item['guid']));
1006
1007                 if (!empty($guid)) {
1008                         return $guid;
1009                 }
1010
1011                 if ($notify) {
1012                         // We have to avoid duplicates. So we create the GUID in form of a hash of the plink or uri.
1013                         // We add the hash of our own host because our host is the original creator of the post.
1014                         $prefix_host = get_app()->get_hostname();
1015                 } else {
1016                         $prefix_host = '';
1017
1018                         // We are only storing the post so we create a GUID from the original hostname.
1019                         if (!empty($item['author-link'])) {
1020                                 $parsed = parse_url($item['author-link']);
1021                                 if (!empty($parsed['host'])) {
1022                                         $prefix_host = $parsed['host'];
1023                                 }
1024                         }
1025
1026                         if (empty($prefix_host) && !empty($item['plink'])) {
1027                                 $parsed = parse_url($item['plink']);
1028                                 if (!empty($parsed['host'])) {
1029                                         $prefix_host = $parsed['host'];
1030                                 }
1031                         }
1032
1033                         if (empty($prefix_host) && !empty($item['uri'])) {
1034                                 $parsed = parse_url($item['uri']);
1035                                 if (!empty($parsed['host'])) {
1036                                         $prefix_host = $parsed['host'];
1037                                 }
1038                         }
1039
1040                         // Is it in the format data@host.tld? - Used for mail contacts
1041                         if (empty($prefix_host) && !empty($item['author-link']) && strstr($item['author-link'], '@')) {
1042                                 $mailparts = explode('@', $item['author-link']);
1043                                 $prefix_host = array_pop($mailparts);
1044                         }
1045                 }
1046
1047                 if (!empty($item['plink'])) {
1048                         $guid = self::guidFromUri($item['plink'], $prefix_host);
1049                 } elseif (!empty($item['uri'])) {
1050                         $guid = self::guidFromUri($item['uri'], $prefix_host);
1051                 } else {
1052                         $guid = get_guid(32, hash('crc32', $prefix_host));
1053                 }
1054
1055                 return $guid;
1056         }
1057
1058         private static function contactId($item)
1059         {
1060                 $contact_id = (int)$item["contact-id"];
1061
1062                 if (!empty($contact_id)) {
1063                         return $contact_id;
1064                 }
1065                 logger('Missing contact-id. Called by: '.System::callstack(), LOGGER_DEBUG);
1066                 /*
1067                  * First we are looking for a suitable contact that matches with the author of the post
1068                  * This is done only for comments
1069                  */
1070                 if ($item['parent-uri'] != $item['uri']) {
1071                         $contact_id = Contact::getIdForURL($item['author-link'], $item['uid']);
1072                 }
1073
1074                 // If not present then maybe the owner was found
1075                 if ($contact_id == 0) {
1076                         $contact_id = Contact::getIdForURL($item['owner-link'], $item['uid']);
1077                 }
1078
1079                 // Still missing? Then use the "self" contact of the current user
1080                 if ($contact_id == 0) {
1081                         $self = dba::selectFirst('contact', ['id'], ['self' => true, 'uid' => $item['uid']]);
1082                         if (DBM::is_result($self)) {
1083                                 $contact_id = $self["id"];
1084                         }
1085                 }
1086                 logger("Contact-id was missing for post ".$item['guid']." from user id ".$item['uid']." - now set to ".$contact_id, LOGGER_DEBUG);
1087
1088                 return $contact_id;
1089         }
1090
1091         public static function insert($item, $force_parent = false, $notify = false, $dontcache = false)
1092         {
1093                 $a = get_app();
1094
1095                 // If it is a posting where users should get notifications, then define it as wall posting
1096                 if ($notify) {
1097                         $item['wall'] = 1;
1098                         $item['type'] = 'wall';
1099                         $item['origin'] = 1;
1100                         $item['network'] = NETWORK_DFRN;
1101                         $item['protocol'] = PROTOCOL_DFRN;
1102
1103                         if (is_int($notify)) {
1104                                 $priority = $notify;
1105                         } else {
1106                                 $priority = PRIORITY_HIGH;
1107                         }
1108                 } else {
1109                         $item['network'] = trim(defaults($item, 'network', NETWORK_PHANTOM));
1110                 }
1111
1112                 $item['guid'] = self::guid($item, $notify);
1113                 $item['uri'] = notags(trim(defaults($item, 'uri', self::newURI($item['uid'], $item['guid']))));
1114
1115                 // Store conversation data
1116                 $item = Conversation::insert($item);
1117
1118                 /*
1119                  * If a Diaspora signature structure was passed in, pull it out of the
1120                  * item array and set it aside for later storage.
1121                  */
1122
1123                 $dsprsig = null;
1124                 if (x($item, 'dsprsig')) {
1125                         $encoded_signature = $item['dsprsig'];
1126                         $dsprsig = json_decode(base64_decode($item['dsprsig']));
1127                         unset($item['dsprsig']);
1128                 }
1129
1130                 if (!empty($item['diaspora_signed_text'])) {
1131                         $diaspora_signed_text = $item['diaspora_signed_text'];
1132                         unset($item['diaspora_signed_text']);
1133                 } else {
1134                         $diaspora_signed_text = '';
1135                 }
1136
1137                 // Converting the plink
1138                 /// @TODO Check if this is really still needed
1139                 if ($item['network'] == NETWORK_OSTATUS) {
1140                         if (isset($item['plink'])) {
1141                                 $item['plink'] = OStatus::convertHref($item['plink']);
1142                         } elseif (isset($item['uri'])) {
1143                                 $item['plink'] = OStatus::convertHref($item['uri']);
1144                         }
1145                 }
1146
1147                 if (!empty($item['thr-parent'])) {
1148                         $item['parent-uri'] = $item['thr-parent'];
1149                 }
1150
1151                 $item['type'] = defaults($item, 'type', 'remote');
1152
1153                 if (isset($item['gravity'])) {
1154                         $item['gravity'] = intval($item['gravity']);
1155                 } elseif ($item['parent-uri'] === $item['uri']) {
1156                         $item['gravity'] = GRAVITY_PARENT;
1157                 } elseif (activity_match($item['verb'], ACTIVITY_POST)) {
1158                         $item['gravity'] = GRAVITY_COMMENT;
1159                 } elseif ($item['type'] == 'activity') {
1160                         $item['gravity'] = GRAVITY_ACTIVITY;
1161                 } else {
1162                         $item['gravity'] = GRAVITY_UNKNOWN;   // Should not happen
1163                         logger('Unknown gravity for verb: ' . $item['verb'] . ' - type: ' . $item['type'], LOGGER_DEBUG);
1164                 }
1165
1166                 $uid = intval($item['uid']);
1167
1168                 // check for create date and expire time
1169                 $expire_interval = Config::get('system', 'dbclean-expire-days', 0);
1170
1171                 $user = dba::selectFirst('user', ['expire'], ['uid' => $uid]);
1172                 if (DBM::is_result($user) && ($user['expire'] > 0) && (($user['expire'] < $expire_interval) || ($expire_interval == 0))) {
1173                         $expire_interval = $user['expire'];
1174                 }
1175
1176                 if (($expire_interval > 0) && !empty($item['created'])) {
1177                         $expire_date = time() - ($expire_interval * 86400);
1178                         $created_date = strtotime($item['created']);
1179                         if ($created_date < $expire_date) {
1180                                 logger('item-store: item created ('.date('c', $created_date).') before expiration time ('.date('c', $expire_date).'). ignored. ' . print_r($item,true), LOGGER_DEBUG);
1181                                 return 0;
1182                         }
1183                 }
1184
1185                 /*
1186                  * Do we already have this item?
1187                  * We have to check several networks since Friendica posts could be repeated
1188                  * via OStatus (maybe Diasporsa as well)
1189                  */
1190                 if (in_array($item['network'], [NETWORK_DIASPORA, NETWORK_DFRN, NETWORK_OSTATUS, ""])) {
1191                         $condition = ["`uri` = ? AND `uid` = ? AND `network` IN (?, ?, ?)",
1192                                 trim($item['uri']), $item['uid'],
1193                                 NETWORK_DIASPORA, NETWORK_DFRN, NETWORK_OSTATUS];
1194                         $existing = self::selectFirst(['id', 'network'], $condition);
1195                         if (DBM::is_result($existing)) {
1196                                 // We only log the entries with a different user id than 0. Otherwise we would have too many false positives
1197                                 if ($uid != 0) {
1198                                         logger("Item with uri ".$item['uri']." already existed for user ".$uid." with id ".$existing["id"]." target network ".$existing["network"]." - new network: ".$item['network']);
1199                                 }
1200
1201                                 return $existing["id"];
1202                         }
1203                 }
1204
1205                 self::addLanguageToItemArray($item);
1206
1207                 $item['wall']          = intval(defaults($item, 'wall', 0));
1208                 $item['extid']         = trim(defaults($item, 'extid', ''));
1209                 $item['author-name']   = trim(defaults($item, 'author-name', ''));
1210                 $item['author-link']   = trim(defaults($item, 'author-link', ''));
1211                 $item['author-avatar'] = trim(defaults($item, 'author-avatar', ''));
1212                 $item['owner-name']    = trim(defaults($item, 'owner-name', ''));
1213                 $item['owner-link']    = trim(defaults($item, 'owner-link', ''));
1214                 $item['owner-avatar']  = trim(defaults($item, 'owner-avatar', ''));
1215                 $item['received']      = ((x($item, 'received') !== false) ? DateTimeFormat::utc($item['received']) : DateTimeFormat::utcNow());
1216                 $item['created']       = ((x($item, 'created') !== false) ? DateTimeFormat::utc($item['created']) : $item['received']);
1217                 $item['edited']        = ((x($item, 'edited') !== false) ? DateTimeFormat::utc($item['edited']) : $item['created']);
1218                 $item['changed']       = ((x($item, 'changed') !== false) ? DateTimeFormat::utc($item['changed']) : $item['created']);
1219                 $item['commented']     = ((x($item, 'commented') !== false) ? DateTimeFormat::utc($item['commented']) : $item['created']);
1220                 $item['title']         = trim(defaults($item, 'title', ''));
1221                 $item['location']      = trim(defaults($item, 'location', ''));
1222                 $item['coord']         = trim(defaults($item, 'coord', ''));
1223                 $item['visible']       = ((x($item, 'visible') !== false) ? intval($item['visible'])         : 1);
1224                 $item['deleted']       = 0;
1225                 $item['parent-uri']    = trim(defaults($item, 'parent-uri', $item['uri']));
1226                 $item['verb']          = trim(defaults($item, 'verb', ''));
1227                 $item['object-type']   = trim(defaults($item, 'object-type', ''));
1228                 $item['object']        = trim(defaults($item, 'object', ''));
1229                 $item['target-type']   = trim(defaults($item, 'target-type', ''));
1230                 $item['target']        = trim(defaults($item, 'target', ''));
1231                 $item['plink']         = trim(defaults($item, 'plink', ''));
1232                 $item['allow_cid']     = trim(defaults($item, 'allow_cid', ''));
1233                 $item['allow_gid']     = trim(defaults($item, 'allow_gid', ''));
1234                 $item['deny_cid']      = trim(defaults($item, 'deny_cid', ''));
1235                 $item['deny_gid']      = trim(defaults($item, 'deny_gid', ''));
1236                 $item['private']       = intval(defaults($item, 'private', 0));
1237                 $item['bookmark']      = intval(defaults($item, 'bookmark', 0));
1238                 $item['body']          = trim(defaults($item, 'body', ''));
1239                 $item['tag']           = trim(defaults($item, 'tag', ''));
1240                 $item['attach']        = trim(defaults($item, 'attach', ''));
1241                 $item['app']           = trim(defaults($item, 'app', ''));
1242                 $item['origin']        = intval(defaults($item, 'origin', 0));
1243                 $item['postopts']      = trim(defaults($item, 'postopts', ''));
1244                 $item['resource-id']   = trim(defaults($item, 'resource-id', ''));
1245                 $item['event-id']      = intval(defaults($item, 'event-id', 0));
1246                 $item['inform']        = trim(defaults($item, 'inform', ''));
1247                 $item['file']          = trim(defaults($item, 'file', ''));
1248
1249                 // When there is no content then we don't post it
1250                 if ($item['body'].$item['title'] == '') {
1251                         logger('No body, no title.');
1252                         return 0;
1253                 }
1254
1255                 // Items cannot be stored before they happen ...
1256                 if ($item['created'] > DateTimeFormat::utcNow()) {
1257                         $item['created'] = DateTimeFormat::utcNow();
1258                 }
1259
1260                 // We haven't invented time travel by now.
1261                 if ($item['edited'] > DateTimeFormat::utcNow()) {
1262                         $item['edited'] = DateTimeFormat::utcNow();
1263                 }
1264
1265                 if (($item['author-link'] == "") && ($item['owner-link'] == "")) {
1266                         logger("Both author-link and owner-link are empty. Called by: " . System::callstack(), LOGGER_DEBUG);
1267                 }
1268
1269                 $item['plink'] = defaults($item, 'plink', System::baseUrl() . '/display/' . urlencode($item['guid']));
1270
1271                 // The contact-id should be set before "self::insert" was called - but there seems to be issues sometimes
1272                 $item["contact-id"] = self::contactId($item);
1273
1274                 $default = ['url' => $item['author-link'], 'name' => $item['author-name'],
1275                         'photo' => $item['author-avatar'], 'network' => $item['network']];
1276
1277                 $item['author-id'] = defaults($item, 'author-id', Contact::getIdForURL($item["author-link"], 0, false, $default));
1278
1279                 if (Contact::isBlocked($item["author-id"])) {
1280                         logger('Contact '.$item["author-id"].' is blocked, item '.$item["uri"].' will not be stored');
1281                         return 0;
1282                 }
1283
1284                 $default = ['url' => $item['owner-link'], 'name' => $item['owner-name'],
1285                         'photo' => $item['owner-avatar'], 'network' => $item['network']];
1286
1287                 $item['owner-id'] = defaults($item, 'owner-id', Contact::getIdForURL($item["owner-link"], 0, false, $default));
1288
1289                 if (Contact::isBlocked($item["owner-id"])) {
1290                         logger('Contact '.$item["owner-id"].' is blocked, item '.$item["uri"].' will not be stored');
1291                         return 0;
1292                 }
1293
1294                 // These fields aren't stored anymore in the item table, they are fetched upon request
1295                 unset($item['author-link']);
1296                 unset($item['author-name']);
1297                 unset($item['author-avatar']);
1298
1299                 unset($item['owner-link']);
1300                 unset($item['owner-name']);
1301                 unset($item['owner-avatar']);
1302
1303                 if ($item['network'] == NETWORK_PHANTOM) {
1304                         logger('Missing network. Called by: '.System::callstack(), LOGGER_DEBUG);
1305
1306                         $contact = Contact::getDetailsByURL($item['author-link'], $item['uid']);
1307                         if (!empty($contact['network'])) {
1308                                 $item['network'] = $contact["network"];
1309                         } else {
1310                                 $item['network'] = NETWORK_DFRN;
1311                         }
1312                         logger("Set network to " . $item["network"] . " for " . $item["uri"], LOGGER_DEBUG);
1313                 }
1314
1315                 // Checking if there is already an item with the same guid
1316                 logger('Checking for an item for user '.$item['uid'].' on network '.$item['network'].' with the guid '.$item['guid'], LOGGER_DEBUG);
1317                 $condition = ['guid' => $item['guid'], 'network' => $item['network'], 'uid' => $item['uid']];
1318                 if (self::exists($condition)) {
1319                         logger('found item with guid '.$item['guid'].' for user '.$item['uid'].' on network '.$item['network'], LOGGER_DEBUG);
1320                         return 0;
1321                 }
1322
1323                 // Check for hashtags in the body and repair or add hashtag links
1324                 self::setHashtags($item);
1325
1326                 $item['thr-parent'] = $item['parent-uri'];
1327
1328                 $notify_type = '';
1329                 $allow_cid = '';
1330                 $allow_gid = '';
1331                 $deny_cid  = '';
1332                 $deny_gid  = '';
1333
1334                 if ($item['parent-uri'] === $item['uri']) {
1335                         $parent_id = 0;
1336                         $parent_deleted = 0;
1337                         $allow_cid = $item['allow_cid'];
1338                         $allow_gid = $item['allow_gid'];
1339                         $deny_cid  = $item['deny_cid'];
1340                         $deny_gid  = $item['deny_gid'];
1341                         $notify_type = 'wall-new';
1342                 } else {
1343                         // find the parent and snarf the item id and ACLs
1344                         // and anything else we need to inherit
1345
1346                         $fields = ['uri', 'parent-uri', 'id', 'deleted',
1347                                 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
1348                                 'wall', 'private', 'forum_mode', 'origin'];
1349                         $condition = ['uri' => $item['parent-uri'], 'uid' => $item['uid']];
1350                         $params = ['order' => ['id' => false]];
1351                         $parent = self::selectFirst($fields, $condition, $params);
1352
1353                         if (DBM::is_result($parent)) {
1354                                 // is the new message multi-level threaded?
1355                                 // even though we don't support it now, preserve the info
1356                                 // and re-attach to the conversation parent.
1357
1358                                 if ($parent['uri'] != $parent['parent-uri']) {
1359                                         $item['parent-uri'] = $parent['parent-uri'];
1360
1361                                         $condition = ['uri' => $item['parent-uri'],
1362                                                 'parent-uri' => $item['parent-uri'],
1363                                                 'uid' => $item['uid']];
1364                                         $params = ['order' => ['id' => false]];
1365                                         $toplevel_parent = self::selectFirst($fields, $condition, $params);
1366
1367                                         if (DBM::is_result($toplevel_parent)) {
1368                                                 $parent = $toplevel_parent;
1369                                         }
1370                                 }
1371
1372                                 $parent_id      = $parent['id'];
1373                                 $parent_deleted = $parent['deleted'];
1374                                 $allow_cid      = $parent['allow_cid'];
1375                                 $allow_gid      = $parent['allow_gid'];
1376                                 $deny_cid       = $parent['deny_cid'];
1377                                 $deny_gid       = $parent['deny_gid'];
1378                                 $item['wall']    = $parent['wall'];
1379                                 $notify_type    = 'comment-new';
1380
1381                                 /*
1382                                  * If the parent is private, force privacy for the entire conversation
1383                                  * This differs from the above settings as it subtly allows comments from
1384                                  * email correspondents to be private even if the overall thread is not.
1385                                  */
1386                                 if ($parent['private']) {
1387                                         $item['private'] = $parent['private'];
1388                                 }
1389
1390                                 /*
1391                                  * Edge case. We host a public forum that was originally posted to privately.
1392                                  * The original author commented, but as this is a comment, the permissions
1393                                  * weren't fixed up so it will still show the comment as private unless we fix it here.
1394                                  */
1395                                 if ((intval($parent['forum_mode']) == 1) && $parent['private']) {
1396                                         $item['private'] = 0;
1397                                 }
1398
1399                                 // If its a post from myself then tag the thread as "mention"
1400                                 logger("Checking if parent ".$parent_id." has to be tagged as mention for user ".$item['uid'], LOGGER_DEBUG);
1401                                 $user = dba::selectFirst('user', ['nickname'], ['uid' => $item['uid']]);
1402                                 if (DBM::is_result($user)) {
1403                                         $self = normalise_link(System::baseUrl() . '/profile/' . $user['nickname']);
1404                                         $self_id = Contact::getIdForURL($self, 0, true);
1405                                         logger("'myself' is ".$self_id." for parent ".$parent_id." checking against ".$item['author-id']." and ".$item['owner-id'], LOGGER_DEBUG);
1406                                         if (($item['author-id'] == $self_id) || ($item['owner-id'] == $self_id)) {
1407                                                 dba::update('thread', ['mention' => true], ['iid' => $parent_id]);
1408                                                 logger("tagged thread ".$parent_id." as mention for user ".$self, LOGGER_DEBUG);
1409                                         }
1410                                 }
1411                         } else {
1412                                 /*
1413                                  * Allow one to see reply tweets from status.net even when
1414                                  * we don't have or can't see the original post.
1415                                  */
1416                                 if ($force_parent) {
1417                                         logger('$force_parent=true, reply converted to top-level post.');
1418                                         $parent_id = 0;
1419                                         $item['parent-uri'] = $item['uri'];
1420                                         $item['gravity'] = GRAVITY_PARENT;
1421                                 } else {
1422                                         logger('item parent '.$item['parent-uri'].' for '.$item['uid'].' was not found - ignoring item');
1423                                         return 0;
1424                                 }
1425
1426                                 $parent_deleted = 0;
1427                         }
1428                 }
1429
1430                 $condition = ["`uri` = ? AND `network` IN (?, ?) AND `uid` = ?",
1431                         $item['uri'], $item['network'], NETWORK_DFRN, $item['uid']];
1432                 if (self::exists($condition)) {
1433                         logger('duplicated item with the same uri found. '.print_r($item,true));
1434                         return 0;
1435                 }
1436
1437                 // On Friendica and Diaspora the GUID is unique
1438                 if (in_array($item['network'], [NETWORK_DFRN, NETWORK_DIASPORA])) {
1439                         $condition = ['guid' => $item['guid'], 'uid' => $item['uid']];
1440                         if (self::exists($condition)) {
1441                                 logger('duplicated item with the same guid found. '.print_r($item,true));
1442                                 return 0;
1443                         }
1444                 } else {
1445                         // Check for an existing post with the same content. There seems to be a problem with OStatus.
1446                         $condition = ["`body` = ? AND `network` = ? AND `created` = ? AND `contact-id` = ? AND `uid` = ?",
1447                                         $item['body'], $item['network'], $item['created'], $item['contact-id'], $item['uid']];
1448                         if (self::exists($condition)) {
1449                                 logger('duplicated item with the same body found. '.print_r($item,true));
1450                                 return 0;
1451                         }
1452                 }
1453
1454                 // Is this item available in the global items (with uid=0)?
1455                 if ($item["uid"] == 0) {
1456                         $item["global"] = true;
1457
1458                         // Set the global flag on all items if this was a global item entry
1459                         dba::update('item', ['global' => true], ['uri' => $item["uri"]]);
1460                 } else {
1461                         $item["global"] = self::exists(['uid' => 0, 'uri' => $item["uri"]]);
1462                 }
1463
1464                 // ACL settings
1465                 if (strlen($allow_cid) || strlen($allow_gid) || strlen($deny_cid) || strlen($deny_gid)) {
1466                         $private = 1;
1467                 } else {
1468                         $private = $item['private'];
1469                 }
1470
1471                 $item["allow_cid"] = $allow_cid;
1472                 $item["allow_gid"] = $allow_gid;
1473                 $item["deny_cid"] = $deny_cid;
1474                 $item["deny_gid"] = $deny_gid;
1475                 $item["private"] = $private;
1476                 $item["deleted"] = $parent_deleted;
1477
1478                 // Fill the cache field
1479                 put_item_in_cache($item);
1480
1481                 if ($notify) {
1482                         Addon::callHooks('post_local', $item);
1483                 } else {
1484                         Addon::callHooks('post_remote', $item);
1485                 }
1486
1487                 // This array field is used to trigger some automatic reactions
1488                 // It is mainly used in the "post_local" hook.
1489                 unset($item['api_source']);
1490
1491                 if (x($item, 'cancel')) {
1492                         logger('post cancelled by addon.');
1493                         return 0;
1494                 }
1495
1496                 /*
1497                  * Check for already added items.
1498                  * There is a timing issue here that sometimes creates double postings.
1499                  * An unique index would help - but the limitations of MySQL (maximum size of index values) prevent this.
1500                  */
1501                 if ($item["uid"] == 0) {
1502                         if (self::exists(['uri' => trim($item['uri']), 'uid' => 0])) {
1503                                 logger('Global item already stored. URI: '.$item['uri'].' on network '.$item['network'], LOGGER_DEBUG);
1504                                 return 0;
1505                         }
1506                 }
1507
1508                 logger('' . print_r($item,true), LOGGER_DATA);
1509
1510                 if (array_key_exists('tag', $item)) {
1511                         $tags = $item['tag'];
1512                         unset($item['tag']);
1513                 } else {
1514                         $tags = '';
1515                 }
1516
1517                 if (array_key_exists('file', $item)) {
1518                         $files = $item['file'];
1519                         unset($item['file']);
1520                 } else {
1521                         $files = '';
1522                 }
1523
1524                 // We are doing this outside of the transaction to avoid timing problems
1525                 if (!self::insertActivity($item)) {
1526                         self::insertContent($item);
1527                 }
1528
1529                 dba::transaction();
1530                 $ret = dba::insert('item', $item);
1531
1532                 // When the item was successfully stored we fetch the ID of the item.
1533                 if (DBM::is_result($ret)) {
1534                         $current_post = dba::lastInsertId();
1535                 } else {
1536                         // This can happen - for example - if there are locking timeouts.
1537                         dba::rollback();
1538
1539                         // Store the data into a spool file so that we can try again later.
1540
1541                         // At first we restore the Diaspora signature that we removed above.
1542                         if (isset($encoded_signature)) {
1543                                 $item['dsprsig'] = $encoded_signature;
1544                         }
1545
1546                         // Now we store the data in the spool directory
1547                         // We use "microtime" to keep the arrival order and "mt_rand" to avoid duplicates
1548                         $file = 'item-'.round(microtime(true) * 10000).'-'.mt_rand().'.msg';
1549
1550                         $spoolpath = get_spoolpath();
1551                         if ($spoolpath != "") {
1552                                 $spool = $spoolpath.'/'.$file;
1553                                 file_put_contents($spool, json_encode($item));
1554                                 logger("Item wasn't stored - Item was spooled into file ".$file, LOGGER_DEBUG);
1555                         }
1556                         return 0;
1557                 }
1558
1559                 if ($current_post == 0) {
1560                         // This is one of these error messages that never should occur.
1561                         logger("couldn't find created item - we better quit now.");
1562                         dba::rollback();
1563                         return 0;
1564                 }
1565
1566                 // How much entries have we created?
1567                 // We wouldn't need this query when we could use an unique index - but MySQL has length problems with them.
1568                 $entries = dba::count('item', ['uri' => $item['uri'], 'uid' => $item['uid'], 'network' => $item['network']]);
1569
1570                 if ($entries > 1) {
1571                         // There are duplicates. We delete our just created entry.
1572                         logger('Duplicated post occurred. uri = ' . $item['uri'] . ' uid = ' . $item['uid']);
1573
1574                         // Yes, we could do a rollback here - but we are having many users with MyISAM.
1575                         dba::delete('item', ['id' => $current_post]);
1576                         dba::commit();
1577                         return 0;
1578                 } elseif ($entries == 0) {
1579                         // This really should never happen since we quit earlier if there were problems.
1580                         logger("Something is terribly wrong. We haven't found our created entry.");
1581                         dba::rollback();
1582                         return 0;
1583                 }
1584
1585                 logger('created item '.$current_post);
1586                 self::updateContact($item);
1587
1588                 if (!$parent_id || ($item['parent-uri'] === $item['uri'])) {
1589                         $parent_id = $current_post;
1590                 }
1591
1592                 // Set parent id
1593                 dba::update('item', ['parent' => $parent_id], ['id' => $current_post]);
1594
1595                 $item['id'] = $current_post;
1596                 $item['parent'] = $parent_id;
1597
1598                 // update the commented timestamp on the parent
1599                 // Only update "commented" if it is really a comment
1600                 if (($item['gravity'] != GRAVITY_ACTIVITY) || !Config::get("system", "like_no_comment")) {
1601                         dba::update('item', ['commented' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow()], ['id' => $parent_id]);
1602                 } else {
1603                         dba::update('item', ['changed' => DateTimeFormat::utcNow()], ['id' => $parent_id]);
1604                 }
1605
1606                 if ($dsprsig) {
1607                         /*
1608                          * Friendica servers lower than 3.4.3-2 had double encoded the signature ...
1609                          * We can check for this condition when we decode and encode the stuff again.
1610                          */
1611                         if (base64_encode(base64_decode(base64_decode($dsprsig->signature))) == base64_decode($dsprsig->signature)) {
1612                                 $dsprsig->signature = base64_decode($dsprsig->signature);
1613                                 logger("Repaired double encoded signature from handle ".$dsprsig->signer, LOGGER_DEBUG);
1614                         }
1615
1616                         dba::insert('sign', ['iid' => $current_post, 'signed_text' => $dsprsig->signed_text,
1617                                                 'signature' => $dsprsig->signature, 'signer' => $dsprsig->signer]);
1618                 }
1619
1620                 if (!empty($diaspora_signed_text)) {
1621                         // Formerly we stored the signed text, the signature and the author in different fields.
1622                         // We now store the raw data so that we are more flexible.
1623                         dba::insert('sign', ['iid' => $current_post, 'signed_text' => $diaspora_signed_text]);
1624                 }
1625
1626                 $deleted = self::tagDeliver($item['uid'], $current_post);
1627
1628                 /*
1629                  * current post can be deleted if is for a community page and no mention are
1630                  * in it.
1631                  */
1632                 if (!$deleted && !$dontcache) {
1633                         $posted_item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $current_post]);
1634                         if (DBM::is_result($posted_item)) {
1635                                 if ($notify) {
1636                                         Addon::callHooks('post_local_end', $posted_item);
1637                                 } else {
1638                                         Addon::callHooks('post_remote_end', $posted_item);
1639                                 }
1640                         } else {
1641                                 logger('new item not found in DB, id ' . $current_post);
1642                         }
1643                 }
1644
1645                 if ($item['parent-uri'] === $item['uri']) {
1646                         self::addThread($current_post);
1647                 } else {
1648                         self::updateThread($parent_id);
1649                 }
1650
1651                 dba::commit();
1652
1653                 /*
1654                  * Due to deadlock issues with the "term" table we are doing these steps after the commit.
1655                  * This is not perfect - but a workable solution until we found the reason for the problem.
1656                  */
1657                 if (!empty($tags)) {
1658                         Term::insertFromTagFieldByItemId($current_post, $tags);
1659                 }
1660
1661                 if (!empty($files)) {
1662                         Term::insertFromFileFieldByItemId($current_post, $files);
1663                 }
1664
1665                 if ($item['parent-uri'] === $item['uri']) {
1666                         self::addShadow($current_post);
1667                 } else {
1668                         self::addShadowPost($current_post);
1669                 }
1670
1671                 check_user_notification($current_post);
1672
1673                 if ($notify) {
1674                         Worker::add(['priority' => $priority, 'dont_fork' => true], "Notifier", $notify_type, $current_post);
1675                 } elseif (!empty($parent) && $parent['origin']) {
1676                         Worker::add(['priority' => PRIORITY_HIGH, 'dont_fork' => true], "Notifier", "comment-import", $current_post);
1677                 }
1678
1679                 return $current_post;
1680         }
1681
1682         /**
1683          * @brief Insert a new item content entry
1684          *
1685          * @param array $item The item fields that are to be inserted
1686          */
1687         private static function insertActivity(&$item)
1688         {
1689                 $activity_index = self::activityToIndex($item['verb']);
1690
1691                 if ($activity_index < 0) {
1692                         return false;
1693                 }
1694
1695                 $fields = ['uri' => $item['uri'], 'activity' => $activity_index,
1696                         'uri-hash' => hash('sha1', $item['uri']) . hash('ripemd160', $item['uri'])];
1697
1698                 $saved_item = $item;
1699
1700                 // We just remove everything that is content
1701                 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
1702                         unset($item[$field]);
1703                 }
1704
1705                 // To avoid timing problems, we are using locks.
1706                 $locked = Lock::set('item_insert_activity');
1707                 if (!$locked) {
1708                         logger("Couldn't acquire lock for URI " . $item['uri'] . " - proceeding anyway.");
1709                 }
1710
1711                 // Do we already have this content?
1712                 $item_activity = dba::selectFirst('item-activity', ['id'], ['uri' => $item['uri']]);
1713                 if (DBM::is_result($item_activity)) {
1714                         $item['iaid'] = $item_activity['id'];
1715                         logger('Fetched activity for URI ' . $item['uri'] . ' (' . $item['iaid'] . ')');
1716                 } elseif (dba::insert('item-activity', $fields)) {
1717                         $item['iaid'] = dba::lastInsertId();
1718                         logger('Inserted activity for URI ' . $item['uri'] . ' (' . $item['iaid'] . ')');
1719                 } else {
1720                         // This shouldn't happen. But if it does, we simply store it in the item-content table
1721                         logger('Could not insert activity for URI ' . $item['uri'] . ' - should not happen');
1722                         $item = $saved_item;
1723                         return false;
1724                 }
1725                 if ($locked) {
1726                         Lock::remove('item_insert_activity');
1727                 }
1728                 return true;
1729         }
1730
1731         /**
1732          * @brief Insert a new item content entry
1733          *
1734          * @param array $item The item fields that are to be inserted
1735          */
1736         private static function insertContent(&$item)
1737         {
1738                 $fields = ['uri' => $item['uri'], 'plink' => $item['plink'],
1739                         'uri-plink-hash' => hash('sha1', $item['plink']).hash('sha1', $item['uri'])];
1740
1741                 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
1742                         if (isset($item[$field])) {
1743                                 $fields[$field] = $item[$field];
1744                                 unset($item[$field]);
1745                         }
1746                 }
1747
1748                 // To avoid timing problems, we are using locks.
1749                 $locked = Lock::set('item_insert_content');
1750                 if (!$locked) {
1751                         logger("Couldn't acquire lock for URI " . $item['uri'] . " - proceeding anyway.");
1752                 }
1753
1754                 // Do we already have this content?
1755                 $item_content = dba::selectFirst('item-content', ['id'], ['uri' => $item['uri']]);
1756                 if (DBM::is_result($item_content)) {
1757                         $item['icid'] = $item_content['id'];
1758                         logger('Fetched content for URI ' . $item['uri'] . ' (' . $item['icid'] . ')');
1759                 } elseif (dba::insert('item-content', $fields)) {
1760                         $item['icid'] = dba::lastInsertId();
1761                         logger('Inserted content for URI ' . $item['uri'] . ' (' . $item['icid'] . ')');
1762                 } else {
1763                         // By setting the ICID value through the worker we should avoid timing problems.
1764                         // When the locking works, this shouldn't be needed. But better be prepared.
1765                         Worker::add(PRIORITY_HIGH, 'SetItemContentID', $item['uri']);
1766                         logger('Could not insert content for URI ' . $item['uri'] . ' - trying asynchronously');
1767                 }
1768                 if ($locked) {
1769                         Lock::remove('item_insert_content');
1770                 }
1771         }
1772
1773         /**
1774          * @brief Set the item content id for a given URI
1775          *
1776          * @param string $uri The item URI
1777          */
1778         public static function setICIDforURI($uri)
1779         {
1780                 $item_content = dba::selectFirst('item-content', ['id'], ['uri' => $uri]);
1781                 if (DBM::is_result($item_content)) {
1782                         dba::update('item', ['icid' => $item_content['id']], ['icid' => 0, 'uri' => $uri]);
1783                         logger('Asynchronously set item content id for URI ' . $uri . ' (' . $item_content['id'] . ') - Affected: '. (int)dba::affected_rows());
1784                 } else {
1785                         logger('No item-content found for URI ' . $uri);
1786                 }
1787         }
1788
1789         /**
1790          * @brief Update existing item content entries
1791          *
1792          * @param array $item The item fields that are to be changed
1793          * @param array $condition The condition for finding the item content entries
1794          */
1795         private static function updateActivity($item, $condition)
1796         {
1797                 if (empty($item['verb'])) {
1798                         return false;
1799                 }
1800                 $activity_index = self::activityToIndex($item['verb']);
1801
1802                 if ($activity_index < 0) {
1803                         return false;
1804                 }
1805
1806                 $fields = ['activity' => $activity_index,
1807                         'uri-hash' => hash('sha1', $condition['uri']) . hash('ripemd160', $condition['uri'])];
1808
1809                 logger('Update activity for URI ' . $condition['uri']);
1810
1811                 dba::update('item-activity', $fields, $condition, true);
1812
1813                 return true;
1814         }
1815
1816         /**
1817          * @brief Update existing item content entries
1818          *
1819          * @param array $item The item fields that are to be changed
1820          * @param array $condition The condition for finding the item content entries
1821          */
1822         private static function updateContent($item, $condition)
1823         {
1824                 // We have to select only the fields from the "item-content" table
1825                 $fields = [];
1826                 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
1827                         if (isset($item[$field])) {
1828                                 $fields[$field] = $item[$field];
1829                         }
1830                 }
1831
1832                 if (empty($fields)) {
1833                         return;
1834                 }
1835
1836                 if (!empty($item['plink'])) {
1837                         $fields['uri-plink-hash'] = hash('sha1', $item['plink']) . hash('sha1', $condition['uri']);
1838                 } else {
1839                         // Ensure that we don't delete the plink
1840                         unset($fields['plink']);
1841                 }
1842
1843                 logger('Update content for URI ' . $condition['uri']);
1844
1845                 dba::update('item-content', $fields, $condition, true);
1846         }
1847
1848         /**
1849          * @brief Distributes public items to the receivers
1850          *
1851          * @param integer $itemid      Item ID that should be added
1852          * @param string  $signed_text Original text (for Diaspora signatures), JSON encoded.
1853          */
1854         public static function distribute($itemid, $signed_text = '')
1855         {
1856                 $condition = ["`id` IN (SELECT `parent` FROM `item` WHERE `id` = ?)", $itemid];
1857                 $parent = self::selectFirst(['owner-id'], $condition);
1858                 if (!DBM::is_result($parent)) {
1859                         return;
1860                 }
1861
1862                 // Only distribute public items from native networks
1863                 $condition = ['id' => $itemid, 'uid' => 0,
1864                         'network' => [NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, ""],
1865                         'visible' => true, 'deleted' => false, 'moderated' => false, 'private' => false];
1866                 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $itemid]);
1867                 if (!DBM::is_result($item)) {
1868                         return;
1869                 }
1870
1871                 unset($item['id']);
1872                 unset($item['parent']);
1873                 unset($item['mention']);
1874                 unset($item['wall']);
1875                 unset($item['origin']);
1876                 unset($item['starred']);
1877
1878                 $users = [];
1879
1880                 $condition = ["`nurl` IN (SELECT `nurl` FROM `contact` WHERE `id` = ?) AND `uid` != 0 AND NOT `blocked` AND `rel` IN (?, ?)",
1881                         $parent['owner-id'], CONTACT_IS_SHARING,  CONTACT_IS_FRIEND];
1882                 $contacts = dba::select('contact', ['uid'], $condition);
1883                 while ($contact = dba::fetch($contacts)) {
1884                         $users[$contact['uid']] = $contact['uid'];
1885                 }
1886
1887                 $origin_uid = 0;
1888
1889                 if ($item['uri'] != $item['parent-uri']) {
1890                         $parents = self::select(['uid', 'origin'], ["`uri` = ? AND `uid` != 0", $item['parent-uri']]);
1891                         while ($parent = dba::fetch($parents)) {
1892                                 $users[$parent['uid']] = $parent['uid'];
1893                                 if ($parent['origin'] && !$item['origin']) {
1894                                         $origin_uid = $parent['uid'];
1895                                 }
1896                         }
1897                 }
1898
1899                 foreach ($users as $uid) {
1900                         if ($origin_uid == $uid) {
1901                                 $item['diaspora_signed_text'] = $signed_text;
1902                         }
1903                         self::storeForUser($itemid, $item, $uid);
1904                 }
1905         }
1906
1907         /**
1908          * @brief Store public items for the receivers
1909          *
1910          * @param integer $itemid Item ID that should be added
1911          * @param array   $item   The item entry that will be stored
1912          * @param integer $uid    The user that will receive the item entry
1913          */
1914         private static function storeForUser($itemid, $item, $uid)
1915         {
1916                 $item['uid'] = $uid;
1917                 $item['origin'] = 0;
1918                 $item['wall'] = 0;
1919                 if ($item['uri'] == $item['parent-uri']) {
1920                         $item['contact-id'] = Contact::getIdForURL($item['owner-link'], $uid);
1921                 } else {
1922                         $item['contact-id'] = Contact::getIdForURL($item['author-link'], $uid);
1923                 }
1924
1925                 if (empty($item['contact-id'])) {
1926                         $self = dba::selectFirst('contact', ['id'], ['self' => true, 'uid' => $uid]);
1927                         if (!DBM::is_result($self)) {
1928                                 return;
1929                         }
1930                         $item['contact-id'] = $self['id'];
1931                 }
1932
1933                 if (in_array($item['type'], ["net-comment", "wall-comment"])) {
1934                         $item['type'] = 'remote-comment';
1935                 } elseif ($item['type'] == 'wall') {
1936                         $item['type'] = 'remote';
1937                 }
1938
1939                 /// @todo Handling of "event-id"
1940
1941                 $notify = false;
1942                 if ($item['uri'] == $item['parent-uri']) {
1943                         $contact = dba::selectFirst('contact', [], ['id' => $item['contact-id'], 'self' => false]);
1944                         if (DBM::is_result($contact)) {
1945                                 $notify = self::isRemoteSelf($contact, $item);
1946                         }
1947                 }
1948
1949                 $distributed = self::insert($item, false, $notify, true);
1950
1951                 if (!$distributed) {
1952                         logger("Distributed public item " . $itemid . " for user " . $uid . " wasn't stored", LOGGER_DEBUG);
1953                 } else {
1954                         logger("Distributed public item " . $itemid . " for user " . $uid . " with id " . $distributed, LOGGER_DEBUG);
1955                 }
1956         }
1957
1958         /**
1959          * @brief Add a shadow entry for a given item id that is a thread starter
1960          *
1961          * We store every public item entry additionally with the user id "0".
1962          * This is used for the community page and for the search.
1963          * It is planned that in the future we will store public item entries only once.
1964          *
1965          * @param integer $itemid Item ID that should be added
1966          */
1967         public static function addShadow($itemid)
1968         {
1969                 $fields = ['uid', 'private', 'moderated', 'visible', 'deleted', 'network', 'uri'];
1970                 $condition = ['id' => $itemid, 'parent' => [0, $itemid]];
1971                 $item = self::selectFirst($fields, $condition);
1972
1973                 if (!DBM::is_result($item)) {
1974                         return;
1975                 }
1976
1977                 // is it already a copy?
1978                 if (($itemid == 0) || ($item['uid'] == 0)) {
1979                         return;
1980                 }
1981
1982                 // Is it a visible public post?
1983                 if (!$item["visible"] || $item["deleted"] || $item["moderated"] || $item["private"]) {
1984                         return;
1985                 }
1986
1987                 // is it an entry from a connector? Only add an entry for natively connected networks
1988                 if (!in_array($item["network"], [NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, ""])) {
1989                         return;
1990                 }
1991
1992                 if (self::exists(['uri' => $item['uri'], 'uid' => 0])) {
1993                         return;
1994                 }
1995
1996                 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $itemid]);
1997
1998                 if (DBM::is_result($item)) {
1999                         // Preparing public shadow (removing user specific data)
2000                         $item['uid'] = 0;
2001                         unset($item['id']);
2002                         unset($item['parent']);
2003                         unset($item['wall']);
2004                         unset($item['mention']);
2005                         unset($item['origin']);
2006                         unset($item['starred']);
2007                         if ($item['uri'] == $item['parent-uri']) {
2008                                 $item['contact-id'] = $item['owner-id'];
2009                         } else {
2010                                 $item['contact-id'] = $item['author-id'];
2011                         }
2012
2013                         if (in_array($item['type'], ["net-comment", "wall-comment"])) {
2014                                 $item['type'] = 'remote-comment';
2015                         } elseif ($item['type'] == 'wall') {
2016                                 $item['type'] = 'remote';
2017                         }
2018
2019                         $public_shadow = self::insert($item, false, false, true);
2020
2021                         logger("Stored public shadow for thread ".$itemid." under id ".$public_shadow, LOGGER_DEBUG);
2022                 }
2023         }
2024
2025         /**
2026          * @brief Add a shadow entry for a given item id that is a comment
2027          *
2028          * This function does the same like the function above - but for comments
2029          *
2030          * @param integer $itemid Item ID that should be added
2031          */
2032         public static function addShadowPost($itemid)
2033         {
2034                 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $itemid]);
2035                 if (!DBM::is_result($item)) {
2036                         return;
2037                 }
2038
2039                 // Is it a toplevel post?
2040                 if ($item['id'] == $item['parent']) {
2041                         self::addShadow($itemid);
2042                         return;
2043                 }
2044
2045                 // Is this a shadow entry?
2046                 if ($item['uid'] == 0) {
2047                         return;
2048                 }
2049
2050                 // Is there a shadow parent?
2051                 if (!self::exists(['uri' => $item['parent-uri'], 'uid' => 0])) {
2052                         return;
2053                 }
2054
2055                 // Is there already a shadow entry?
2056                 if (self::exists(['uri' => $item['uri'], 'uid' => 0])) {
2057                         return;
2058                 }
2059
2060                 // Save "origin" and "parent" state
2061                 $origin = $item['origin'];
2062                 $parent = $item['parent'];
2063
2064                 // Preparing public shadow (removing user specific data)
2065                 $item['uid'] = 0;
2066                 unset($item['id']);
2067                 unset($item['parent']);
2068                 unset($item['wall']);
2069                 unset($item['mention']);
2070                 unset($item['origin']);
2071                 unset($item['starred']);
2072                 $item['contact-id'] = Contact::getIdForURL($item['author-link']);
2073
2074                 if (in_array($item['type'], ["net-comment", "wall-comment"])) {
2075                         $item['type'] = 'remote-comment';
2076                 } elseif ($item['type'] == 'wall') {
2077                         $item['type'] = 'remote';
2078                 }
2079
2080                 $public_shadow = self::insert($item, false, false, true);
2081
2082                 logger("Stored public shadow for comment ".$item['uri']." under id ".$public_shadow, LOGGER_DEBUG);
2083
2084                 // If this was a comment to a Diaspora post we don't get our comment back.
2085                 // This means that we have to distribute the comment by ourselves.
2086                 if ($origin && self::exists(['id' => $parent, 'network' => NETWORK_DIASPORA])) {
2087                         self::distribute($public_shadow);
2088                 }
2089         }
2090
2091          /**
2092          * Adds a language specification in a "language" element of given $arr.
2093          * Expects "body" element to exist in $arr.
2094          */
2095         private static function addLanguageToItemArray(&$item)
2096         {
2097                 $naked_body = Text\BBCode::toPlaintext($item['body'], false);
2098
2099                 $ld = new Text_LanguageDetect();
2100                 $ld->setNameMode(2);
2101                 $languages = $ld->detect($naked_body, 3);
2102
2103                 if (is_array($languages)) {
2104                         $item['language'] = json_encode($languages);
2105                 }
2106         }
2107
2108         /**
2109          * @brief Creates an unique guid out of a given uri
2110          *
2111          * @param string $uri uri of an item entry
2112          * @param string $host hostname for the GUID prefix
2113          * @return string unique guid
2114          */
2115         public static function guidFromUri($uri, $host)
2116         {
2117                 // Our regular guid routine is using this kind of prefix as well
2118                 // We have to avoid that different routines could accidentally create the same value
2119                 $parsed = parse_url($uri);
2120
2121                 // We use a hash of the hostname as prefix for the guid
2122                 $guid_prefix = hash("crc32", $host);
2123
2124                 // Remove the scheme to make sure that "https" and "http" doesn't make a difference
2125                 unset($parsed["scheme"]);
2126
2127                 // Glue it together to be able to make a hash from it
2128                 $host_id = implode("/", $parsed);
2129
2130                 // We could use any hash algorithm since it isn't a security issue
2131                 $host_hash = hash("ripemd128", $host_id);
2132
2133                 return $guid_prefix.$host_hash;
2134         }
2135
2136         /**
2137          * generate an unique URI
2138          *
2139          * @param integer $uid User id
2140          * @param string $guid An existing GUID (Otherwise it will be generated)
2141          *
2142          * @return string
2143          */
2144         public static function newURI($uid, $guid = "")
2145         {
2146                 if ($guid == "") {
2147                         $guid = get_guid(32);
2148                 }
2149
2150                 $hostname = self::getApp()->get_hostname();
2151
2152                 $user = dba::selectFirst('user', ['nickname'], ['uid' => $uid]);
2153
2154                 $uri = "urn:X-dfrn:" . $hostname . ':' . $user['nickname'] . ':' . $guid;
2155
2156                 return $uri;
2157         }
2158
2159         /**
2160          * @brief Set "success_update" and "last-item" to the date of the last time we heard from this contact
2161          *
2162          * This can be used to filter for inactive contacts.
2163          * Only do this for public postings to avoid privacy problems, since poco data is public.
2164          * Don't set this value if it isn't from the owner (could be an author that we don't know)
2165          *
2166          * @param array $arr Contains the just posted item record
2167          */
2168         private static function updateContact($arr)
2169         {
2170                 // Unarchive the author
2171                 $contact = dba::selectFirst('contact', [], ['id' => $arr["author-id"]]);
2172                 if (DBM::is_result($contact)) {
2173                         Contact::unmarkForArchival($contact);
2174                 }
2175
2176                 // Unarchive the contact if it's not our own contact
2177                 $contact = dba::selectFirst('contact', [], ['id' => $arr["contact-id"], 'self' => false]);
2178                 if (DBM::is_result($contact)) {
2179                         Contact::unmarkForArchival($contact);
2180                 }
2181
2182                 $update = (!$arr['private'] && (($arr["author-link"] === $arr["owner-link"]) || ($arr["parent-uri"] === $arr["uri"])));
2183
2184                 // Is it a forum? Then we don't care about the rules from above
2185                 if (!$update && ($arr["network"] == NETWORK_DFRN) && ($arr["parent-uri"] === $arr["uri"])) {
2186                         if (dba::exists('contact', ['id' => $arr['contact-id'], 'forum' => true])) {
2187                                 $update = true;
2188                         }
2189                 }
2190
2191                 if ($update) {
2192                         dba::update('contact', ['success_update' => $arr['received'], 'last-item' => $arr['received']],
2193                                 ['id' => $arr['contact-id']]);
2194                 }
2195                 // Now do the same for the system wide contacts with uid=0
2196                 if (!$arr['private']) {
2197                         dba::update('contact', ['success_update' => $arr['received'], 'last-item' => $arr['received']],
2198                                 ['id' => $arr['owner-id']]);
2199
2200                         if ($arr['owner-id'] != $arr['author-id']) {
2201                                 dba::update('contact', ['success_update' => $arr['received'], 'last-item' => $arr['received']],
2202                                         ['id' => $arr['author-id']]);
2203                         }
2204                 }
2205         }
2206
2207         public static function setHashtags(&$item)
2208         {
2209
2210                 $tags = get_tags($item["body"]);
2211
2212                 // No hashtags?
2213                 if (!count($tags)) {
2214                         return false;
2215                 }
2216
2217                 // This sorting is important when there are hashtags that are part of other hashtags
2218                 // Otherwise there could be problems with hashtags like #test and #test2
2219                 rsort($tags);
2220
2221                 $URLSearchString = "^\[\]";
2222
2223                 // All hashtags should point to the home server if "local_tags" is activated
2224                 if (Config::get('system', 'local_tags')) {
2225                         $item["body"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2226                                         "#[url=".System::baseUrl()."/search?tag=$2]$2[/url]", $item["body"]);
2227
2228                         $item["tag"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2229                                         "#[url=".System::baseUrl()."/search?tag=$2]$2[/url]", $item["tag"]);
2230                 }
2231
2232                 // mask hashtags inside of url, bookmarks and attachments to avoid urls in urls
2233                 $item["body"] = preg_replace_callback("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2234                         function ($match) {
2235                                 return ("[url=" . str_replace("#", "&num;", $match[1]) . "]" . str_replace("#", "&num;", $match[2]) . "[/url]");
2236                         }, $item["body"]);
2237
2238                 $item["body"] = preg_replace_callback("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism",
2239                         function ($match) {
2240                                 return ("[bookmark=" . str_replace("#", "&num;", $match[1]) . "]" . str_replace("#", "&num;", $match[2]) . "[/bookmark]");
2241                         }, $item["body"]);
2242
2243                 $item["body"] = preg_replace_callback("/\[attachment (.*)\](.*?)\[\/attachment\]/ism",
2244                         function ($match) {
2245                                 return ("[attachment " . str_replace("#", "&num;", $match[1]) . "]" . $match[2] . "[/attachment]");
2246                         }, $item["body"]);
2247
2248                 // Repair recursive urls
2249                 $item["body"] = preg_replace("/&num;\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2250                                 "&num;$2", $item["body"]);
2251
2252                 foreach ($tags as $tag) {
2253                         if ((strpos($tag, '#') !== 0) || strpos($tag, '[url=')) {
2254                                 continue;
2255                         }
2256
2257                         $basetag = str_replace('_',' ',substr($tag,1));
2258
2259                         $newtag = '#[url=' . System::baseUrl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
2260
2261                         $item["body"] = str_replace($tag, $newtag, $item["body"]);
2262
2263                         if (!stristr($item["tag"], "/search?tag=" . $basetag . "]" . $basetag . "[/url]")) {
2264                                 if (strlen($item["tag"])) {
2265                                         $item["tag"] = ','.$item["tag"];
2266                                 }
2267                                 $item["tag"] = $newtag.$item["tag"];
2268                         }
2269                 }
2270
2271                 // Convert back the masked hashtags
2272                 $item["body"] = str_replace("&num;", "#", $item["body"]);
2273         }
2274
2275         public static function getGuidById($id)
2276         {
2277                 $item = self::selectFirst(['guid'], ['id' => $id]);
2278                 if (DBM::is_result($item)) {
2279                         return $item['guid'];
2280                 } else {
2281                         return '';
2282                 }
2283         }
2284
2285         public static function getIdAndNickByGuid($guid, $uid = 0)
2286         {
2287                 $nick = "";
2288                 $id = 0;
2289
2290                 if ($uid == 0) {
2291                         $uid == local_user();
2292                 }
2293
2294                 // Does the given user have this item?
2295                 if ($uid) {
2296                         $item = dba::fetch_first("SELECT `item`.`id`, `user`.`nickname` FROM `item`
2297                                 INNER JOIN `user` ON `user`.`uid` = `item`.`uid`
2298                                 WHERE `item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated`
2299                                         AND `item`.`guid` = ? AND `item`.`uid` = ?", $guid, $uid);
2300                         if (DBM::is_result($item)) {
2301                                 $id = $item["id"];
2302                                 $nick = $item["nickname"];
2303                         }
2304                 }
2305
2306                 // Or is it anywhere on the server?
2307                 if ($nick == "") {
2308                         $item = dba::fetch_first("SELECT `item`.`id`, `user`.`nickname` FROM `item`
2309                                 INNER JOIN `user` ON `user`.`uid` = `item`.`uid`
2310                                 WHERE `item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated`
2311                                         AND NOT `item`.`private` AND `item`.`wall`
2312                                         AND `item`.`guid` = ?", $guid);
2313                         if (DBM::is_result($item)) {
2314                                 $id = $item["id"];
2315                                 $nick = $item["nickname"];
2316                         }
2317                 }
2318                 return ["nick" => $nick, "id" => $id];
2319         }
2320
2321         /**
2322          * look for mention tags and setup a second delivery chain for forum/community posts if appropriate
2323          * @param int $uid
2324          * @param int $item_id
2325          * @return bool true if item was deleted, else false
2326          */
2327         private static function tagDeliver($uid, $item_id)
2328         {
2329                 $mention = false;
2330
2331                 $user = dba::selectFirst('user', [], ['uid' => $uid]);
2332                 if (!DBM::is_result($user)) {
2333                         return;
2334                 }
2335
2336                 $community_page = (($user['page-flags'] == PAGE_COMMUNITY) ? true : false);
2337                 $prvgroup = (($user['page-flags'] == PAGE_PRVGROUP) ? true : false);
2338
2339                 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $item_id]);
2340                 if (!DBM::is_result($item)) {
2341                         return;
2342                 }
2343
2344                 $link = normalise_link(System::baseUrl() . '/profile/' . $user['nickname']);
2345
2346                 /*
2347                  * Diaspora uses their own hardwired link URL in @-tags
2348                  * instead of the one we supply with webfinger
2349                  */
2350                 $dlink = normalise_link(System::baseUrl() . '/u/' . $user['nickname']);
2351
2352                 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
2353                 if ($cnt) {
2354                         foreach ($matches as $mtch) {
2355                                 if (link_compare($link, $mtch[1]) || link_compare($dlink, $mtch[1])) {
2356                                         $mention = true;
2357                                         logger('mention found: ' . $mtch[2]);
2358                                 }
2359                         }
2360                 }
2361
2362                 if (!$mention) {
2363                         if (($community_page || $prvgroup) &&
2364                                   !$item['wall'] && !$item['origin'] && ($item['id'] == $item['parent'])) {
2365                                 // mmh.. no mention.. community page or private group... no wall.. no origin.. top-post (not a comment)
2366                                 // delete it!
2367                                 logger("no-mention top-level post to community or private group. delete.");
2368                                 dba::delete('item', ['id' => $item_id]);
2369                                 return true;
2370                         }
2371                         return;
2372                 }
2373
2374                 $arr = ['item' => $item, 'user' => $user];
2375
2376                 Addon::callHooks('tagged', $arr);
2377
2378                 if (!$community_page && !$prvgroup) {
2379                         return;
2380                 }
2381
2382                 /*
2383                  * tgroup delivery - setup a second delivery chain
2384                  * prevent delivery looping - only proceed
2385                  * if the message originated elsewhere and is a top-level post
2386                  */
2387                 if ($item['wall'] || $item['origin'] || ($item['id'] != $item['parent'])) {
2388                         return;
2389                 }
2390
2391                 // now change this copy of the post to a forum head message and deliver to all the tgroup members
2392                 $self = dba::selectFirst('contact', ['id', 'name', 'url', 'thumb'], ['uid' => $uid, 'self' => true]);
2393                 if (!DBM::is_result($self)) {
2394                         return;
2395                 }
2396
2397                 $owner_id = Contact::getIdForURL($self['url']);
2398
2399                 // also reset all the privacy bits to the forum default permissions
2400
2401                 $private = ($user['allow_cid'] || $user['allow_gid'] || $user['deny_cid'] || $user['deny_gid']) ? 1 : 0;
2402
2403                 $forum_mode = ($prvgroup ? 2 : 1);
2404
2405                 $fields = ['wall' => true, 'origin' => true, 'forum_mode' => $forum_mode, 'contact-id' => $self['id'],
2406                         'owner-id' => $owner_id, 'owner-link' => $self['url'], 'private' => $private, 'allow_cid' => $user['allow_cid'],
2407                         'allow_gid' => $user['allow_gid'], 'deny_cid' => $user['deny_cid'], 'deny_gid' => $user['deny_gid']];
2408                 dba::update('item', $fields, ['id' => $item_id]);
2409
2410                 self::updateThread($item_id);
2411
2412                 Worker::add(['priority' => PRIORITY_HIGH, 'dont_fork' => true], 'Notifier', 'tgroup', $item_id);
2413         }
2414
2415         public static function isRemoteSelf($contact, &$datarray)
2416         {
2417                 $a = get_app();
2418
2419                 if (!$contact['remote_self']) {
2420                         return false;
2421                 }
2422
2423                 // Prevent the forwarding of posts that are forwarded
2424                 if ($datarray["extid"] == NETWORK_DFRN) {
2425                         logger('Already forwarded', LOGGER_DEBUG);
2426                         return false;
2427                 }
2428
2429                 // Prevent to forward already forwarded posts
2430                 if ($datarray["app"] == $a->get_hostname()) {
2431                         logger('Already forwarded (second test)', LOGGER_DEBUG);
2432                         return false;
2433                 }
2434
2435                 // Only forward posts
2436                 if ($datarray["verb"] != ACTIVITY_POST) {
2437                         logger('No post', LOGGER_DEBUG);
2438                         return false;
2439                 }
2440
2441                 if (($contact['network'] != NETWORK_FEED) && $datarray['private']) {
2442                         logger('Not public', LOGGER_DEBUG);
2443                         return false;
2444                 }
2445
2446                 $datarray2 = $datarray;
2447                 logger('remote-self start - Contact '.$contact['url'].' - '.$contact['remote_self'].' Item '.print_r($datarray, true), LOGGER_DEBUG);
2448                 if ($contact['remote_self'] == 2) {
2449                         $self = dba::selectFirst('contact', ['id', 'name', 'url', 'thumb'],
2450                                         ['uid' => $contact['uid'], 'self' => true]);
2451                         if (DBM::is_result($self)) {
2452                                 $datarray['contact-id'] = $self["id"];
2453
2454                                 $datarray['owner-name'] = $self["name"];
2455                                 $datarray['owner-link'] = $self["url"];
2456                                 $datarray['owner-avatar'] = $self["thumb"];
2457
2458                                 $datarray['author-name']   = $datarray['owner-name'];
2459                                 $datarray['author-link']   = $datarray['owner-link'];
2460                                 $datarray['author-avatar'] = $datarray['owner-avatar'];
2461
2462                                 unset($datarray['created']);
2463                                 unset($datarray['edited']);
2464
2465                                 unset($datarray['network']);
2466                                 unset($datarray['owner-id']);
2467                                 unset($datarray['author-id']);
2468                         }
2469
2470                         if ($contact['network'] != NETWORK_FEED) {
2471                                 $datarray["guid"] = get_guid(32);
2472                                 unset($datarray["plink"]);
2473                                 $datarray["uri"] = self::newURI($contact['uid'], $datarray["guid"]);
2474                                 $datarray["parent-uri"] = $datarray["uri"];
2475                                 $datarray["thr-parent"] = $datarray["uri"];
2476                                 $datarray["extid"] = NETWORK_DFRN;
2477                                 $urlpart = parse_url($datarray2['author-link']);
2478                                 $datarray["app"] = $urlpart["host"];
2479                         } else {
2480                                 $datarray['private'] = 0;
2481                         }
2482                 }
2483
2484                 if ($contact['network'] != NETWORK_FEED) {
2485                         // Store the original post
2486                         $result = self::insert($datarray2, false, false);
2487                         logger('remote-self post original item - Contact '.$contact['url'].' return '.$result.' Item '.print_r($datarray2, true), LOGGER_DEBUG);
2488                 } else {
2489                         $datarray["app"] = "Feed";
2490                         $result = true;
2491                 }
2492
2493                 // Trigger automatic reactions for addons
2494                 $datarray['api_source'] = true;
2495
2496                 // We have to tell the hooks who we are - this really should be improved
2497                 $_SESSION["authenticated"] = true;
2498                 $_SESSION["uid"] = $contact['uid'];
2499
2500                 return $result;
2501         }
2502
2503         /**
2504          *
2505          * @param string $s
2506          * @param int    $uid
2507          * @param array  $item
2508          * @param int    $cid
2509          * @return string
2510          */
2511         public static function fixPrivatePhotos($s, $uid, $item = null, $cid = 0)
2512         {
2513                 if (Config::get('system', 'disable_embedded')) {
2514                         return $s;
2515                 }
2516
2517                 logger('check for photos', LOGGER_DEBUG);
2518                 $site = substr(System::baseUrl(), strpos(System::baseUrl(), '://'));
2519
2520                 $orig_body = $s;
2521                 $new_body = '';
2522
2523                 $img_start = strpos($orig_body, '[img');
2524                 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
2525                 $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
2526
2527                 while (($img_st_close !== false) && ($img_len !== false)) {
2528                         $img_st_close++; // make it point to AFTER the closing bracket
2529                         $image = substr($orig_body, $img_start + $img_st_close, $img_len);
2530
2531                         logger('found photo ' . $image, LOGGER_DEBUG);
2532
2533                         if (stristr($image, $site . '/photo/')) {
2534                                 // Only embed locally hosted photos
2535                                 $replace = false;
2536                                 $i = basename($image);
2537                                 $i = str_replace(['.jpg', '.png', '.gif'], ['', '', ''], $i);
2538                                 $x = strpos($i, '-');
2539
2540                                 if ($x) {
2541                                         $res = substr($i, $x + 1);
2542                                         $i = substr($i, 0, $x);
2543                                         $fields = ['data', 'type', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid'];
2544                                         $photo = dba::selectFirst('photo', $fields, ['resource-id' => $i, 'scale' => $res, 'uid' => $uid]);
2545                                         if (DBM::is_result($photo)) {
2546                                                 /*
2547                                                  * Check to see if we should replace this photo link with an embedded image
2548                                                  * 1. No need to do so if the photo is public
2549                                                  * 2. If there's a contact-id provided, see if they're in the access list
2550                                                  *    for the photo. If so, embed it.
2551                                                  * 3. Otherwise, if we have an item, see if the item permissions match the photo
2552                                                  *    permissions, regardless of order but first check to see if they're an exact
2553                                                  *    match to save some processing overhead.
2554                                                  */
2555                                                 if (self::hasPermissions($photo)) {
2556                                                         if ($cid) {
2557                                                                 $recips = self::enumeratePermissions($photo);
2558                                                                 if (in_array($cid, $recips)) {
2559                                                                         $replace = true;
2560                                                                 }
2561                                                         } elseif ($item) {
2562                                                                 if (self::samePermissions($item, $photo)) {
2563                                                                         $replace = true;
2564                                                                 }
2565                                                         }
2566                                                 }
2567                                                 if ($replace) {
2568                                                         $data = $photo['data'];
2569                                                         $type = $photo['type'];
2570
2571                                                         // If a custom width and height were specified, apply before embedding
2572                                                         if (preg_match("/\[img\=([0-9]*)x([0-9]*)\]/is", substr($orig_body, $img_start, $img_st_close), $match)) {
2573                                                                 logger('scaling photo', LOGGER_DEBUG);
2574
2575                                                                 $width = intval($match[1]);
2576                                                                 $height = intval($match[2]);
2577
2578                                                                 $Image = new Image($data, $type);
2579                                                                 if ($Image->isValid()) {
2580                                                                         $Image->scaleDown(max($width, $height));
2581                                                                         $data = $Image->asString();
2582                                                                         $type = $Image->getType();
2583                                                                 }
2584                                                         }
2585
2586                                                         logger('replacing photo', LOGGER_DEBUG);
2587                                                         $image = 'data:' . $type . ';base64,' . base64_encode($data);
2588                                                         logger('replaced: ' . $image, LOGGER_DATA);
2589                                                 }
2590                                         }
2591                                 }
2592                         }
2593
2594                         $new_body = $new_body . substr($orig_body, 0, $img_start + $img_st_close) . $image . '[/img]';
2595                         $orig_body = substr($orig_body, $img_start + $img_st_close + $img_len + strlen('[/img]'));
2596                         if ($orig_body === false) {
2597                                 $orig_body = '';
2598                         }
2599
2600                         $img_start = strpos($orig_body, '[img');
2601                         $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
2602                         $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
2603                 }
2604
2605                 $new_body = $new_body . $orig_body;
2606
2607                 return $new_body;
2608         }
2609
2610         private static function hasPermissions($obj)
2611         {
2612                 return !empty($obj['allow_cid']) || !empty($obj['allow_gid']) ||
2613                         !empty($obj['deny_cid']) || !empty($obj['deny_gid']);
2614         }
2615
2616         private static function samePermissions($obj1, $obj2)
2617         {
2618                 // first part is easy. Check that these are exactly the same.
2619                 if (($obj1['allow_cid'] == $obj2['allow_cid'])
2620                         && ($obj1['allow_gid'] == $obj2['allow_gid'])
2621                         && ($obj1['deny_cid'] == $obj2['deny_cid'])
2622                         && ($obj1['deny_gid'] == $obj2['deny_gid'])) {
2623                         return true;
2624                 }
2625
2626                 // This is harder. Parse all the permissions and compare the resulting set.
2627                 $recipients1 = self::enumeratePermissions($obj1);
2628                 $recipients2 = self::enumeratePermissions($obj2);
2629                 sort($recipients1);
2630                 sort($recipients2);
2631
2632                 /// @TODO Comparison of arrays, maybe use array_diff_assoc() here?
2633                 return ($recipients1 == $recipients2);
2634         }
2635
2636         // returns an array of contact-ids that are allowed to see this object
2637         private static function enumeratePermissions($obj)
2638         {
2639                 $allow_people = expand_acl($obj['allow_cid']);
2640                 $allow_groups = Group::expand(expand_acl($obj['allow_gid']));
2641                 $deny_people  = expand_acl($obj['deny_cid']);
2642                 $deny_groups  = Group::expand(expand_acl($obj['deny_gid']));
2643                 $recipients   = array_unique(array_merge($allow_people, $allow_groups));
2644                 $deny         = array_unique(array_merge($deny_people, $deny_groups));
2645                 $recipients   = array_diff($recipients, $deny);
2646                 return $recipients;
2647         }
2648
2649         public static function getFeedTags($item)
2650         {
2651                 $ret = [];
2652                 $matches = false;
2653                 $cnt = preg_match_all('|\#\[url\=(.*?)\](.*?)\[\/url\]|', $item['tag'], $matches);
2654                 if ($cnt) {
2655                         for ($x = 0; $x < $cnt; $x ++) {
2656                                 if ($matches[1][$x]) {
2657                                         $ret[$matches[2][$x]] = ['#', $matches[1][$x], $matches[2][$x]];
2658                                 }
2659                         }
2660                 }
2661                 $matches = false;
2662                 $cnt = preg_match_all('|\@\[url\=(.*?)\](.*?)\[\/url\]|', $item['tag'], $matches);
2663                 if ($cnt) {
2664                         for ($x = 0; $x < $cnt; $x ++) {
2665                                 if ($matches[1][$x]) {
2666                                         $ret[] = ['@', $matches[1][$x], $matches[2][$x]];
2667                                 }
2668                         }
2669                 }
2670                 return $ret;
2671         }
2672
2673         public static function expire($uid, $days, $network = "", $force = false)
2674         {
2675                 if (!$uid || ($days < 1)) {
2676                         return;
2677                 }
2678
2679                 $condition = ["`uid` = ? AND NOT `deleted` AND `id` = `parent` AND `gravity` = ?",
2680                         $uid, GRAVITY_PARENT];
2681
2682                 /*
2683                  * $expire_network_only = save your own wall posts
2684                  * and just expire conversations started by others
2685                  */
2686                 $expire_network_only = PConfig::get($uid, 'expire', 'network_only', false);
2687
2688                 if ($expire_network_only) {
2689                         $condition[0] .= " AND NOT `wall`";
2690                 }
2691
2692                 if ($network != "") {
2693                         $condition[0] .= " AND `network` = ?";
2694                         $condition[] = $network;
2695
2696                         /*
2697                          * There is an index "uid_network_received" but not "uid_network_created"
2698                          * This avoids the creation of another index just for one purpose.
2699                          * And it doesn't really matter wether to look at "received" or "created"
2700                          */
2701                         $condition[0] .= " AND `received` < UTC_TIMESTAMP() - INTERVAL ? DAY";
2702                         $condition[] = $days;
2703                 } else {
2704                         $condition[0] .= " AND `created` < UTC_TIMESTAMP() - INTERVAL ? DAY";
2705                         $condition[] = $days;
2706                 }
2707
2708                 $items = self::select(['file', 'resource-id', 'starred', 'type', 'id'], $condition);
2709
2710                 if (!DBM::is_result($items)) {
2711                         return;
2712                 }
2713
2714                 $expire_items = PConfig::get($uid, 'expire', 'items', true);
2715
2716                 // Forcing expiring of items - but not notes and marked items
2717                 if ($force) {
2718                         $expire_items = true;
2719                 }
2720
2721                 $expire_notes = PConfig::get($uid, 'expire', 'notes', true);
2722                 $expire_starred = PConfig::get($uid, 'expire', 'starred', true);
2723                 $expire_photos = PConfig::get($uid, 'expire', 'photos', false);
2724
2725                 $expired = 0;
2726
2727                 while ($item = Item::fetch($items)) {
2728                         // don't expire filed items
2729
2730                         if (strpos($item['file'], '[') !== false) {
2731                                 continue;
2732                         }
2733
2734                         // Only expire posts, not photos and photo comments
2735
2736                         if (!$expire_photos && strlen($item['resource-id'])) {
2737                                 continue;
2738                         } elseif (!$expire_starred && intval($item['starred'])) {
2739                                 continue;
2740                         } elseif (!$expire_notes && $item['type'] == 'note') {
2741                                 continue;
2742                         } elseif (!$expire_items && $item['type'] != 'note') {
2743                                 continue;
2744                         }
2745
2746                         self::deleteById($item['id'], PRIORITY_LOW);
2747
2748                         ++$expired;
2749                 }
2750                 dba::close($items);
2751                 logger('User ' . $uid . ": expired $expired items; expire items: $expire_items, expire notes: $expire_notes, expire starred: $expire_starred, expire photos: $expire_photos");
2752         }
2753
2754         public static function firstPostDate($uid, $wall = false)
2755         {
2756                 $condition = ['uid' => $uid, 'wall' => $wall, 'deleted' => false, 'visible' => true, 'moderated' => false];
2757                 $params = ['order' => ['created' => false]];
2758                 $thread = dba::selectFirst('thread', ['created'], $condition, $params);
2759                 if (DBM::is_result($thread)) {
2760                         return substr(DateTimeFormat::local($thread['created']), 0, 10);
2761                 }
2762                 return false;
2763         }
2764
2765         /**
2766          * @brief add/remove activity to an item
2767          *
2768          * Toggle activities as like,dislike,attend of an item
2769          *
2770          * @param string $item_id
2771          * @param string $verb
2772          *              Activity verb. One of
2773          *                      like, unlike, dislike, undislike, attendyes, unattendyes,
2774          *                      attendno, unattendno, attendmaybe, unattendmaybe
2775          * @hook 'post_local_end'
2776          *              array $arr
2777          *                      'post_id' => ID of posted item
2778          */
2779         public static function performLike($item_id, $verb)
2780         {
2781                 if (!local_user() && !remote_user()) {
2782                         return false;
2783                 }
2784
2785                 switch ($verb) {
2786                         case 'like':
2787                         case 'unlike':
2788                                 $bodyverb = L10n::t('%1$s likes %2$s\'s %3$s');
2789                                 $activity = ACTIVITY_LIKE;
2790                                 break;
2791                         case 'dislike':
2792                         case 'undislike':
2793                                 $bodyverb = L10n::t('%1$s doesn\'t like %2$s\'s %3$s');
2794                                 $activity = ACTIVITY_DISLIKE;
2795                                 break;
2796                         case 'attendyes':
2797                         case 'unattendyes':
2798                                 $bodyverb = L10n::t('%1$s is attending %2$s\'s %3$s');
2799                                 $activity = ACTIVITY_ATTEND;
2800                                 break;
2801                         case 'attendno':
2802                         case 'unattendno':
2803                                 $bodyverb = L10n::t('%1$s is not attending %2$s\'s %3$s');
2804                                 $activity = ACTIVITY_ATTENDNO;
2805                                 break;
2806                         case 'attendmaybe':
2807                         case 'unattendmaybe':
2808                                 $bodyverb = L10n::t('%1$s may attend %2$s\'s %3$s');
2809                                 $activity = ACTIVITY_ATTENDMAYBE;
2810                                 break;
2811                         default:
2812                                 logger('like: unknown verb ' . $verb . ' for item ' . $item_id);
2813                                 return false;
2814                 }
2815
2816                 // Enable activity toggling instead of on/off
2817                 $event_verb_flag = $activity === ACTIVITY_ATTEND || $activity === ACTIVITY_ATTENDNO || $activity === ACTIVITY_ATTENDMAYBE;
2818
2819                 logger('like: verb ' . $verb . ' item ' . $item_id);
2820
2821                 $item = self::selectFirst(self::ITEM_FIELDLIST, ['`id` = ? OR `uri` = ?', $item_id, $item_id]);
2822                 if (!DBM::is_result($item)) {
2823                         logger('like: unknown item ' . $item_id);
2824                         return false;
2825                 }
2826
2827                 $uid = $item['uid'];
2828                 if (($uid == 0) && local_user()) {
2829                         $uid = local_user();
2830                 }
2831
2832                 if (!can_write_wall($uid)) {
2833                         logger('like: unable to write on wall ' . $uid);
2834                         return false;
2835                 }
2836
2837                 // Retrieves the local post owner
2838                 $owner_self_contact = dba::selectFirst('contact', [], ['uid' => $uid, 'self' => true]);
2839                 if (!DBM::is_result($owner_self_contact)) {
2840                         logger('like: unknown owner ' . $uid);
2841                         return false;
2842                 }
2843
2844                 // Retrieve the current logged in user's public contact
2845                 $author_id = public_contact();
2846
2847                 $author_contact = dba::selectFirst('contact', [], ['id' => $author_id]);
2848                 if (!DBM::is_result($author_contact)) {
2849                         logger('like: unknown author ' . $author_id);
2850                         return false;
2851                 }
2852
2853                 // Contact-id is the uid-dependant author contact
2854                 if (local_user() == $uid) {
2855                         $item_contact_id = $owner_self_contact['id'];
2856                         $item_contact = $owner_self_contact;
2857                 } else {
2858                         $item_contact_id = Contact::getIdForURL($author_contact['url'], $uid, true);
2859                         $item_contact = dba::selectFirst('contact', [], ['id' => $item_contact_id]);
2860                         if (!DBM::is_result($item_contact)) {
2861                                 logger('like: unknown item contact ' . $item_contact_id);
2862                                 return false;
2863                         }
2864                 }
2865
2866                 // Look for an existing verb row
2867                 // event participation are essentially radio toggles. If you make a subsequent choice,
2868                 // we need to eradicate your first choice.
2869                 if ($event_verb_flag) {
2870                         $verbs = [ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE];
2871                 } else {
2872                         $verbs = $activity;
2873                 }
2874
2875                 $base_condition = ['verb' => $verbs, 'deleted' => false, 'gravity' => GRAVITY_ACTIVITY,
2876                         'author-id' => $author_contact['id'], 'uid' => $item['uid']];
2877
2878                 $condition = array_merge($base_condition, ['parent' => $item_id]);
2879                 $like_item = self::selectFirst(['id', 'guid', 'verb'], $condition);
2880
2881                 if (!DBM::is_result($like_item)) {
2882                         $condition = array_merge($base_condition, ['parent-uri' => $item_id]);
2883                         $like_item = self::selectFirst(['id', 'guid', 'verb'], $condition);
2884                 }
2885
2886                 if (!DBM::is_result($like_item)) {
2887                         $condition = array_merge($base_condition, ['thr-parent' => $item_id]);
2888                         $like_item = self::selectFirst(['id', 'guid', 'verb'], $condition);
2889                 }
2890
2891                 // If it exists, mark it as deleted
2892                 if (DBM::is_result($like_item)) {
2893                         // Already voted, undo it
2894                         $fields = ['deleted' => true, 'unseen' => true, 'changed' => DateTimeFormat::utcNow()];
2895                         /// @todo Consider using self::update - but before doing so, check the side effects
2896                         dba::update('item', $fields, ['id' => $like_item['id']]);
2897
2898                         // Clean up the Diaspora signatures for this like
2899                         // Go ahead and do it even if Diaspora support is disabled. We still want to clean up
2900                         // if it had been enabled in the past
2901                         dba::delete('sign', ['iid' => $like_item['id']]);
2902
2903                         $like_item_id = $like_item['id'];
2904                         Worker::add(PRIORITY_HIGH, "Notifier", "like", $like_item_id);
2905
2906                         if (!$event_verb_flag || $like_item['verb'] == $activity) {
2907                                 return true;
2908                         }
2909                 }
2910
2911                 // Verb is "un-something", just trying to delete existing entries
2912                 if (strpos($verb, 'un') === 0) {
2913                         return true;
2914                 }
2915
2916                 // Else or if event verb different from existing row, create a new item row
2917                 $post_type = (($item['resource-id']) ? L10n::t('photo') : L10n::t('status'));
2918                 if ($item['object-type'] === ACTIVITY_OBJ_EVENT) {
2919                         $post_type = L10n::t('event');
2920                 }
2921                 $objtype = $item['resource-id'] ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE ;
2922                 $link = xmlify('<link rel="alternate" type="text/html" href="' . System::baseUrl() . '/display/' . $owner_self_contact['nick'] . '/' . $item['id'] . '" />' . "\n") ;
2923                 $body = $item['body'];
2924
2925                 $obj = <<< EOT
2926
2927                 <object>
2928                         <type>$objtype</type>
2929                         <local>1</local>
2930                         <id>{$item['uri']}</id>
2931                         <link>$link</link>
2932                         <title></title>
2933                         <content>$body</content>
2934                 </object>
2935 EOT;
2936
2937                 $ulink = '[url=' . $author_contact['url'] . ']' . $author_contact['name'] . '[/url]';
2938                 $alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
2939                 $plink = '[url=' . System::baseUrl() . '/display/' . $owner_self_contact['nick'] . '/' . $item['id'] . ']' . $post_type . '[/url]';
2940
2941                 $new_item = [
2942                         'guid'          => get_guid(32),
2943                         'uri'           => self::newURI($item['uid']),
2944                         'uid'           => $item['uid'],
2945                         'contact-id'    => $item_contact_id,
2946                         'type'          => 'activity',
2947                         'wall'          => $item['wall'],
2948                         'origin'        => 1,
2949                         'gravity'       => GRAVITY_ACTIVITY,
2950                         'parent'        => $item['id'],
2951                         'parent-uri'    => $item['uri'],
2952                         'thr-parent'    => $item['uri'],
2953                         'owner-id'      => $item['owner-id'],
2954                         'owner-name'    => $item['owner-name'],
2955                         'owner-link'    => $item['owner-link'],
2956                         'owner-avatar'  => $item['owner-avatar'],
2957                         'author-id'     => $author_contact['id'],
2958                         'author-name'   => $author_contact['name'],
2959                         'author-link'   => $author_contact['url'],
2960                         'author-avatar' => $author_contact['thumb'],
2961                         'body'          => sprintf($bodyverb, $ulink, $alink, $plink),
2962                         'verb'          => $activity,
2963                         'object-type'   => $objtype,
2964                         'object'        => $obj,
2965                         'allow_cid'     => $item['allow_cid'],
2966                         'allow_gid'     => $item['allow_gid'],
2967                         'deny_cid'      => $item['deny_cid'],
2968                         'deny_gid'      => $item['deny_gid'],
2969                         'visible'       => 1,
2970                         'unseen'        => 1,
2971                 ];
2972
2973                 $new_item_id = self::insert($new_item);
2974
2975                 // If the parent item isn't visible then set it to visible
2976                 if (!$item['visible']) {
2977                         self::update(['visible' => true], ['id' => $item['id']]);
2978                 }
2979
2980                 // Save the author information for the like in case we need to relay to Diaspora
2981                 Diaspora::storeLikeSignature($item_contact, $new_item_id);
2982
2983                 $new_item['id'] = $new_item_id;
2984
2985                 Addon::callHooks('post_local_end', $new_item);
2986
2987                 Worker::add(PRIORITY_HIGH, "Notifier", "like", $new_item_id);
2988
2989                 return true;
2990         }
2991
2992         private static function addThread($itemid, $onlyshadow = false)
2993         {
2994                 $fields = ['uid', 'created', 'edited', 'commented', 'received', 'changed', 'wall', 'private', 'pubmail',
2995                         'moderated', 'visible', 'starred', 'bookmark', 'contact-id',
2996                         'deleted', 'origin', 'forum_mode', 'mention', 'network', 'author-id', 'owner-id'];
2997                 $condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
2998                 $item = self::selectFirst($fields, $condition);
2999
3000                 if (!DBM::is_result($item)) {
3001                         return;
3002                 }
3003
3004                 $item['iid'] = $itemid;
3005
3006                 if (!$onlyshadow) {
3007                         $result = dba::insert('thread', $item);
3008
3009                         logger("Add thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
3010                 }
3011         }
3012
3013         private static function updateThread($itemid, $setmention = false)
3014         {
3015                 $fields = ['uid', 'guid', 'created', 'edited', 'commented', 'received', 'changed',
3016                         'wall', 'private', 'pubmail', 'moderated', 'visible', 'starred', 'bookmark', 'contact-id',
3017                         'deleted', 'origin', 'forum_mode', 'network', 'author-id', 'owner-id'];
3018                 $condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
3019
3020                 $item = self::selectFirst($fields, $condition);
3021                 if (!DBM::is_result($item)) {
3022                         return;
3023                 }
3024
3025                 if ($setmention) {
3026                         $item["mention"] = 1;
3027                 }
3028
3029                 $sql = "";
3030
3031                 $fields = [];
3032
3033                 foreach ($item as $field => $data) {
3034                         if (!in_array($field, ["guid"])) {
3035                                 $fields[$field] = $data;
3036                         }
3037                 }
3038
3039                 $result = dba::update('thread', $fields, ['iid' => $itemid]);
3040
3041                 logger("Update thread for item ".$itemid." - guid ".$item["guid"]." - ".(int)$result, LOGGER_DEBUG);
3042         }
3043
3044         private static function deleteThread($itemid, $itemuri = "")
3045         {
3046                 $item = dba::selectFirst('thread', ['uid'], ['iid' => $itemid]);
3047                 if (!DBM::is_result($item)) {
3048                         logger('No thread found for id '.$itemid, LOGGER_DEBUG);
3049                         return;
3050                 }
3051
3052                 // Using dba::delete at this time could delete the associated item entries
3053                 $result = dba::e("DELETE FROM `thread` WHERE `iid` = ?", $itemid);
3054
3055                 logger("deleteThread: Deleted thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
3056
3057                 if ($itemuri != "") {
3058                         $condition = ["`uri` = ? AND NOT `deleted` AND NOT (`uid` IN (?, 0))", $itemuri, $item["uid"]];
3059                         if (!self::exists($condition)) {
3060                                 dba::delete('item', ['uri' => $itemuri, 'uid' => 0]);
3061                                 logger("deleteThread: Deleted shadow for item ".$itemuri, LOGGER_DEBUG);
3062                         }
3063                 }
3064         }
3065 }