123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- <?php
- // $Id: course_import.php 8216 2006-03-15 16:33:13Z turboke $
- /*
- ==============================================================================
- Dokeos - elearning and course management software
- Copyright (c) 2005 Bart Mollet <bart.mollet@hogent.be>
- For a full list of contributors, see "credits.txt".
- The full license can be read in "license.txt".
- This program 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 2
- of the License, or (at your option) any later version.
- See the GNU General Public License for more details.
- Contact: Dokeos, 181 rue Royale, B-1000 Brussels, Belgium, info@dokeos.com
- ==============================================================================
- */
- /**
- ==============================================================================
- * This tool allows platform admins to create courses by uploading a CSV file
- * @todo Add some langvars to DLTT
- * @package dokeos.admin
- ==============================================================================
- */
- /**
- * validate the imported data
- */
- function validate_data($courses)
- {
- $errors = array ();
- $coursecodes = array ();
- foreach ($courses as $index => $course)
- {
- $course['line'] = $index +1;
- //1. check if mandatory fields are set
- $mandatory_fields = array ('Code', 'Title', 'CourseCategory', 'Teacher');
- foreach ($mandatory_fields as $key => $field)
- {
- if (!isset ($course[$field]) || strlen($course[$field]) == 0)
- {
- $course['error'] = get_lang($field.'Mandatory');
- $errors[] = $course;
- }
- }
- //2. check if code isn't in use
- if (isset ($course['Code']) && strlen($course['Code']) != 0)
- {
- //2.1 check if code allready used in this CVS-file
- if (isset ($coursecodes[$course['Code']]))
- {
- $course['error'] = get_lang('CodeTwiceInFile');
- $errors[] = $course;
- }
- elseif(strlen($course['Code']) > 20)
- {
- $course['error'] = get_lang('Max');
- $errors[] = $course;
- }
- //2.3 check if code allready used in DB
- else
- {
- $course_table = Database :: get_main_table(MAIN_COURSE_TABLE);
- $sql = "SELECT * FROM $course_table WHERE code = '".mysql_real_escape_string($course['Code'])."'";
- $res = api_sql_query($sql, __FILE__, __LINE__);
- if (mysql_num_rows($res) > 0)
- {
- $course['error'] = get_lang('CodeExists');
- $errors[] = $course;
- }
- }
- $coursecodes[$course['Code']] = 1;
- }
- //3. check if teacher exists
- if (isset ($course['Teacher']) && strlen($course['Teacher']) != 0)
- {
- if (UserManager :: is_username_available($course['Teacher']))
- {
- $course['error'] = get_lang('UnknownTeacher');
- $errors[] = $course;
- }
- }
- //4. check if category exists
- if (isset ($course['CourseCategory']) && strlen($course['CourseCategory']) != 0)
- {
- $category_table = Database :: get_main_table(MAIN_CATEGORY_TABLE);
- $sql = "SELECT * FROM $category_table WHERE code = '".mysql_real_escape_string($course['CourseCategory'])."'";
- $res = api_sql_query($sql, __FILE__, __LINE__);
- if (mysql_num_rows($res) == 0)
- {
- $course['error'] = get_lang('UnkownCategory');
- $errors[] = $course;
- }
- }
- }
- return $errors;
- }
- /**
- * Save the imported data
- */
- function save_data($courses)
- {
- global $dbNamePrefix,$firstExpirationDelay;
- foreach($courses as $index => $course)
- {
- $keys = define_course_keys($course['Code'], "", $dbNamePrefix);
- $user_table = Database::get_main_table(MAIN_USER_TABLE);
- $sql = "SELECT user_id, CONCAT(lastname,' ',firstname) AS name FROM $user_table WHERE username = '".mysql_real_escape_string($course['Teacher'])."'";
- $res = api_sql_query($sql,__FILE__,__LINE__);
- $teacher = mysql_fetch_object($res);
- $visual_code = $keys["currentCourseCode"];
- $code = $keys["currentCourseId"];
- $db_name = $keys["currentCourseDbName"];
- $directory = $keys["currentCourseRepository"];
- $expiration_date = time() + $firstExpirationDelay;
- prepare_course_repository($directory, $code);
- update_Db_course($db_name);
- fill_course_repository($directory);
- fill_Db_course($db_name, $directory, api_get_setting('platformLanguage'));
- register_course($code, $visual_code, $directory, $db_name, $teacher->name, $course['CourseCategory'], $course['Title'], api_get_setting('platformLanguage'), $teacher->user_id, $expiration_date);
- echo $code.' CREATED<br />';
- }
- }
- /**
- * Read the CSV-file
- * @param string $file Path to the CSV-file
- * @return array All course-information read from the file
- */
- function parse_csv_data($file)
- {
- $courses = Import :: csv_to_array($file);
- return $courses;
- }
- $langFile = array ('admin', 'registration','create_course');
- $cidReset = true;
- include ('../inc/global.inc.php');
- api_protect_admin_script();
- require_once (api_get_path(LIBRARY_PATH).'fileManage.lib.php');
- require_once (api_get_path(LIBRARY_PATH).'import.lib.php');
- require_once (api_get_path(LIBRARY_PATH).'usermanager.lib.php');
- require_once (api_get_path(CONFIGURATION_PATH).'add_course.conf.php');
- require_once (api_get_path(LIBRARY_PATH).'add_course.lib.inc.php');
- $formSent = 0;
- $errorMsg = '';
- $defined_auth_sources[] = PLATFORM_AUTH_SOURCE;
- if (is_array($extAuthSource))
- {
- $defined_auth_sources = array_merge($defined_auth_sources, array_keys($extAuthSource));
- }
- $tool_name = get_lang('AddCourse').' CSV';
- $interbredcrump[] = array ('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
- set_time_limit(0);
- Display :: display_header($tool_name);
- api_display_tool_title($tool_name);
- if ($_POST['formSent'])
- {
- $file_type = $_POST['file_type'];
- $courses = parse_csv_data($_FILES['import_file']['tmp_name']);
- $errors = validate_data($courses);
- if (count($errors) == 0)
- {
- //$users = complete_missing_data($courses);
- save_data($courses);
- //header('Location: user_list.php?action=show_message&message='.urlencode(get_lang('FileImported')));
- //exit ();
- }
- }
- if (count($errors) != 0)
- {
- $error_message = '<ul>';
- foreach ($errors as $index => $error_course)
- {
- $error_message .= '<li>'.get_lang('Line').' '.$error_course['line'].': <b>'.$error_course['error'].'</b>: ';
- $error_message .= $error_course['Code'].' '.$error_course['Title'];
- $error_message .= '</li>';
- }
- $error_message .= '</ul>';
- Display :: display_error_message($error_message);
- }
- ?>
- <form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>" enctype="multipart/form-data" style="margin:0px;">
- <input type="file" name="import_file"/>
- <input type="hidden" name="formSent" value="1"/>
- <input type="submit" value="<?php echo get_lang('Ok'); ?>"/>
- </form>
- <p><?php echo get_lang('CSVMustLookLike').' ('.get_lang('MandatoryFields').')'; ?> :</p>
- <blockquote>
- <pre>
- <b>Code</b>;<b>Title</b>;<b>CourseCategory</b>;<b>Teacher</b>
- BIO0015;Biology;BIO;username
- </pre>
- </blockquote>
- <?php
- /*
- ==============================================================================
- FOOTER
- ==============================================================================
- */
- Display :: display_footer();
- ?>
|