-
Notifications
You must be signed in to change notification settings - Fork 6
/
questiontype.php
executable file
·382 lines (355 loc) · 12.8 KB
/
questiontype.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
370
371
372
373
374
375
376
377
378
379
380
381
382
<?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/>.
/**
*
* Question type class for the aitext question type.
*
* @package qtype_aitext
* @subpackage aitext
* @copyright Marcus Green
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir . '/questionlib.php');
/**
* The aitext question type.
*
* @copyright 2024 Marcus Green
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class qtype_aitext extends question_type {
/**
* Question type is manually graded, though with this type it is
* marked by the AI/LLM system
*
* @return bool
*/
public function is_manual_graded() {
return true;
}
/**
* Probably redundant with the removal of
* files as a response type
*
* @return array
*/
public function response_file_areas() {
return ['attachments', 'answer'];
}
/**
* Loads the question type specific options for the question
*
* @param object $question
* @return bool
*/
public function get_question_options($question) {
global $DB;
$question->options = $DB->get_record('qtype_aitext',
['questionid' => $question->id], '*', MUST_EXIST);
parent::get_question_options($question);
}
/**
* Markscheme may not be required here
*
* @param stdClass $fromform
* @return void
*/
public function save_defaults_for_new_questions(stdClass $fromform): void {
parent::save_defaults_for_new_questions($fromform);
$this->set_default_value('responseformat', $fromform->responseformat);
$this->set_default_value('responsefieldlines', $fromform->responsefieldlines);
$this->set_default_value('markscheme', $fromform->markscheme);
$this->set_default_value('sampleanswer', $fromform->sampleanswer);
}
/**
* Write the question data from the editing form to the database
*
* @param object $formdata
* @return object
*/
public function save_question_options($formdata) {
global $DB;
$context = $formdata->context;
$options = $DB->get_record('qtype_aitext', ['questionid' => $formdata->id]);
if (!$options) {
$options = new stdClass();
$options->questionid = $formdata->id;
$options->id = $DB->insert_record('qtype_aitext', $options);
}
$options->aiprompt = $formdata->aiprompt;
$options->markscheme = $formdata->markscheme;
$options->sampleanswer = $formdata->sampleanswer;
$options->model = trim($formdata->model);
$options->responseformat = $formdata->responseformat;
$options->responsefieldlines = $formdata->responsefieldlines;
$options->minwordlimit = isset($formdata->minwordenabled) ? $formdata->minwordlimit : null;
$options->maxwordlimit = isset($formdata->maxwordenabled) ? $formdata->maxwordlimit : null;
$options->maxbytes = $formdata->maxbytes ?? 0;
if (is_array($formdata->graderinfo)) {
// TODO find out what it should save and ensure it is available as text not arrays.
$formdata->graderinfo = [
'text' => '',
'format' => FORMAT_HTML,
];
$options->responsetemplate = $formdata->responsetemplate['text'];
$options->responsetemplateformat = $formdata->responsetemplate['format'];
}
$options->graderinfo = $this->import_or_save_files($formdata->graderinfo,
$context, 'qtype_aitext', 'graderinfo', $formdata->id);
$options->graderinfoformat = $formdata->graderinfo['format'];
$options->responsetemplate = $formdata->responsetemplate['text'];
$options->responsetemplateformat = $formdata->responsetemplate['format'];
$DB->update_record('qtype_aitext', $options);
}
/**
* Called when previewing a question or when displayed in a quiz
* (not from within the editing form)
* @param question_definition $question
* @param object $questiondata
* @return void
*/
protected function initialise_question_instance(question_definition $question, $questiondata) {
parent::initialise_question_instance($question, $questiondata);
/**@var qtype_aitext_question $question */
$question->responseformat = $questiondata->options->responseformat;
$question->responsefieldlines = $questiondata->options->responsefieldlines;
$question->minwordlimit = $questiondata->options->minwordlimit;
$question->maxwordlimit = $questiondata->options->maxwordlimit;
$question->graderinfo = $questiondata->options->graderinfo;
$question->graderinfoformat = $questiondata->options->graderinfoformat;
$question->responsetemplate = $questiondata->options->responsetemplate;
$question->responsetemplateformat = $questiondata->options->responsetemplateformat;
$question->aiprompt = $questiondata->options->aiprompt;
$question->markscheme = $questiondata->options->markscheme;
$question->sampleanswer = $questiondata->options->sampleanswer;
/* Legacy quesitons may not have a model set, so assign the first in the settings */
if (empty($question->model)) {
$model = explode(",", get_config('tool_aiconnect', 'model'))[0];
$question->model = $model;
} else {
$question->model = $questiondata->options->model;
}
}
/**
* Delete a question from the database
*
* @param int $questionid
* @param int $contextid
* @return void
*/
public function delete_question($questionid, $contextid) {
global $DB;
$DB->delete_records('qtype_aitext', ['questionid' => $questionid]);
parent::delete_question($questionid, $contextid);
}
/**
* The different response formats that the question type supports.
* internal name => human-readable name.
*
* @return array
*/
public function response_formats() {
return [
'editor' => get_string('formateditor', 'qtype_aitext'),
'plain' => get_string('formatplain', 'qtype_aitext'),
'monospaced' => get_string('formatmonospaced', 'qtype_aitext'),
];
}
/**
* The choices that should be offerd when asking if a response is required
*
* @return array
*/
public function response_required_options() {
return [
1 => get_string('responseisrequired', 'qtype_aitext'),
0 => get_string('responsenotrequired', 'qtype_aitext'),
];
}
/**
* The choices that should be offered for the input box size.
*
* @return array
*/
public function response_sizes() {
$choices = [
2 => get_string('nlines', 'qtype_aitext', 2),
3 => get_string('nlines', 'qtype_aitext', 3),
];
for ($lines = 5; $lines <= 40; $lines += 5) {
$choices[$lines] = get_string('nlines', 'qtype_aitext', $lines);
}
return $choices;
}
/**
* The choices that should be offered for the number of attachments.
* @todo remove method and calls to it as file is no longer a submit option
*
* @return array
*/
public function attachment_options() {
return [
0 => get_string('no'),
1 => '1',
2 => '2',
3 => '3',
-1 => get_string('unlimited'),
];
}
/**
* The choices that should be offered for the number of required attachments.
* @todo remove as file has been removed as a submission type
*
* @return array
*/
public function attachments_required_options() {
return [
0 => get_string('attachmentsoptional', 'qtype_aitext'),
1 => '1',
2 => '2',
3 => '3',
];
}
/**
* data used by export_to_xml
* @return array
*/
public function extra_question_fields() {
return [
'qtype_aitext',
'responseformat',
'responsefieldlines',
'minwordlimit',
'maxwordlimit',
'graderinfo',
'graderinfoformat',
'responsetemplate',
'responsetemplateformat',
'aiprompt',
'markscheme',
'sampleanswer',
'model',
];
}
/**
* Create a question from reading in a file in Moodle xml format
*
* @param array $data
* @param stdClass $question (might be an array)
* @param qformat_xml $format
* @param stdClass $extra
* @return boolean
*/
public function import_from_xml($data, $question, qformat_xml $format, $extra=null) {
$questiontype = $data['@']['type'];
if ($questiontype != $this->name()) {
return false;
}
$extraquestionfields = $this->extra_question_fields();
if (!is_array($extraquestionfields)) {
return false;
}
// Omit table name.
array_shift($extraquestionfields);
$qo = $format->import_headers($data);
$qo->qtype = $questiontype;
foreach ($extraquestionfields as $field) {
$qo->$field = $format->getpath($data, ['#', $field, 0, '#'], '');
}
// TODO add in other text fields.
$textfields = ['responsetemplate'];
foreach ($textfields as $field) {
$fmt = $format->get_format($format->getpath($data, ['#', $field.'format', 0, '#'], 0));
$qo->$field = $format->import_text_with_files($data, ['#', $field, 0], '', $fmt);
}
if (isset($qo->maxwordlimit) && $qo->maxwordlimit > "") {
$qo->maxwordenabled = true;
}
if (isset($qo->minwordlimit) && $qo->minwordlimit > "") {
$qo->minwordenabled = true;
}
$extraanswersfields = $this->extra_answer_fields();
if (is_array($extraanswersfields)) {
array_shift($extraanswersfields);
}
return $qo;
}
/**
* Export question to the Moodle XML format
*
* @param object $question
* @param qformat_xml $format
* @param object $extra
* @return string
*/
public function export_to_xml($question, qformat_xml $format, $extra = null) {
$fs = get_file_storage();
$textfields = $this->get_text_fields();;
$formatfield = '/^('.implode('|', $textfields).')format$/';
$fields = $this->extra_question_fields();
array_shift($fields); // Remove table name.
$output = '';
foreach ($fields as $field) {
if (preg_match($formatfield, $field)) {
continue;
}
if (in_array($field, $textfields)) {
$files = $fs->get_area_files($question->contextid, 'question', $field, $question->id);
$output .= " <$field ".$format->format($question->options->{$field.'format'}).">\n";
$output .= ' '.$format->writetext($question->options->$field);
$output .= $format->write_files($files);
$output .= " </$field>\n";
} else {
$value = $question->options->$field;
if ($field == 'errorcmid') {
$value = $this->export_errorcmid($value);
}
$output .= " <$field>".$format->xml_escape($value)."</$field>\n";
}
}
return $output;
}
/**
* Editing form text fields
*
* @return string[]
*/
public function get_text_fields() {
return [
'graderinfo',
'responsetemplate',
'responsesample',
'correctfeedback',
'incorrectfeedback',
'partiallycorrectfeedback',
];
}
/**
* Thrown on error when exporting xml
* @param mixed $cmid
* @return string
*/
protected function export_errorcmid($cmid) {
global $PAGE;
if ($PAGE && $PAGE->course && $cmid) {
$modinfo = get_fast_modinfo($PAGE->course->id);
if (isset($modinfo->cms[$cmid])) {
return $modinfo->cms[$cmid]->name;
}
}
return '';
}
}