]> git.mxchange.org Git - friendica.git/blob - src/Worker/CronJobs.php
Merge pull request #6595 from annando/notice
[friendica.git] / src / Worker / CronJobs.php
1 <?php
2 /**
3  * @file src/worker/CronJobs.php
4  */
5 namespace Friendica\Worker;
6
7 use Friendica\App;
8 use Friendica\BaseObject;
9 use Friendica\Core\Cache;
10 use Friendica\Core\Config;
11 use Friendica\Core\Logger;
12 use Friendica\Core\Protocol;
13 use Friendica\Database\DBA;
14 use Friendica\Database\PostUpdate;
15 use Friendica\Model\Contact;
16 use Friendica\Model\GContact;
17 use Friendica\Model\Photo;
18 use Friendica\Model\User;
19 use Friendica\Network\Probe;
20 use Friendica\Protocol\PortableContact;
21 use Friendica\Util\Proxy as ProxyUtils;
22
23 require_once 'mod/nodeinfo.php';
24
25 class CronJobs
26 {
27         public static function execute($command = '')
28         {
29                 $a = BaseObject::getApp();
30
31                 // No parameter set? So return
32                 if ($command == '') {
33                         return;
34                 }
35
36                 Logger::log("Starting cronjob " . $command, Logger::DEBUG);
37
38                 // Call possible post update functions
39                 // see src/Database/PostUpdate.php for more details
40                 if ($command == 'post_update') {
41                         PostUpdate::update();
42                         return;
43                 }
44
45                 // update nodeinfo data
46                 if ($command == 'nodeinfo') {
47                         nodeinfo_cron();
48                         return;
49                 }
50
51                 // Expire and remove user entries
52                 if ($command == 'expire_and_remove_users') {
53                         self::expireAndRemoveUsers();
54                         return;
55                 }
56
57                 if ($command == 'update_contact_birthdays') {
58                         Contact::updateBirthdays();
59                         return;
60                 }
61
62                 if ($command == 'update_photo_albums') {
63                         self::updatePhotoAlbums();
64                         return;
65                 }
66
67                 // Clear cache entries
68                 if ($command == 'clear_cache') {
69                         self::clearCache($a);
70                         return;
71                 }
72
73                 // Repair missing Diaspora values in contacts
74                 if ($command == 'repair_diaspora') {
75                         self::repairDiaspora($a);
76                         return;
77                 }
78
79                 // Repair entries in the database
80                 if ($command == 'repair_database') {
81                         self::repairDatabase();
82                         return;
83                 }
84
85                 Logger::log("Xronjob " . $command . " is unknown.", Logger::DEBUG);
86
87                 return;
88         }
89
90         /**
91          * @brief Update the cached values for the number of photo albums per user
92          */
93         private static function updatePhotoAlbums()
94         {
95                 $r = q("SELECT `uid` FROM `user` WHERE NOT `account_expired` AND NOT `account_removed`");
96                 if (!DBA::isResult($r)) {
97                         return;
98                 }
99
100                 foreach ($r as $user) {
101                         Photo::clearAlbumCache($user['uid']);
102                 }
103         }
104
105         /**
106          * @brief Expire and remove user entries
107          */
108         private static function expireAndRemoveUsers()
109         {
110                 // expire any expired regular accounts. Don't expire forums.
111                 $condition = ["NOT `account_expired` AND `account_expires_on` > ? AND `account_expires_on` < UTC_TIMESTAMP() AND `page-flags` = 0", DBA::NULL_DATETIME];
112                 DBA::update('user', ['account_expired' => true], $condition);
113
114                 // Remove any freshly expired account
115                 $users = DBA::select('user', ['uid'], ['account_expired' => true, 'account_removed' => false]);
116                 while ($user = DBA::fetch($users)) {
117                         User::remove($user['uid']);
118                 }
119
120                 // delete user records for recently removed accounts
121                 $users = DBA::select('user', ['uid'], ["`account_removed` AND `account_expires_on` < UTC_TIMESTAMP() "]);
122                 while ($user = DBA::fetch($users)) {
123                         // Delete the contacts of this user
124                         $self = DBA::selectFirst('contact', ['nurl'], ['self' => true, 'uid' => $user['uid']]);
125                         if (DBA::isResult($self)) {
126                                 DBA::delete('contact', ['nurl' => $self['nurl'], 'self' => false]);
127                         }
128
129                         DBA::delete('user', ['uid' => $user['uid']]);
130                 }
131         }
132
133         /**
134          * @brief Clear cache entries
135          *
136          * @param App $a
137          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
138          */
139         private static function clearCache(App $a)
140         {
141                 $last = Config::get('system', 'cache_last_cleared');
142
143                 if ($last) {
144                         $next = $last + (3600); // Once per hour
145                         $clear_cache = ($next <= time());
146                 } else {
147                         $clear_cache = true;
148                 }
149
150                 if (!$clear_cache) {
151                         return;
152                 }
153
154                 // clear old cache
155                 Cache::clear();
156
157                 // clear old item cache files
158                 clear_cache();
159
160                 // clear cache for photos
161                 clear_cache($a->getBasePath(), $a->getBasePath() . "/photo");
162
163                 // clear smarty cache
164                 clear_cache($a->getBasePath() . "/view/smarty3/compiled", $a->getBasePath() . "/view/smarty3/compiled");
165
166                 // clear cache for image proxy
167                 if (!Config::get("system", "proxy_disabled")) {
168                         clear_cache($a->getBasePath(), $a->getBasePath() . "/proxy");
169
170                         $cachetime = Config::get('system', 'proxy_cache_time');
171
172                         if (!$cachetime) {
173                                 $cachetime = ProxyUtils::DEFAULT_TIME;
174                         }
175
176                         $condition = ['`uid` = 0 AND `resource-id` LIKE "pic:%" AND `created` < NOW() - INTERVAL ? SECOND', $cachetime];
177                         Photo::delete($condition);
178                 }
179
180                 // Delete the cached OEmbed entries that are older than three month
181                 DBA::delete('oembed', ["`created` < NOW() - INTERVAL 3 MONTH"]);
182
183                 // Delete the cached "parse_url" entries that are older than three month
184                 DBA::delete('parsed_url', ["`created` < NOW() - INTERVAL 3 MONTH"]);
185
186                 // Maximum table size in megabyte
187                 $max_tablesize = intval(Config::get('system', 'optimize_max_tablesize')) * 1000000;
188                 if ($max_tablesize == 0) {
189                         $max_tablesize = 100 * 1000000; // Default are 100 MB
190                 }
191                 if ($max_tablesize > 0) {
192                         // Minimum fragmentation level in percent
193                         $fragmentation_level = intval(Config::get('system', 'optimize_fragmentation')) / 100;
194                         if ($fragmentation_level == 0) {
195                                 $fragmentation_level = 0.3; // Default value is 30%
196                         }
197
198                         // Optimize some tables that need to be optimized
199                         $r = q("SHOW TABLE STATUS");
200                         foreach ($r as $table) {
201
202                                 // Don't optimize tables that are too large
203                                 if ($table["Data_length"] > $max_tablesize) {
204                                         continue;
205                                 }
206
207                                 // Don't optimize empty tables
208                                 if ($table["Data_length"] == 0) {
209                                         continue;
210                                 }
211
212                                 // Calculate fragmentation
213                                 $fragmentation = $table["Data_free"] / ($table["Data_length"] + $table["Index_length"]);
214
215                                 Logger::log("Table " . $table["Name"] . " - Fragmentation level: " . round($fragmentation * 100, 2), Logger::DEBUG);
216
217                                 // Don't optimize tables that needn't to be optimized
218                                 if ($fragmentation < $fragmentation_level) {
219                                         continue;
220                                 }
221
222                                 // So optimize it
223                                 Logger::log("Optimize Table " . $table["Name"], Logger::DEBUG);
224                                 q("OPTIMIZE TABLE `%s`", DBA::escape($table["Name"]));
225                         }
226                 }
227
228                 Config::set('system', 'cache_last_cleared', time());
229         }
230
231         /**
232          * @brief Repair missing values in Diaspora contacts
233          *
234          * @param App $a
235          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
236          * @throws \ImagickException
237          */
238         private static function repairDiaspora(App $a)
239         {
240                 $starttime = time();
241
242                 $r = q("SELECT `id`, `url` FROM `contact`
243                         WHERE `network` = '%s' AND (`batch` = '' OR `notify` = '' OR `poll` = '' OR pubkey = '')
244                                 ORDER BY RAND() LIMIT 50", DBA::escape(Protocol::DIASPORA));
245                 if (!DBA::isResult($r)) {
246                         return;
247                 }
248
249                 foreach ($r as $contact) {
250                         // Quit the loop after 3 minutes
251                         if (time() > ($starttime + 180)) {
252                                 return;
253                         }
254
255                         if (!PortableContact::reachable($contact["url"])) {
256                                 continue;
257                         }
258
259                         $data = Probe::uri($contact["url"]);
260                         if ($data["network"] != Protocol::DIASPORA) {
261                                 continue;
262                         }
263
264                         Logger::log("Repair contact " . $contact["id"] . " " . $contact["url"], Logger::DEBUG);
265                         q("UPDATE `contact` SET `batch` = '%s', `notify` = '%s', `poll` = '%s', pubkey = '%s' WHERE `id` = %d",
266                                 DBA::escape($data["batch"]), DBA::escape($data["notify"]), DBA::escape($data["poll"]), DBA::escape($data["pubkey"]),
267                                 intval($contact["id"]));
268                 }
269         }
270
271         /**
272          * @brief Do some repairs in database entries
273          *
274          */
275         private static function repairDatabase()
276         {
277                 // Sometimes there seem to be issues where the "self" contact vanishes.
278                 // We haven't found the origin of the problem by now.
279                 $r = q("SELECT `uid` FROM `user` WHERE NOT EXISTS (SELECT `uid` FROM `contact` WHERE `contact`.`uid` = `user`.`uid` AND `contact`.`self`)");
280                 if (DBA::isResult($r)) {
281                         foreach ($r AS $user) {
282                                 Logger::log('Create missing self contact for user ' . $user['uid']);
283                                 Contact::createSelfFromUserId($user['uid']);
284                         }
285                 }
286
287                 // There was an issue where the nick vanishes from the contact table
288                 q("UPDATE `contact` INNER JOIN `user` ON `contact`.`uid` = `user`.`uid` SET `nick` = `nickname` WHERE `self` AND `nick`=''");
289
290                 // Update the global contacts for local users
291                 $r = q("SELECT `uid` FROM `user` WHERE `verified` AND NOT `blocked` AND NOT `account_removed` AND NOT `account_expired`");
292                 if (DBA::isResult($r)) {
293                         foreach ($r AS $user) {
294                                 GContact::updateForUser($user["uid"]);
295                         }
296                 }
297
298                 /// @todo
299                 /// - remove thread entries without item
300                 /// - remove sign entries without item
301                 /// - remove children when parent got lost
302                 /// - set contact-id in item when not present
303         }
304 }