123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Class ExerciseLink
- * Defines a gradebook ExerciseLink object.
- *
- * @author Bert Steppé
- *
- * @package chamilo.gradebook
- */
- class ExerciseLink extends AbstractLink
- {
- private $course_info;
- private $exercise_table;
- private $exercise_data = [];
- private $is_hp;
- /**
- * @param int $hp
- */
- public function __construct($hp = 0)
- {
- parent::__construct();
- $this->set_type(LINK_EXERCISE);
- $this->is_hp = $hp;
- if ($this->is_hp == 1) {
- $this->set_type(LINK_HOTPOTATOES);
- }
- }
- /**
- * Generate an array of all exercises available.
- *
- * @param bool $getOnlyHotPotatoes
- *
- * @return array 2-dimensional array - every element contains 2 subelements (id, name)
- */
- public function get_all_links($getOnlyHotPotatoes = false)
- {
- $TBL_DOCUMENT = Database::get_course_table(TABLE_DOCUMENT);
- $tableItemProperty = Database::get_course_table(TABLE_ITEM_PROPERTY);
- $exerciseTable = $this->get_exercise_table();
- $lpItemTable = Database::get_course_table(TABLE_LP_ITEM);
- $documentPath = api_get_path(SYS_COURSE_PATH).$this->course_code.'/document';
- if (empty($this->course_code)) {
- return [];
- }
- $sessionId = $this->get_session_id();
- if (empty($sessionId)) {
- $session_condition = api_get_session_condition(0, true);
- } else {
- $session_condition = api_get_session_condition($sessionId, true, true);
- }
- // @todo
- $uploadPath = null;
- $sql = 'SELECT iid, title FROM '.$exerciseTable.'
- WHERE c_id = '.$this->course_id.' AND active=1 '.$session_condition;
- $sqlLp = "SELECT e.iid, e.title
- FROM $exerciseTable e
- INNER JOIN $lpItemTable i
- ON (e.c_id = i.c_id AND e.id = i.path)
- WHERE
- e.c_id = $this->course_id AND
- active = 0 AND
- item_type = 'quiz'
- $session_condition";
- $sql2 = "SELECT d.path as path, d.comment as comment, ip.visibility as visibility, d.id
- FROM $TBL_DOCUMENT d
- INNER JOIN $tableItemProperty ip
- ON (d.id = ip.ref AND d.c_id = ip.c_id)
- WHERE
- d.c_id = $this->course_id AND
- ip.c_id = $this->course_id AND
- ip.tool = '".TOOL_DOCUMENT."' AND
- (d.path LIKE '%htm%') AND
- (d.path LIKE '%HotPotatoes_files%') AND
- d.path LIKE '".Database::escape_string($uploadPath.'/%/%')."' AND
- ip.visibility = '1'
- ";
- require_once api_get_path(SYS_CODE_PATH).'exercise/hotpotatoes.lib.php';
- $exerciseInLP = [];
- if (!$this->is_hp) {
- $result = Database::query($sql);
- $resultLp = Database::query($sqlLp);
- $exerciseInLP = Database::store_result($resultLp);
- } else {
- $result2 = Database::query($sql2);
- }
- $cats = [];
- if (isset($result)) {
- if (Database::num_rows($result) > 0) {
- while ($data = Database::fetch_array($result)) {
- $cats[] = [$data['iid'], $data['title']];
- }
- }
- }
- $hotPotatoes = [];
- if (isset($result2)) {
- if (Database::num_rows($result2) > 0) {
- while ($row = Database::fetch_array($result2)) {
- $attribute['path'][] = $row['path'];
- $attribute['visibility'][] = $row['visibility'];
- $attribute['comment'][] = $row['comment'];
- $attribute['id'] = $row['id'];
- if (isset($attribute['path']) && is_array($attribute['path'])) {
- foreach ($attribute['path'] as $path) {
- $title = GetQuizName($path, $documentPath);
- if ($title == '') {
- $title = basename($path);
- }
- $element = [$attribute['id'], $title.'(HP)'];
- $cats[] = $element;
- $hotPotatoes[] = $element;
- }
- }
- }
- }
- }
- if ($getOnlyHotPotatoes) {
- return $hotPotatoes;
- }
- if (!empty($exerciseInLP)) {
- foreach ($exerciseInLP as $exercise) {
- $cats[] = [
- $exercise['iid'],
- $exercise['title'].' ('.get_lang('Learning path').')',
- ];
- }
- }
- return $cats;
- }
- /**
- * Has anyone done this exercise yet ?
- */
- public function has_results()
- {
- $tbl_stats = Database::get_main_table(TABLE_STATISTIC_TRACK_E_EXERCISES);
- $sessionId = $this->get_session_id();
- $course_id = api_get_course_int_id($this->get_course_code());
- $sql = "SELECT count(exe_id) AS number
- FROM $tbl_stats
- WHERE
- session_id = $sessionId AND
- c_id = $course_id AND
- exe_exo_id = ".$this->get_ref_id();
- $result = Database::query($sql);
- $number = Database::fetch_row($result);
- return $number[0] != 0;
- }
- /**
- * Get the score of this exercise. Only the first attempts are taken into account.
- *
- * @param int $stud_id student id (default: all students who have results -
- * then the average is returned)
- * @param string $type
- *
- * @return array (score, max) if student is given
- * array (sum of scores, number of scores) otherwise
- * or null if no scores available
- */
- public function calc_score($stud_id = null, $type = null)
- {
- $allowStats = api_get_configuration_value('allow_gradebook_stats');
- if ($allowStats) {
- $link = $this->entity;
- if (!empty($link)) {
- $weight = $link->getScoreWeight();
- switch ($type) {
- case 'best':
- $bestResult = $link->getBestScore();
- $result = [$bestResult, $weight];
- return $result;
- break;
- case 'average':
- $count = count($this->getStudentList());
- if (empty($count)) {
- $result = [0, $weight];
- return $result;
- }
- $sumResult = array_sum($link->getUserScoreList());
- $result = [$sumResult / $count, $weight];
- return $result;
- break;
- case 'ranking':
- return [null, null];
- break;
- default:
- if (!empty($stud_id)) {
- $scoreList = $link->getUserScoreList();
- $result = [0, $weight];
- if (isset($scoreList[$stud_id])) {
- $result = [$scoreList[$stud_id], $weight];
- }
- return $result;
- } else {
- $studentCount = count($this->getStudentList());
- $sumResult = array_sum($link->getUserScoreList());
- $result = [$sumResult, $studentCount];
- }
- return $result;
- break;
- }
- }
- }
- $tblStats = Database::get_main_table(TABLE_STATISTIC_TRACK_E_EXERCISES);
- $tblHp = Database::get_main_table(TABLE_STATISTIC_TRACK_E_HOTPOTATOES);
- $tblDoc = Database::get_course_table(TABLE_DOCUMENT);
- /* the following query should be similar (in conditions) to the one used
- in exercise/exercise.php, look for note-query-exe-results marker*/
- $sessionId = $this->get_session_id();
- $courseId = $this->getCourseId();
- $exerciseData = $this->get_exercise_data();
- $exerciseId = isset($exerciseData['id']) ? (int) $exerciseData['id'] : 0;
- $stud_id = (int) $stud_id;
- if (empty($exerciseId)) {
- return null;
- }
- $key = 'exercise_link_id:'.
- $this->get_id().
- 'exerciseId:'.$exerciseId.'student:'.$stud_id.'session:'.$sessionId.'courseId:'.$courseId.'type:'.$type;
- $useCache = api_get_configuration_value('gradebook_use_apcu_cache');
- $cacheAvailable = api_get_configuration_value('apc') && $useCache;
- $cacheDriver = null;
- if ($cacheAvailable) {
- $cacheDriver = new \Doctrine\Common\Cache\ApcuCache();
- if ($cacheDriver->contains($key)) {
- return $cacheDriver->fetch($key);
- }
- }
- $exercise = new Exercise($courseId);
- $exercise->read($exerciseId);
- if (!$this->is_hp) {
- if ($exercise->exercise_was_added_in_lp == false) {
- $sql = "SELECT * FROM $tblStats
- WHERE
- exe_exo_id = $exerciseId AND
- orig_lp_id = 0 AND
- orig_lp_item_id = 0 AND
- status <> 'incomplete' AND
- session_id = $sessionId AND
- c_id = $courseId
- ";
- } else {
- $lpId = null;
- if (!empty($exercise->lpList)) {
- // Taking only the first LP
- $lpId = current($exercise->lpList);
- $lpId = $lpId['lp_id'];
- }
- $sql = "SELECT *
- FROM $tblStats
- WHERE
- exe_exo_id = $exerciseId AND
- orig_lp_id = $lpId AND
- status <> 'incomplete' AND
- session_id = $sessionId AND
- c_id = $courseId ";
- }
- if (!empty($stud_id) && $type != 'ranking') {
- $sql .= " AND exe_user_id = $stud_id ";
- }
- $sql .= ' ORDER BY exe_id DESC';
- } else {
- $sql = "SELECT * FROM $tblHp hp
- INNER JOIN $tblDoc doc
- ON (hp.exe_name = doc.path AND doc.c_id = hp.c_id)
- WHERE
- hp.c_id = $courseId AND
- doc.id = $exerciseId";
- if (!empty($stud_id)) {
- $sql .= " AND hp.exe_user_id = $stud_id ";
- }
- }
- $scores = Database::query($sql);
- if (isset($stud_id) && empty($type)) {
- // for 1 student
- if ($data = Database::fetch_array($scores)) {
- $attempts = Database::query($sql);
- $counter = 0;
- while ($attempt = Database::fetch_array($attempts)) {
- $counter++;
- }
- $result = [$data['score'], $data['max_score'], $data['exe_date'], $counter];
- if ($cacheAvailable) {
- $cacheDriver->save($key, $result);
- }
- return $result;
- } else {
- if ($cacheAvailable) {
- $cacheDriver->save($key, null);
- }
- return null;
- }
- } else {
- // all students -> get average
- // normal way of getting the info
- $students = []; // user list, needed to make sure we only
- // take first attempts into account
- $student_count = 0;
- $sum = 0;
- $bestResult = 0;
- $weight = 0;
- $sumResult = 0;
- $studentList = $this->getStudentList();
- $studentIdList = [];
- if (!empty($studentList)) {
- $studentIdList = array_column($studentList, 'user_id');
- }
- while ($data = Database::fetch_array($scores, 'ASSOC')) {
- // Only take into account users in the current student list.
- if (!empty($studentIdList)) {
- if (!in_array($data['exe_user_id'], $studentIdList)) {
- continue;
- }
- }
- if (!isset($students[$data['exe_user_id']])) {
- if ($data['max_score'] != 0) {
- $students[$data['exe_user_id']] = $data['score'];
- $student_count++;
- if ($data['score'] > $bestResult) {
- $bestResult = $data['score'];
- }
- $sum += $data['score'] / $data['max_score'];
- $sumResult += $data['score'];
- $weight = $data['max_score'];
- }
- }
- }
- if ($student_count == 0) {
- if ($cacheAvailable) {
- $cacheDriver->save($key, null);
- }
- return null;
- } else {
- switch ($type) {
- case 'best':
- $result = [$bestResult, $weight];
- if ($cacheAvailable) {
- $cacheDriver->save($key, $result);
- }
- return $result;
- break;
- case 'average':
- $count = count($this->getStudentList());
- if (empty($count)) {
- $result = [0, $weight];
- if ($cacheAvailable) {
- $cacheDriver->save($key, $result);
- }
- return $result;
- }
- $result = [$sumResult / $count, $weight];
- if ($cacheAvailable) {
- $cacheDriver->save($key, $result);
- }
- return $result;
- break;
- case 'ranking':
- $ranking = AbstractLink::getCurrentUserRanking($stud_id, $students);
- if ($cacheAvailable) {
- $cacheDriver->save($key, $ranking);
- }
- return $ranking;
- break;
- default:
- $result = [$sum, $student_count];
- if ($cacheAvailable) {
- $cacheDriver->save($key, $result);
- }
- return $result;
- break;
- }
- }
- }
- }
- /**
- * Get URL where to go to if the user clicks on the link.
- * First we go to exercise_jump.php and then to the result page.
- * Check this php file for more info.
- */
- public function get_link()
- {
- $sessionId = $this->get_session_id();
- $data = $this->get_exercise_data();
- $exerciseId = $data['id'];
- $path = isset($data['path']) ? $data['path'] : '';
- $url = api_get_path(WEB_CODE_PATH).'gradebook/exercise_jump.php?'
- .http_build_query(
- [
- 'path' => $path,
- 'session_id' => $sessionId,
- 'cidReq' => $this->get_course_code(),
- 'gradebook' => 'view',
- 'exerciseId' => $exerciseId,
- 'type' => $this->get_type(),
- ]
- );
- return $url;
- }
- /**
- * Get name to display: same as exercise title.
- */
- public function get_name()
- {
- $documentPath = api_get_path(SYS_COURSE_PATH).$this->course_code.'/document';
- require_once api_get_path(SYS_CODE_PATH).'exercise/hotpotatoes.lib.php';
- $data = $this->get_exercise_data();
- if ($this->is_hp == 1) {
- if (isset($data['path'])) {
- $title = GetQuizName($data['path'], $documentPath);
- if ($title == '') {
- $title = basename($data['path']);
- }
- return $title;
- }
- }
- return $data['title'];
- }
- /**
- * Get description to display: same as exercise description.
- */
- public function get_description()
- {
- $data = $this->get_exercise_data();
- return isset($data['description']) ? $data['description'] : null;
- }
- /**
- * Check if this still links to an exercise.
- */
- public function is_valid_link()
- {
- $exerciseData = $this->get_exercise_data();
- return !empty($exerciseData);
- }
- /**
- * @return string
- */
- public function get_type_name()
- {
- if ($this->is_hp == 1) {
- return 'HotPotatoes';
- }
- return get_lang('Tests');
- }
- public function needs_name_and_description()
- {
- return false;
- }
- public function needs_max()
- {
- return false;
- }
- public function needs_results()
- {
- return false;
- }
- public function is_allowed_to_change_name()
- {
- return false;
- }
- /**
- * @return string
- */
- public function get_icon_name()
- {
- return 'exercise';
- }
- /**
- * @param bool $hp
- */
- public function setHp($hp)
- {
- $this->hp = $hp;
- }
- public function getBestScore()
- {
- return $this->getStats('best');
- }
- public function getStats($type)
- {
- switch ($type) {
- case 'best':
- break;
- }
- }
- /**
- * Lazy load function to get the database contents of this exercise.
- */
- public function get_exercise_data()
- {
- $tableItemProperty = Database::get_course_table(TABLE_ITEM_PROPERTY);
- if ($this->is_hp == 1) {
- $table = Database::get_course_table(TABLE_DOCUMENT);
- } else {
- $table = Database::get_course_table(TABLE_QUIZ_TEST);
- }
- $exerciseId = $this->get_ref_id();
- if (empty($this->exercise_data)) {
- if ($this->is_hp == 1) {
- $sql = "SELECT * FROM $table ex
- INNER JOIN $tableItemProperty ip
- ON (ip.ref = ex.id AND ip.c_id = ex.c_id)
- WHERE
- ip.c_id = $this->course_id AND
- ex.c_id = $this->course_id AND
- ip.ref = $exerciseId AND
- ip.tool = '".TOOL_DOCUMENT."' AND
- ex.path LIKE '%htm%' AND
- ex.path LIKE '%HotPotatoes_files%' AND
- ip.visibility = 1";
- $result = Database::query($sql);
- $this->exercise_data = Database::fetch_array($result);
- } else {
- // Try with iid
- $sql = 'SELECT * FROM '.$table.'
- WHERE
- c_id = '.$this->course_id.' AND
- iid = '.$exerciseId;
- $result = Database::query($sql);
- $rows = Database::num_rows($result);
- if (!empty($rows)) {
- $this->exercise_data = Database::fetch_array($result);
- } else {
- // Try wit id
- $sql = 'SELECT * FROM '.$table.'
- WHERE
- c_id = '.$this->course_id.' AND
- id = '.$exerciseId;
- $result = Database::query($sql);
- $this->exercise_data = Database::fetch_array($result);
- }
- }
- }
- if (empty($this->exercise_data)) {
- return false;
- }
- return $this->exercise_data;
- }
- /**
- * Lazy load function to get the database table of the exercise.
- */
- private function get_exercise_table()
- {
- $this->exercise_table = Database::get_course_table(TABLE_QUIZ_TEST);
- return $this->exercise_table;
- }
- }
|