2013-01-15 00:35:41 +01:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-04-30 06:01:26 +02:00
|
|
|
use Friendica\Core\Config;
|
2017-01-18 22:45:32 +01:00
|
|
|
|
2013-01-15 00:35:41 +01:00
|
|
|
require_once("boot.php");
|
|
|
|
|
2017-05-03 04:42:42 +02:00
|
|
|
$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");
|
|
|
|
$db = new dba($db_host, $db_user, $db_pass, $db_data, false);
|
2017-01-18 22:45:32 +01:00
|
|
|
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]);
|
2017-03-19 14:24:07 +01:00
|
|
|
}
|
2013-01-15 00:35:41 +01:00
|
|
|
|
2017-03-20 05:37:59 +01:00
|
|
|
Config::set('system', 'maintenance', $maint_mode);
|
2017-03-19 14:24:07 +01:00
|
|
|
|
2017-06-08 04:00:59 +02:00
|
|
|
if ($maint_mode && ($argc > 2)) {
|
2017-03-19 14:24:07 +01:00
|
|
|
$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";
|
2017-03-19 14:24:07 +01:00
|
|
|
} else {
|
2013-01-15 00:35:41 +01:00
|
|
|
$mode_str = "normal mode";
|
2017-03-19 14:24:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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";
|