2019-05-04 07:42:26 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\L10n;
|
|
|
|
use Friendica\Core\System;
|
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
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2019-05-04 10:22:47 -04:00
|
|
|
$exception = new HTTPException\ServiceUnavailableException($reason);
|
|
|
|
$exception->httpdesc = L10n::t('System down for maintenance');
|
|
|
|
throw $exception;
|
2019-05-04 07:42:26 -04:00
|
|
|
}
|
|
|
|
}
|