]> git.mxchange.org Git - friendica.git/blob - src/Core/Console/Maintenance.php
Line feeds fixed, not change in functionality
[friendica.git] / src / Core / Console / Maintenance.php
1 <?php
2
3 namespace Friendica\Core\Console;
4
5 use Friendica\Core;
6
7 require_once 'boot.php';
8 require_once 'include/dba.php';
9
10 /**
11  * @brief Sets maintenance mode for this node
12  *
13  * @author Hypolite Petovan <mrpetovan@gmail.com>
14  */
15 class Maintenance extends \Asika\SimpleConsole\Console
16 {
17         protected $helpOptions = ['h', 'help', '?'];
18
19         protected function getHelp()
20         {
21                 $help = <<<HELP
22 console maintenance - Sets maintenance mode for this node
23 Usage
24         bin/console maintenance <enable> [<reason>] [-h|--help|-?] [-v]
25
26 Description
27         <enable> cen be either 0 or 1 to disabled or enable the maintenance mode on this node.
28
29         <reason> is a quote-enclosed string with the optional reason for the maintenance mode.
30
31 Examples
32         bin/console maintenance 1
33                 Enables the maintenance mode without setting a reason message
34
35         bin/console maintenance 1 "SSL certification update"
36                 Enables the maintenance mode with setting a reason message
37
38         bin/console maintenance 0
39                 Disables the maintenance mode
40
41 Options
42     -h|--help|-? Show help information
43     -v           Show more debug information.
44 HELP;
45                 return $help;
46         }
47
48         protected function doExecute()
49         {
50                 if ($this->getOption('v')) {
51                         $this->out('Class: ' . __CLASS__);
52                         $this->out('Arguments: ' . var_export($this->args, true));
53                         $this->out('Options: ' . var_export($this->options, true));
54                 }
55
56                 if (count($this->args) == 0) {
57                         $this->out($this->getHelp());
58                         return 0;
59                 }
60
61                 if (count($this->args) > 2) {
62                         throw new \Asika\SimpleConsole\CommandArgsException('Too many arguments');
63                 }
64
65                 require_once '.htconfig.php';
66                 $result = \dba::connect($db_host, $db_user, $db_pass, $db_data);
67                 unset($db_host, $db_user, $db_pass, $db_data);
68
69                 if (!$result) {
70                         throw new \RuntimeException('Unable to connect to database');
71                 }
72
73                 Core\Config::load();
74
75                 $lang = Core\L10n::getBrowserLanguage();
76                 Core\L10n::loadTranslationTable($lang);
77
78                 $enabled = intval($this->getArgument(0));
79
80                 Core\Config::set('system', 'maintenance', $enabled);
81
82                 $reason = $this->getArgument(1);
83
84                 if ($enabled && $this->getArgument(1)) {
85                         Core\Config::set('system', 'maintenance_reason', $this->getArgument(1));
86                 } else {
87                         Core\Config::set('system', 'maintenance_reason', '');
88                 }
89
90                 if ($enabled) {
91                         $mode_str = "maintenance mode";
92                 } else {
93                         $mode_str = "normal mode";
94                 }
95
96                 $this->out('System set in ' . $mode_str);
97
98                 if ($enabled && $reason != '') {
99                         $this->out('Maintenance reason: ' . $reason);
100                 }
101
102                 return 0;
103         }
104
105 }