123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Class ExerciseResult
- * which allows you to export exercises results in multiple presentation forms.
- *
- * @package chamilo.exercise
- *
- * @author Yannick Warnier
- */
- class ExerciseResult
- {
- public $includeAllUsers = false;
- public $onlyBestAttempts = false;
- private $results = [];
- /**
- * @param bool $includeAllUsers
- */
- public function setIncludeAllUsers($includeAllUsers)
- {
- $this->includeAllUsers = $includeAllUsers;
- }
- /**
- * @param bool $value
- */
- public function setOnlyBestAttempts($value)
- {
- $this->onlyBestAttempts = $value;
- }
- /**
- * Gets the results of all students (or just one student if access is limited).
- *
- * @param string $document_path The document path (for HotPotatoes retrieval)
- * @param int $user_id User ID. Optional. If no user ID is provided, we take all the results. Defauts to null
- * @param int $filter
- * @param int $exercise_id
- *
- * @return bool
- */
- public function getExercisesReporting(
- $document_path,
- $user_id = null,
- $filter = 0,
- $exercise_id = 0
- ) {
- $return = [];
- $TBL_EXERCISES = Database::get_course_table(TABLE_QUIZ_TEST);
- $TBL_TABLE_LP_MAIN = Database::get_course_table(TABLE_LP_MAIN);
- $TBL_USER = Database::get_main_table(TABLE_MAIN_USER);
- $TBL_TRACK_EXERCISES = Database::get_main_table(TABLE_STATISTIC_TRACK_E_EXERCISES);
- $TBL_TRACK_ATTEMPT_RECORDING = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ATTEMPT_RECORDING);
- $cid = api_get_course_id();
- $course_id = api_get_course_int_id();
- $user_id = intval($user_id);
- $sessionId = api_get_session_id();
- $session_id_and = ' AND te.session_id = '.$sessionId.' ';
- $exercise_id = intval($exercise_id);
- if (!empty($exercise_id)) {
- $session_id_and .= " AND exe_exo_id = $exercise_id ";
- }
- if (empty($user_id)) {
- $user_id_and = null;
- $sql = "SELECT ".(api_is_western_name_order() ? "firstname as userpart1, lastname userpart2" : "lastname as userpart1, firstname as userpart2").",
- official_code,
- ce.title as extitle,
- te.exe_result as exresult ,
- te.exe_weighting as exweight,
- te.exe_date as exdate,
- te.exe_id as exid,
- email as exemail,
- te.start_date as exstart,
- steps_counter as exstep,
- exe_user_id as excruid,
- te.exe_duration as duration,
- te.orig_lp_id as orig_lp_id,
- tlm.name as lp_name,
- user.username
- FROM $TBL_EXERCISES AS ce
- INNER JOIN $TBL_TRACK_EXERCISES AS te
- ON (te.exe_exo_id = ce.id)
- INNER JOIN $TBL_USER AS user
- ON (user.user_id = exe_user_id)
- LEFT JOIN $TBL_TABLE_LP_MAIN AS tlm
- ON (tlm.id = te.orig_lp_id AND tlm.c_id = ce.c_id)
- WHERE
- ce.c_id = $course_id AND
- te.status != 'incomplete' AND
- te.c_id = ce.c_id $user_id_and $session_id_and AND
- ce.active <>-1";
- } else {
- $user_id_and = ' AND te.exe_user_id = '.api_get_user_id().' ';
- // get only this user's results
- $sql = "SELECT ".(api_is_western_name_order() ? "firstname as userpart1, lastname userpart2" : "lastname as userpart1, firstname as userpart2").",
- official_code,
- ce.title as extitle,
- te.exe_result as exresult,
- te.exe_weighting as exweight,
- te.exe_date as exdate,
- te.exe_id as exid,
- email as exemail,
- te.start_date as exstart,
- steps_counter as exstep,
- exe_user_id as excruid,
- te.exe_duration as duration,
- ce.results_disabled as exdisabled,
- te.orig_lp_id as orig_lp_id,
- tlm.name as lp_name,
- user.username
- FROM $TBL_EXERCISES AS ce
- INNER JOIN $TBL_TRACK_EXERCISES AS te
- ON (te.exe_exo_id = ce.id)
- INNER JOIN $TBL_USER AS user
- ON (user.user_id = exe_user_id)
- LEFT JOIN $TBL_TABLE_LP_MAIN AS tlm
- ON (tlm.id = te.orig_lp_id AND tlm.c_id = ce.c_id)
- WHERE
- ce.c_id = $course_id AND
- te.status != 'incomplete' AND
- te.c_id = ce.c_id $user_id_and $session_id_and AND
- ce.active <>-1 AND
- ORDER BY userpart2, te.c_id ASC, ce.title ASC, te.exe_date DESC";
- }
- $results = [];
- $resx = Database::query($sql);
- $bestAttemptPerUser = [];
- while ($rowx = Database::fetch_array($resx, 'ASSOC')) {
- if ($this->onlyBestAttempts) {
- if (!isset($bestAttemptPerUser[$rowx['excruid']])) {
- $bestAttemptPerUser[$rowx['excruid']] = $rowx;
- } else {
- if ($rowx['exresult'] > $bestAttemptPerUser[$rowx['excruid']]['exresult']) {
- $bestAttemptPerUser[$rowx['excruid']] = $rowx;
- }
- }
- } else {
- $results[] = $rowx;
- }
- }
- if ($this->onlyBestAttempts) {
- // Remove userId indexes to avoid issues in output
- foreach ($bestAttemptPerUser as $attempt) {
- $results[] = $attempt;
- }
- }
- $filter_by_not_revised = false;
- $filter_by_revised = false;
- if ($filter) {
- switch ($filter) {
- case 1:
- $filter_by_not_revised = true;
- break;
- case 2:
- $filter_by_revised = true;
- break;
- default:
- null;
- }
- }
- if (empty($sessionId)) {
- $students = CourseManager::get_user_list_from_course_code($cid);
- } else {
- $students = CourseManager::get_user_list_from_course_code($cid, $sessionId);
- }
- $studentsUserIdList = array_keys($students);
- // Print the results of tests
- $userWithResults = [];
- if (is_array($results)) {
- $i = 0;
- foreach ($results as $result) {
- $revised = false;
- //revised or not
- $sql_exe = "SELECT exe_id
- FROM $TBL_TRACK_ATTEMPT_RECORDING
- WHERE
- author != '' AND
- exe_id = ".Database::escape_string($result['exid'])."
- LIMIT 1";
- $query = Database::query($sql_exe);
- if (Database:: num_rows($query) > 0) {
- $revised = true;
- }
- if ($filter_by_not_revised && $revised) {
- continue;
- }
- if ($filter_by_revised && !$revised) {
- continue;
- }
- $return[$i] = [];
- if (empty($user_id)) {
- $return[$i]['official_code'] = $result['official_code'];
- if (api_is_western_name_order()) {
- $return[$i]['first_name'] = $results[$i]['userpart1'];
- $return[$i]['last_name'] = $results[$i]['userpart2'];
- } else {
- $return[$i]['first_name'] = $results[$i]['userpart2'];
- $return[$i]['last_name'] = $results[$i]['userpart1'];
- }
- $return[$i]['user_id'] = $results[$i]['excruid'];
- $return[$i]['email'] = $results[$i]['exemail'];
- $return[$i]['username'] = $results[$i]['username'];
- }
- $return[$i]['title'] = $result['extitle'];
- $return[$i]['start_date'] = api_get_local_time($result['exstart']);
- $return[$i]['end_date'] = api_get_local_time($result['exdate']);
- $return[$i]['duration'] = $result['duration'];
- $return[$i]['result'] = $result['exresult'];
- $return[$i]['max'] = $result['exweight'];
- $return[$i]['status'] = $revised ? get_lang('Validated') : get_lang('NotValidated');
- $return[$i]['lp_id'] = $result['orig_lp_id'];
- $return[$i]['lp_name'] = $result['lp_name'];
- if (in_array($result['excruid'], $studentsUserIdList)) {
- $return[$i]['is_user_subscribed'] = get_lang('Yes');
- } else {
- $return[$i]['is_user_subscribed'] = get_lang('No');
- }
- $userWithResults[$result['excruid']] = 1;
- $i++;
- }
- }
- if ($this->includeAllUsers) {
- $latestId = count($return);
- $userWithResults = array_keys($userWithResults);
- if (!empty($students)) {
- foreach ($students as $student) {
- if (!in_array($student['user_id'], $userWithResults)) {
- $i = $latestId;
- $isWestern = api_is_western_name_order();
- if (empty($user_id)) {
- $return[$i]['official_code'] = $student['official_code'];
- if ($isWestern) {
- $return[$i]['first_name'] = $student['firstname'];
- $return[$i]['last_name'] = $student['lastname'];
- } else {
- $return[$i]['first_name'] = $student['lastname'];
- $return[$i]['last_name'] = $student['firstname'];
- }
- $return[$i]['user_id'] = $student['user_id'];
- $return[$i]['email'] = $student['email'];
- $return[$i]['username'] = $student[$i]['username'];
- }
- $return[$i]['title'] = null;
- $return[$i]['start_date'] = null;
- $return[$i]['end_date'] = null;
- $return[$i]['duration'] = null;
- $return[$i]['result'] = null;
- $return[$i]['max'] = null;
- $return[$i]['status'] = get_lang('NotAttempted');
- $return[$i]['lp_id'] = null;
- $return[$i]['lp_name'] = null;
- $return[$i]['is_user_subscribed'] = get_lang('Yes');
- $latestId++;
- }
- }
- }
- }
- $this->results = $return;
- return true;
- }
- /**
- * Exports the complete report as a CSV file.
- *
- * @param string $document_path Document path inside the document tool
- * @param int $user_id Optional user ID
- * @param bool $export_user_fields Whether to include user fields or not
- * @param int $export_filter
- * @param int $exercise_id
- *
- * @return bool False on error
- */
- public function exportCompleteReportCSV(
- $document_path = '',
- $user_id = null,
- $export_user_fields = false,
- $export_filter = 0,
- $exercise_id = 0
- ) {
- global $charset;
- $this->getExercisesReporting(
- $document_path,
- $user_id,
- $export_filter,
- $exercise_id
- );
- $now = api_get_local_time();
- $filename = 'exercise_results_'.$now.'.csv';
- if (!empty($user_id)) {
- $filename = 'exercise_results_user_'.$user_id.'_'.$now.'.csv';
- }
- $filename = api_replace_dangerous_char($filename);
- $data = '';
- if (api_is_western_name_order()) {
- if (!empty($this->results[0]['first_name'])) {
- $data .= get_lang('FirstName').';';
- }
- if (!empty($this->results[0]['last_name'])) {
- $data .= get_lang('LastName').';';
- }
- } else {
- if (!empty($this->results[0]['last_name'])) {
- $data .= get_lang('LastName').';';
- }
- if (!empty($this->results[0]['first_name'])) {
- $data .= get_lang('FirstName').';';
- }
- }
- $officialCodeInList = api_get_setting('show_official_code_exercise_result_list');
- if ($officialCodeInList === 'true') {
- $data .= get_lang('OfficialCode').';';
- }
- $data .= get_lang('LoginName').';';
- $data .= get_lang('Email').';';
- $data .= get_lang('Groups').';';
- if ($export_user_fields) {
- //show user fields section with a big th colspan that spans over all fields
- $extra_user_fields = UserManager::get_extra_fields(
- 0,
- 1000,
- 5,
- 'ASC',
- false,
- 1
- );
- if (!empty($extra_user_fields)) {
- foreach ($extra_user_fields as $field) {
- $data .= '"'.str_replace("\r\n", ' ', api_html_entity_decode(strip_tags($field[3]), ENT_QUOTES, $charset)).'";';
- }
- }
- }
- $data .= get_lang('Title').';';
- $data .= get_lang('StartDate').';';
- $data .= get_lang('EndDate').';';
- $data .= get_lang('Duration').' ('.get_lang('MinMinutes').') ;';
- $data .= get_lang('Score').';';
- $data .= get_lang('Total').';';
- $data .= get_lang('Status').';';
- $data .= get_lang('ToolLearnpath').';';
- $data .= get_lang('UserIsCurrentlySubscribed').';';
- $data .= "\n";
- //results
- foreach ($this->results as $row) {
- if (api_is_western_name_order()) {
- $data .= str_replace("\r\n", ' ', api_html_entity_decode(strip_tags($row['first_name']), ENT_QUOTES, $charset)).';';
- $data .= str_replace("\r\n", ' ', api_html_entity_decode(strip_tags($row['last_name']), ENT_QUOTES, $charset)).';';
- } else {
- $data .= str_replace("\r\n", ' ', api_html_entity_decode(strip_tags($row['last_name']), ENT_QUOTES, $charset)).';';
- $data .= str_replace("\r\n", ' ', api_html_entity_decode(strip_tags($row['first_name']), ENT_QUOTES, $charset)).';';
- }
- // Official code
- if ($officialCodeInList === 'true') {
- $data .= $row['official_code'].';';
- }
- // Email
- $data .= str_replace("\r\n", ' ', api_html_entity_decode(strip_tags($row['username']), ENT_QUOTES, $charset)).';';
- $data .= str_replace("\r\n", ' ', api_html_entity_decode(strip_tags($row['email']), ENT_QUOTES, $charset)).';';
- $data .= str_replace("\r\n", ' ', implode(", ", GroupManager::get_user_group_name($row['user_id']))).';';
- if ($export_user_fields) {
- //show user fields data, if any, for this user
- $user_fields_values = UserManager::get_extra_user_data(
- $row['user_id'],
- false,
- false,
- false,
- true
- );
- if (!empty($user_fields_values)) {
- foreach ($user_fields_values as $value) {
- $data .= '"'.str_replace('"', '""', api_html_entity_decode(strip_tags($value), ENT_QUOTES, $charset)).'";';
- }
- }
- }
- $duration = !empty($row['duration']) ? round($row['duration'] / 60) : 0;
- $data .= str_replace("\r\n", ' ', api_html_entity_decode(strip_tags($row['title']), ENT_QUOTES, $charset)).';';
- $data .= str_replace("\r\n", ' ', $row['start_date']).';';
- $data .= str_replace("\r\n", ' ', $row['end_date']).';';
- $data .= str_replace("\r\n", ' ', $duration).';';
- $data .= str_replace("\r\n", ' ', $row['result']).';';
- $data .= str_replace("\r\n", ' ', $row['max']).';';
- $data .= str_replace("\r\n", ' ', $row['status']).';';
- $data .= str_replace("\r\n", ' ', $row['lp_name']).';';
- $data .= str_replace("\r\n", ' ', $row['is_user_subscribed']).';';
- $data .= "\n";
- }
- // output the results
- $len = strlen($data);
- header('Content-type: application/octet-stream');
- header('Content-Type: application/force-download');
- header('Content-length: '.$len);
- if (preg_match("/MSIE 5.5/", $_SERVER['HTTP_USER_AGENT'])) {
- header('Content-Disposition: filename= '.$filename);
- } else {
- header('Content-Disposition: attachment; filename= '.$filename);
- }
- if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE')) {
- header('Pragma: ');
- header('Cache-Control: ');
- header('Cache-Control: public'); // IE cannot download from sessions without a cache
- }
- header('Content-Description: '.$filename);
- header('Content-transfer-encoding: binary');
- echo $data;
- return true;
- }
- /**
- * Exports the complete report as an XLS file.
- *
- * @param string $document_path
- * @param null $user_id
- * @param bool $export_user_fields
- * @param int $export_filter
- * @param int $exercise_id
- * @param null $hotpotato_name
- *
- * @return bool
- */
- public function exportCompleteReportXLS(
- $document_path = '',
- $user_id = null,
- $export_user_fields = false,
- $export_filter = 0,
- $exercise_id = 0,
- $hotpotato_name = null
- ) {
- global $charset;
- $this->getExercisesReporting(
- $document_path,
- $user_id,
- $export_filter,
- $exercise_id,
- $hotpotato_name
- );
- $now = api_get_local_time();
- $filename = 'exercise_results_'.$now.'.xlsx';
- if (!empty($user_id)) {
- $filename = 'exercise_results_user_'.$user_id.'_'.$now.'.xlsx';
- }
- $spreadsheet = new PHPExcel();
- $spreadsheet->setActiveSheetIndex(0);
- $worksheet = $spreadsheet->getActiveSheet();
- $line = 1; // Skip first line
- $column = 0; //skip the first column (row titles)
- // check if exists column 'user'
- $with_column_user = false;
- foreach ($this->results as $result) {
- if (!empty($result['last_name']) && !empty($result['first_name'])) {
- $with_column_user = true;
- break;
- }
- }
- $officialCodeInList = api_get_setting('show_official_code_exercise_result_list');
- if ($with_column_user) {
- if (api_is_western_name_order()) {
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('FirstName'));
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('LastName'));
- $column++;
- } else {
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('LastName'));
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('FirstName'));
- $column++;
- }
- if ($officialCodeInList === 'true') {
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('OfficialCode'));
- $column++;
- }
- $worksheet->setCellValueByColumnAndRow($column++, $line, get_lang('LoginName'));
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('Email'));
- $column++;
- }
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('Groups'));
- $column++;
- if ($export_user_fields) {
- //show user fields section with a big th colspan that spans over all fields
- $extra_user_fields = UserManager::get_extra_fields(
- 0,
- 1000,
- 5,
- 'ASC',
- false,
- 1
- );
- //show the fields names for user fields
- foreach ($extra_user_fields as $field) {
- $worksheet->setCellValueByColumnAndRow(
- $column,
- $line,
- api_html_entity_decode(
- strip_tags($field[3]),
- ENT_QUOTES,
- $charset
- )
- );
- $column++;
- }
- }
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('Title'));
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('StartDate'));
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('EndDate'));
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('Duration').' ('.get_lang('MinMinutes').')');
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('Score'));
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('Total'));
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('Status'));
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('ToolLearnpath'));
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, get_lang('UserIsCurrentlySubscribed'));
- $line++;
- foreach ($this->results as $row) {
- $column = 0;
- if ($with_column_user) {
- if (api_is_western_name_order()) {
- $worksheet->setCellValueByColumnAndRow(
- $column,
- $line,
- api_html_entity_decode(
- strip_tags($row['first_name']),
- ENT_QUOTES,
- $charset
- )
- );
- $column++;
- $worksheet->setCellValueByColumnAndRow(
- $column,
- $line,
- api_html_entity_decode(
- strip_tags($row['last_name']),
- ENT_QUOTES,
- $charset
- )
- );
- $column++;
- } else {
- $worksheet->setCellValueByColumnAndRow(
- $column,
- $line,
- api_html_entity_decode(
- strip_tags($row['last_name']),
- ENT_QUOTES,
- $charset
- )
- );
- $column++;
- $worksheet->setCellValueByColumnAndRow(
- $column,
- $line,
- api_html_entity_decode(
- strip_tags($row['first_name']),
- ENT_QUOTES,
- $charset
- )
- );
- $column++;
- }
- if ($officialCodeInList === 'true') {
- $worksheet->setCellValueByColumnAndRow(
- $column,
- $line,
- api_html_entity_decode(
- strip_tags($row['official_code']),
- ENT_QUOTES,
- $charset
- )
- );
- $column++;
- }
- $worksheet->setCellValueByColumnAndRow(
- $column++,
- $line,
- api_html_entity_decode(
- strip_tags($row['username']),
- ENT_QUOTES,
- $charset
- )
- );
- $worksheet->setCellValueByColumnAndRow(
- $column,
- $line,
- api_html_entity_decode(
- strip_tags($row['email']),
- ENT_QUOTES,
- $charset
- )
- );
- $column++;
- }
- $worksheet->setCellValueByColumnAndRow(
- $column,
- $line,
- api_html_entity_decode(
- strip_tags(
- implode(
- ", ",
- GroupManager:: get_user_group_name($row['user_id'])
- )
- ),
- ENT_QUOTES,
- $charset
- )
- );
- $column++;
- if ($export_user_fields) {
- //show user fields data, if any, for this user
- $user_fields_values = UserManager::get_extra_user_data(
- $row['user_id'],
- false,
- false,
- false,
- true
- );
- foreach ($user_fields_values as $value) {
- $worksheet->setCellValueByColumnAndRow(
- $column,
- $line,
- api_html_entity_decode(
- strip_tags($value),
- ENT_QUOTES,
- $charset
- )
- );
- $column++;
- }
- }
- $worksheet->setCellValueByColumnAndRow(
- $column,
- $line,
- api_html_entity_decode(
- strip_tags($row['title']),
- ENT_QUOTES,
- $charset
- )
- );
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, $row['start_date']);
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, $row['end_date']);
- $column++;
- $duration = !empty($row['duration']) ? round($row['duration'] / 60) : 0;
- $worksheet->setCellValueByColumnAndRow($column, $line, $duration);
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, $row['result']);
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, $row['max']);
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, $row['status']);
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, $row['lp_name']);
- $column++;
- $worksheet->setCellValueByColumnAndRow($column, $line, $row['is_user_subscribed']);
- $line++;
- }
- $file = api_get_path(SYS_ARCHIVE_PATH).api_replace_dangerous_char($filename);
- $writer = new PHPExcel_Writer_Excel2007($spreadsheet);
- $writer->save($file);
- DocumentManager::file_send_for_download($file, true, $filename);
- return true;
- }
- }
|