2023-05-17 21:19:14 +02:00
|
|
|
<?php
|
2023-08-24 23:02:41 +02:00
|
|
|
// This file is part of the Studyplan plugin for Moodle
|
|
|
|
//
|
|
|
|
// 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 <https://www.gnu.org/licenses/>.
|
|
|
|
/**
|
2023-08-27 15:12:54 +02:00
|
|
|
* Developer CLI tool. Primes grade generator with random student properties
|
2023-08-24 23:02:41 +02:00
|
|
|
* @package local_treestudyplan
|
|
|
|
* @copyright 2023 P.M. Kuipers
|
|
|
|
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
2023-05-17 21:19:14 +02:00
|
|
|
namespace local_treestudyplan;
|
|
|
|
|
2024-06-02 18:47:23 +02:00
|
|
|
use local_treestudyplan\local\gradegenerator;
|
2023-05-17 21:19:14 +02:00
|
|
|
|
|
|
|
define('CLI_SCRIPT', true);
|
|
|
|
require(__DIR__ . '/../../../config.php');
|
|
|
|
require_once($CFG->libdir . '/clilib.php');
|
|
|
|
|
|
|
|
$usage = "Prime the generator with random stats for all relevant students
|
|
|
|
Usage:
|
|
|
|
# php prime_students.php --studyplan=<shortname> [--file|-f=userfile]
|
|
|
|
# php prime_students.php --all|-a [--file|-f=userfile]
|
|
|
|
# php prime_students.php --help|-h
|
|
|
|
|
|
|
|
Options:
|
|
|
|
-h --help Print this help.
|
|
|
|
--file=<value> Specify file name to store generated user specs in.
|
|
|
|
";
|
|
|
|
|
|
|
|
list($options, $unrecognised) = cli_get_params([
|
|
|
|
'help' => false,
|
|
|
|
'studyplan' => null,
|
|
|
|
'all' => false,
|
2024-06-02 23:23:32 +02:00
|
|
|
'file' => "/tmp/generategrades.json",
|
2023-05-17 21:19:14 +02:00
|
|
|
], [
|
|
|
|
'h' => 'help',
|
|
|
|
's' => 'studyplan',
|
|
|
|
'a' => 'all',
|
|
|
|
'f' => 'file',
|
|
|
|
]);
|
|
|
|
|
|
|
|
if ($unrecognised) {
|
|
|
|
$unrecognised = implode(PHP_EOL . ' ', $unrecognised);
|
|
|
|
cli_error(get_string('cliunknowoption', 'core_admin', $unrecognised));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($options['help']) {
|
|
|
|
cli_writeln($usage);
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($options['studyplan']) && empty($options["all"])) {
|
|
|
|
cli_error('Missing mandatory argument studyplan.', 2);
|
|
|
|
}
|
|
|
|
|
2023-08-24 23:02:41 +02:00
|
|
|
if (!empty($options["all"])) {
|
2023-05-19 16:45:15 +02:00
|
|
|
$plans = studyplan::find_all();
|
2023-05-17 21:19:14 +02:00
|
|
|
} else {
|
|
|
|
$plans = studyplan::find_by_shortname($options["studyplan"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$generator = new gradegenerator();
|
2023-08-25 17:33:20 +02:00
|
|
|
$generator->from_file($options["file"]);
|
2023-05-17 21:19:14 +02:00
|
|
|
|
|
|
|
cli_writeln(count($plans)." studyplans found:");
|
2023-08-24 23:02:41 +02:00
|
|
|
foreach ($plans as $plan) {
|
2023-05-17 21:19:14 +02:00
|
|
|
cli_heading($plan->name());
|
|
|
|
$users = $plan->find_linked_users();
|
2023-08-24 23:02:41 +02:00
|
|
|
foreach ($users as $u) {
|
2023-05-17 21:19:14 +02:00
|
|
|
$generator->addstudent($u->username);
|
2023-08-25 17:33:20 +02:00
|
|
|
$generator->add_username_info($u->username, $u->firstname, $u->lastname);
|
2023-05-17 21:19:14 +02:00
|
|
|
cli_writeln(" - {$u->firstname} {$u->lastname} / {$u->username}");
|
|
|
|
}
|
|
|
|
|
2023-08-24 23:02:41 +02:00
|
|
|
foreach ($plan->pages() as $page) {
|
2023-07-23 16:25:08 +02:00
|
|
|
$lines = studyline::find_page_children($page);
|
2023-08-24 23:02:41 +02:00
|
|
|
foreach ($lines as $line) {
|
2023-07-23 16:25:08 +02:00
|
|
|
cli_writeln(" ** {$line->name()} **");
|
|
|
|
$items = studyitem::find_studyline_children($line);
|
2023-08-24 23:02:41 +02:00
|
|
|
foreach ($users as $u) {
|
|
|
|
$generator->addskill($u->username, $line->shortname());
|
2023-07-23 16:25:08 +02:00
|
|
|
}
|
2023-05-17 21:19:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-25 17:33:20 +02:00
|
|
|
$generator->to_file($options["file"]);
|