You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
3.2 KiB
99 lines
3.2 KiB
2 years ago
|
<?php
|
||
|
// This file is part of Moodle - http://moodle.org/
|
||
|
//
|
||
|
// Moodle is free software: you can redistribute it and/or modify
|
||
|
// it under the terms of the GNU General Public License as published by
|
||
|
// the Free Software Foundation, either version 3 of the License, or
|
||
|
// (at your option) any later version.
|
||
|
//
|
||
|
// Moodle is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
// GNU General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU General Public License
|
||
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
/**
|
||
|
* CLI interface for creating a test site.
|
||
|
*
|
||
|
* @package tool_generator
|
||
|
* @copyright 2013 David Monllaó
|
||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||
|
*/
|
||
|
|
||
|
define('CLI_SCRIPT', true);
|
||
|
define('NO_OUTPUT_BUFFERING', true);
|
||
|
|
||
|
require(__DIR__ . '/../../../../config.php');
|
||
|
require_once($CFG->libdir. '/clilib.php');
|
||
|
|
||
|
// CLI options.
|
||
|
list($options, $unrecognized) = cli_get_params(
|
||
|
array(
|
||
|
'help' => false,
|
||
|
'size' => false,
|
||
|
'fixeddataset' => false,
|
||
|
'filesizelimit' => false,
|
||
|
'bypasscheck' => false,
|
||
|
'quiet' => false
|
||
|
),
|
||
|
array(
|
||
|
'h' => 'help'
|
||
|
)
|
||
|
);
|
||
|
|
||
|
$sitesizes = '* ' . implode(PHP_EOL . '* ', tool_generator_site_backend::get_size_choices());
|
||
|
|
||
|
// Display help.
|
||
|
if (!empty($options['help']) || empty($options['size'])) {
|
||
|
echo "
|
||
|
Utility to generate a standard test site data set.
|
||
|
|
||
|
Not for use on live sites; only normally works if debugging is set to DEVELOPER
|
||
|
level.
|
||
|
|
||
|
Consider that, depending on the size you select, this CLI tool can really generate a lot of data, aproximated sizes:
|
||
|
|
||
|
$sitesizes
|
||
|
|
||
|
Options:
|
||
|
--size Size of the generated site, this value affects the number of courses and their size. Accepted values: XS, S, M, L, XL, or XXL (required)
|
||
|
--fixeddataset Use a fixed data set instead of randomly generated data
|
||
|
--filesizelimit Limits the size of the generated files to the specified bytes
|
||
|
--bypasscheck Bypasses the developer-mode check (be careful!)
|
||
|
--quiet Do not show any output
|
||
|
|
||
|
-h, --help Print out this help
|
||
|
|
||
|
Example from Moodle root directory:
|
||
|
\$ php admin/tool/generator/cli/maketestsite.php --size=S
|
||
|
";
|
||
|
// Exit with error unless we're showing this because they asked for it.
|
||
|
exit(empty($options['help']) ? 1 : 0);
|
||
|
}
|
||
|
|
||
|
// Check debugging is set to developer level.
|
||
|
if (empty($options['bypasscheck']) && !$CFG->debugdeveloper) {
|
||
|
cli_error(get_string('error_notdebugging', 'tool_generator'));
|
||
|
}
|
||
|
|
||
|
// Get options.
|
||
|
$sizename = $options['size'];
|
||
|
$fixeddataset = $options['fixeddataset'];
|
||
|
$filesizelimit = $options['filesizelimit'];
|
||
|
|
||
|
// Check size.
|
||
|
try {
|
||
|
$size = tool_generator_site_backend::size_for_name($sizename);
|
||
|
} catch (coding_exception $e) {
|
||
|
cli_error("Invalid size ($sizename). Use --help for help.");
|
||
|
}
|
||
|
|
||
|
// Switch to admin user account.
|
||
|
\core\session\manager::set_user(get_admin());
|
||
|
|
||
|
// Do backend code to generate site.
|
||
|
$backend = new tool_generator_site_backend($size, $options['bypasscheck'], $fixeddataset, $filesizelimit, empty($options['quiet']));
|
||
|
$backend->make();
|