123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693 |
- <?php
- /* For licensing terms, see /license.txt */
- use ChamiloSession as Session;
- /**
- * Class GradebookDataGenerator
- * Class to select, sort and transform object data into array data,
- * used for the general gradebook view.
- *
- * @author Bert Steppé
- *
- * @package chamilo.gradebook
- */
- class GradebookDataGenerator
- {
- // Sorting types constants
- const GDG_SORT_TYPE = 1;
- const GDG_SORT_NAME = 2;
- const GDG_SORT_DESCRIPTION = 4;
- const GDG_SORT_WEIGHT = 8;
- const GDG_SORT_DATE = 16;
- const GDG_SORT_ASC = 32;
- const GDG_SORT_DESC = 64;
- const GDG_SORT_ID = 128;
- public $userId;
- public $hidePercentage = false;
- public $items;
- public $preLoadDataKey;
- private $evals_links;
- /**
- * @param array $cats
- * @param array $evals
- * @param array $links
- */
- public function __construct($cats = [], $evals = [], $links = [])
- {
- $allcats = isset($cats) ? $cats : [];
- $allevals = isset($evals) ? $evals : [];
- $alllinks = isset($links) ? $links : [];
- // if we are in the root category and if there are sub categories
- // display only links depending of the root category and not link that belongs
- // to a sub category https://support.chamilo.org/issues/6602
- $tabLinkToDisplay = $alllinks;
- if (count($allcats) > 0) {
- // get sub categories id
- $tabCategories = [];
- for ($i = 0; $i < count($allcats); $i++) {
- $tabCategories[] = $allcats[$i]->get_id();
- }
- // dont display links that belongs to a sub category
- $tabLinkToDisplay = [];
- for ($i = 0; $i < count($alllinks); $i++) {
- if (!in_array($alllinks[$i]->get_category_id(), $tabCategories)) {
- $tabLinkToDisplay[] = $alllinks[$i];
- }
- }
- }
- // merge categories, evaluations and links
- $this->items = array_merge($allcats, $allevals, $tabLinkToDisplay);
- $this->evals_links = array_merge($allevals, $tabLinkToDisplay);
- $this->userId = api_get_user_id();
- }
- /**
- * Get total number of items (rows).
- *
- * @return int
- */
- public function get_total_items_count()
- {
- return count($this->items);
- }
- /**
- * Get actual array data.
- *
- * @param int $count
- *
- * @return array 2-dimensional array - each array contains the elements:
- * 0: cat/eval/link object
- * 1: item name
- * 2: description
- * 3: weight
- * 4: date
- * 5: student's score (if student logged in)
- */
- public function get_data(
- $sorting = 0,
- $start = 0,
- $count = null,
- $ignore_score_color = false,
- $studentList = [],
- $loadStats = true
- ) {
- // do some checks on count, redefine if invalid value
- if (!isset($count)) {
- $count = count($this->items) - $start;
- }
- if ($count < 0) {
- $count = 0;
- }
- $allitems = $this->items;
- usort($allitems, ['GradebookDataGenerator', 'sort_by_name']);
- $userId = $this->userId;
- // Get selected items
- $visibleItems = array_slice($allitems, $start, $count);
- $userCount = !empty($studentList) ? count($studentList) : 0;
- // Generate the data to display
- $data = [];
- $allowStats = api_get_configuration_value('allow_gradebook_stats');
- $scoreDisplay = ScoreDisplay::instance();
- $defaultData = Session::read($this->preLoadDataKey);
- $model = ExerciseLib::getCourseScoreModel();
- /** @var GradebookItem $item */
- foreach ($visibleItems as $item) {
- $row = [];
- $row[] = $item;
- $row[] = $item->get_name();
- // display the 2 first line of description and all description
- // on mouseover (https://support.chamilo.org/issues/6588)
- $row[] = '<span title="'.api_remove_tags_with_space($item->get_description()).'">'.
- api_get_short_text_from_html($item->get_description(), 160).'</span>';
- $row[] = $item->get_weight();
- $item->setStudentList($studentList);
- $itemType = get_class($item);
- switch ($itemType) {
- case 'Evaluation':
- // Items inside a category.
- $resultColumn = $this->build_result_column(
- $userId,
- $item,
- $ignore_score_color
- );
- $row[] = $resultColumn['display'];
- $row['result_score'] = $resultColumn['score'];
- $row['result_score_weight'] = $resultColumn['score_weight'];
- // Best
- if (isset($defaultData[$item->get_id()]) && isset($defaultData[$item->get_id()]['best'])) {
- $best = $defaultData[$item->get_id()]['best'];
- } else {
- $best = $this->buildBestResultColumn($item);
- }
- if (empty($model)) {
- $row['best'] = $best['display'];
- $row['best_score'] = $best['score'];
- // Average
- if (isset($defaultData[$item->get_id()]) && isset($defaultData[$item->get_id()]['average'])) {
- $average = $defaultData[$item->get_id()]['average'];
- } else {
- $average = $this->buildBestResultColumn($item);
- }
- $row['average'] = $average['display'];
- $row['average_score'] = $average['score'];
- // Ranking
- $ranking = $this->buildRankingColumn($item, $userId, $userCount);
- $row['ranking'] = $ranking['display'];
- $row['ranking_score'] = $ranking['score'];
- }
- $row[] = $item;
- break;
- case 'ExerciseLink':
- /** @var ExerciseLink $item */
- // Category.
- $result = $this->build_result_column(
- $userId,
- $item,
- $ignore_score_color,
- true
- );
- $row[] = $result['display'];
- $row['result_score'] = $result['score'];
- $row['result_score_weight'] = $result['score'];
- if (empty($model)) {
- // Best
- if (isset($defaultData[$item->get_id()]) && isset($defaultData[$item->get_id()]['best'])) {
- $best = $defaultData[$item->get_id()]['best'];
- } else {
- $best = $this->buildBestResultColumn($item);
- }
- $row['best'] = $best['display'];
- $row['best_score'] = $best['score'];
- $rankingStudentList = [];
- $invalidateResults = false;
- // Average
- if (isset($defaultData[$item->get_id()]) && isset($defaultData[$item->get_id()]['average'])) {
- $average = $defaultData[$item->get_id()]['average'];
- } else {
- $average = $this->buildAverageResultColumn($item);
- }
- $row['average'] = $average['display'];
- $row['average_score'] = $average['score'];
- // Ranking
- if ($allowStats) {
- // Ranking
- if (isset($defaultData[$item->get_id()]) &&
- isset($defaultData[$item->get_id()]['ranking'])
- ) {
- $rankingStudentList = $defaultData[$item->get_id()]['ranking'];
- $invalidateResults = $defaultData[$item->get_id()]['ranking_invalidate'];
- $score = AbstractLink::getCurrentUserRanking($userId, $rankingStudentList);
- } else {
- if (!empty($studentList)) {
- foreach ($studentList as $user) {
- $score = $this->build_result_column(
- $user['user_id'],
- $item,
- $ignore_score_color,
- true
- );
- if (!empty($score['score'][0])) {
- $invalidateResults = false;
- }
- $rankingStudentList[$user['user_id']] = $score['score'][0];
- }
- $defaultData[$item->get_id()]['ranking'] = $rankingStudentList;
- $defaultData[$item->get_id()]['ranking_invalidate'] = $invalidateResults;
- Session::write($this->preLoadDataKey, $defaultData);
- }
- $score = AbstractLink::getCurrentUserRanking($userId, $rankingStudentList);
- }
- } else {
- if (!empty($studentList)) {
- foreach ($studentList as $user) {
- $score = $this->build_result_column(
- $user['user_id'],
- $item,
- $ignore_score_color,
- true
- );
- if (!empty($score['score'][0])) {
- $invalidateResults = false;
- }
- $rankingStudentList[$user['user_id']] = $score['score'][0];
- }
- }
- $score = AbstractLink::getCurrentUserRanking($userId, $rankingStudentList);
- }
- $row['ranking'] = $scoreDisplay->display_score(
- $score,
- SCORE_DIV,
- SCORE_BOTH,
- true,
- true
- );
- if ($invalidateResults) {
- $row['ranking'] = null;
- }
- }
- break;
- default:
- // Category.
- $result = $this->build_result_column(
- $userId,
- $item,
- $ignore_score_color,
- true
- );
- $row[] = $result['display'];
- $row['result_score'] = $result['score'];
- $row['result_score_weight'] = $result['score'];
- if (empty($model)) {
- // Best
- if (isset($defaultData[$item->get_id()]) && isset($defaultData[$item->get_id()]['best'])) {
- $best = $defaultData[$item->get_id()]['best'];
- } else {
- $best = $this->buildBestResultColumn($item);
- }
- $row['best'] = $best['display'];
- $row['best_score'] = $best['score'];
- $rankingStudentList = [];
- $invalidateResults = true;
- // Average
- if (isset($defaultData[$item->get_id()]) && isset($defaultData[$item->get_id()]['average'])) {
- $average = $defaultData[$item->get_id()]['average'];
- } else {
- $average = $this->buildAverageResultColumn($item);
- }
- $row['average'] = $average['display'];
- $row['average_score'] = $average['score'];
- // Ranking
- if (isset($defaultData[$item->get_id()]) && isset($defaultData[$item->get_id()]['ranking'])) {
- $rankingStudentList = $defaultData[$item->get_id()]['ranking'];
- $invalidateResults = $defaultData[$item->get_id()]['ranking_invalidate'];
- $invalidateResults = false;
- $score = AbstractLink::getCurrentUserRanking($userId, $rankingStudentList);
- } else {
- if (!empty($studentList)) {
- foreach ($studentList as $user) {
- $score = $this->build_result_column(
- $user['user_id'],
- $item,
- $ignore_score_color,
- true
- );
- if (!empty($score['score'][0])) {
- $invalidateResults = false;
- }
- $rankingStudentList[$user['user_id']] = $score['score'][0];
- }
- }
- $score = AbstractLink::getCurrentUserRanking($userId, $rankingStudentList);
- }
- $row['ranking'] = $scoreDisplay->display_score(
- $score,
- SCORE_DIV,
- SCORE_BOTH,
- true,
- true
- );
- if ($invalidateResults) {
- $row['ranking'] = null;
- }
- }
- break;
- }
- $data[] = $row;
- }
- return $data;
- }
- /**
- * Returns the link to the certificate generation, if the score is enough, otherwise
- * returns an empty string. This only works with categories.
- *
- * @param object Item
- *
- * @return string
- */
- public function get_certificate_link($item)
- {
- if (is_a($item, 'Category')) {
- if ($item->is_certificate_available(api_get_user_id())) {
- $link = '<a href="'.Category::getUrl().'export_certificate=1&cat='.$item->get_id().'&user='.api_get_user_id().'">'.
- get_lang('Certificate').'</a>';
- return $link;
- }
- }
- return '';
- }
- /**
- * @param GradebookItem $item1
- * @param GradebookItem $item2
- *
- * @return int
- */
- public static function sort_by_name($item1, $item2)
- {
- return api_strnatcmp($item1->get_name(), $item2->get_name());
- }
- /**
- * @param GradebookItem $item1
- * @param GradebookItem $item2
- *
- * @return int
- */
- public function sort_by_id($item1, $item2)
- {
- return api_strnatcmp($item1->get_id(), $item2->get_id());
- }
- /**
- * @param GradebookItem $item1
- * @param GradebookItem $item2
- *
- * @return int
- */
- public function sort_by_type($item1, $item2)
- {
- if ($item1->get_item_type() == $item2->get_item_type()) {
- return $this->sort_by_name($item1, $item2);
- } else {
- return $item1->get_item_type() < $item2->get_item_type() ? -1 : 1;
- }
- }
- /**
- * @param GradebookItem $item1
- * @param GradebookItem $item2
- *
- * @return int
- */
- public function sort_by_description($item1, $item2)
- {
- $result = api_strcmp($item1->get_description(), $item2->get_description());
- if ($result == 0) {
- return $this->sort_by_name($item1, $item2);
- }
- return $result;
- }
- /**
- * @param GradebookItem $item1
- * @param GradebookItem $item2
- *
- * @return int
- */
- public function sort_by_weight($item1, $item2)
- {
- if ($item1->get_weight() == $item2->get_weight()) {
- return $this->sort_by_name($item1, $item2);
- } else {
- return $item1->get_weight() < $item2->get_weight() ? -1 : 1;
- }
- }
- /**
- * @param GradebookItem $item1
- * @param GradebookItem $item2
- *
- * @return int
- */
- public function sort_by_date($item1, $item2)
- {
- if (is_int($item1->get_date())) {
- $timestamp1 = $item1->get_date();
- } else {
- $date = $item1->get_date();
- if (!empty($date)) {
- $timestamp1 = api_strtotime($date, 'UTC');
- } else {
- $timestamp1 = null;
- }
- }
- if (is_int($item2->get_date())) {
- $timestamp2 = $item2->get_date();
- } else {
- $timestamp2 = api_strtotime($item2->get_date(), 'UTC');
- }
- if ($timestamp1 == $timestamp2) {
- return $this->sort_by_name($item1, $item2);
- } else {
- return $timestamp1 < $timestamp2 ? -1 : 1;
- }
- }
- /**
- * Get best result of an item.
- *
- * @param GradebookItem $item
- *
- * @return array
- */
- public function buildBestResultColumn(GradebookItem $item)
- {
- $score = $item->calc_score(
- null,
- 'best',
- api_get_course_id(),
- api_get_session_id()
- );
- $scoreMode = SCORE_DIV_PERCENT_WITH_CUSTOM;
- if ($this->hidePercentage) {
- $scoreMode = SCORE_DIV;
- }
- $scoreDisplay = ScoreDisplay::instance();
- $display = $scoreDisplay->display_score(
- $score,
- $scoreMode,
- SCORE_BOTH,
- true
- );
- $type = $item->get_item_type();
- if ($type == 'L' && get_class($item) === 'ExerciseLink') {
- $display = ExerciseLib::show_score($score[0], $score[1], false);
- }
- return [
- 'display' => $display,
- 'score' => $score,
- ];
- }
- /**
- * @param GradebookItem $item
- *
- * @return array
- */
- public function buildAverageResultColumn(GradebookItem $item)
- {
- $score = $item->calc_score(null, 'average');
- $scoreDisplay = ScoreDisplay::instance();
- $scoreMode = SCORE_DIV_PERCENT_WITH_CUSTOM;
- if ($this->hidePercentage) {
- $scoreMode = SCORE_DIV;
- }
- $display = $scoreDisplay->display_score(
- $score,
- $scoreMode,
- SCORE_BOTH,
- true
- );
- $type = $item->get_item_type();
- if ($type === 'L' && get_class($item) === 'ExerciseLink') {
- $display = ExerciseLib::show_score($score[0], $score[1], false);
- $result = ExerciseLib::convertScoreToPlatformSetting($score[0], $score[1]);
- $score[0] = $result['score'];
- $score[1] = $result['weight'];
- }
- return [
- 'display' => $display,
- 'score' => $score,
- ];
- }
- /**
- * @param GradebookItem $item
- * @param int $userId
- * @param int $userCount
- *
- * @return array
- */
- public function buildRankingColumn(GradebookItem $item, $userId = null, $userCount = 0)
- {
- $score = $item->calc_score($userId, 'ranking');
- $score[1] = $userCount;
- $scoreDisplay = null;
- if (isset($score[0])) {
- $scoreDisplay = ScoreDisplay::instance();
- $scoreDisplay = $scoreDisplay->display_score(
- $score,
- SCORE_DIV,
- SCORE_BOTH,
- false,
- true
- );
- }
- return [
- 'display' => $scoreDisplay,
- 'score' => $score,
- ];
- }
- /**
- * @param int $userId
- * @param GradebookItem $item
- * @param bool $ignore_score_color
- *
- * @return string|null
- */
- public function build_result_column(
- $userId,
- $item,
- $ignore_score_color,
- $forceSimpleResult = false
- ) {
- $scoreDisplay = ScoreDisplay::instance();
- $score = $item->calc_score($userId);
- $model = ExerciseLib::getCourseScoreModel();
- if (!empty($score)) {
- switch ($item->get_item_type()) {
- // category
- case 'C':
- if ($score != null) {
- if (empty($model)) {
- return [
- 'display' => $scoreDisplay->display_score(
- $score,
- SCORE_DIV
- ),
- 'score' => $score,
- 'score_weight' => $score,
- ];
- } else {
- $display = ExerciseLib::show_score(
- $score[0],
- $score[1],
- false
- );
- return [
- 'display' => $display,
- 'score' => $score,
- 'score_weight' => $score,
- ];
- }
- } else {
- return [
- 'display' => null,
- 'score' => $score,
- 'score_weight' => $score,
- ];
- }
- break;
- case 'E':
- case 'L':
- $scoreWeight = [
- ($score[1] > 0) ? $score[0] / $score[1] * $item->get_weight() : 0,
- $item->get_weight(),
- ];
- if (empty($model)) {
- $display = $scoreDisplay->display_score(
- $score,
- SCORE_DIV_PERCENT_WITH_CUSTOM
- );
- $type = $item->get_item_type();
- if ($type == 'L' && get_class($item) == 'ExerciseLink') {
- $display = ExerciseLib::show_score(
- $score[0],
- $score[1],
- false
- );
- }
- } else {
- $display = ExerciseLib::show_score(
- $score[0],
- $score[1],
- false
- );
- }
- return [
- 'display' => $display,
- 'score' => $score,
- 'score_weight' => $scoreWeight,
- ];
- }
- }
- return [
- 'display' => null,
- 'score' => null,
- 'score_weight' => null,
- ];
- }
- /**
- * @param GradebookItem $item
- *
- * @return string
- */
- private function build_date_column($item)
- {
- $date = $item->get_date();
- if (!isset($date) || empty($date)) {
- return '';
- } else {
- if (is_int($date)) {
- return api_convert_and_format_date($date);
- } else {
- return api_format_date($date);
- }
- }
- }
- }
|