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