OKAY! THIS IS IT! MOODLE 1.6!
[moodle.git] / question / format.php
blob6191333ed7d16c3804ddb6f80cacaa947e92252c
1 <?php // $Id$
3 ////////////////////////////////////////////////////////////////////
4 /// format.php - Default format class for file imports/exports. //
5 /// //
6 /// Doesn't do everything on it's own -- it needs to be extended. //
7 ////////////////////////////////////////////////////////////////////
9 // Included by import.php and export.php
11 class qformat_default {
13 var $displayerrors = true;
14 var $category = NULL;
15 var $course = NULL;
16 var $questionids = array();
18 // functions to indicate import/export functionality
19 // override to return true if implemented
21 function provide_import() {
22 return false;
25 function provide_export() {
26 return false;
29 /// Importing functions
31 function importpreprocess($category, $course=NULL ) {
32 /// Does any pre-processing that may be desired
34 $this->category = $category; // Important
35 $this->course = $course;
37 return true;
40 /**
42 * @PARAM $matchgrades string 'error' or 'nearest', mismatched grades handling
44 function importprocess($filename, $matchgrades='error') {
45 /// Processes a given file. There's probably little need to change this
47 if (! $lines = $this->readdata($filename)) {
48 notify( get_string('cannotread','quiz') );
49 return false;
52 if (! $questions = $this->readquestions($lines)) { // Extract all the questions
53 notify( get_string('noquestionsinfile','quiz') );
54 return false;
57 notify( get_string('importingquestions','quiz',count($questions)) );
59 // get list of valid answer grades
60 $grades = get_grade_options();
61 $gradeoptionsfull = $grades->gradeoptionsfull;
63 $count = 0;
65 foreach ($questions as $question) { // Process and store each question
66 $count++;
68 echo "<hr /><p><b>$count</b>. ".stripslashes($question->questiontext)."</p>";
70 // check for answer grades validity (must match fixed list of grades)
71 if (!empty($question->fraction)) {
72 $fractions = $question->fraction;
73 $answersvalid = true; // in case they are!
74 foreach ($fractions as $key => $fraction) {
75 $newfraction = match_grade_options($gradeoptionsfull, $fraction, $matchgrades);
76 if ($newfraction===false) {
77 $answersvalid = false;
79 else {
80 $fractions[$key] = $newfraction;
83 if (!$answersvalid) {
84 notify( get_string('matcherror','quiz') );
85 continue;
87 else {
88 $question->fraction = $fractions;
92 $question->category = $this->category->id;
93 $question->stamp = make_unique_id_code(); // Set the unique code (not to be changed)
95 if (!$question->id = insert_record("question", $question)) {
96 error( get_string('cannotinsert','quiz') );
99 $this->questionids[] = $question->id;
101 // Now to save all the answers and type-specific options
103 global $QTYPES;
104 $result = $QTYPES[$question->qtype]
105 ->save_question_options($question);
107 if (!empty($result->error)) {
108 notify($result->error);
109 return false;
112 if (!empty($result->notice)) {
113 notify($result->notice);
114 return true;
117 // Give the question a unique version stamp determined by question_hash()
118 set_field('question', 'version', question_hash($question), 'id', $question->id);
120 return true;
124 function readdata($filename) {
125 /// Returns complete file with an array, one item per line
127 if (is_readable($filename)) {
128 $filearray = file($filename);
130 /// Check for Macintosh OS line returns (ie file on one line), and fix
131 if (ereg("\r", $filearray[0]) AND !ereg("\n", $filearray[0])) {
132 return explode("\r", $filearray[0]);
133 } else {
134 return $filearray;
137 return false;
140 function readquestions($lines) {
141 /// Parses an array of lines into an array of questions,
142 /// where each item is a question object as defined by
143 /// readquestion(). Questions are defined as anything
144 /// between blank lines.
146 $questions = array();
147 $currentquestion = array();
149 foreach ($lines as $line) {
150 $line = trim($line);
151 if (empty($line)) {
152 if (!empty($currentquestion)) {
153 if ($question = $this->readquestion($currentquestion)) {
154 $questions[] = $question;
156 $currentquestion = array();
158 } else {
159 $currentquestion[] = $line;
163 if (!empty($currentquestion)) { // There may be a final question
164 if ($question = $this->readquestion($currentquestion)) {
165 $questions[] = $question;
169 return $questions;
173 function defaultquestion() {
174 // returns an "empty" question
175 // Somewhere to specify question parameters that are not handled
176 // by import but are required db fields.
177 // This should not be overridden.
178 $question = new stdClass();
179 $question->shuffleanswers = 0;
180 $question->defaultgrade = 1;
181 $question->image = "";
182 $question->usecase = 0;
183 $question->multiplier = array();
185 return $question;
188 function readquestion($lines) {
189 /// Given an array of lines known to define a question in
190 /// this format, this function converts it into a question
191 /// object suitable for processing and insertion into Moodle.
193 $formatnotimplemented = get_string( 'formatnotimplemented','quiz' );
194 echo "<p>$formatnotimplemented</p>";
196 return NULL;
200 function importpostprocess() {
201 /// Does any post-processing that may be desired
202 /// Argument is a simple array of question ids that
203 /// have just been added.
205 return true;
208 function importimagefile( $path, $base64 ) {
209 /// imports an image file encoded in base64 format
210 /// This should not be overridden.
211 global $CFG;
213 // all this to get the destination directory
214 // and filename!
215 $fullpath = "{$CFG->dataroot}/{$this->course->id}/$path";
216 $path_parts = pathinfo( $fullpath );
217 $destination = $path_parts['dirname'];
218 $file = clean_filename( $path_parts['basename'] );
220 // detect and fix any filename collision - get unique filename
221 $newfiles = resolve_filename_collisions( $destination, array($file) );
222 $newfile = $newfiles[0];
224 // convert and save file contents
225 if (!$content = base64_decode( $base64 )) {
226 return false;
228 $newfullpath = "$destination/$newfile";
229 if (!$fh = fopen( $newfullpath, 'w' )) {
230 return false;
232 if (!fwrite( $fh, $content )) {
233 return false;
235 fclose( $fh );
237 // return the (possibly) new filename
238 return $newfile;
241 //=================
242 // Export functions
243 //=================
245 function export_file_extension() {
246 /// return the files extension appropriate for this type
247 /// override if you don't want .txt
249 return ".txt";
252 function exportpreprocess($category, $course) {
253 /// Does any pre-processing that may be desired
255 $this->category = $category; // Important
256 $this->course = $course; // As is this!
258 return true;
261 function presave_process( $content ) {
262 /// enables any processing to be done on the content
263 /// just prior to the file being saved
264 /// default is to do nothing
266 return $content;
269 function exportprocess($filename) {
270 /// Exports a given category. There's probably little need to change this
272 global $CFG;
274 // create a directory for the exports (if not already existing)
275 $dirname = get_string("exportfilename","quiz");
276 $courseid = $this->course->id;
277 $path = $CFG->dataroot.'/'.$courseid.'/'.$dirname;
278 if (!is_dir($path)) {
279 if (!mkdir($path, $CFG->directorypermissions)) {
280 error( get_string('cannotcreatepath','quiz',$path) );
284 // get the questions (from database) in this category
285 // only get q's with no parents (no cloze subquestions specifically)
286 $questions = get_questions_category( $this->category, true );
288 notify( get_string('exportingquestions','quiz') );
289 if (!count($questions)) {
290 notify( get_string('noquestions','quiz') );
291 return false;
293 $count = 0;
295 // results are first written into string (and then to a file)
296 // so create/initialize the string here
297 $expout = "";
299 // iterate through questions
300 foreach($questions as $question) {
301 // do not export hidden questions
302 if (!empty($question->hidden)) {
303 continue;
306 // do not export random questions
307 if ($question->qtype==RANDOM) {
308 continue;
311 // export the question displaying message
312 $count++;
313 echo "<hr /><p><b>$count</b>. ".stripslashes($question->questiontext)."</p>";
314 $expout .= $this->writequestion( $question ) . "\n";
317 // final pre-process on exported data
318 $expout = $this->presave_process( $expout );
320 // write file
321 $filepath = $path."/".$filename . $this->export_file_extension();
322 if (!$fh=fopen($filepath,"w")) {
323 error( get_string('cannotopen','quiz',$filepath) );
325 if (!fwrite($fh, $expout)) {
326 error( get_string('cannotwrite','quiz',$filepath) );
328 fclose($fh);
330 return true;
333 function exportpostprocess() {
334 /// Does any post-processing that may be desired
336 return true;
339 function writequestion($question) {
340 /// Turns a question object into textual output in the given format
341 /// must be overidden
343 // if not overidden, then this is an error.
344 $formatnotimplemented = get_string( 'formatnotimplemented','quiz' );
345 echo "<p>$formatnotimplemented</p>";
347 return NULL;