2019-05-04 07:42:26 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\System;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2019-05-04 10:22:47 -04:00
|
|
|
use Friendica\Network\HTTPException;
|
2019-05-04 07:42:26 -04:00
|
|
|
use Friendica\Util\Strings;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows the maintenance reason
|
|
|
|
* or redirects to the alternate location
|
|
|
|
*/
|
|
|
|
class Maintenance extends BaseModule
|
|
|
|
{
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function content(array $parameters = [])
|
2019-05-04 07:42:26 -04:00
|
|
|
{
|
2019-12-15 17:44:33 -05:00
|
|
|
$reason = DI::config()->get('system', 'maintenance_reason');
|
2019-05-04 07:42:26 -04:00
|
|
|
|
|
|
|
if ((substr(Strings::normaliseLink($reason), 0, 7) === 'http://') ||
|
|
|
|
(substr(Strings::normaliseLink($reason), 0, 8) === 'https://')) {
|
|
|
|
System::externalRedirect($reason, 307);
|
|
|
|
}
|
|
|
|
|
2019-05-04 10:22:47 -04:00
|
|
|
$exception = new HTTPException\ServiceUnavailableException($reason);
|
2020-01-18 14:52:34 -05:00
|
|
|
$exception->httpdesc = DI::l10n()->t('System down for maintenance');
|
2019-05-04 10:22:47 -04:00
|
|
|
throw $exception;
|
2019-05-04 07:42:26 -04:00
|
|
|
}
|
|
|
|
}
|