]> git.mxchange.org Git - friendica.git/blob - src/Model/Post/Activity.php
Merge pull request #12591 from MrPetovan/task/2023-licence
[friendica.git] / src / Model / Post / Activity.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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\Post;
23
24 use Friendica\Database\Database;
25 use Friendica\Database\DBA;
26 use Friendica\Util\DateTimeFormat;
27
28 class Activity
29 {
30         /**
31          * Insert a new post-activity entry
32          *
33          * @param integer $uri_id
34          * @param array   $fields
35          *
36          * @return bool   success
37          */
38         public static function insert(int $uri_id, string $source): bool
39         {
40                 // Additionally assign the key fields
41                 $fields = [
42                         'uri-id'   => $uri_id,
43                         'activity' => $source,
44                         'received' => DateTimeFormat::utcNow()
45                 ];
46
47                 return DBA::insert('post-activity', $fields, Database::INSERT_IGNORE);
48         }
49
50         /**
51          * Retrieves activity of the given uri-id
52          *
53          * @param int   $uriId
54          *
55          * @return array
56          */
57         public static function getByURIId(int $uriId): array
58         {
59                 $activity = DBA::selectFirst('post-activity', [], ['uri-id' => $uriId]);
60                 return json_decode($activity['activity'] ?? '', true) ?? [];
61         }
62
63         /**
64          * Checks if the given uridid has a stored activity
65          *
66          * @param integer $uriId
67          *
68          * @return boolean
69          */
70         public static function exists(int $uriId): bool
71         {
72                 return DBA::exists('post-activity', ['uri-id' => $uriId]);
73         }
74 }