mirror of
https://github.com/friendica/friendica
synced 2025-04-19 11:10:10 +00:00
Merge pull request #7086 from nupplaphil/task/mod_maintenance
Move mod/maintenance to src/Module/Maintenance
This commit is contained in:
commit
fbf36d6e7f
6 changed files with 42 additions and 35 deletions
32
src/Module/Maintenance.php
Normal file
32
src/Module/Maintenance.php
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Module;
|
||||
|
||||
use Friendica\BaseModule;
|
||||
use Friendica\Core\L10n;
|
||||
use Friendica\Core\System;
|
||||
use Friendica\Network\HTTPException;
|
||||
use Friendica\Util\Strings;
|
||||
|
||||
/**
|
||||
* Shows the maintenance reason
|
||||
* or redirects to the alternate location
|
||||
*/
|
||||
class Maintenance extends BaseModule
|
||||
{
|
||||
public static function content()
|
||||
{
|
||||
$config = self::getApp()->getConfig();
|
||||
|
||||
$reason = $config->get('system', 'maintenance_reason');
|
||||
|
||||
if ((substr(Strings::normaliseLink($reason), 0, 7) === 'http://') ||
|
||||
(substr(Strings::normaliseLink($reason), 0, 8) === 'https://')) {
|
||||
System::externalRedirect($reason, 307);
|
||||
}
|
||||
|
||||
$exception = new HTTPException\ServiceUnavailableException($reason);
|
||||
$exception->httpdesc = L10n::t('System down for maintenance');
|
||||
throw $exception;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue