]> git.mxchange.org Git - friendica.git/blob - src/Model/Post.php
b0e77fe373d49625fccfb18f70b5c15f933a099d
[friendica.git] / src / Model / Post.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Model;
23
24 use BadMethodCallException;
25 use Friendica\Core\Logger;
26 use Friendica\Core\System;
27 use Friendica\Database\Database;
28 use Friendica\Database\DBA;
29 use Friendica\Database\DBStructure;
30 use Friendica\Protocol\Activity;
31
32 class Post
33 {
34         /**
35          * Insert a new post entry
36          *
37          * @param integer $uri_id
38          * @param array   $fields
39          * @return int    ID of inserted post
40          * @throws \Exception
41          */
42         public static function insert(int $uri_id, array $data = [])
43         {
44                 if (empty($uri_id)) {
45                         throw new BadMethodCallException('Empty URI_id');
46                 }
47
48                 $fields = DBStructure::getFieldsForTable('post', $data);
49
50                 // Additionally assign the key fields
51                 $fields['uri-id'] = $uri_id;
52
53                 if (!DBA::insert('post', $fields, Database::INSERT_IGNORE)) {
54                         return 0;
55                 }
56
57                 return DBA::lastInsertId();
58         }
59
60         /**
61          * Fetch a single post row
62          *
63          * @param mixed $stmt statement object
64          * @return array|false current row or false
65          * @throws \Exception
66          */
67         public static function fetch($stmt)
68         {
69                 $row = DBA::fetch($stmt);
70
71                 if (!is_array($row)) {
72                         return $row;
73                 }
74
75                 if (array_key_exists('verb', $row)) {
76                         if (in_array($row['verb'], Item::ACTIVITIES)) {
77                                 if (array_key_exists('title', $row)) {
78                                         $row['title'] = '';
79                                 }
80                                 if (array_key_exists('body', $row)) {
81                                         $row['body'] = $row['verb'];
82                                 }
83                                 if (array_key_exists('object', $row)) {
84                                         $row['object'] = '';
85                                 }
86                                 if (array_key_exists('object-type', $row)) {
87                                         $row['object-type'] = Activity\ObjectType::NOTE;
88                                 }
89                         } elseif (in_array($row['verb'], ['', Activity::POST, Activity::SHARE])) {
90                                 // Posts don't have a target - but having tags or files.
91                                 if (array_key_exists('target', $row)) {
92                                         $row['target'] = '';
93                                 }
94                         }
95                 }
96
97                 if (array_key_exists('extid', $row) && is_null($row['extid'])) {
98                         $row['extid'] = '';
99                 }
100
101                 return $row;
102         }
103
104         /**
105          * Fills an array with data from an post query
106          *
107          * @param object $stmt statement object
108          * @param bool   $do_close
109          * @return array Data array
110          */
111         public static function toArray($stmt, $do_close = true) {
112                 if (is_bool($stmt)) {
113                         return $stmt;
114                 }
115
116                 $data = [];
117                 while ($row = self::fetch($stmt)) {
118                         $data[] = $row;
119                 }
120                 if ($do_close) {
121                         DBA::close($stmt);
122                 }
123                 return $data;
124         }
125
126         /**
127          * Check if post data exists
128          *
129          * @param array $condition array of fields for condition
130          * @param bool  $user_mode true = post-user-view, false = post-view
131          *
132          * @return boolean Are there rows for that condition?
133          * @throws \Exception
134          */
135         public static function exists($condition, bool $user_mode = true) {
136                 return DBA::exists($user_mode ? 'post-user-view' : 'post-view', $condition);
137         }
138
139         /**
140          * Counts the posts satisfying the provided condition
141          *
142          * @param array        $condition array of fields for condition
143          * @param array        $params    Array of several parameters
144          * @param bool         $user_mode true = post-user-view, false = post-view
145          *
146          * @return int
147          *
148          * Example:
149          * $condition = ["uid" => 1, "network" => 'dspr'];
150          * or:
151          * $condition = ["`uid` = ? AND `network` IN (?, ?)", 1, 'dfrn', 'dspr'];
152          *
153          * $count = Post::count($condition);
154          * @throws \Exception
155          */
156         public static function count(array $condition = [], array $params = [], bool $user_mode = true)
157         {
158                 return DBA::count($user_mode ? 'post-user-view' : 'post-view', $condition, $params);
159         }
160
161         /**
162          * Retrieve a single record from the post table and returns it in an associative array
163          *
164          * @param array $fields
165          * @param array $condition
166          * @param array $params
167          * @param bool  $user_mode true = post-user-view, false = post-view
168          * @return bool|array
169          * @throws \Exception
170          * @see   DBA::select
171          */
172         public static function selectFirst(array $fields = [], array $condition = [], $params = [], bool $user_mode = true)
173         {
174                 $params['limit'] = 1;
175
176                 $result = self::select($fields, $condition, $params, $user_mode);
177
178                 if (is_bool($result)) {
179                         return $result;
180                 } else {
181                         $row = self::fetch($result);
182                         DBA::close($result);
183                         return $row;
184                 }
185         }
186
187         /**
188          * Retrieve a single record from the post-thread table and returns it in an associative array
189          *
190          * @param array $fields
191          * @param array $condition
192          * @param array $params
193          * @return bool|array
194          * @throws \Exception
195          * @see   DBA::select
196          */
197         public static function selectFirstThread(array $fields = [], array $condition = [], $params = [])
198         {
199                 $params['limit'] = 1;
200
201                 $result = self::selectThread($fields, $condition, $params);
202
203                 if (is_bool($result)) {
204                         return $result;
205                 } else {
206                         $row = self::fetch($result);
207                         DBA::close($result);
208                         return $row;
209                 }
210         }
211
212         /**
213          * Select rows from the post table and returns them as an array
214          *
215          * @param array $selected  Array of selected fields, empty for all
216          * @param array $condition Array of fields for condition
217          * @param array $params    Array of several parameters
218          *
219          * @return array
220          * @throws \Exception
221          */
222         public static function selectToArray(array $fields = [], array $condition = [], $params = [])
223         {
224                 $result = self::select($fields, $condition, $params);
225
226                 if (is_bool($result)) {
227                         return [];
228                 }
229
230                 $data = [];
231                 while ($row = self::fetch($result)) {
232                         $data[] = $row;
233                 }
234                 DBA::close($result);
235
236                 return $data;
237         }
238
239         /**
240          * Select rows from the given view
241          *
242          * @param string $view      View (post-user-view or post-thread-user-view)
243          * @param array  $selected  Array of selected fields, empty for all
244          * @param array  $condition Array of fields for condition
245          * @param array  $params    Array of several parameters
246          *
247          * @return boolean|object
248          * @throws \Exception
249          */
250         private static function selectView(string $view, array $selected = [], array $condition = [], $params = [])
251         {
252                 if (empty($selected)) {
253                         $selected = array_merge(Item::DISPLAY_FIELDLIST, Item::ITEM_FIELDLIST);
254
255                         if ($view == 'post-thread-user-view') {
256                                 $selected = array_merge($selected, ['ignored']);
257                         }
258                 }
259
260                 $selected = array_unique($selected);
261
262                 return DBA::select($view, $selected, $condition, $params);
263         }
264
265         /**
266          * Select rows from the post table
267          *
268          * @param array $selected  Array of selected fields, empty for all
269          * @param array $condition Array of fields for condition
270          * @param array $params    Array of several parameters
271          * @param bool  $user_mode true = post-user-view, false = post-view
272          *
273          * @return boolean|object
274          * @throws \Exception
275          */
276         public static function select(array $selected = [], array $condition = [], $params = [], bool $user_mode = true)
277         {
278                 return self::selectView($user_mode ? 'post-user-view' : 'post-view', $selected, $condition, $params);
279         }
280
281         /**
282          * Select rows from the post table
283          *
284          * @param array $selected  Array of selected fields, empty for all
285          * @param array $condition Array of fields for condition
286          * @param array $params    Array of several parameters
287          *
288          * @return boolean|object
289          * @throws \Exception
290          */
291         public static function selectThread(array $selected = [], array $condition = [], $params = [])
292         {
293                 return self::selectView('post-thread-user-view', $selected, $condition, $params);
294         }
295
296         /**
297          * Select rows from the given view for a given user
298          *
299          * @param string  $view      View (post-user-view or post-thread-user-view)
300          * @param integer $uid       User ID
301          * @param array   $selected  Array of selected fields, empty for all
302          * @param array   $condition Array of fields for condition
303          * @param array   $params    Array of several parameters
304          *
305          * @return boolean|object
306          * @throws \Exception
307          */
308         private static function selectViewForUser(string $view, $uid, array $selected = [], array $condition = [], $params = [])
309         {
310                 if (empty($selected)) {
311                         $selected = Item::DISPLAY_FIELDLIST;
312                 }
313
314                 $condition = DBA::mergeConditions($condition,
315                         ["`visible` AND NOT `deleted`
316                         AND NOT `author-blocked` AND NOT `owner-blocked`
317                         AND (NOT `causer-blocked` OR `causer-id` = ? OR `causer-id` IS NULL) AND NOT `contact-blocked`
318                         AND ((NOT `contact-readonly` AND NOT `contact-pending` AND (`contact-rel` IN (?, ?)))
319                                 OR `self` OR `gravity` != ? OR `contact-uid` = ?)
320                         AND NOT EXISTS (SELECT `uri-id` FROM `post-user` WHERE `uid` = ? AND `uri-id` = `" . $view . "`.`uri-id` AND `hidden`)
321                         AND NOT EXISTS (SELECT `cid` FROM `user-contact` WHERE `uid` = ? AND `cid` = `author-id` AND `blocked`)
322                         AND NOT EXISTS (SELECT `cid` FROM `user-contact` WHERE `uid` = ? AND `cid` = `owner-id` AND `blocked`)
323                         AND NOT EXISTS (SELECT `cid` FROM `user-contact` WHERE `uid` = ? AND `cid` = `author-id` AND `ignored` AND `gravity` = ?)
324                         AND NOT EXISTS (SELECT `cid` FROM `user-contact` WHERE `uid` = ? AND `cid` = `owner-id` AND `ignored` AND `gravity` = ?)",
325                         0, Contact::SHARING, Contact::FRIEND, GRAVITY_PARENT, 0, $uid, $uid, $uid, $uid, GRAVITY_PARENT, $uid, GRAVITY_PARENT]);
326
327                 $select_string = implode(', ', array_map([DBA::class, 'quoteIdentifier'], $selected));
328
329                 $condition_string = DBA::buildCondition($condition);
330                 $param_string = DBA::buildParameter($params);
331
332                 $sql = "SELECT " . $select_string . " FROM `" . $view . "` " . $condition_string . $param_string;
333                 $sql = DBA::cleanQuery($sql);
334
335                 return DBA::p($sql, $condition);
336         }
337
338         /**
339          * Select rows from the post view for a given user
340          *
341          * @param integer $uid       User ID
342          * @param array   $selected  Array of selected fields, empty for all
343          * @param array   $condition Array of fields for condition
344          * @param array   $params    Array of several parameters
345          * @param bool    $user_mode true = post-user-view, false = post-view
346          *
347          * @return boolean|object
348          * @throws \Exception
349          */
350         public static function selectForUser($uid, array $selected = [], array $condition = [], $params = [], bool $user_mode = true)
351         {
352                 return self::selectViewForUser($user_mode ? 'post-user-view' : 'post-view', $uid, $selected, $condition, $params);
353         }
354
355                 /**
356          * Select rows from the post view for a given user
357          *
358          * @param integer $uid       User ID
359          * @param array   $selected  Array of selected fields, empty for all
360          * @param array   $condition Array of fields for condition
361          * @param array   $params    Array of several parameters
362          *
363          * @return boolean|object
364          * @throws \Exception
365          */
366         public static function selectThreadForUser($uid, array $selected = [], array $condition = [], $params = [])
367         {
368                 return self::selectViewForUser('post-thread-user-view', $uid, $selected, $condition, $params);
369         }
370
371         /**
372          * Retrieve a single record from the post view for a given user and returns it in an associative array
373          *
374          * @param integer $uid User ID
375          * @param array   $selected
376          * @param array   $condition
377          * @param array   $params
378          * @return bool|array
379          * @throws \Exception
380          * @see   DBA::select
381          */
382         public static function selectFirstForUser($uid, array $selected = [], array $condition = [], $params = [])
383         {
384                 $params['limit'] = 1;
385
386                 $result = self::selectForUser($uid, $selected, $condition, $params);
387
388                 if (is_bool($result)) {
389                         return $result;
390                 } else {
391                         $row = self::fetch($result);
392                         DBA::close($result);
393                         return $row;
394                 }
395         }
396
397         /**
398          * Select pinned rows from the item table for a given user
399          *
400          * @param integer $uid       User ID
401          * @param array   $selected  Array of selected fields, empty for all
402          * @param array   $condition Array of fields for condition
403          * @param array   $params    Array of several parameters
404          *
405          * @return boolean|object
406          * @throws \Exception
407          */
408         public static function selectPinned(int $uid, array $selected = [], array $condition = [], $params = [])
409         {
410                 $postthreaduser = DBA::select('post-thread-user', ['uri-id'], ['uid' => $uid, 'pinned' => true]);
411                 if (!DBA::isResult($postthreaduser)) {
412                         return $postthreaduser;
413                 }
414
415                 $pinned = [];
416                 while ($useritem = DBA::fetch($postthreaduser)) {
417                         $pinned[] = $useritem['uri-id'];
418                 }
419                 DBA::close($postthreaduser);
420
421                 if (empty($pinned)) {
422                         return [];
423                 }
424
425                 $condition = DBA::mergeConditions(['uri-id' => $pinned, 'uid' => $uid, 'gravity' => GRAVITY_PARENT], $condition);
426
427                 return self::selectForUser($uid, $selected, $condition, $params);
428         }
429
430         /**
431          * Update existing post entries
432          *
433          * @param array $fields    The fields that are to be changed
434          * @param array $condition The condition for finding the item entries
435          *
436          * A return value of "0" doesn't mean an error - but that 0 rows had been changed.
437          *
438          * @return integer|boolean number of affected rows - or "false" if there was an error
439          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
440          */
441         public static function update(array $fields, array $condition)
442         {
443                 $affected = 0;
444
445                 Logger::info('Start Update', ['fields' => $fields, 'condition' => $condition, 'uid' => local_user(),'callstack' => System::callstack(10)]);
446
447                 // Don't allow changes to fields that are responsible for the relation between the records
448                 unset($fields['id']);
449                 unset($fields['parent']);
450                 unset($fields['uid']);
451                 unset($fields['uri']);
452                 unset($fields['uri-id']);
453                 unset($fields['thr-parent']);
454                 unset($fields['thr-parent-id']);
455                 unset($fields['parent-uri']);
456                 unset($fields['parent-uri-id']);
457
458                 $thread_condition = DBA::mergeConditions($condition, ['gravity' => GRAVITY_PARENT]);
459
460                 // To ensure the data integrity we do it in an transaction
461                 DBA::transaction();
462
463                 $update_fields = DBStructure::getFieldsForTable('post-user', $fields);
464                 if (!empty($update_fields)) {
465                         $affected_count = 0;
466                         $posts = DBA::select('post-user-view', ['post-user-id'], $condition);
467                         while ($rows = DBA::toArray($posts, false, 100)) {
468                                 $puids = array_column($rows, 'post-user-id');
469                                 if (!DBA::update('post-user', $update_fields, ['id' => $puids])) {
470                                         DBA::rollback();
471                                         Logger::notice('Updating post-user failed', ['fields' => $update_fields, 'condition' => $condition]);
472                                         return false;
473                                 }
474                                 $affected_count += DBA::affectedRows();
475                         }
476                         DBA::close($posts);
477                         $affected = $affected_count;
478                 }
479
480                 $update_fields = DBStructure::getFieldsForTable('post-content', $fields);
481                 if (!empty($update_fields)) {
482                         $affected_count = 0;
483                         $posts = DBA::select('post-user-view', ['uri-id'], $condition, ['group_by' => ['uri-id']]);
484                         while ($rows = DBA::toArray($posts, false, 100)) {
485                                 $uriids = array_column($rows, 'uri-id');
486                                 if (!DBA::update('post-content', $update_fields, ['uri-id' => $uriids])) {
487                                         DBA::rollback();
488                                         Logger::notice('Updating post-content failed', ['fields' => $update_fields, 'condition' => $condition]);
489                                         return false;
490                                 }
491                                 $affected_count += DBA::affectedRows();
492                         }
493                         DBA::close($posts);
494                         $affected = max($affected, $affected_count);
495                 }
496
497                 $update_fields = DBStructure::getFieldsForTable('post', $fields);
498                 if (!empty($update_fields)) {
499                         $affected_count = 0;
500                         $posts = DBA::select('post-user-view', ['uri-id'], $condition, ['group_by' => ['uri-id']]);
501                         while ($rows = DBA::toArray($posts, false, 100)) {
502                                 $uriids = array_column($rows, 'uri-id');
503                                 if (!DBA::update('post', $update_fields, ['uri-id' => $uriids])) {
504                                         DBA::rollback();
505                                         Logger::notice('Updating post failed', ['fields' => $update_fields, 'condition' => $condition]);
506                                         return false;
507                                 }
508                                 $affected_count += DBA::affectedRows();
509                         }
510                         DBA::close($posts);
511                         $affected = max($affected, $affected_count);
512                 }
513
514                 $update_fields = Post\DeliveryData::extractFields($fields);
515                 if (!empty($update_fields)) {
516                         $affected_count = 0;
517                         $posts = DBA::select('post-user-view', ['uri-id'], $condition, ['group_by' => ['uri-id']]);
518                         while ($rows = DBA::toArray($posts, false, 100)) {
519                                 $uriids = array_column($rows, 'uri-id');
520                                 if (!DBA::update('post-delivery-data', $update_fields, ['uri-id' => $uriids])) {
521                                         DBA::rollback();
522                                         Logger::notice('Updating post-delivery-data failed', ['fields' => $update_fields, 'condition' => $condition]);
523                                         return false;
524                                 }
525                                 $affected_count += DBA::affectedRows();
526                         }
527                         DBA::close($posts);
528                         $affected = max($affected, $affected_count);
529                 }
530
531                 $update_fields = DBStructure::getFieldsForTable('post-thread', $fields);
532                 if (!empty($update_fields)) {
533                         $affected_count = 0;
534                         $posts = DBA::select('post-user-view', ['uri-id'], $thread_condition, ['group_by' => ['uri-id']]);
535                         while ($rows = DBA::toArray($posts, false, 100)) {
536                                 $uriids = array_column($rows, 'uri-id');
537                                 if (!DBA::update('post-thread', $update_fields, ['uri-id' => $uriids])) {
538                                         DBA::rollback();
539                                         Logger::notice('Updating post-thread failed', ['fields' => $update_fields, 'condition' => $condition]);
540                                         return false;
541                                 }
542                                 $affected_count += DBA::affectedRows();
543                         }
544                         DBA::close($posts);
545                         $affected = max($affected, $affected_count);
546                 }
547
548                 $update_fields = DBStructure::getFieldsForTable('post-thread-user', $fields);
549                 if (!empty($update_fields)) {
550                         $affected_count = 0;
551                         $posts = DBA::select('post-user-view', ['post-user-id'], $thread_condition);
552                         while ($rows = DBA::toArray($posts, false, 100)) {
553                                 $thread_puids = array_column($rows, 'post-user-id');
554                                 if (!DBA::update('post-thread-user', $update_fields, ['post-user-id' => $thread_puids])) {
555                                         DBA::rollback();
556                                         Logger::notice('Updating post-thread-user failed', ['fields' => $update_fields, 'condition' => $condition]);
557                                         return false;
558                                 }
559                                 $affected_count += DBA::affectedRows();
560                         }
561                         DBA::close($posts);
562                         $affected = max($affected, $affected_count);
563                 }
564
565                 DBA::commit();
566
567                 Logger::info('Updated posts', ['rows' => $affected]);
568                 return $affected;
569         }
570
571         /**
572          * Delete a row from the post table
573          *
574          * @param array        $conditions Field condition(s)
575          * @param array        $options
576          *                           - cascade: If true we delete records in other tables that depend on the one we're deleting through
577          *                           relations (default: true)
578          *
579          * @return boolean was the delete successful?
580          * @throws \Exception
581          */
582         public static function delete(array $conditions, array $options = [])
583         {
584                 return DBA::delete('post', $conditions, $options);
585         }
586 }