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