-
Notifications
You must be signed in to change notification settings - Fork 177
/
moosh.php
executable file
·369 lines (316 loc) · 11.2 KB
/
moosh.php
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
#!/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('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;
define('MOOSH_VERSION', '1.24');
define('MOODLE_INTERNAL', true);
// suppressing warnings for php > 8
$appspecs = @new OptionCollection;
$spec_verbose = @$appspecs->add('v|verbose', "be verbose");
$appspecs->add('p|moodle-path:', "Moodle directory.");
$appspecs->add('u|user:', "Moodle user, by default ADMIN");
$appspecs->add('n|no-user-check', "Don't check if Moodle data is owned by the user running script");
$appspecs->add('t|performance', "Show performance information including timings");
$appspecs->add('h|help', "Show global help.");
$appspecs->add('list-commands', "Show all possible commands");
$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);
}
if (file_exists($top_dir . '/lib/clilib.php')) {
require_once ($top_dir . '/lib/clilib.php');
} else {
function cli_problem($text) {
fwrite(STDERR, $text . "\n");
}
function cli_error($text, $errorcode = 1) {
fwrite(STDERR, $text);
fwrite(STDERR, "\n");
die($errorcode);
}
}
$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 (($subcommand !== null) and !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;
}
}
ksort($subcommands);
if ($app_options->has('list-commands')) {
echo implode("\n", array_keys($subcommands));
echo "\n";
exit(0);
}
if ($app_options->has('help') || (!$subcommand && !$possible_matches)) {
echo "moosh version " . MOOSH_VERSION . "\n";
echo "No command provided, possible commands in current context:\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";
if (!$subcommand || count($possible_matches) > 1) {
exit(10);
}
exit(0);
}
if (!$subcommand && $possible_matches) {
sort($possible_matches);
foreach ($possible_matches as $match) {
echo $match . "\n";
}
exit(10);
}
@$parser->setSpecs($subcommand_specs[$subcommand]);
try {
$subcommand_options[$subcommand] = @$parser->continueParse();
} catch (Exception $e) {
echo $e->getMessage() . "\n";
die("Moosh global options should be passed before command not after it.\n");
}
while (!@$parser->isEnd()) {
$arguments[] = @$parser->advance();
}
// Read config file if available.
$moodlerc = NULL;
$home_dir = home_dir();
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";
}
$options = NULL;
if ($moodlerc) {
$options = array();
require($moodlerc);
$options = array_merge_recursive_distinct($defaultOptions, $options);
} else {
$options = $defaultOptions;
}
/**
* @var Moosh\MooshCommand $subcommand
*
*/
$subcommand = $subcommands[$subcommand];
$bootstrap_level = $subcommand->bootstrapLevel();
if ($bootstrap_level === MooshCommand::$BOOTSTRAP_NONE ) {
// Do nothing really.
} else if($bootstrap_level === MooshCommand::$BOOTSTRAP_DB_ONLY) {
// Manually retrieve the information from config.php
// and create $DB object.
$config = [];
if(!file_exists($top_dir . '/config.php')) {
cli_error('config.php not found.');
}
exec("php -w " . $top_dir . "/config.php", $config);
if (count($config) == 0) {
cli_error("config.php does not look right to me.");
}
$config = implode("\n", $config);
$config = str_ireplace('<?php', '', $config);
$config = str_replace('require_once', '//require_once', $config);
eval($config);
if(!isset($CFG)) {
cli_error('After evaluating config.php, $CFG is not set');
}
if($app_options->has('verbose')) {
echo '$CFG - ';
print_r($CFG);
}
$CFG->libdir = $moosh_dir . "/includes/moodle/lib/";
$CFG->debugdeveloper = false;
require_once($CFG->libdir . "/moodlelib.php");
require_once($CFG->libdir . "/weblib.php");
require_once($CFG->libdir . "/setuplib.php");
require_once($CFG->libdir . "/dmllib.php");
if(!class_exists('core_string_manager_standard')) {
class core_string_manager_standard {
function string_exists() {
return false;
}
}
}
setup_DB();
} else {
if ($bootstrap_level == MooshCommand::$BOOTSTRAP_FULL_NOCLI) {
$_SERVER['REMOTE_ADDR'] = 'localhost';
$_SERVER['SERVER_PORT'] = 80;
$_SERVER['SERVER_PROTOCOL'] = 'HTTP 1.1';
$_SERVER['SERVER_SOFTWARE'] = 'PHP /'.phpversion().' Development Server';
$_SERVER['REQUEST_URI'] = '/';
} else {
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');
$shell_user = false;
if (!$app_options->has('no-user-check')) {
// make sure the PHP POSIX library is installed before using it
if(!(function_exists('posix_getpwuid') && function_exists('posix_geteuid'))){
cli_error("The PHP POSIX extension is not installed - see http://php.net/manual/en/book.posix.php (on CentOS/RHEL the package php-process provides this extension)");
}
$shell_user = posix_getpwuid(posix_geteuid());
$moodledata_owner = detect_moodledata_owner($CFG->dataroot);
if($moodledata_owner && $shell_user['name'] != $moodledata_owner['user']['name']) {
cli_error("One of your Moodle data directories ({$moodledata_owner['dir']}) is owned by
different user ({$moodledata_owner['user']['name']}) than the one that runs the script ({$shell_user['name']}).
If you're sure you know what you're doing, run moosh with -n flag to skip that test.");
}
}
// Set up debugging.
$CFG->debug = (E_ALL);
$CFG->debugdisplay = 1;
@error_reporting(E_ALL);
@ini_set('display_errors', '1');
if ($subcommand->bootstrapLevel() != MooshCommand::$BOOTSTRAP_CONFIG
&& $subcommand->bootstrapLevel() != MooshCommand::$BOOTSTRAP_FULL_NO_ADMIN_CHECK
) {
// 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);
}
}
if (session_status() !== PHP_SESSION_ACTIVE) {
session_start();
}
//Deviceanalytics redirect on login event, we need to avoid that.
if(!is_dir($top_dir."/report/deviceanalytics")){
complete_user_login($user);
} else {
login_without_event($user);
}
}
}
if($top_dir) {
// 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;
}
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')) {
echo "Moodle version detected: $moodle_version\n";
if ($moodlerc) {
echo "Using '$moodlerc' as moosh runtime configuration file\n";
}
$subcommand->status();
}
// Create directory for configuration if one is not there already.
if($subcommand->requireHomeWriteable() && !file_exists($local_dir)) {
if(!mkdir($local_dir)) {
cli_error("Could not create moosh directory in '$local_dir' and this command requires it.");
}
}
// Check if home dir writable.
if($subcommand->requireHomeWriteable() && !is_writeable($local_dir)) {
cli_error("Warning: my home directory: '$local_dir' is not writable and the command requires write access there!");
}
// 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();
}