friendica/util/maintenance.php

67 lines
1.4 KiB
PHP
Raw Normal View History

2013-01-15 00:35:41 +01:00
<?php
use Friendica\App;
2017-04-30 06:01:26 +02:00
use Friendica\Core\Config;
2013-01-15 00:35:41 +01:00
require_once("boot.php");
2017-10-11 16:52:08 +02:00
if (empty($a)) {
$a = new App(dirname(__DIR__));
}
2013-01-15 00:35:41 +01:00
@include(".htconfig.php");
$lang = get_browser_language();
load_translation_table($lang);
require_once("include/dba.php");
2017-10-11 14:56:36 +02:00
dba::connect($db_host, $db_user, $db_pass, $db_data, false);
unset($db_host, $db_user, $db_pass, $db_data);
Config::load();
2013-01-15 00:35:41 +01:00
$maint_mode = 1;
2017-03-19 15:57:36 +01:00
if ($argc > 1) {
2013-01-15 00:35:41 +01:00
$maint_mode = intval($argv[1]);
}
2013-01-15 00:35:41 +01:00
2017-03-20 05:37:59 +01:00
Config::set('system', 'maintenance', $maint_mode);
if ($maint_mode && ($argc > 2)) {
$reason_arr = $argv;
array_shift($reason_arr);
array_shift($reason_arr);
$reason = implode(' ', $reason_arr);
Config::set('system', 'maintenance_reason', $reason);
} else {
Config::set('system', 'maintenance_reason', '');
}
2017-03-19 15:57:36 +01:00
if ($maint_mode) {
2013-01-15 00:35:41 +01:00
$mode_str = "maintenance mode";
} else {
2013-01-15 00:35:41 +01:00
$mode_str = "normal mode";
}
echo "\n\tSystem set in $mode_str\n";
if ($reason != '') {
echo "\tMaintenance reason: $reason\n\n";
} else {
echo "\n";
}
2013-01-15 00:35:41 +01:00
echo "Usage:\n\n";
2017-03-20 05:37:13 +01:00
echo "\tphp {$argv[0]} [1] [Maintenance reason|redirection url]\n";
echo "\t\tSet the system in maintenance mode\n\n";
echo "\t\tIf the optionally entered maintenance reason is an url\n";
echo "\t\tthe visitor is redirected to that page.\n";
echo "\n";
echo "\t\tExamples:\n";
echo "\t\t\tphp {$argv[0]} 1 System upgrade\n";
echo "\t\t\tphp {$argv[0]} 1 http://domain.tld/downtime\n";
echo "\n";
echo "\tphp {$argv[0]} 0\n";
echo "\t\tSet the system in normal mode\n\n";