friendica/util/maintenance.php

63 行
1.4 KiB
PHP

2013-01-15 00:35:41 +01:00
<?php
2017-04-30 06:01:26 +02:00
use Friendica\Core\Config;
2013-01-15 00:35:41 +01:00
require_once("boot.php");
$a = new App;
@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);
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);
2017-03-19 15:57:36 +01:00
if ($maint_mode AND ($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";