123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * This tool allows platform admins to add users by uploading a CSV or XML file
- * @todo Add some langvars to DLTT
- * @package chamilo.admin
- */
- /**
- * Validate the imported data.
- */
- $language_file = array('admin', 'registration');
- $cidReset = true;
- require_once '../inc/global.inc.php';
- // Set this option to true to enforce strict purification for usenames.
- $purification_option_for_usernames = false;
- function validate_data($users) {
- global $defined_auth_sources;
- global $time;
- $errors = array();
- $usernames = array();
- // 1. Check if mandatory fields are set.
- $mandatory_fields = array('LastName', 'FirstName');
- if (api_get_setting('registration', 'email') == 'true') {
- $mandatory_fields[] = 'Email';
- }
- foreach ($users as $index => $user) {
- foreach ($mandatory_fields as $field) {
- if (empty($user[$field])) {
- $user['error'] = get_lang($field.'Mandatory');
- $errors[] = $user;
- }
- }
- // 2. Check username, first, check whether it is empty.
- if (!UserManager::is_username_empty($user['UserName'])) {
- // 2.1. Check whether username is too long.
- if (UserManager::is_username_too_long($user['UserName'])) {
- $user['error'] = get_lang('UserNameTooLong');
- $errors[] = $user;
- }
- // 2.2. Check whether the username was used twice in import file.
- if (isset($usernames[$user['UserName']])) {
- $user['error'] = get_lang('UserNameUsedTwice');
- $errors[] = $user;
- }
- $usernames[$user['UserName']] = 1;
- // 2.3. Check whether username is allready occupied.
- if (!UserManager::is_username_available($user['UserName'])) {
- $user['error'] = get_lang('UserNameNotAvailable');
- $errors[] = $user;
- }
- }
- // 3. Check status.
- if (isset($user['Status']) && !api_status_exists($user['Status'])) {
- $user['error'] = get_lang('WrongStatus');
- $errors[] = $user;
- }
- // 4. Check classname
- if (!empty($user['ClassName'])) {
- if (!ClassManager :: class_name_exists($user['ClassName'])) {
- $user['error'] = get_lang('ClassNameNotAvailable');
- $errors[] = $user;
- }
- }
- // 5. Check authentication source
- if (!empty($user['AuthSource'])) {
- if (!in_array($user['AuthSource'], $defined_auth_sources)) {
- $user['error'] = get_lang('AuthSourceNotAvailable');
- $errors[] = $user;
- }
- }
- }
- return $errors;
- }
- /**
- * Add missing user-information (which isn't required, like password, username etc).
- */
- function complete_missing_data($user) {
- global $purification_option_for_usernames;
- global $time;
- // 1. Create a username if necessary.
- if (UserManager::is_username_empty($user['UserName'])) {
- $user['UserName'] = UserManager::create_unique_username($user['FirstName'], $user['LastName']);
- } else {
- $user['UserName'] = UserManager::purify_username($user['UserName'], $purification_option_for_usernames);
- }
- // 2. Generate a password if necessary.
- if (empty($user['Password'])) {
- $user['Password'] = api_generate_password();
- }
- // 3. Set status if not allready set.
- if (empty($user['Status'])) {
- $user['Status'] = 'user';
- }
- // 4. Set authsource if not allready set.
- if (empty($user['AuthSource'])) {
- $user['AuthSource'] = PLATFORM_AUTH_SOURCE;
- }
- return $user;
- }
- /**
- * Save the imported data
- * @param array List of users
- * @return void
- * @uses global variable $inserted_in_course, which returns the list of courses the user was inserted in
- */
- function save_data($users) {
- global $inserted_in_course;
- // Not all scripts declare the $inserted_in_course array (although they should).
- if (!isset($inserted_in_course)) {
- $inserted_in_course = array();
- }
- $send_mail = $_POST['sendMail'] ? 1 : 0;
- $t0 = time();
- if (is_array($users)) {
- foreach ($users as $index => $user) {
- $user = complete_missing_data($user);
- $user['Status'] = api_status_key($user['Status']);
- $user_id = UserManager :: create_user($user['FirstName'], $user['LastName'], $user['Status'], $user['Email'], $user['UserName'], $user['Password'], (isset($user['OfficialCode'])?$user['OfficialCode']:null), (isset($user['language'])?$user['language']:null), (isset($user['PhoneNumber'])?$user['PhoneNumber']:null), '', $user['AuthSource'], null, 1, 0, null, null, $send_mail, true);
- if (!empty($user['Courses']) && !is_array($user['Courses'])) {
- $user['Courses'] = array($user['Courses']);
- }
- if (isset($user['Courses']) && is_array($user['Courses'])) {
- foreach ($user['Courses'] as $index => $course) {
- if (CourseManager :: course_exists($course)) {
- CourseManager :: subscribe_user($user_id, $course,$user['Status']);
- $course_info = CourseManager::get_course_information($course);
- $inserted_in_course[$course] = $course_info['title'];
- }
- if (CourseManager :: course_exists($course, true)) {
- // Also subscribe to virtual courses through check on visual code.
- $list = CourseManager :: get_courses_info_from_visual_code($course);
- foreach ($list as $vcourse) {
- if ($vcourse['code'] == $course) {
- // Ignore, this has already been inserted.
- } else {
- CourseManager :: subscribe_user($user_id, $vcourse['code'],$user['Status']);
- $inserted_in_course[$vcourse['code']] = $vcourse['title'];
- }
- }
- }
- }
- }
- if (!empty($user['ClassName'])) {
- $class_id = ClassManager :: get_class_id($user['ClassName']);
- ClassManager :: add_user($user_id, $class_id);
- }
- // Saving extra fields.
- global $extra_fields;
- // We are sure that the extra field exists.
- if (isset($extra_fields) && is_array($extra_fields)) {
- foreach($extra_fields as $extras) {
- if (isset($user[$extras[1]])) {
- $key = $extras[1];
- $value = $user[$extras[1]];
- UserManager::update_extra_field_value($user_id, $key,$value);
- }
- }
- }
- }
- }
- $t1 = time()-$t0;
- error_log('Total import took '.$t1.'s');
- }
- /**
- * Read the CSV-file
- * @param string $file Path to the CSV-file
- * @return array All userinformation read from the file
- */
- function parse_csv_data($file) {
- global $time;
- $time = time();
- $users = Import :: csv_to_array($file);
- foreach ($users as $index => $user) {
- if (isset ($user['Courses'])) {
- $user['Courses'] = explode('|', trim($user['Courses']));
- }
- $users[$index] = $user;
- }
- return $users;
- }
- /**
- * XML-parser: handle start of element
- */
- function element_start($parser, $data) {
- $data = api_utf8_decode($data);
- global $user;
- global $current_tag;
- switch ($data) {
- case 'Contact' :
- $user = array ();
- break;
- default :
- $current_tag = $data;
- }
- }
- /**
- * XML-parser: handle end of element
- */
- function element_end($parser, $data) {
- $data = api_utf8_decode($data);
- global $user;
- global $users;
- global $current_value;
- switch ($data) {
- case 'Contact' :
- if ($user['Status'] == '5') {
- $user['Status'] = STUDENT;
- }
- if ($user['Status'] == '1') {
- $user['Status'] = COURSEMANAGER;
- }
- $users[] = $user;
- break;
- default :
- $user[$data] = $current_value;
- break;
- }
- }
- /**
- * XML-parser: handle character data
- */
- function character_data($parser, $data) {
- $data = trim(api_utf8_decode($data));
- global $current_value;
- $current_value = $data;
- }
- /**
- * Read the XML-file
- * @param string $file Path to the XML-file
- * @return array All userinformation read from the file
- */
- function parse_xml_data($file) {
- global $current_tag;
- global $current_value;
- global $user;
- global $users;
- $users = array();
- $parser = xml_parser_create('UTF-8');
- xml_set_element_handler($parser, 'element_start', 'element_end');
- xml_set_character_data_handler($parser, 'character_data');
- xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, false);
- xml_parse($parser, Text::api_utf8_encode_xml(file_get_contents($file)));
- xml_parser_free($parser);
- return $users;
- }
- $this_section = SECTION_PLATFORM_ADMIN;
- api_protect_admin_script(true);
- $defined_auth_sources[] = PLATFORM_AUTH_SOURCE;
- if (isset($extAuthSource) && is_array($extAuthSource)) {
- $defined_auth_sources = array_merge($defined_auth_sources, array_keys($extAuthSource));
- }
- $tool_name = get_lang('ImportUserListXMLCSV');
- $interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
- set_time_limit(0);
- $extra_fields = UserManager::get_extra_fields(0, 0, 5, 'ASC', true);
- $user_id_error = array();
- $error_message = '';
- if (!empty($_POST['formSent']) AND $_FILES['import_file']['size'] !== 0) {
- $file_type = $_POST['file_type'];
- Security::clear_token();
- $tok = Security::get_token();
- $allowed_file_mimetype = array('csv','xml');
- $error_kind_file = false;
- $ext_import_file = substr($_FILES['import_file']['name'],(strrpos($_FILES['import_file']['name'],'.')+1));
- if (in_array($ext_import_file,$allowed_file_mimetype)) {
- if (strcmp($file_type, 'csv') === 0 && $ext_import_file == $allowed_file_mimetype[0]) {
- $users = parse_csv_data($_FILES['import_file']['tmp_name']);
- $errors = validate_data($users);
- $error_kind_file = false;
- } elseif (strcmp($file_type, 'xml') === 0 && $ext_import_file == $allowed_file_mimetype[1]) {
- $users = parse_xml_data($_FILES['import_file']['tmp_name']);
- $errors = validate_data($users);
- $error_kind_file = false;
- } else {
- $error_kind_file = true;
- }
- } else {
- $error_kind_file = true;
- }
- // List user id whith error.
- $users_to_insert = $user_id_error = array();
- if (is_array($errors)) {
- foreach ($errors as $my_errors) {
- $user_id_error[] = $my_errors['UserName'];
- }
- }
- if (is_array($users)) {
- foreach ($users as $my_user) {
- if (!in_array($my_user['UserName'], $user_id_error)) {
- $users_to_insert[] = $my_user;
- }
- }
- }
- $inserted_in_course = array();
- if (strcmp($file_type, 'csv') === 0) {
- save_data($users_to_insert);
- } elseif (strcmp($file_type, 'xml') === 0) {
- save_data($users_to_insert);
- } else {
- $error_message = get_lang('YouMustImportAFileAccordingToSelectedOption');
- }
- if (count($errors) > 0) {
- $see_message_import = get_lang('FileImportedJustUsersThatAreNotRegistered');
- } else {
- $see_message_import = get_lang('FileImported');
- }
- /*
- $msg2 = '';
- if (count($inserted_in_course) > 1) {
- $msg2 .= '<br>'.get_lang('UsersSubscribedToSeveralCoursesBecauseOfVirtualCourses').':';
- foreach ($inserted_in_course as $course) {
- $msg2 .= ' '.$course.',';
- }
- $msg2 = substr($msg2, 0, -1);
- $msg2 .= '</br>';
- }
- */
- if (count($errors) != 0) {
- $warning_message = '<ul>';
- foreach ($errors as $index => $error_user) {
- $warning_message .= '<li><b>'.$error_user['error'].'</b>: ';
- $warning_message .= '<strong>'.$error_user['UserName'].'</strong> ('.api_get_person_name($error_user['FirstName'], $error_user['LastName']).')';
- $warning_message .= '</li>';
- }
- $warning_message .= '</ul>';
- }
- // if the warning message is too long then we display the warning message trough a session
- if (isset($warning_message) && api_strlen($warning_message) > 150) {
- $_SESSION['session_message_import_users'] = (isset($warning_message)?$warning_message:'');
- $warning_message = 'session_message';
- }
- if ($error_kind_file) {
- $error_message = get_lang('YouMustImportAFileAccordingToSelectedOption');
- } else {
- header('Location: '.api_get_path(WEB_CODE_PATH).'admin/user_list.php?action=show_message&warn='.(isset($warning_message)?urlencode($warning_message):'').'&message='.urlencode($see_message_import).'&sec_token='.$tok);
- exit;
- }
- }
- Display :: display_header($tool_name);
- if (!empty($error_message)) {
- Display::display_error_message($error_message);
- }
- $form = new FormValidator('user_import','post','user_import.php');
- $form->addElement('header', '', $tool_name);
- $form->addElement('hidden', 'formSent');
- $form->addElement('file', 'import_file', get_lang('ImportFileLocation'));
- $group = array();
- $group[] = $form->createElement('radio', 'file_type', '', 'CSV (<a href="example.csv" target="_blank">'.get_lang('ExampleCSVFile').'</a>)', 'csv');
- $group[] = $form->createElement('radio', 'file_type', null, 'XML (<a href="example.xml" target="_blank">'.get_lang('ExampleXMLFile').'</a>)', 'xml');
- $form->addGroup($group, '', get_lang('FileType'), '<br/>');
- $group = array();
- $group[] = $form->createElement('radio', 'sendMail', '', get_lang('Yes'), 1);
- $group[] = $form->createElement('radio', 'sendMail', null, get_lang('No'), 0);
- $form->addGroup($group, '', get_lang('SendMailToUsers'), '<br/>');
- $form->addElement('style_submit_button', 'submit', get_lang('Import'), 'class="save"');
- $defaults['formSent'] = 1;
- $defaults['sendMail'] = 0;
- $defaults['file_type'] = 'csv';
- $form->setDefaults($defaults);
- $form->display();
- $list = array();
- $list_reponse = array();
- $result_xml = '';
- $i = 0;
- $count_fields = count($extra_fields);
- if ($count_fields > 0) {
- foreach ($extra_fields as $extra) {
- $list[] = $extra[1];
- $list_reponse[] = 'xxx';
- $spaces = ' ';
- $result_xml .= $spaces.'<'.$extra[1].'>xxx</'.$extra[1].'>';
- if ($i != $count_fields - 1) {
- $result_xml .= '<br/>';
- }
- $i++;
- }
- }
- ?>
- <p><?php echo get_lang('CSVMustLookLike').' ('.get_lang('MandatoryFields').')'; ?> :</p>
- <blockquote>
- <pre>
- <b>LastName</b>;<b>FirstName</b>;<b>Email</b>;UserName;Password;AuthSource;OfficialCode;PhoneNumber;Status;<font style="color:red;"><?php if (count($list) > 0) echo implode(';', $list).';'; ?></font>Courses;
- <b>xxx</b>;<b>xxx</b>;<b>xxx</b>;xxx;xxx;<?php echo implode('/', $defined_auth_sources); ?>;xxx;xxx;user/teacher/drh;<font style="color:red;"><?php if (count($list_reponse) > 0) echo implode(';', $list_reponse).';'; ?></font>xxx1|xxx2|xxx3;<br />
- </pre>
- </blockquote>
- <p><?php echo get_lang('XMLMustLookLike').' ('.get_lang('MandatoryFields').')'; ?> :</p>
- <blockquote>
- <pre>
- <?xml version="1.0" encoding="<?php echo api_refine_encoding_id(api_get_system_encoding()); ?>"?>
- <Contacts>
- <Contact>
- <b><LastName>xxx</LastName></b>
- <b><FirstName>xxx</FirstName></b>
- <UserName>xxx</UserName>
- <Password>xxx</Password>
- <AuthSource><?php echo implode('/', $defined_auth_sources); ?></AuthSource>
- <b><Email>xxx</Email></b>
- <OfficialCode>xxx</OfficialCode>
- <PhoneNumber>xxx</PhoneNumber>
- <Status>user/teacher/drh<?php if ($result_xml != '') { echo '<br /><font style="color:red;">', $result_xml; echo '</font>'; } ?></Status>
- <Courses>xxx1|xxx2|xxx3</Courses>
- </Contact>
- </Contacts>
- </pre>
- </blockquote>
- <?php
- Display :: display_footer();
|