1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\System\Bakery\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
use UserFrosting\System\Bakery\BaseCommand;
use UserFrosting\System\Bakery\DatabaseTest;
/**
* Debug CLI tool.
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class Debug extends BaseCommand
{
use DatabaseTest;
/**
* {@inheritDoc}
*/
protected function configure() {
$this->setName("debug")
->setDescription("Test the UserFrosting installation and setup the database")
->setHelp("This command is used to check if the various dependencies of UserFrosting are met and display useful debugging information. \nIf any error occurs, check out the online documentation for more info about that error. \nThis command also provide the necessary tools to setup the database credentials");
}
/**
* {@inheritDoc}
*/
protected function execute(InputInterface $input, OutputInterface $output) {
// Display header,
$this->io->title("UserFrosting");
$this->io->writeln("UserFrosing version : " . \UserFrosting\VERSION);
$this->io->writeln("OS Name : " . php_uname('s'));
$this->io->writeln("Project Root : {$this->projectRoot}");
// Need to touch the config service first to load dotenv values
$config = $this->ci->config;
$this->io->writeln("Environment mode : " . getenv("UF_MODE"));
// Perform tasks
$this->checkPhpVersion();
$this->checkNodeVersion();
$this->checkNpmVersion();
$this->listSprinkles();
$this->showConfig();
$this->checkDatabase();
// If all went well and there's no fatal errors, we are ready to bake
$this->io->success("Ready to bake !");
}
/**
* Check the minimum version of php.
* This is done by composer itself, but we do it again for good mesure
*
* @access public
* @return void
*/
protected function checkPhpVersion() {
$this->io->writeln("PHP Version : " . phpversion());
if (version_compare(phpversion(), \UserFrosting\PHP_MIN_VERSION, '<')) {
$this->io->error("UserFrosting requires php version " . \UserFrosting\PHP_MIN_VERSION . " or above. You'll need to update you PHP version before you can continue.");
exit(1);
}
}
/**
* Check the minimum version requirement of Node installed
*
* @access public
* @return void
*/
protected function checkNodeVersion() {
$npmVersion = trim(exec('node -v'));
$this->io->writeln("Node Version : $npmVersion");
if (version_compare($npmVersion, 'v4', '<')) {
$this->io->error("UserFrosting requires Node version 4.x or above. Check the documentation for more details.");
exit(1);
}
}
/**
* Check the minimum version requirement for Npm
*
* @access public
* @return void
*/
protected function checkNpmVersion() {
$npmVersion = trim(exec('npm -v'));
$this->io->writeln("NPM Version : $npmVersion");
if (version_compare($npmVersion, '3', '<')) {
$this->io->error("UserFrosting requires npm version 3.x or above. Check the documentation for more details.");
exit(1);
}
}
/**
* List all sprinkles defined in the Sprinkles schema file,
* making sure this file exist at the same time
*
* @access protected
* @return void
*/
protected function listSprinkles() {
// Check for Sprinkles schema file
$path = \UserFrosting\SPRINKLES_SCHEMA_FILE;
$sprinklesFile = @file_get_contents($path);
if ($sprinklesFile === FALSE) {
$this->io->error("The file `$path` not found.");
}
// List installed sprinkles
$sprinkles = json_decode($sprinklesFile)->base;
$this->io->section("Loaded sprinkles");
$this->io->listing($sprinkles);
// Throw fatal error if the `core` sprinkle is missing
if (!in_array("core", $sprinkles)) {
$this->io->error("The `core` sprinkle is missing from the 'sprinkles.json' file.");
exit(1);
}
}
/**
* Check the database connexion and setup the `.env` file if we can't
* connect and there's no one found.
*
* @access protected
* @return void
*/
protected function checkDatabase() {
$this->io->section("Testing database connection...");
try {
$this->testDB();
$this->io->writeln("Database connection successful");
return;
} catch (\Exception $e) {
$error = $e->getMessage();
$this->io->error($error);
exit(1);
}
}
/**
* Display database config as for debug purposes
*
* @access protected
* @return void
*/
protected function showConfig() {
// Get config
$config = $this->ci->config;
// Display database info
$this->io->section("Database config");
$this->io->writeln([
"DRIVER : " . $config['db.default.driver'],
"HOST : " . $config['db.default.host'],
"PORT : " . $config['db.default.port'],
"DATABASE : " . $config['db.default.database'],
"USERNAME : " . $config['db.default.username'],
"PASSWORD : " . ($config['db.default.password'] ? "*********" : "")
]);
}
}
|