]> git.mxchange.org Git - friendica.git/blob - src/Core/Update.php
Merge pull request #8227 from annando/daemon-checks
[friendica.git] / src / Core / Update.php
1 <?php
2
3 namespace Friendica\Core;
4
5 use Friendica\App;
6 use Friendica\Database\DBA;
7 use Friendica\Database\DBStructure;
8 use Friendica\DI;
9 use Friendica\Util\Strings;
10
11 class Update
12 {
13         const SUCCESS = 0;
14         const FAILED  = 1;
15
16         /**
17          * Function to check if the Database structure needs an update.
18          *
19          * @param string   $basePath   The base path of this application
20          * @param boolean  $via_worker Is the check run via the worker?
21          * @param App\Mode $mode       The current app mode
22          *
23          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
24          */
25         public static function check($basePath, $via_worker, App\Mode $mode)
26         {
27                 if (!DBA::connected()) {
28                         return;
29                 }
30
31                 // Don't check the status if the last update was failed
32                 if (DI::config()->get('system', 'update', Update::SUCCESS, true) == Update::FAILED) {
33                         return;
34                 }
35
36                 $build = DI::config()->get('system', 'build');
37
38                 if (empty($build)) {
39                         DI::config()->set('system', 'build', DB_UPDATE_VERSION - 1);
40                         $build = DB_UPDATE_VERSION - 1;
41                 }
42
43                 // We don't support upgrading from very old versions anymore
44                 if ($build < NEW_UPDATE_ROUTINE_VERSION) {
45                         die('You try to update from a version prior to database version 1170. The direct upgrade path is not supported. Please update to version 3.5.4 before updating to this version.');
46                 }
47
48                 if ($build < DB_UPDATE_VERSION) {
49                         if ($via_worker) {
50                                 // Calling the database update directly via the worker enables us to perform database changes to the workerqueue table itself.
51                                 // This is a fallback, since normally the database update will be performed by a worker job.
52                                 // This worker job doesn't work for changes to the "workerqueue" table itself.
53                                 self::run($basePath);
54                         } else {
55                                 Worker::add(PRIORITY_CRITICAL, 'DBUpdate');
56                         }
57                 }
58         }
59
60         /**
61          * Automatic database updates
62          *
63          * @param string $basePath The base path of this application
64          * @param bool $force      Force the Update-Check even if the database version doesn't match
65          * @param bool $override   Overrides any running/stuck updates
66          * @param bool $verbose    Run the Update-Check verbose
67          * @param bool $sendMail   Sends a Mail to the administrator in case of success/failure
68          *
69          * @return string Empty string if the update is successful, error messages otherwise
70          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
71          */
72         public static function run($basePath, $force = false, $override = false, $verbose = false, $sendMail = true)
73         {
74                 // In force mode, we release the dbupdate lock first
75                 // Necessary in case of an stuck update
76                 if ($override) {
77                         DI::lock()->release('dbupdate', true);
78                 }
79
80                 $build = DI::config()->get('system', 'build', null, true);
81
82                 if (empty($build) || ($build > DB_UPDATE_VERSION)) {
83                         $build = DB_UPDATE_VERSION - 1;
84                         DI::config()->set('system', 'build', $build);
85                 }
86
87                 if ($build != DB_UPDATE_VERSION || $force) {
88                         require_once 'update.php';
89
90                         $stored = intval($build);
91                         $current = intval(DB_UPDATE_VERSION);
92                         if ($stored < $current || $force) {
93                                 DI::config()->load('database');
94
95                                 Logger::info('Update starting.', ['from' => $stored, 'to' => $current]);
96
97                                 // Compare the current structure with the defined structure
98                                 // If the Lock is acquired, never release it automatically to avoid double updates
99                                 if (DI::lock()->acquire('dbupdate', 120, Cache\Duration::INFINITE)) {
100
101                                         // Checks if the build changed during Lock acquiring (so no double update occurs)
102                                         $retryBuild = DI::config()->get('system', 'build', null, true);
103                                         if ($retryBuild !== $build) {
104                                                 Logger::info('Update already done.', ['from' => $stored, 'to' => $current]);
105                                                 DI::lock()->release('dbupdate');
106                                                 return '';
107                                         }
108
109                                         // run the pre_update_nnnn functions in update.php
110                                         for ($x = $stored + 1; $x <= $current; $x++) {
111                                                 $r = self::runUpdateFunction($x, 'pre_update');
112                                                 if (!$r) {
113                                                         DI::config()->set('system', 'update', Update::FAILED);
114                                                         DI::lock()->release('dbupdate');
115                                                         return $r;
116                                                 }
117                                         }
118
119                                         // update the structure in one call
120                                         $retval = DBStructure::update($basePath, $verbose, true);
121                                         if (!empty($retval)) {
122                                                 if ($sendMail) {
123                                                         self::updateFailed(
124                                                                 DB_UPDATE_VERSION,
125                                                                 $retval
126                                                         );
127                                                 }
128                                                 Logger::error('Update ERROR.', ['from' => $stored, 'to' => $current, 'retval' => $retval]);
129                                                 DI::config()->set('system', 'update', Update::FAILED);
130                                                 DI::lock()->release('dbupdate');
131                                                 return $retval;
132                                         } else {
133                                                 DI::config()->set('database', 'last_successful_update', $current);
134                                                 DI::config()->set('database', 'last_successful_update_time', time());
135                                                 Logger::info('Update finished.', ['from' => $stored, 'to' => $current]);
136                                         }
137
138                                         // run the update_nnnn functions in update.php
139                                         for ($x = $stored + 1; $x <= $current; $x++) {
140                                                 $r = self::runUpdateFunction($x, 'update');
141                                                 if (!$r) {
142                                                         DI::config()->set('system', 'update', Update::FAILED);
143                                                         DI::lock()->release('dbupdate');
144                                                         return $r;
145                                                 }
146                                         }
147
148                                         Logger::notice('Update success.', ['from' => $stored, 'to' => $current]);
149                                         if ($sendMail) {
150                                                 self::updateSuccessfull($stored, $current);
151                                         }
152
153                                         DI::config()->set('system', 'update', Update::SUCCESS);
154                                         DI::lock()->release('dbupdate');
155                                 }
156                         }
157                 }
158
159                 return '';
160         }
161
162         /**
163          * Executes a specific update function
164          *
165          * @param int    $x      the DB version number of the function
166          * @param string $prefix the prefix of the function (update, pre_update)
167          *
168          * @return bool true, if the update function worked
169          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
170          */
171         public static function runUpdateFunction($x, $prefix)
172         {
173                 $funcname = $prefix . '_' . $x;
174
175                 Logger::info('Update function start.', ['function' => $funcname]);
176
177                 if (function_exists($funcname)) {
178                         // There could be a lot of processes running or about to run.
179                         // We want exactly one process to run the update command.
180                         // So store the fact that we're taking responsibility
181                         // after first checking to see if somebody else already has.
182                         // If the update fails or times-out completely you may need to
183                         // delete the config entry to try again.
184
185                         if (DI::lock()->acquire('dbupdate_function', 120, Cache\Duration::INFINITE)) {
186
187                                 // call the specific update
188                                 $retval = $funcname();
189
190                                 if ($retval) {
191                                         //send the administrator an e-mail
192                                         self::updateFailed(
193                                                 $x,
194                                                 DI::l10n()->t('Update %s failed. See error logs.', $x)
195                                         );
196                                         Logger::error('Update function ERROR.', ['function' => $funcname, 'retval' => $retval]);
197                                         DI::lock()->release('dbupdate_function');
198                                         return false;
199                                 } else {
200                                         DI::config()->set('database', 'last_successful_update_function', $funcname);
201                                         DI::config()->set('database', 'last_successful_update_function_time', time());
202
203                                         if ($prefix == 'update') {
204                                                 DI::config()->set('system', 'build', $x);
205                                         }
206
207                                         DI::lock()->release('dbupdate_function');
208                                         Logger::info('Update function finished.', ['function' => $funcname]);
209                                         return true;
210                                 }
211                         }
212                 } else {
213                         Logger::info('Update function skipped.', ['function' => $funcname]);
214
215                         DI::config()->set('database', 'last_successful_update_function', $funcname);
216                         DI::config()->set('database', 'last_successful_update_function_time', time());
217
218                         if ($prefix == 'update') {
219                                 DI::config()->set('system', 'build', $x);
220                         }
221
222                         return true;
223                 }
224         }
225
226         /**
227          * send the email and do what is needed to do on update fails
228          *
229          * @param int    $update_id     number of failed update
230          * @param string $error_message error message
231          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
232          */
233         private static function updateFailed($update_id, $error_message) {
234                 //send the administrators an e-mail
235                 $condition = ['email' => explode(",", str_replace(" ", "", DI::config()->get('config', 'admin_email'))), 'parent-uid' => 0];
236                 $adminlist = DBA::select('user', ['uid', 'language', 'email'], $condition, ['order' => ['uid']]);
237
238                 // No valid result?
239                 if (!DBA::isResult($adminlist)) {
240                         Logger::warning('Cannot notify administrators .', ['update' => $update_id, 'message' => $error_message]);
241
242                         // Don't continue
243                         return;
244                 }
245
246                 $sent = [];
247
248                 // every admin could had different language
249                 while ($admin = DBA::fetch($adminlist)) {
250                         if (in_array($admin['email'], $sent)) {
251                                 continue;
252                         }
253                         $sent[] = $admin['email'];
254
255                         $lang = (($admin['language'])?$admin['language']:'en');
256                         $l10n = DI::l10n()->withLang($lang);
257
258                         $preamble = Strings::deindent($l10n->t("
259                                 The friendica developers released update %s recently,
260                                 but when I tried to install it, something went terribly wrong.
261                                 This needs to be fixed soon and I can't do it alone. Please contact a
262                                 friendica developer if you can not help me on your own. My database might be invalid.",
263                                 $update_id));
264                         $body = $l10n->t("The error message is\n[pre]%s[/pre]", $error_message);
265
266                         notification([
267                                         'uid'      => $admin['uid'],
268                                         'type'     => SYSTEM_EMAIL,
269                                         'to_email' => $admin['email'],
270                                         'subject'  => $l10n->t('[Friendica Notify] Database update'),
271                                         'preamble' => $preamble,
272                                         'body'     => $body,
273                                         'language' => $lang]
274                         );
275                 }
276
277                 //try the logger
278                 Logger::alert('Database structure update FAILED.', ['error' => $error_message]);
279         }
280
281         private static function updateSuccessfull($from_build, $to_build)
282         {
283                 //send the administrators an e-mail
284                 $condition = ['email' => explode(",", str_replace(" ", "", DI::config()->get('config', 'admin_email'))), 'parent-uid' => 0];
285                 $adminlist = DBA::select('user', ['uid', 'language', 'email'], $condition, ['order' => ['uid']]);
286
287                 if (DBA::isResult($adminlist)) {
288                         $sent = [];
289
290                         // every admin could had different language
291                         while ($admin = DBA::fetch($adminlist)) {
292                                 if (in_array($admin['email'], $sent)) {
293                                         continue;
294                                 }
295                                 $sent[] = $admin['email'];
296
297                                 $lang = (($admin['language']) ? $admin['language'] : 'en');
298                                 $l10n = DI::l10n()->withLang($lang);
299
300                                 $preamble = Strings::deindent($l10n->t("
301                                         The friendica database was successfully updated from %s to %s.",
302                                         $from_build, $to_build));
303
304                                 notification([
305                                                 'uid' => $admin['uid'],
306                                                 'type' => SYSTEM_EMAIL,
307                                                 'to_email' => $admin['email'],
308                                                 'subject'  => DI::l10n()->t('[Friendica Notify] Database update'),
309                                                 'preamble' => $preamble,
310                                                 'body' => $preamble,
311                                                 'language' => $lang]
312                                 );
313                         }
314                 }
315
316                 //try the logger
317                 Logger::debug('Database structure update successful.');
318         }
319 }