forked from tmuras/moosh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmoosh.php
More file actions
executable file
·249 lines (205 loc) · 6.83 KB
/
moosh.php
File metadata and controls
executable file
·249 lines (205 loc) · 6.83 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#!/usr/bin/env php
<?php
/**
* moosh - Moodle Shell
*
* @copyright 2012 onwards Tomasz Muras
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
use \Moosh\MooshCommand;
use \Moosh\Performance;
$cwd = getcwd();
//try to detect if we are packaged moosh version - e.g. dude where are my libraries
if (file_exists(__DIR__ . '/Moosh')) {
$moosh_dir = __DIR__;
} elseif (file_exists('/usr/share/moosh')) {
$moosh_dir = '/usr/share/moosh';
} else {
die("I can't find my own libraries\n");
}
$loader = require $moosh_dir . '/vendor/autoload.php';
$loader->add('Moosh\\', $moosh_dir);
$loader->add('DiffMatchPatch\\', $moosh_dir . '/vendor/yetanotherape/diff-match-patch/src');
$options = array('debug' => true, 'optimizations' => 0);
require_once $moosh_dir . '/includes/functions.php';
require_once $moosh_dir . '/includes/default_options.php';
use GetOptionKit\ContinuousOptionParser;
use GetOptionKit\OptionCollection;
@error_reporting(E_ALL | E_STRICT);
@ini_set('display_errors', '1');
define('MOOSH_VERSION', '0.17');
define('MOODLE_INTERNAL', true);
$appspecs = new OptionCollection;
$spec_verbose = $appspecs->add('v|verbose', "be verbose");
$spec_moodle_path = $appspecs->add('p|moodle-path:', "Moodle directory.");
$spec_moodle_user = $appspecs->add('u|user:', "Moodle user, by default ADMIN");
$spec_performance = $appspecs->add('t|performance', "Show performance infomation including timings");
$parser = new ContinuousOptionParser($appspecs);
$app_options = $parser->parse($argv);
if ($app_options->has('moodle-path')) {
$top_dir = $app_options['moodle-path']->value;
} else {
$top_dir = find_top_moodle_dir($cwd);
}
$moodle_version = moosh_moodle_version($top_dir);
$local_dir = home_dir() . DIRECTORY_SEPARATOR . '.moosh';
$viable_versions = moosh_generate_version_list($moodle_version);
$viable_versions[] = 'Generic';
$namespaced_commands = moosh_load_all_commands($moosh_dir, $viable_versions);
$namespaced_commands_extra = moosh_load_all_commands($local_dir, $viable_versions);
if ($namespaced_commands_extra) {
$namespaced_commands = array_merge($namespaced_commands, $namespaced_commands_extra);
$loader->set(false, $local_dir);
}
$subcommands = array();
foreach ($namespaced_commands as $command) {
$object = new $command();
$subcommands[$object->getName()] = $object;
}
$subcommand_specs = array();
foreach ($subcommands as $k => $v) {
$subcommand_specs[$k] = $v->spec;
}
// for saved options
$subcommand_options = array();
// command arguments
$arguments = array();
// The first argument must be a subcommand.
$subcommand = NULL;
$possible_matches = array();
if (!$parser->isEnd()) {
$subcommand = $parser->advance();
}
if (!isset($subcommand_specs[$subcommand])) {
$possible_matches = array();
foreach ($subcommands as $k => $v) {
if (strpos($k, $subcommand) !== false) {
$possible_matches[] = $k;
}
}
if (count($possible_matches) == 1) {
$subcommand = $possible_matches[0];
} else {
$subcommand = NULL;
}
}
if (!$subcommand && !$possible_matches) {
echo "moosh version " . MOOSH_VERSION . "\n";
echo "No command provided, possible commands:\n\t";
echo implode("\n\t", array_keys($subcommands));
echo "\n";
echo "Global options:\n";
//$appspecs->printOptions();
$printer = new GetOptionKit\OptionPrinter\ConsoleOptionPrinter;
echo $printer->render($appspecs);
echo "\n";
exit(1);
}
if (!$subcommand && $possible_matches) {
foreach ($possible_matches as $match) {
echo $match . "\n";
}
exit(1);
}
$parser->setSpecs($subcommand_specs[$subcommand]);
$subcommand_options[$subcommand] = $parser->continueParse();
while (!$parser->isEnd()) {
$arguments[] = $parser->advance();
}
//read config file if available
$moodlerc = NULL;
if (file_exists(home_dir() . DIRECTORY_SEPARATOR . ".mooshrc.php")) {
$moodlerc = home_dir() . DIRECTORY_SEPARATOR . ".mooshrc.php";
} elseif (file_exists("/etc/moosh/mooshrc.php")) {
$moodlerc = "/etc/moosh/mooshrc.php";
} elseif (file_exists(home_dir() . DIRECTORY_SEPARATOR . "mooshrc.php")) {
$moodlerc = home_dir() . DIRECTORY_SEPARATOR . "mooshrc.php";
}
// Create directory for configuration if one is not there already.
if(!file_exists(home_dir() . "/.moosh")) {
@mkdir(home_dir() . "/.moosh");
}
$options = NULL;
if ($moodlerc) {
if (isset($app_options['verbose'])) {
echo "Using '$moodlerc' as moosh runtime configuration file\n";
}
$options = array();
require($moodlerc);
$options = array_merge_recursive_distinct($defaultOptions, $options);
} else {
$options = $defaultOptions;
}
/**
* @var Moosh\MooshCommand $subcommand
*
*/
$subcommand = $subcommands[$subcommand];
if ($subcommand->bootstrapLevel()) {
define('CLI_SCRIPT', true);
if ($subcommand->bootstrapLevel() == MooshCommand::$BOOTSTRAP_CONFIG) {
define('ABORT_AFTER_CONFIG', true);
}
if (!$top_dir) {
echo "Could not find Moodle installation!\n";
exit(1);
}
require_once($top_dir . '/config.php');
//gather more info based on the directory where moosh was run
$relative_dir = substr($cwd, strlen($top_dir));
$relative_dir = trim($relative_dir, '/');
if ($app_options->has('verbose')) {
echo "Top Moodle dir: $top_dir\n";
echo "Current working dir: " . $cwd . "\n";
echo "Relative Moodle dir: $relative_dir\n";
}
$plugin_info = detect_plugin($relative_dir);
$subcommand->setPluginInfo($plugin_info);
$subcommand->topDir = $top_dir;
$subcommand->relativeDir = $relative_dir;
//set up debugging
$CFG->debug = (E_ALL);
$CFG->debugdisplay = 1;
@error_reporting(E_ALL);
@ini_set('display_errors', '1');
// By default set up $USER to admin user.
if ($app_options->has('user')) {
$user = get_user_by_name($app_options['user']->value);
if (!$user) {
echo "Error: No user account was found\n";
exit(1);
}
} else {
$user = get_admin();
if (!$user) {
echo "Error: No admin account was found\n";
exit(1);
}
complete_user_login($user);
}
}
if ($app_options->has('verbose')) {
$subcommand->verbose = true;
}
$subcommand->cwd = $cwd;
$subcommand->mooshDir = $moosh_dir;
$subcommand->defaults = $options;
// Process the arguments.
$subcommand->setParsedOptions($subcommand_options[$subcommand->getName()]);
$subcommand->setArguments($arguments);
$subcommand->processOptions($options);
$subcommand->expandOptions();
// Some more debug if requested.
if ($app_options->has('verbose')) {
$subcommand->status();
}
// Execute the actual logic.
if($app_options->has('performance')) {
$perf = new Performance();
$perf->start();
}
$subcommand->execute();
if($app_options->has('performance')) {
$perf->stop();
echo $perf->summary();
}