X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FMaintenance.php;h=b695c53ab9bf741a98c294ab4302991cb50ca308;hb=96a3991dfd83c3a5f35f6802d31444ab77469de7;hp=bee9ab53f505524d2cf89db4039e0d37ec8264d0;hpb=3c76826793feeb933dab7a07dab7cc7eb2efc451;p=friendica.git diff --git a/src/Module/Maintenance.php b/src/Module/Maintenance.php index bee9ab53f5..b695c53ab9 100644 --- a/src/Module/Maintenance.php +++ b/src/Module/Maintenance.php @@ -1,9 +1,28 @@ . + * + */ namespace Friendica\Module; use Friendica\BaseModule; -use Friendica\Core\L10n; +use Friendica\Core\Renderer; use Friendica\Core\System; use Friendica\DI; use Friendica\Network\HTTPException; @@ -15,7 +34,7 @@ use Friendica\Util\Strings; */ class Maintenance extends BaseModule { - public static function content(array $parameters = []) + protected function content(array $request = []): string { $reason = DI::config()->get('system', 'maintenance_reason'); @@ -25,7 +44,17 @@ class Maintenance extends BaseModule } $exception = new HTTPException\ServiceUnavailableException($reason); - $exception->httpdesc = L10n::t('System down for maintenance'); - throw $exception; + + header($_SERVER["SERVER_PROTOCOL"] . ' ' . $exception->getCode() . ' ' . DI::l10n()->t('System down for maintenance')); + + $tpl = Renderer::getMarkupTemplate('exception.tpl'); + + return Renderer::replaceMacros($tpl, [ + '$title' => DI::l10n()->t('System down for maintenance'), + '$message' => DI::l10n()->t('This Friendica node is currently in maintenance mode, either automatically because it is self-updating or manually by the node administrator. This condition should be temporary, please come back in a few minutes.'), + '$thrown' => $reason, + '$stack_trace' => '', + '$trace' => '', + ]); } }