exercise.ajax.php 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. use ChamiloSession as Session;
  4. /**
  5. * Responses to AJAX calls
  6. */
  7. require_once __DIR__.'/../global.inc.php';
  8. $debug = false;
  9. api_protect_course_script(true);
  10. $action = $_REQUEST['a'];
  11. $course_id = api_get_course_int_id();
  12. if ($debug) {
  13. error_log("$action ajax call");
  14. }
  15. $session_id = isset($_REQUEST['session_id']) ? intval($_REQUEST['session_id']) : api_get_session_id();
  16. $course_code = isset($_REQUEST['cidReq']) ? $_REQUEST['cidReq'] : api_get_course_id();
  17. switch ($action) {
  18. case 'get_live_stats':
  19. if (!api_is_allowed_to_edit(null, true)) {
  20. break;
  21. }
  22. // 1. Setting variables needed by jqgrid
  23. $action = $_GET['a'];
  24. $exercise_id = intval($_GET['exercise_id']);
  25. $page = intval($_REQUEST['page']); //page
  26. $limit = intval($_REQUEST['rows']); //quantity of rows
  27. $sidx = $_REQUEST['sidx']; //index to filter
  28. $sord = $_REQUEST['sord']; //asc or desc
  29. if (!in_array($sord, array('asc', 'desc'))) {
  30. $sord = 'desc';
  31. }
  32. // get index row - i.e. user click to sort $sord = $_GET['sord'];
  33. // get the direction
  34. if (!$sidx) {
  35. $sidx = 1;
  36. }
  37. $track_exercise = Database::get_main_table(TABLE_STATISTIC_TRACK_E_EXERCISES);
  38. $user_table = Database::get_main_table(TABLE_MAIN_USER);
  39. $track_attempt = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ATTEMPT);
  40. $minutes = intval($_REQUEST['minutes']);
  41. $now = time() - 60 * $minutes;
  42. $now = api_get_utc_datetime($now);
  43. $where_condition = " orig_lp_id = 0 AND exe_exo_id = $exercise_id AND start_date > '$now' ";
  44. $sql = "SELECT COUNT(DISTINCT exe_id)
  45. FROM $track_exercise
  46. WHERE $where_condition ";
  47. $result = Database::query($sql);
  48. $count = Database::fetch_row($result);
  49. $count = $count[0];
  50. //3. Calculating first, end, etc
  51. $total_pages = 0;
  52. if ($count > 0) {
  53. if (!empty($limit)) {
  54. $total_pages = ceil($count / $limit);
  55. }
  56. }
  57. if ($page > $total_pages) {
  58. $page = $total_pages;
  59. }
  60. $start = $limit * $page - $limit;
  61. if ($start < 0) {
  62. $start = 0;
  63. }
  64. $sql = "SELECT
  65. exe_id,
  66. exe_user_id,
  67. firstname,
  68. lastname,
  69. aa.status,
  70. start_date,
  71. exe_result,
  72. exe_weighting,
  73. exe_result/exe_weighting as score,
  74. exe_duration,
  75. questions_to_check,
  76. orig_lp_id
  77. FROM $user_table u
  78. INNER JOIN (
  79. SELECT
  80. t.exe_id,
  81. t.exe_user_id,
  82. status,
  83. start_date,
  84. exe_result,
  85. exe_weighting,
  86. exe_result/exe_weighting as score,
  87. exe_duration,
  88. questions_to_check,
  89. orig_lp_id
  90. FROM $track_exercise t
  91. LEFT JOIN $track_attempt a
  92. ON (a.exe_id = t.exe_id AND t.exe_user_id = a.user_id)
  93. WHERE t.status = 'incomplete' AND $where_condition
  94. GROUP BY exe_user_id
  95. ) as aa
  96. ON aa.exe_user_id = user_id
  97. ORDER BY $sidx $sord
  98. LIMIT $start, $limit";
  99. $result = Database::query($sql);
  100. $results = array();
  101. while ($row = Database::fetch_array($result, 'ASSOC')) {
  102. $results[] = $row;
  103. }
  104. $oExe = new Exercise();
  105. $oExe->read($exercise_id);
  106. $response = new stdClass();
  107. $response->page = $page;
  108. $response->total = $total_pages;
  109. $response->records = $count;
  110. $i = 0;
  111. if (!empty($results)) {
  112. foreach ($results as $row) {
  113. $sql = "SELECT SUM(count_question_id) as count_question_id
  114. FROM (
  115. SELECT 1 as count_question_id
  116. FROM $track_attempt a
  117. WHERE
  118. user_id = {$row['exe_user_id']} AND
  119. exe_id = {$row['exe_id']}
  120. GROUP by question_id
  121. ) as count_table";
  122. $result_count = Database::query($sql);
  123. $count_questions = Database::fetch_array(
  124. $result_count,
  125. 'ASSOC'
  126. );
  127. $count_questions = $count_questions['count_question_id'];
  128. $row['count_questions'] = $count_questions;
  129. $response->rows[$i]['id'] = $row['exe_id'];
  130. if (!empty($oExe->expired_time)) {
  131. $remaining = strtotime($row['start_date']) + ($oExe->expired_time * 60) - strtotime(api_get_utc_datetime(time()));
  132. $h = floor($remaining / 3600);
  133. $m = floor(($remaining - ($h * 3600)) / 60);
  134. $s = ($remaining - ($h * 3600) - ($m * 60));
  135. $timeInfo = api_format_date(
  136. $row['start_date'],
  137. DATE_TIME_FORMAT_LONG
  138. ).' ['.($h > 0 ? $h.':' : '').sprintf("%02d", $m).':'.sprintf("%02d", $s).']';
  139. } else {
  140. $timeInfo = api_format_date(
  141. $row['start_date'],
  142. DATE_TIME_FORMAT_LONG
  143. );
  144. }
  145. $array = array(
  146. $row['firstname'],
  147. $row['lastname'],
  148. $timeInfo,
  149. $row['count_questions'],
  150. round($row['score'] * 100).'%'
  151. );
  152. $response->rows[$i]['cell'] = $array;
  153. $i++;
  154. }
  155. }
  156. echo json_encode($response);
  157. break;
  158. case 'update_exercise_list_order':
  159. if (api_is_allowed_to_edit(null, true)) {
  160. $new_list = $_REQUEST['exercise_list'];
  161. $table = Database::get_course_table(TABLE_QUIZ_ORDER);
  162. $counter = 1;
  163. //Drop all
  164. Database::query("DELETE FROM $table WHERE session_id = $session_id AND c_id = $course_id");
  165. //Insert all
  166. foreach ($new_list as $new_order_id) {
  167. Database::insert(
  168. $table,
  169. array(
  170. 'exercise_order' => $counter,
  171. 'session_id' => $session_id,
  172. 'exercise_id' => intval($new_order_id),
  173. 'c_id' => $course_id
  174. )
  175. );
  176. $counter++;
  177. }
  178. echo Display::return_message(get_lang('Saved'), 'confirmation');
  179. }
  180. break;
  181. case 'update_question_order':
  182. $course_info = api_get_course_info_by_id($course_id);
  183. $course_id = $course_info['real_id'];
  184. $exercise_id = isset($_REQUEST['exercise_id']) ? $_REQUEST['exercise_id'] : null;
  185. if (empty($exercise_id)) {
  186. return Display::return_message(get_lang('Error'), 'error');
  187. }
  188. if (api_is_allowed_to_edit(null, true)) {
  189. $new_question_list = $_POST['question_id_list'];
  190. $TBL_QUESTIONS = Database::get_course_table(TABLE_QUIZ_TEST_QUESTION);
  191. $counter = 1;
  192. foreach ($new_question_list as $new_order_id) {
  193. Database::update(
  194. $TBL_QUESTIONS,
  195. array('question_order' => $counter),
  196. array('question_id = ? AND c_id = ? AND exercice_id = ? ' => array(intval($new_order_id), $course_id, $exercise_id)))
  197. ;
  198. $counter++;
  199. }
  200. echo Display::return_message(get_lang('Saved'), 'confirmation');
  201. }
  202. break;
  203. case 'add_question_to_reminder':
  204. /** @var Exercise $objExercise */
  205. $objExercise = Session::read('objExercise');
  206. if (empty($objExercise)) {
  207. echo 0;
  208. exit;
  209. } else {
  210. $objExercise->edit_question_to_remind(
  211. $_REQUEST['exe_id'],
  212. $_REQUEST['question_id'],
  213. $_REQUEST['action']
  214. );
  215. }
  216. break;
  217. case 'save_exercise_by_now':
  218. $course_info = api_get_course_info_by_id($course_id);
  219. $course_id = $course_info['real_id'];
  220. // Use have permissions?
  221. if (api_is_allowed_to_session_edit()) {
  222. // "all" or "simple" strings means that there's one or all questions exercise type
  223. $type = isset($_REQUEST['type']) ? $_REQUEST['type'] : null;
  224. // Questions choices.
  225. $choice = isset($_REQUEST['choice']) ? $_REQUEST['choice'] : null;
  226. // Hot spot coordinates from all questions.
  227. $hot_spot_coordinates = isset($_REQUEST['hotspot']) ? $_REQUEST['hotspot'] : null;
  228. // There is a reminder?
  229. $remind_list = isset($_REQUEST['remind_list']) && !empty($_REQUEST['remind_list']) ? array_keys($_REQUEST['remind_list']) : null;
  230. // Needed in manage_answer.
  231. $learnpath_id = isset($_REQUEST['learnpath_id']) ? intval($_REQUEST['learnpath_id']) : 0;
  232. $learnpath_item_id = isset($_REQUEST['learnpath_item_id']) ? intval($_REQUEST['learnpath_item_id']) : 0;
  233. // Attempt id.
  234. $exe_id = $_REQUEST['exe_id'];
  235. if ($debug) {
  236. error_log("exe_id = $exe_id");
  237. error_log("type = $type");
  238. error_log("choice = ".print_r($choice, 1)." ");
  239. error_log("hot_spot_coordinates = ".print_r($hot_spot_coordinates, 1));
  240. error_log("remind_list = ".print_r($remind_list, 1));
  241. }
  242. // Exercise information.
  243. /** @var Exercise $objExercise */
  244. $objExercise = Session::read('objExercise');
  245. // Question info.
  246. $question_id = isset($_REQUEST['question_id']) ? intval($_REQUEST['question_id']) : null;
  247. $question_list = Session::read('questionList');
  248. // If exercise or question is not set then exit.
  249. if (empty($question_list) || empty($objExercise)) {
  250. echo 'error';
  251. if ($debug) {
  252. if (empty($question_list)) {
  253. error_log("question_list is empty");
  254. }
  255. if (empty($objExercise)) {
  256. error_log("objExercise is empty");
  257. }
  258. }
  259. exit;
  260. }
  261. // Getting information of the current exercise.
  262. $exercise_stat_info = $objExercise->get_stat_track_exercise_info_by_exe_id($exe_id);
  263. $exercise_id = $exercise_stat_info['exe_exo_id'];
  264. $attempt_list = array();
  265. // First time here we create an attempt (getting the exe_id).
  266. if (!empty($exercise_stat_info)) {
  267. // We know the user we get the exe_id.
  268. $exe_id = $exercise_stat_info['exe_id'];
  269. $total_score = $exercise_stat_info['exe_result'];
  270. //Getting the list of attempts
  271. $attempt_list = Event::getAllExerciseEventByExeId($exe_id);
  272. }
  273. // Updating Reminder algorythm.
  274. if ($objExercise->type == ONE_PER_PAGE) {
  275. $bd_reminder_list = explode(',', $exercise_stat_info['questions_to_check']);
  276. if (empty($remind_list)) {
  277. $remind_list = $bd_reminder_list;
  278. $new_list = array();
  279. foreach ($bd_reminder_list as $item) {
  280. if ($item != $question_id) {
  281. $new_list[] = $item;
  282. }
  283. }
  284. $remind_list = $new_list;
  285. } else {
  286. if (isset($remind_list[0])) {
  287. if (!in_array($remind_list[0], $bd_reminder_list)) {
  288. array_push($bd_reminder_list, $remind_list[0]);
  289. }
  290. $remind_list = $bd_reminder_list;
  291. }
  292. }
  293. }
  294. // No exe id? Can't save answer.
  295. if (empty($exe_id)) {
  296. // Fires an error.
  297. echo 'error';
  298. if ($debug) {
  299. error_log("exe_id is empty");
  300. }
  301. exit;
  302. }
  303. Session::write('exe_id', $exe_id);
  304. // Getting the total weight if the request is simple
  305. $total_weight = 0;
  306. if ($type == 'simple') {
  307. foreach ($question_list as $my_question_id) {
  308. $objQuestionTmp = Question::read($my_question_id, $course_id);
  309. $total_weight += $objQuestionTmp->selectWeighting();
  310. }
  311. }
  312. unset($objQuestionTmp);
  313. // Looping the question list
  314. foreach ($question_list as $my_question_id) {
  315. if ($debug) {
  316. error_log("Saving question_id = $my_question_id ");
  317. }
  318. if ($type == 'simple' && $question_id != $my_question_id) {
  319. continue;
  320. }
  321. $my_choice = isset($choice[$my_question_id]) ? $choice[$my_question_id] : null;
  322. if ($debug) {
  323. error_log("my_choice = ".print_r($my_choice, 1)."");
  324. }
  325. // Creates a temporary Question object
  326. $objQuestionTmp = Question::read($my_question_id, $course_id);
  327. // Getting free choice data.
  328. if (
  329. ($objQuestionTmp->type == FREE_ANSWER || $objQuestionTmp->type == ORAL_EXPRESSION)
  330. && $type == 'all'
  331. ) {
  332. $my_choice = isset($_REQUEST['free_choice'][$my_question_id]) && !empty($_REQUEST['free_choice'][$my_question_id])
  333. ? $_REQUEST['free_choice'][$my_question_id]
  334. : null;
  335. }
  336. if ($type == 'all') {
  337. $total_weight += $objQuestionTmp->selectWeighting();
  338. }
  339. // This variable came from exercise_submit_modal.php.
  340. $hotspot_delineation_result = null;
  341. if (isset($_SESSION['hotspot_delineation_result']) && isset($_SESSION['hotspot_delineation_result'][$objExercise->selectId()])) {
  342. $hotspot_delineation_result = $_SESSION['hotspot_delineation_result'][$objExercise->selectId()][$my_question_id];
  343. }
  344. if ($type == 'simple') {
  345. // Getting old attempt in order to decrees the total score.
  346. $old_result = $objExercise->manage_answer(
  347. $exe_id,
  348. $my_question_id,
  349. null,
  350. 'exercise_show',
  351. array(),
  352. false,
  353. true,
  354. false,
  355. $objExercise->selectPropagateNeg(),
  356. array()
  357. );
  358. // Removing old score.
  359. $total_score = $total_score - $old_result['score'];
  360. }
  361. // Deleting old attempt
  362. if (isset($attempt_list) && !empty($attempt_list[$my_question_id])) {
  363. if ($debug) {
  364. error_log("delete_attempt exe_id : $exe_id, my_question_id: $my_question_id");
  365. }
  366. Event::delete_attempt(
  367. $exe_id,
  368. api_get_user_id(),
  369. $course_id,
  370. $session_id,
  371. $my_question_id
  372. );
  373. if ($objQuestionTmp->type == HOT_SPOT) {
  374. Event::delete_attempt_hotspot(
  375. $exe_id,
  376. api_get_user_id(),
  377. $course_id,
  378. $session_id,
  379. $my_question_id
  380. );
  381. }
  382. if (isset($attempt_list[$my_question_id]) &&
  383. isset($attempt_list[$my_question_id]['marks'])
  384. ) {
  385. $total_score -= $attempt_list[$my_question_id]['marks'];
  386. }
  387. }
  388. // We're inside *one* question. Go through each possible answer for this question
  389. $result = $objExercise->manage_answer(
  390. $exe_id,
  391. $my_question_id,
  392. $my_choice,
  393. 'exercise_result',
  394. $hot_spot_coordinates,
  395. true,
  396. false,
  397. false,
  398. $objExercise->selectPropagateNeg(),
  399. $hotspot_delineation_result
  400. );
  401. // Adding the new score.
  402. $total_score += $result['score'];
  403. if ($debug) {
  404. error_log("total_score: $total_score ");
  405. error_log("total_weight: $total_weight ");
  406. }
  407. $duration = 0;
  408. $now = time();
  409. if ($type == 'all') {
  410. $exercise_stat_info = $objExercise->get_stat_track_exercise_info_by_exe_id($exe_id);
  411. }
  412. $key = ExerciseLib::get_time_control_key(
  413. $exercise_id,
  414. $exercise_stat_info['orig_lp_id'],
  415. $exercise_stat_info['orig_lp_item_id']
  416. );
  417. if (isset($_SESSION['duration_time'][$key]) && !empty($_SESSION['duration_time'][$key])) {
  418. $duration = $now - $_SESSION['duration_time'][$key];
  419. if (!empty($exercise_stat_info['exe_duration'])) {
  420. $duration += $exercise_stat_info['exe_duration'];
  421. }
  422. $duration = intval($duration);
  423. } else {
  424. if (!empty($exercise_stat_info['exe_duration'])) {
  425. $duration = $exercise_stat_info['exe_duration'];
  426. }
  427. }
  428. $_SESSION['duration_time'][$key] = time();
  429. Event::update_event_exercise(
  430. $exe_id,
  431. $objExercise->selectId(),
  432. $total_score,
  433. $total_weight,
  434. $session_id,
  435. $exercise_stat_info['orig_lp_id'],
  436. $exercise_stat_info['orig_lp_item_id'],
  437. $exercise_stat_info['orig_lp_item_view_id'],
  438. $duration,
  439. $question_list,
  440. 'incomplete',
  441. $remind_list
  442. );
  443. // Destruction of the Question object
  444. unset($objQuestionTmp);
  445. if ($debug) {
  446. error_log(" -- end question -- ");
  447. }
  448. }
  449. if ($debug) {
  450. error_log(" ------ end ajax call ------- ");
  451. }
  452. }
  453. if ($objExercise->type == ONE_PER_PAGE) {
  454. echo 'one_per_page';
  455. exit;
  456. }
  457. echo 'ok';
  458. break;
  459. case 'show_question':
  460. $isAllowedToEdit = api_is_allowed_to_edit(null, true, false, false);
  461. if (!$isAllowedToEdit) {
  462. api_not_allowed(true);
  463. exit;
  464. }
  465. $questionId = isset($_GET['question']) ? intval($_GET['question']) : 0;
  466. $exerciseId = isset($_REQUEST['exercise']) ? intval($_REQUEST['exercise']) : 0;
  467. if (!$questionId || !$exerciseId) {
  468. break;
  469. }
  470. $objExercise = new Exercise();
  471. $objExercise->read($exerciseId);
  472. $objQuestion = Question::read($questionId);
  473. $objQuestion->get_question_type_name();
  474. echo '<p class="lead">'.$objQuestion->get_question_type_name().'</p>';
  475. //echo get_lang('Level').': '.$objQuestionTmp->selectLevel();
  476. ExerciseLib::showQuestion(
  477. $questionId,
  478. false,
  479. null,
  480. null,
  481. false,
  482. true,
  483. false,
  484. true,
  485. $objExercise->feedback_type,
  486. true
  487. );
  488. break;
  489. default:
  490. echo '';
  491. }
  492. exit;