2009-07-07 02:26:36 +00:00
|
|
|
<?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/>.
|
2007-10-10 06:34:20 +00:00
|
|
|
|
2007-07-24 09:30:46 +00:00
|
|
|
require_once '../../../config.php';
|
2007-09-26 10:54:09 +00:00
|
|
|
require_once $CFG->libdir.'/gradelib.php';
|
2007-07-24 09:30:46 +00:00
|
|
|
require_once $CFG->dirroot.'/grade/lib.php';
|
|
|
|
require_once '../grade_import_form.php';
|
|
|
|
require_once '../lib.php';
|
2007-07-13 08:06:30 +00:00
|
|
|
|
2008-10-08 18:53:28 +00:00
|
|
|
$id = required_param('id', PARAM_INT); // course id
|
|
|
|
$separator = optional_param('separator', '', PARAM_ALPHA);
|
|
|
|
$verbosescales = optional_param('verbosescales', 1, PARAM_BOOL);
|
2007-05-14 09:24:09 +00:00
|
|
|
|
2009-02-17 07:25:24 +00:00
|
|
|
define('GRADE_CSV_LINE_LENGTH', 4096);
|
|
|
|
|
2008-06-01 17:59:13 +00:00
|
|
|
if (!$course = $DB->get_record('course', array('id'=>$id))) {
|
2007-07-24 09:30:46 +00:00
|
|
|
print_error('nocourseid');
|
|
|
|
}
|
|
|
|
|
|
|
|
require_login($course);
|
|
|
|
$context = get_context_instance(CONTEXT_COURSE, $id);
|
|
|
|
require_capability('moodle/grade:import', $context);
|
|
|
|
require_capability('gradeimport/csv:view', $context);
|
2007-06-11 09:00:17 +00:00
|
|
|
|
2009-04-27 08:47:31 +00:00
|
|
|
$separatemode = (groups_get_course_groupmode($COURSE) == SEPARATEGROUPS and !has_capability('moodle/site:accessallgroups', $context));
|
|
|
|
$currentgroup = groups_get_course_group($course);
|
|
|
|
|
2007-06-11 09:00:17 +00:00
|
|
|
// sort out delimiter
|
2007-05-14 09:24:09 +00:00
|
|
|
if (isset($CFG->CSV_DELIMITER)) {
|
|
|
|
$csv_delimiter = '\\' . $CFG->CSV_DELIMITER;
|
|
|
|
$csv_delimiter2 = $CFG->CSV_DELIMITER;
|
|
|
|
|
|
|
|
if (isset($CFG->CSV_ENCODE)) {
|
|
|
|
$csv_encode = '/\&\#' . $CFG->CSV_ENCODE . '/';
|
|
|
|
}
|
2008-10-08 18:53:28 +00:00
|
|
|
} else if ($separator == 'tab') {
|
|
|
|
$csv_delimiter = "\t";
|
|
|
|
$csv_delimiter2 = "";
|
|
|
|
$csv_encode = "";
|
2007-05-14 09:24:09 +00:00
|
|
|
} else {
|
|
|
|
$csv_delimiter = "\,";
|
|
|
|
$csv_delimiter2 = ",";
|
2008-10-08 18:53:28 +00:00
|
|
|
$csv_encode = '/\&\#44/';
|
2007-05-14 09:24:09 +00:00
|
|
|
}
|
|
|
|
|
2009-02-09 10:49:41 +00:00
|
|
|
print_grade_page_head($course->id, 'import', 'csv', get_string('importcsv', 'grades'));
|
2007-10-08 06:52:39 +00:00
|
|
|
|
|
|
|
// set up import form
|
2008-10-08 18:53:28 +00:00
|
|
|
$mform = new grade_import_form(null, array('includeseparator'=>!isset($CFG->CSV_DELIMITER), 'verbosescales'=>true));
|
2007-10-08 06:52:39 +00:00
|
|
|
|
|
|
|
// set up grade import mapping form
|
|
|
|
$header = '';
|
|
|
|
$gradeitems = array();
|
|
|
|
if ($id) {
|
|
|
|
if ($grade_items = grade_item::fetch_all(array('courseid'=>$id))) {
|
|
|
|
foreach ($grade_items as $grade_item) {
|
|
|
|
// skip course type and category type
|
|
|
|
if ($grade_item->itemtype == 'course' || $grade_item->itemtype == 'category') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// this was idnumber
|
|
|
|
$gradeitems[$grade_item->id] = $grade_item->get_name();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($importcode = optional_param('importcode', '', PARAM_FILE)) {
|
|
|
|
$filename = $CFG->dataroot.'/temp/gradeimport/cvs/'.$USER->id.'/'.$importcode;
|
|
|
|
$fp = fopen($filename, "r");
|
2009-02-17 07:25:24 +00:00
|
|
|
$header = split($csv_delimiter, fgets($fp,GRADE_CSV_LINE_LENGTH), PARAM_RAW);
|
2007-10-08 06:52:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$mform2 = new grade_import_mapping_form(null, array('gradeitems'=>$gradeitems, 'header'=>$header));
|
|
|
|
|
|
|
|
// if import form is submitted
|
2008-06-09 16:53:30 +00:00
|
|
|
if ($formdata = $mform->get_data()) {
|
2007-10-08 06:52:39 +00:00
|
|
|
|
|
|
|
// Large files are likely to take their time and memory. Let PHP know
|
|
|
|
// that we'll take longer, and that the process should be recycled soon
|
|
|
|
// to free up memory.
|
|
|
|
@set_time_limit(0);
|
|
|
|
@raise_memory_limit("192M");
|
|
|
|
if (function_exists('apache_child_terminate')) {
|
|
|
|
@apache_child_terminate();
|
|
|
|
}
|
|
|
|
|
|
|
|
// use current (non-conflicting) time stamp
|
|
|
|
$importcode = get_new_importcode();
|
|
|
|
if (!$filename = make_upload_directory('temp/gradeimport/cvs/'.$USER->id, true)) {
|
|
|
|
die;
|
|
|
|
}
|
|
|
|
$filename = $filename.'/'.$importcode;
|
|
|
|
|
|
|
|
$text = $mform->get_file_content('userfile');
|
|
|
|
// trim utf-8 bom
|
|
|
|
$textlib = textlib_get_instance();
|
|
|
|
/// normalize line endings and do the encoding conversion
|
|
|
|
$text = $textlib->convert($text, $formdata->encoding);
|
|
|
|
$text = $textlib->trim_utf8_bom($text);
|
|
|
|
// Fix mac/dos newlines
|
|
|
|
$text = preg_replace('!\r\n?!',"\n",$text);
|
|
|
|
$fp = fopen($filename, "w");
|
|
|
|
fwrite($fp,$text);
|
|
|
|
fclose($fp);
|
|
|
|
|
|
|
|
$fp = fopen($filename, "r");
|
|
|
|
|
|
|
|
// --- get header (field names) ---
|
2009-02-17 07:25:24 +00:00
|
|
|
$header = split($csv_delimiter, fgets($fp,GRADE_CSV_LINE_LENGTH), PARAM_RAW);
|
2007-10-08 06:52:39 +00:00
|
|
|
|
|
|
|
// print some preview
|
|
|
|
$numlines = 0; // 0 preview lines displayed
|
|
|
|
|
2009-08-06 08:16:46 +00:00
|
|
|
echo $OUTPUT->heading(get_string('importpreview', 'grades'));
|
2007-10-08 06:52:39 +00:00
|
|
|
echo '<table>';
|
|
|
|
echo '<tr>';
|
|
|
|
foreach ($header as $h) {
|
|
|
|
$h = clean_param($h, PARAM_RAW);
|
|
|
|
echo '<th>'.$h.'</th>';
|
|
|
|
}
|
|
|
|
echo '</tr>';
|
|
|
|
while (!feof ($fp) && $numlines <= $formdata->previewrows) {
|
2009-02-17 07:25:24 +00:00
|
|
|
$lines = split($csv_delimiter, fgets($fp,GRADE_CSV_LINE_LENGTH));
|
2007-10-08 06:52:39 +00:00
|
|
|
echo '<tr>';
|
|
|
|
foreach ($lines as $line) {
|
|
|
|
echo '<td>'.$line.'</td>';;
|
|
|
|
}
|
|
|
|
$numlines ++;
|
|
|
|
echo '</tr>';
|
|
|
|
}
|
|
|
|
echo '</table>';
|
|
|
|
|
|
|
|
// display the mapping form with header info processed
|
|
|
|
$mform2 = new grade_import_mapping_form(null, array('gradeitems'=>$gradeitems, 'header'=>$header));
|
2008-10-08 18:53:28 +00:00
|
|
|
$mform2->set_data(array('importcode'=>$importcode, 'id'=>$id, 'verbosescales'=>$verbosescales, 'separator'=>$separator));
|
2007-10-08 06:52:39 +00:00
|
|
|
$mform2->display();
|
|
|
|
|
2008-06-09 16:53:30 +00:00
|
|
|
//} else if (($formdata = data_submitted()) && !empty($formdata->map)) {
|
2008-06-02 16:06:33 +00:00
|
|
|
|
2007-10-08 06:52:39 +00:00
|
|
|
// else if grade import mapping form is submitted
|
2008-06-09 16:53:30 +00:00
|
|
|
} else if ($formdata = $mform2->get_data()) {
|
2007-07-18 19:56:07 +00:00
|
|
|
|
2007-10-07 13:04:49 +00:00
|
|
|
$importcode = clean_param($formdata->importcode, PARAM_FILE);
|
|
|
|
$filename = $CFG->dataroot.'/temp/gradeimport/cvs/'.$USER->id.'/'.$importcode;
|
|
|
|
|
|
|
|
if (!file_exists($filename)) {
|
2008-05-14 08:05:45 +00:00
|
|
|
print_error('cannotuploadfile');
|
2007-10-07 13:04:49 +00:00
|
|
|
}
|
2007-07-04 02:16:41 +00:00
|
|
|
|
2007-07-13 08:06:30 +00:00
|
|
|
if ($fp = fopen($filename, "r")) {
|
|
|
|
// --- get header (field names) ---
|
2009-02-17 07:25:24 +00:00
|
|
|
$header = split($csv_delimiter, clean_param(fgets($fp,GRADE_CSV_LINE_LENGTH), PARAM_RAW));
|
2007-07-18 19:56:07 +00:00
|
|
|
|
2007-07-13 08:06:30 +00:00
|
|
|
foreach ($header as $i => $h) {
|
|
|
|
$h = trim($h); $header[$i] = $h; // remove whitespace
|
2007-07-18 19:56:07 +00:00
|
|
|
}
|
2007-07-13 08:06:30 +00:00
|
|
|
} else {
|
2008-12-12 05:45:43 +00:00
|
|
|
print_error('cannotopenfile');
|
2007-07-13 08:06:30 +00:00
|
|
|
}
|
2007-07-18 19:56:07 +00:00
|
|
|
|
2007-07-17 03:32:10 +00:00
|
|
|
$map = array();
|
2007-07-13 08:06:30 +00:00
|
|
|
// loops mapping_0, mapping_1 .. mapping_n and construct $map array
|
2007-07-17 03:32:10 +00:00
|
|
|
foreach ($header as $i => $head) {
|
2007-07-18 19:56:07 +00:00
|
|
|
$map[$i] = $formdata->{'mapping_'.$i};
|
2007-07-04 02:16:41 +00:00
|
|
|
}
|
2007-05-17 08:55:29 +00:00
|
|
|
|
2007-07-13 08:06:30 +00:00
|
|
|
// if mapping informatioin is supplied
|
2007-07-04 02:16:41 +00:00
|
|
|
$map[clean_param($formdata->mapfrom, PARAM_RAW)] = clean_param($formdata->mapto, PARAM_RAW);
|
2007-05-17 08:55:29 +00:00
|
|
|
|
2007-07-17 08:40:35 +00:00
|
|
|
// check for mapto collisions
|
|
|
|
$maperrors = array();
|
|
|
|
foreach ($map as $i=>$j) {
|
|
|
|
if ($j == 0) {
|
|
|
|
// you can have multiple ignores
|
2007-07-18 19:56:07 +00:00
|
|
|
continue;
|
2007-07-17 08:40:35 +00:00
|
|
|
} else {
|
|
|
|
if (!isset($maperrors[$j])) {
|
2007-07-18 19:56:07 +00:00
|
|
|
$maperrors[$j] = true;
|
2007-07-17 08:40:35 +00:00
|
|
|
} else {
|
2007-07-18 19:56:07 +00:00
|
|
|
// collision
|
2009-04-27 10:22:28 +00:00
|
|
|
fclose($fp);
|
2007-07-17 08:40:35 +00:00
|
|
|
unlink($filename); // needs to be uploaded again, sorry
|
2008-05-14 08:05:45 +00:00
|
|
|
print_error('cannotmapfield', '', '', $j);
|
2007-07-17 08:40:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-24 08:57:36 +00:00
|
|
|
// Large files are likely to take their time and memory. Let PHP know
|
|
|
|
// that we'll take longer, and that the process should be recycled soon
|
|
|
|
// to free up memory.
|
2007-05-14 09:24:09 +00:00
|
|
|
@set_time_limit(0);
|
|
|
|
@raise_memory_limit("192M");
|
|
|
|
if (function_exists('apache_child_terminate')) {
|
|
|
|
@apache_child_terminate();
|
|
|
|
}
|
2007-07-18 19:56:07 +00:00
|
|
|
|
2007-05-18 08:49:00 +00:00
|
|
|
// we only operate if file is readable
|
|
|
|
if ($fp = fopen($filename, "r")) {
|
2007-07-18 19:56:07 +00:00
|
|
|
|
2007-07-13 08:06:30 +00:00
|
|
|
// read the first line makes sure this doesn't get read again
|
2009-02-17 07:25:24 +00:00
|
|
|
$header = split($csv_delimiter, fgets($fp,GRADE_CSV_LINE_LENGTH));
|
2007-07-18 19:56:07 +00:00
|
|
|
|
2007-06-06 08:51:58 +00:00
|
|
|
$newgradeitems = array(); // temporary array to keep track of what new headers are processed
|
2007-06-12 09:12:07 +00:00
|
|
|
$status = true;
|
2007-07-18 19:56:07 +00:00
|
|
|
|
2007-05-18 08:49:00 +00:00
|
|
|
while (!feof ($fp)) {
|
|
|
|
// add something
|
2009-02-17 07:25:24 +00:00
|
|
|
$line = split($csv_delimiter, fgets($fp,GRADE_CSV_LINE_LENGTH));
|
2007-07-18 19:56:07 +00:00
|
|
|
|
2008-01-08 22:25:07 +00:00
|
|
|
if(count($line) <= 1){
|
|
|
|
// there is no data on this line, move on
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-06-11 09:00:17 +00:00
|
|
|
// array to hold all grades to be inserted
|
2007-06-06 08:51:58 +00:00
|
|
|
$newgrades = array();
|
2007-07-13 08:06:30 +00:00
|
|
|
// array to hold all feedback
|
2007-07-18 19:56:07 +00:00
|
|
|
$newfeedbacks = array();
|
2007-06-11 09:00:17 +00:00
|
|
|
// each line is a student record
|
2007-07-18 19:56:07 +00:00
|
|
|
foreach ($line as $key => $value) {
|
2007-05-18 08:49:00 +00:00
|
|
|
//decode encoded commas
|
2007-07-04 02:16:41 +00:00
|
|
|
$value = clean_param($value, PARAM_RAW);
|
2008-10-08 18:53:28 +00:00
|
|
|
$value = trim($value);
|
|
|
|
if ($csv_encode != $csv_delimiter2) {
|
|
|
|
$value = preg_replace($csv_encode, $csv_delimiter2, $value);
|
|
|
|
}
|
2007-07-04 02:16:41 +00:00
|
|
|
|
2007-07-13 08:06:30 +00:00
|
|
|
/*
|
|
|
|
* the options are
|
|
|
|
* 1) userid, useridnumber, usermail, username - used to identify user row
|
|
|
|
* 2) new - new grade item
|
|
|
|
* 3) id - id of the old grade item to map onto
|
|
|
|
* 3) feedback_id - feedback for grade item id
|
|
|
|
*/
|
|
|
|
|
|
|
|
$t = explode("_", $map[$key]);
|
|
|
|
$t0 = $t[0];
|
|
|
|
if (isset($t[1])) {
|
2007-10-07 13:04:49 +00:00
|
|
|
$t1 = (int)$t[1];
|
2007-07-13 08:06:30 +00:00
|
|
|
} else {
|
2007-07-18 19:56:07 +00:00
|
|
|
$t1 = '';
|
2007-07-13 08:06:30 +00:00
|
|
|
}
|
2007-07-18 19:56:07 +00:00
|
|
|
|
2007-07-13 08:06:30 +00:00
|
|
|
switch ($t0) {
|
2007-06-12 09:12:07 +00:00
|
|
|
case 'userid': //
|
2008-06-03 16:10:57 +00:00
|
|
|
if (!$user = $DB->get_record('user', array('id' => $value))) {
|
2007-06-12 09:12:07 +00:00
|
|
|
// user not found, abort whold import
|
|
|
|
import_cleanup($importcode);
|
|
|
|
notify("user mapping error, could not find user with id \"$value\"");
|
|
|
|
$status = false;
|
2007-07-18 19:56:07 +00:00
|
|
|
break 3;
|
2007-06-12 09:12:07 +00:00
|
|
|
}
|
2007-05-18 08:49:00 +00:00
|
|
|
$studentid = $value;
|
|
|
|
break;
|
|
|
|
case 'useridnumber':
|
2008-06-03 16:10:57 +00:00
|
|
|
if (!$user = $DB->get_record('user', array('idnumber' => $value))) {
|
2007-06-12 09:12:07 +00:00
|
|
|
// user not found, abort whold import
|
|
|
|
import_cleanup($importcode);
|
|
|
|
notify("user mapping error, could not find user with idnumber \"$value\"");
|
|
|
|
$status = false;
|
2007-07-18 19:56:07 +00:00
|
|
|
break 3;
|
2007-06-12 09:12:07 +00:00
|
|
|
}
|
2007-05-18 08:49:00 +00:00
|
|
|
$studentid = $user->id;
|
|
|
|
break;
|
|
|
|
case 'useremail':
|
2008-06-03 16:10:57 +00:00
|
|
|
if (!$user = $DB->get_record('user', array('email' => $value))) {
|
2007-06-12 09:12:07 +00:00
|
|
|
import_cleanup($importcode);
|
|
|
|
notify("user mapping error, could not find user with email address \"$value\"");
|
|
|
|
$status = false;
|
2007-07-18 19:56:07 +00:00
|
|
|
break 3;
|
2007-06-12 09:12:07 +00:00
|
|
|
}
|
2007-07-18 19:56:07 +00:00
|
|
|
$studentid = $user->id;
|
2007-05-18 08:49:00 +00:00
|
|
|
break;
|
|
|
|
case 'username':
|
2008-06-03 16:10:57 +00:00
|
|
|
if (!$user = $DB->get_record('user', array('username' => $value))) {
|
2007-06-12 09:12:07 +00:00
|
|
|
import_cleanup($importcode);
|
|
|
|
notify("user mapping error, could not find user with username \"$value\"");
|
|
|
|
$status = false;
|
2007-07-18 19:56:07 +00:00
|
|
|
break 3;
|
2007-06-12 09:12:07 +00:00
|
|
|
}
|
2007-05-18 08:49:00 +00:00
|
|
|
$studentid = $user->id;
|
|
|
|
break;
|
2007-06-06 08:51:58 +00:00
|
|
|
case 'new':
|
|
|
|
// first check if header is already in temp database
|
2007-07-18 19:56:07 +00:00
|
|
|
|
|
|
|
if (empty($newgradeitems[$key])) {
|
|
|
|
|
2007-09-26 11:02:36 +00:00
|
|
|
$newgradeitem = new object();
|
2007-06-06 08:51:58 +00:00
|
|
|
$newgradeitem->itemname = $header[$key];
|
2007-10-07 13:04:49 +00:00
|
|
|
$newgradeitem->importcode = $importcode;
|
|
|
|
$newgradeitem->importer = $USER->id;
|
2007-07-18 19:56:07 +00:00
|
|
|
|
2007-06-12 09:12:07 +00:00
|
|
|
// failed to insert into new grade item buffer
|
2009-06-13 18:16:08 +00:00
|
|
|
$newgradeitems[$key] = $DB->insert_record('grade_import_newitem', $newgradeitem);
|
2007-06-06 08:51:58 +00:00
|
|
|
// add this to grade_import_newitem table
|
2007-07-18 19:56:07 +00:00
|
|
|
// add the new id to $newgradeitem[$key]
|
|
|
|
}
|
2007-09-26 11:02:36 +00:00
|
|
|
$newgrade = new object();
|
|
|
|
$newgrade->newgradeitem = $newgradeitems[$key];
|
|
|
|
$newgrade->finalgrade = $value;
|
2007-06-06 08:51:58 +00:00
|
|
|
$newgrades[] = $newgrade;
|
2007-07-18 19:56:07 +00:00
|
|
|
|
|
|
|
// if not, put it in
|
2007-06-06 08:51:58 +00:00
|
|
|
// else, insert grade into the table
|
|
|
|
break;
|
2007-07-17 08:40:35 +00:00
|
|
|
case 'feedback':
|
2007-07-13 08:06:30 +00:00
|
|
|
if ($t1) {
|
2007-10-07 13:04:49 +00:00
|
|
|
// case of an id, only maps id of a grade_item
|
|
|
|
// this was idnumber
|
|
|
|
if (!$gradeitem = new grade_item(array('id'=>$t1, 'courseid'=>$course->id))) {
|
|
|
|
// supplied bad mapping, should not be possible since user
|
|
|
|
// had to pick mapping
|
|
|
|
$status = false;
|
|
|
|
import_cleanup($importcode);
|
|
|
|
notify(get_string('importfailed', 'grades'));
|
|
|
|
break 3;
|
|
|
|
}
|
|
|
|
|
2007-07-13 08:06:30 +00:00
|
|
|
// t1 is the id of the grade item
|
2007-09-26 11:02:36 +00:00
|
|
|
$feedback = new object();
|
|
|
|
$feedback->itemid = $t1;
|
|
|
|
$feedback->feedback = $value;
|
2007-07-17 08:40:35 +00:00
|
|
|
$newfeedbacks[] = $feedback;
|
2007-07-13 08:06:30 +00:00
|
|
|
}
|
2007-07-18 19:56:07 +00:00
|
|
|
break;
|
2007-05-18 08:49:00 +00:00
|
|
|
default:
|
2007-06-06 08:51:58 +00:00
|
|
|
// existing grade items
|
2007-10-07 13:04:49 +00:00
|
|
|
if (!empty($map[$key])) {
|
2007-07-18 19:56:07 +00:00
|
|
|
// case of an id, only maps id of a grade_item
|
2007-07-13 08:06:30 +00:00
|
|
|
// this was idnumber
|
2007-09-26 10:54:09 +00:00
|
|
|
if (!$gradeitem = new grade_item(array('id'=>$map[$key], 'courseid'=>$course->id))) {
|
2007-06-12 09:12:07 +00:00
|
|
|
// supplied bad mapping, should not be possible since user
|
|
|
|
// had to pick mapping
|
|
|
|
$status = false;
|
|
|
|
import_cleanup($importcode);
|
|
|
|
notify(get_string('importfailed', 'grades'));
|
2007-07-17 03:32:10 +00:00
|
|
|
break 3;
|
|
|
|
}
|
2007-07-18 19:56:07 +00:00
|
|
|
|
2007-07-17 03:32:10 +00:00
|
|
|
// check if grade item is locked if so, abort
|
2007-10-07 13:04:49 +00:00
|
|
|
if ($gradeitem->is_locked()) {
|
2007-07-17 03:32:10 +00:00
|
|
|
$status = false;
|
|
|
|
import_cleanup($importcode);
|
|
|
|
notify(get_string('gradeitemlocked', 'grades'));
|
2007-07-18 19:56:07 +00:00
|
|
|
break 3;
|
2007-07-13 08:06:30 +00:00
|
|
|
}
|
|
|
|
|
2007-09-26 11:02:36 +00:00
|
|
|
$newgrade = new object();
|
|
|
|
$newgrade->itemid = $gradeitem->id;
|
2008-10-08 18:53:28 +00:00
|
|
|
if ($gradeitem->gradetype == GRADE_TYPE_SCALE and $verbosescales) {
|
|
|
|
if ($value === '' or $value == '-') {
|
|
|
|
$value = null; // no grade
|
|
|
|
} else {
|
|
|
|
$scale = $gradeitem->load_scale();
|
|
|
|
$scales = explode(',', $scale->scale);
|
2009-02-09 10:49:41 +00:00
|
|
|
$scales = array_map('trim', $scales); //hack - trim whitespace around scale options
|
2008-10-08 18:53:28 +00:00
|
|
|
array_unshift($scales, '-'); // scales start at key 1
|
|
|
|
$key = array_search($value, $scales);
|
|
|
|
if ($key === false) {
|
|
|
|
echo "<br/>t0 is $t0";
|
|
|
|
echo "<br/>grade is $value";
|
|
|
|
$status = false;
|
|
|
|
import_cleanup($importcode);
|
|
|
|
notify(get_string('badgrade', 'grades'));
|
|
|
|
break 3;
|
|
|
|
}
|
|
|
|
$value = $key;
|
|
|
|
}
|
|
|
|
$newgrade->finalgrade = $value;
|
|
|
|
} else {
|
|
|
|
if ($value === '' or $value == '-') {
|
|
|
|
$value = null; // no grade
|
2009-02-09 10:49:41 +00:00
|
|
|
|
2008-10-08 18:53:28 +00:00
|
|
|
} else if (!is_numeric($value)) {
|
|
|
|
// non numeric grade value supplied, possibly mapped wrong column
|
|
|
|
echo "<br/>t0 is $t0";
|
|
|
|
echo "<br/>grade is $value";
|
|
|
|
$status = false;
|
|
|
|
import_cleanup($importcode);
|
|
|
|
notify(get_string('badgrade', 'grades'));
|
|
|
|
break 3;
|
|
|
|
}
|
|
|
|
$newgrade->finalgrade = $value;
|
|
|
|
}
|
2007-06-06 08:51:58 +00:00
|
|
|
$newgrades[] = $newgrade;
|
2007-07-18 19:56:07 +00:00
|
|
|
} // otherwise, we ignore this column altogether
|
2007-06-11 09:00:17 +00:00
|
|
|
// because user has chosen to ignore them (e.g. institution, address etc)
|
2007-07-17 03:32:10 +00:00
|
|
|
break;
|
2007-05-18 08:49:00 +00:00
|
|
|
}
|
2007-05-14 09:24:09 +00:00
|
|
|
}
|
2007-07-13 08:06:30 +00:00
|
|
|
|
2007-06-12 09:12:07 +00:00
|
|
|
// no user mapping supplied at all, or user mapping failed
|
2007-06-08 09:01:19 +00:00
|
|
|
if (empty($studentid) || !is_numeric($studentid)) {
|
|
|
|
// user not found, abort whold import
|
2007-06-12 09:12:07 +00:00
|
|
|
$status = false;
|
2007-06-08 09:01:19 +00:00
|
|
|
import_cleanup($importcode);
|
2007-06-12 09:12:07 +00:00
|
|
|
notify('user mapping error, could not find user!');
|
2007-07-17 03:32:10 +00:00
|
|
|
break;
|
2007-06-08 09:01:19 +00:00
|
|
|
}
|
2007-07-13 08:06:30 +00:00
|
|
|
|
2009-04-27 08:47:31 +00:00
|
|
|
if ($separatemode and !groups_is_member($currentgroup, $studentid)) {
|
|
|
|
// not allowed to import into this group, abort
|
|
|
|
$status = false;
|
|
|
|
import_cleanup($importcode);
|
|
|
|
notify('user not member of current group, can not update!');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-06-06 08:51:58 +00:00
|
|
|
// insert results of this students into buffer
|
2007-10-07 13:04:49 +00:00
|
|
|
if ($status and !empty($newgrades)) {
|
2007-07-18 19:56:07 +00:00
|
|
|
|
2007-06-06 08:51:58 +00:00
|
|
|
foreach ($newgrades as $newgrade) {
|
2007-07-18 19:56:07 +00:00
|
|
|
|
2007-07-19 08:15:19 +00:00
|
|
|
// check if grade_grade is locked and if so, abort
|
2007-10-07 13:04:49 +00:00
|
|
|
if (!empty($newgrade->itemid) and $grade_grade = new grade_grade(array('itemid'=>$newgrade->itemid, 'userid'=>$studentid))) {
|
|
|
|
if ($grade_grade->is_locked()) {
|
2007-07-17 03:32:10 +00:00
|
|
|
// individual grade locked
|
|
|
|
$status = false;
|
|
|
|
import_cleanup($importcode);
|
2008-02-26 08:02:16 +00:00
|
|
|
notify(get_string('gradelocked', 'grades'));
|
2007-07-17 03:32:10 +00:00
|
|
|
break 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-07 13:04:49 +00:00
|
|
|
$newgrade->importcode = $importcode;
|
|
|
|
$newgrade->userid = $studentid;
|
|
|
|
$newgrade->importer = $USER->id;
|
2009-06-13 18:34:43 +00:00
|
|
|
$DB->insert_record('grade_import_values', $newgrade);
|
2007-06-06 08:51:58 +00:00
|
|
|
}
|
2007-05-17 08:55:29 +00:00
|
|
|
}
|
2007-07-13 08:06:30 +00:00
|
|
|
|
|
|
|
// updating/inserting all comments here
|
2007-10-07 13:04:49 +00:00
|
|
|
if ($status and !empty($newfeedbacks)) {
|
2007-07-13 08:06:30 +00:00
|
|
|
foreach ($newfeedbacks as $newfeedback) {
|
2007-10-07 13:04:49 +00:00
|
|
|
$sql = "SELECT *
|
2008-06-02 16:06:33 +00:00
|
|
|
FROM {grade_import_values}
|
2008-06-03 16:10:57 +00:00
|
|
|
WHERE importcode=? AND userid=? AND itemid=? AND importer=?";
|
|
|
|
if ($feedback = $DB->get_record_sql($sql, array($importcode, $studentid, $newfeedback->itemid, $USER->id))) {
|
2007-10-07 13:04:49 +00:00
|
|
|
$newfeedback->id = $feedback->id;
|
2008-06-03 16:10:57 +00:00
|
|
|
$DB->update_record('grade_import_values', $newfeedback);
|
2007-10-07 13:04:49 +00:00
|
|
|
|
2007-07-13 08:06:30 +00:00
|
|
|
} else {
|
|
|
|
// the grade item for this is not updated
|
2007-10-07 13:04:49 +00:00
|
|
|
$newfeedback->importcode = $importcode;
|
|
|
|
$newfeedback->userid = $studentid;
|
|
|
|
$newfeedback->importer = $USER->id;
|
2008-06-03 16:10:57 +00:00
|
|
|
$DB->insert_record('grade_import_values', $newfeedback);
|
2007-07-13 08:06:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-05-14 09:24:09 +00:00
|
|
|
}
|
2007-07-13 08:06:30 +00:00
|
|
|
|
2007-07-18 19:56:07 +00:00
|
|
|
/// at this stage if things are all ok, we commit the changes from temp table
|
2007-06-12 09:12:07 +00:00
|
|
|
if ($status) {
|
|
|
|
grade_import_commit($course->id, $importcode);
|
|
|
|
}
|
2007-05-18 08:49:00 +00:00
|
|
|
// temporary file can go now
|
2009-04-27 10:22:28 +00:00
|
|
|
fclose($fp);
|
2007-05-18 08:49:00 +00:00
|
|
|
unlink($filename);
|
|
|
|
} else {
|
2008-12-12 05:45:43 +00:00
|
|
|
print_error('cannotreadfil');
|
2007-05-17 08:55:29 +00:00
|
|
|
}
|
2007-05-18 08:49:00 +00:00
|
|
|
|
2007-05-14 09:24:09 +00:00
|
|
|
} else {
|
2009-04-27 08:47:31 +00:00
|
|
|
groups_print_course_menu($course, 'index.php?id='.$id);
|
|
|
|
echo '<div class="clearer"></div>';
|
|
|
|
|
2007-06-11 09:00:17 +00:00
|
|
|
// display the standard upload file form
|
2007-05-14 09:24:09 +00:00
|
|
|
$mform->display();
|
|
|
|
}
|
2007-07-13 08:06:30 +00:00
|
|
|
|
2009-08-06 14:12:17 +00:00
|
|
|
echo $OUTPUT->footer();
|
2007-08-01 06:47:35 +00:00
|
|
|
?>
|