Update copyright
[friendica.git/.git] / src / Model / Post / Delayed.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\Post;
23
24 use Friendica\Core\Logger;
25 use Friendica\Database\DBA;
26 use Friendica\Core\Worker;
27 use Friendica\Database\Database;
28 use Friendica\DI;
29 use Friendica\Model\Item;
30 use Friendica\Model\Post;
31 use Friendica\Model\Tag;
32 use Friendica\Util\DateTimeFormat;
33
34 class Delayed
35 {
36         /**
37          * Insert a new delayed post
38          *
39          * @param string  $uri
40          * @param array   $item
41          * @param integer $notify
42          * @param bool    $unprepared
43          * @param string  $delayed
44          * @param array   $taglist
45          * @param array   $attachments
46          * @return bool insert success
47          */ 
48         public static function add(string $uri, array $item, int $notify = 0, bool $unprepared = false, string $delayed = '', array $taglist = [], array $attachments = [])
49         {
50                 if (empty($item['uid']) || self::exists($uri, $item['uid'])) {
51                         Logger::notice('No uid or already found');
52                         return false;
53                 }
54
55                 if (empty($delayed)) {
56                         $min_posting = DI::config()->get('system', 'minimum_posting_interval', 0);
57
58                         $last_publish = DI::pConfig()->get($item['uid'], 'system', 'last_publish', 0, true);
59                         $next_publish = max($last_publish + (60 * $min_posting), time());
60                         $delayed = date(DateTimeFormat::MYSQL, $next_publish);
61                 } else {
62                         $next_publish = strtotime($delayed);
63                 }
64
65                 Logger::notice('Adding post for delayed publishing', ['uid' => $item['uid'], 'delayed' => $delayed, 'uri' => $uri]);
66
67                 if (!Worker::add(['priority' => PRIORITY_HIGH, 'delayed' => $delayed], 'DelayedPublish', $item, $notify, $taglist, $attachments, $unprepared, $uri)) {
68                         return false;
69                 }
70
71                 DI::pConfig()->set($item['uid'], 'system', 'last_publish', $next_publish);
72
73                 return DBA::insert('delayed-post', ['uri' => $uri, 'uid' => $item['uid'], 'delayed' => $delayed], Database::INSERT_IGNORE);
74         }
75
76         /**
77          * Delete a delayed post
78          *
79          * @param string $uri
80          * @param int    $uid
81          *
82          * @return bool delete success
83          */
84         private static function delete(string $uri, int $uid)
85         {
86                 return DBA::delete('delayed-post', ['uri' => $uri, 'uid' => $uid]);
87         }
88
89         /**
90          * Check if an entry exists
91          *
92          * @param string $uri
93          * @param int    $uid
94          *
95          * @return bool "true" if an entry with that URI exists
96          */
97         public static function exists(string $uri, int $uid)
98         {
99                 return DBA::exists('delayed-post', ['uri' => $uri, 'uid' => $uid]);
100         }
101
102         /**
103          * Publish a delayed post
104          *
105          * @param array $item
106          * @param integer $notify
107          * @param array $taglist
108          * @param array $attachments
109          * @param bool  $unprepared
110          * @param string $uri
111          * @return bool
112          */
113         public static function publish(array $item, int $notify = 0, array $taglist = [], array $attachments = [], bool $unprepared = false, string $uri = '')
114         {
115                 if ($unprepared) {
116                         $_SESSION['authenticated'] = true;
117                         $_SESSION['uid'] = $item['uid'];
118
119                         $_REQUEST = $item;
120                         $_REQUEST['api_source'] = true;
121                         $_REQUEST['profile_uid'] = $item['uid'];
122                         $_REQUEST['title'] = $item['title'] ?? '';
123
124                         if (!empty($item['app'])) {
125                                 $_REQUEST['source'] = $item['app'];
126                         }
127
128                         require_once 'mod/item.php';
129                         $id = item_post(DI::app());
130
131                         if (empty($uri) && !empty($item['extid'])) {
132                                 $uri = $item['extid'];
133                         }
134
135                         Logger::notice('Unprepared post stored', ['id' => $id, 'uid' => $item['uid'], 'uri' => $uri]);
136                         if (self::exists($uri, $item['uid'])) {
137                                 self::delete($uri, $item['uid']);
138                         }
139         
140                         return $id;
141                 }
142                 $id = Item::insert($item, $notify);
143
144                 Logger::notice('Post stored', ['id' => $id, 'uid' => $item['uid'], 'cid' => $item['contact-id']]);
145
146                 if (empty($uri) && !empty($item['uri'])) {
147                         $uri = $item['uri'];
148                 }
149
150                 if (!empty($uri) && self::exists($uri, $item['uid'])) {
151                         self::delete($uri, $item['uid']);
152                 }
153
154                 if (!empty($id) && (!empty($taglist) || !empty($attachments))) {
155                         $feeditem = Post::selectFirst(['uri-id'], ['id' => $id]);
156
157                         foreach ($taglist as $tag) {
158                                 Tag::store($feeditem['uri-id'], Tag::HASHTAG, $tag);
159                         }
160
161                         foreach ($attachments as $attachment) {
162                                 $attachment['uri-id'] = $feeditem['uri-id'];
163                                 Media::insert($attachment);
164                         }
165                 }
166
167                 return $id;
168         }
169 }