]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Admin/DBSync.php
Merge pull request #11077 from annando/remove-obsolete
[friendica.git] / src / Module / Admin / DBSync.php
index a0e70737e5981bfbf24203ab48eee52d973175f4..dac953dc88d46828fcf352c7a1aa57ec21f4f461 100644 (file)
 <?php
+/**
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Module\Admin;
 
-use Friendica\Core\Config;
-use Friendica\Core\L10n;
 use Friendica\Core\Renderer;
 use Friendica\Core\Update;
 use Friendica\Database\DBA;
 use Friendica\Database\DBStructure;
 use Friendica\DI;
-use Friendica\Module\BaseAdminModule;
+use Friendica\Module\BaseAdmin;
 
-class DBSync extends BaseAdminModule
+class DBSync extends BaseAdmin
 {
-       public static function content(array $parameters = [])
+       protected function content(array $request = []): string
        {
-               parent::content($parameters);
+               parent::content();
 
                $a = DI::app();
 
-               $o = '';
+               $action = $this->parameters['action'] ?? '';
+               $update = $this->parameters['update'] ?? 0;
 
-               if ($a->argc > 3 && $a->argv[2] === 'mark') {
-                       // @TODO: Replace with parameter from router
-                       $update = intval($a->argv[3]);
-                       if ($update) {
-                               Config::set('database', 'update_' . $update, 'success');
-                               $curr = Config::get('system', 'build');
-                               if (intval($curr) == $update) {
-                                       Config::set('system', 'build', intval($curr) + 1);
+               switch ($action) {
+                       case 'mark':
+                               if ($update) {
+                                       DI::config()->set('database', 'update_' . $update, 'success');
+                                       $curr = DI::config()->get('system', 'build');
+                                       if (intval($curr) == $update) {
+                                               DI::config()->set('system', 'build', intval($curr) + 1);
+                                       }
+
+                                       info(DI::l10n()->t('Update has been marked successful'));
                                }
-                               info(L10n::t('Update has been marked successful') . EOL);
-                       }
-                       DI::baseUrl()->redirect('admin/dbsync');
-               }
 
-               if ($a->argc > 2) {
-                       if ($a->argv[2] === 'check') {
+                               break;
+                       case 'check':
                                // @TODO Seems like a similar logic like Update::check()
-                               $retval = DBStructure::update($a->getBasePath(), false, true);
+                               $retval = DBStructure::performUpdate();
                                if ($retval === '') {
-                                       $o .= L10n::t("Database structure update %s was successfully applied.", DB_UPDATE_VERSION) . "<br />";
-                                       Config::set('database', 'last_successful_update', DB_UPDATE_VERSION);
-                                       Config::set('database', 'last_successful_update_time', time());
+                                       $o = DI::l10n()->t("Database structure update %s was successfully applied.", DB_UPDATE_VERSION) . "<br />";
                                } else {
-                                       $o .= L10n::t("Executing of database structure update %s failed with error: %s", DB_UPDATE_VERSION, $retval) . "<br />";
-                               }
-                               if ($a->argv[2] === 'check') {
-                                       return $o;
+                                       $o = DI::l10n()->t("Executing of database structure update %s failed with error: %s", DB_UPDATE_VERSION, $retval) . "<br />";
                                }
-                       } elseif (intval($a->argv[2])) {
+
+                               return $o;
+                       case 'update':
                                require_once 'update.php';
 
                                // @TODO: Replace with parameter from router
-                               $update = intval($a->argv[2]);
-
-                               $func = 'update_' . $update;
+                               if ($update) {
+                                       $func = 'update_' . $update;
 
-                               if (function_exists($func)) {
-                                       $retval = $func();
+                                       if (function_exists($func)) {
+                                               $retval = $func();
 
-                                       if ($retval === Update::FAILED) {
-                                               $o .= L10n::t("Executing %s failed with error: %s", $func, $retval);
-                                       } elseif ($retval === Update::SUCCESS) {
-                                               $o .= L10n::t('Update %s was successfully applied.', $func);
-                                               Config::set('database', $func, 'success');
+                                               if ($retval === Update::FAILED) {
+                                                       $o = DI::l10n()->t("Executing %s failed with error: %s", $func, $retval);
+                                               } elseif ($retval === Update::SUCCESS) {
+                                                       $o = DI::l10n()->t('Update %s was successfully applied.', $func);
+                                                       DI::config()->set('database', $func, 'success');
+                                               } else {
+                                                       $o = DI::l10n()->t('Update %s did not return a status. Unknown if it succeeded.', $func);
+                                               }
                                        } else {
-                                               $o .= L10n::t('Update %s did not return a status. Unknown if it succeeded.', $func);
+                                               $o = DI::l10n()->t('There was no additional update function %s that needed to be called.', $func) . "<br />";
+                                               DI::config()->set('database', $func, 'success');
                                        }
-                               } else {
-                                       $o .= L10n::t('There was no additional update function %s that needed to be called.', $func) . "<br />";
-                                       Config::set('database', $func, 'success');
+
+                                       return $o;
                                }
 
-                               return $o;
-                       }
-               }
+                               break;
+                       default:
+                               $failed = [];
+                               $configStmt = DBA::select('config', ['k', 'v'], ['cat' => 'database']);
+                               while ($config = DBA::fetch($configStmt)) {
+                                       $upd = intval(substr($config['k'], 7));
+                                       if ($upd >= 1139 && $config['v'] != 'success') {
+                                               $failed[] = $upd;
+                                       }
+                               }
+                               DBA::close($configStmt);
 
-               $failed = [];
-               $configStmt = DBA::select('config', ['k', 'v'], ['cat' => 'database']);
-               while ($config = DBA::fetch($configStmt)) {
-                       $upd = intval(substr($config['k'], 7));
-                       if ($upd >= 1139 && $config['v'] != 'success') {
-                               $failed[] = $upd;
-                       }
-               }
+                               if (!count($failed)) {
+                                       $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('admin/dbsync/structure_check.tpl'), [
+                                               '$base' => DI::baseUrl()->get(true),
+                                               '$banner' => DI::l10n()->t('No failed updates.'),
+                                               '$check' => DI::l10n()->t('Check database structure'),
+                                       ]);
+                               } else {
+                                       $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('admin/dbsync/failed_updates.tpl'), [
+                                               '$base' => DI::baseUrl()->get(true),
+                                               '$banner' => DI::l10n()->t('Failed Updates'),
+                                               '$desc' => DI::l10n()->t('This does not include updates prior to 1139, which did not return a status.'),
+                                               '$mark' => DI::l10n()->t("Mark success \x28if update was manually applied\x29"),
+                                               '$apply' => DI::l10n()->t('Attempt to execute this update step automatically'),
+                                               '$failed' => $failed
+                                       ]);
+                               }
 
-               if (!count($failed)) {
-                       $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('admin/dbsync/structure_check.tpl'), [
-                               '$base' => DI::baseUrl()->get(true),
-                               '$banner' => L10n::t('No failed updates.'),
-                               '$check' => L10n::t('Check database structure'),
-                       ]);
-               } else {
-                       $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('admin/dbsync/failed_updates.tpl'), [
-                               '$base' => DI::baseUrl()->get(true),
-                               '$banner' => L10n::t('Failed Updates'),
-                               '$desc' => L10n::t('This does not include updates prior to 1139, which did not return a status.'),
-                               '$mark' => L10n::t("Mark success \x28if update was manually applied\x29"),
-                               '$apply' => L10n::t('Attempt to execute this update step automatically'),
-                               '$failed' => $failed
-                       ]);
+                               return $o;
                }
 
-               return $o;
+               DI::baseUrl()->redirect('admin/dbsync');
+               return '';
        }
 }