1<?php 2// This file is part of Moodle - http://moodle.org/ 3// 4// Moodle is free software: you can redistribute it and/or modify 5// it under the terms of the GNU General Public License as published by 6// the Free Software Foundation, either version 3 of the License, or 7// (at your option) any later version. 8// 9// Moodle is distributed in the hope that it will be useful, 10// but WITHOUT ANY WARRANTY; without even the implied warranty of 11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12// GNU General Public License for more details. 13// 14// You should have received a copy of the GNU General Public License 15// along with Moodle. If not, see <http://www.gnu.org/licenses/>. 16 17/** 18 * Contains classes, functions and constants used during the tracking 19 * of activity completion for users. 20 * 21 * Completion top-level options (admin setting enablecompletion) 22 * 23 * @package core_completion 24 * @category completion 25 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com} 26 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 27 */ 28 29use core_completion\activity_custom_completion; 30 31defined('MOODLE_INTERNAL') || die(); 32 33/** 34 * Include the required completion libraries 35 */ 36require_once $CFG->dirroot.'/completion/completion_aggregation.php'; 37require_once $CFG->dirroot.'/completion/criteria/completion_criteria.php'; 38require_once $CFG->dirroot.'/completion/completion_completion.php'; 39require_once $CFG->dirroot.'/completion/completion_criteria_completion.php'; 40 41 42/** 43 * The completion system is enabled in this site/course 44 */ 45define('COMPLETION_ENABLED', 1); 46/** 47 * The completion system is not enabled in this site/course 48 */ 49define('COMPLETION_DISABLED', 0); 50 51/** 52 * Completion tracking is disabled for this activity 53 * This is a completion tracking option per-activity (course_modules/completion) 54 */ 55define('COMPLETION_TRACKING_NONE', 0); 56 57/** 58 * Manual completion tracking (user ticks box) is enabled for this activity 59 * This is a completion tracking option per-activity (course_modules/completion) 60 */ 61define('COMPLETION_TRACKING_MANUAL', 1); 62/** 63 * Automatic completion tracking (system ticks box) is enabled for this activity 64 * This is a completion tracking option per-activity (course_modules/completion) 65 */ 66define('COMPLETION_TRACKING_AUTOMATIC', 2); 67 68/** 69 * The user has not completed this activity. 70 * This is a completion state value (course_modules_completion/completionstate) 71 */ 72define('COMPLETION_INCOMPLETE', 0); 73/** 74 * The user has completed this activity. It is not specified whether they have 75 * passed or failed it. 76 * This is a completion state value (course_modules_completion/completionstate) 77 */ 78define('COMPLETION_COMPLETE', 1); 79/** 80 * The user has completed this activity with a grade above the pass mark. 81 * This is a completion state value (course_modules_completion/completionstate) 82 */ 83define('COMPLETION_COMPLETE_PASS', 2); 84/** 85 * The user has completed this activity but their grade is less than the pass mark 86 * This is a completion state value (course_modules_completion/completionstate) 87 */ 88define('COMPLETION_COMPLETE_FAIL', 3); 89 90/** 91 * The effect of this change to completion status is unknown. 92 * A completion effect changes (used only in update_state) 93 */ 94define('COMPLETION_UNKNOWN', -1); 95/** 96 * The user's grade has changed, so their new state might be 97 * COMPLETION_COMPLETE_PASS or COMPLETION_COMPLETE_FAIL. 98 * A completion effect changes (used only in update_state) 99 */ 100define('COMPLETION_GRADECHANGE', -2); 101 102/** 103 * User must view this activity. 104 * Whether view is required to create an activity (course_modules/completionview) 105 */ 106define('COMPLETION_VIEW_REQUIRED', 1); 107/** 108 * User does not need to view this activity 109 * Whether view is required to create an activity (course_modules/completionview) 110 */ 111define('COMPLETION_VIEW_NOT_REQUIRED', 0); 112 113/** 114 * User has viewed this activity. 115 * Completion viewed state (course_modules_completion/viewed) 116 */ 117define('COMPLETION_VIEWED', 1); 118/** 119 * User has not viewed this activity. 120 * Completion viewed state (course_modules_completion/viewed) 121 */ 122define('COMPLETION_NOT_VIEWED', 0); 123 124/** 125 * Completion details should be ORed together and you should return false if 126 * none apply. 127 */ 128define('COMPLETION_OR', false); 129/** 130 * Completion details should be ANDed together and you should return true if 131 * none apply 132 */ 133define('COMPLETION_AND', true); 134 135/** 136 * Course completion criteria aggregation method. 137 */ 138define('COMPLETION_AGGREGATION_ALL', 1); 139/** 140 * Course completion criteria aggregation method. 141 */ 142define('COMPLETION_AGGREGATION_ANY', 2); 143 144/** 145 * Completion conditions will be displayed to user. 146 */ 147define('COMPLETION_SHOW_CONDITIONS', 1); 148 149/** 150 * Completion conditions will be hidden from user. 151 */ 152define('COMPLETION_HIDE_CONDITIONS', 0); 153 154/** 155 * Utility function for checking if the logged in user can view 156 * another's completion data for a particular course 157 * 158 * @access public 159 * @param int $userid Completion data's owner 160 * @param mixed $course Course object or Course ID (optional) 161 * @return boolean 162 */ 163function completion_can_view_data($userid, $course = null) { 164 global $USER; 165 166 if (!isloggedin()) { 167 return false; 168 } 169 170 if (!is_object($course)) { 171 $cid = $course; 172 $course = new stdClass(); 173 $course->id = $cid; 174 } 175 176 // Check if this is the site course 177 if ($course->id == SITEID) { 178 $course = null; 179 } 180 181 // Check if completion is enabled 182 if ($course) { 183 $cinfo = new completion_info($course); 184 if (!$cinfo->is_enabled()) { 185 return false; 186 } 187 } else { 188 if (!completion_info::is_enabled_for_site()) { 189 return false; 190 } 191 } 192 193 // Is own user's data? 194 if ($USER->id == $userid) { 195 return true; 196 } 197 198 // Check capabilities 199 $personalcontext = context_user::instance($userid); 200 201 if (has_capability('moodle/user:viewuseractivitiesreport', $personalcontext)) { 202 return true; 203 } elseif (has_capability('report/completion:view', $personalcontext)) { 204 return true; 205 } 206 207 if ($course->id) { 208 $coursecontext = context_course::instance($course->id); 209 } else { 210 $coursecontext = context_system::instance(); 211 } 212 213 if (has_capability('report/completion:view', $coursecontext)) { 214 return true; 215 } 216 217 return false; 218} 219 220 221/** 222 * Class represents completion information for a course. 223 * 224 * Does not contain any data, so you can safely construct it multiple times 225 * without causing any problems. 226 * 227 * @package core 228 * @category completion 229 * @copyright 2008 Sam Marshall 230 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 231 */ 232class completion_info { 233 234 /* @var stdClass Course object passed during construction */ 235 private $course; 236 237 /* @var int Course id */ 238 public $course_id; 239 240 /* @var array Completion criteria {@link completion_info::get_criteria()} */ 241 private $criteria; 242 243 /** 244 * Return array of aggregation methods 245 * @return array 246 */ 247 public static function get_aggregation_methods() { 248 return array( 249 COMPLETION_AGGREGATION_ALL => get_string('all'), 250 COMPLETION_AGGREGATION_ANY => get_string('any', 'completion'), 251 ); 252 } 253 254 /** 255 * Constructs with course details. 256 * 257 * When instantiating a new completion info object you must provide a course 258 * object with at least id, and enablecompletion properties. Property 259 * cacherev is needed if you check completion of the current user since 260 * it is used for cache validation. 261 * 262 * @param stdClass $course Moodle course object. 263 */ 264 public function __construct($course) { 265 $this->course = $course; 266 $this->course_id = $course->id; 267 } 268 269 /** 270 * Determines whether completion is enabled across entire site. 271 * 272 * @return bool COMPLETION_ENABLED (true) if completion is enabled for the site, 273 * COMPLETION_DISABLED (false) if it's complete 274 */ 275 public static function is_enabled_for_site() { 276 global $CFG; 277 return !empty($CFG->enablecompletion); 278 } 279 280 /** 281 * Checks whether completion is enabled in a particular course and possibly 282 * activity. 283 * 284 * @param stdClass|cm_info $cm Course-module object. If not specified, returns the course 285 * completion enable state. 286 * @return mixed COMPLETION_ENABLED or COMPLETION_DISABLED (==0) in the case of 287 * site and course; COMPLETION_TRACKING_MANUAL, _AUTOMATIC or _NONE (==0) 288 * for a course-module. 289 */ 290 public function is_enabled($cm = null) { 291 global $CFG, $DB; 292 293 // First check global completion 294 if (!isset($CFG->enablecompletion) || $CFG->enablecompletion == COMPLETION_DISABLED) { 295 return COMPLETION_DISABLED; 296 } 297 298 // Load data if we do not have enough 299 if (!isset($this->course->enablecompletion)) { 300 $this->course = get_course($this->course_id); 301 } 302 303 // Check course completion 304 if ($this->course->enablecompletion == COMPLETION_DISABLED) { 305 return COMPLETION_DISABLED; 306 } 307 308 // If there was no $cm and we got this far, then it's enabled 309 if (!$cm) { 310 return COMPLETION_ENABLED; 311 } 312 313 // Return course-module completion value 314 return $cm->completion; 315 } 316 317 /** 318 * Displays the 'Your progress' help icon, if completion tracking is enabled. 319 * Just prints the result of display_help_icon(). 320 * 321 * @deprecated since Moodle 2.0 - Use display_help_icon instead. 322 */ 323 public function print_help_icon() { 324 print $this->display_help_icon(); 325 } 326 327 /** 328 * Returns the 'Your progress' help icon, if completion tracking is enabled. 329 * 330 * @return string HTML code for help icon, or blank if not needed 331 */ 332 public function display_help_icon() { 333 global $PAGE, $OUTPUT, $USER; 334 $result = ''; 335 if ($this->is_enabled() && !$PAGE->user_is_editing() && $this->is_tracked_user($USER->id) && isloggedin() && 336 !isguestuser()) { 337 $result .= html_writer::tag('div', get_string('yourprogress','completion') . 338 $OUTPUT->help_icon('completionicons', 'completion'), array('id' => 'completionprogressid', 339 'class' => 'completionprogress')); 340 } 341 return $result; 342 } 343 344 /** 345 * Get a course completion for a user 346 * 347 * @param int $user_id User id 348 * @param int $criteriatype Specific criteria type to return 349 * @return bool|completion_criteria_completion returns false on fail 350 */ 351 public function get_completion($user_id, $criteriatype) { 352 $completions = $this->get_completions($user_id, $criteriatype); 353 354 if (empty($completions)) { 355 return false; 356 } elseif (count($completions) > 1) { 357 print_error('multipleselfcompletioncriteria', 'completion'); 358 } 359 360 return $completions[0]; 361 } 362 363 /** 364 * Get all course criteria's completion objects for a user 365 * 366 * @param int $user_id User id 367 * @param int $criteriatype Specific criteria type to return (optional) 368 * @return array 369 */ 370 public function get_completions($user_id, $criteriatype = null) { 371 $criteria = $this->get_criteria($criteriatype); 372 373 $completions = array(); 374 375 foreach ($criteria as $criterion) { 376 $params = array( 377 'course' => $this->course_id, 378 'userid' => $user_id, 379 'criteriaid' => $criterion->id 380 ); 381 382 $completion = new completion_criteria_completion($params); 383 $completion->attach_criteria($criterion); 384 385 $completions[] = $completion; 386 } 387 388 return $completions; 389 } 390 391 /** 392 * Get completion object for a user and a criteria 393 * 394 * @param int $user_id User id 395 * @param completion_criteria $criteria Criteria object 396 * @return completion_criteria_completion 397 */ 398 public function get_user_completion($user_id, $criteria) { 399 $params = array( 400 'course' => $this->course_id, 401 'userid' => $user_id, 402 'criteriaid' => $criteria->id, 403 ); 404 405 $completion = new completion_criteria_completion($params); 406 return $completion; 407 } 408 409 /** 410 * Check if course has completion criteria set 411 * 412 * @return bool Returns true if there are criteria 413 */ 414 public function has_criteria() { 415 $criteria = $this->get_criteria(); 416 417 return (bool) count($criteria); 418 } 419 420 /** 421 * Get course completion criteria 422 * 423 * @param int $criteriatype Specific criteria type to return (optional) 424 */ 425 public function get_criteria($criteriatype = null) { 426 427 // Fill cache if empty 428 if (!is_array($this->criteria)) { 429 global $DB; 430 431 $params = array( 432 'course' => $this->course->id 433 ); 434 435 // Load criteria from database 436 $records = (array)$DB->get_records('course_completion_criteria', $params); 437 438 // Order records so activities are in the same order as they appear on the course view page. 439 if ($records) { 440 $activitiesorder = array_keys(get_fast_modinfo($this->course)->get_cms()); 441 usort($records, function ($a, $b) use ($activitiesorder) { 442 $aidx = ($a->criteriatype == COMPLETION_CRITERIA_TYPE_ACTIVITY) ? 443 array_search($a->moduleinstance, $activitiesorder) : false; 444 $bidx = ($b->criteriatype == COMPLETION_CRITERIA_TYPE_ACTIVITY) ? 445 array_search($b->moduleinstance, $activitiesorder) : false; 446 if ($aidx === false || $bidx === false || $aidx == $bidx) { 447 return 0; 448 } 449 return ($aidx < $bidx) ? -1 : 1; 450 }); 451 } 452 453 // Build array of criteria objects 454 $this->criteria = array(); 455 foreach ($records as $record) { 456 $this->criteria[$record->id] = completion_criteria::factory((array)$record); 457 } 458 } 459 460 // If after all criteria 461 if ($criteriatype === null) { 462 return $this->criteria; 463 } 464 465 // If we are only after a specific criteria type 466 $criteria = array(); 467 foreach ($this->criteria as $criterion) { 468 469 if ($criterion->criteriatype != $criteriatype) { 470 continue; 471 } 472 473 $criteria[$criterion->id] = $criterion; 474 } 475 476 return $criteria; 477 } 478 479 /** 480 * Get aggregation method 481 * 482 * @param int $criteriatype If none supplied, get overall aggregation method (optional) 483 * @return int One of COMPLETION_AGGREGATION_ALL or COMPLETION_AGGREGATION_ANY 484 */ 485 public function get_aggregation_method($criteriatype = null) { 486 $params = array( 487 'course' => $this->course_id, 488 'criteriatype' => $criteriatype 489 ); 490 491 $aggregation = new completion_aggregation($params); 492 493 if (!$aggregation->id) { 494 $aggregation->method = COMPLETION_AGGREGATION_ALL; 495 } 496 497 return $aggregation->method; 498 } 499 500 /** 501 * @deprecated since Moodle 2.8 MDL-46290. 502 */ 503 public function get_incomplete_criteria() { 504 throw new coding_exception('completion_info->get_incomplete_criteria() is removed.'); 505 } 506 507 /** 508 * Clear old course completion criteria 509 */ 510 public function clear_criteria() { 511 global $DB; 512 513 // Remove completion criteria records for the course itself, and any records that refer to the course. 514 $select = 'course = :course OR (criteriatype = :type AND courseinstance = :courseinstance)'; 515 $params = [ 516 'course' => $this->course_id, 517 'type' => COMPLETION_CRITERIA_TYPE_COURSE, 518 'courseinstance' => $this->course_id, 519 ]; 520 521 $DB->delete_records_select('course_completion_criteria', $select, $params); 522 $DB->delete_records('course_completion_aggr_methd', array('course' => $this->course_id)); 523 524 $this->delete_course_completion_data(); 525 } 526 527 /** 528 * Has the supplied user completed this course 529 * 530 * @param int $user_id User's id 531 * @return boolean 532 */ 533 public function is_course_complete($user_id) { 534 $params = array( 535 'userid' => $user_id, 536 'course' => $this->course_id 537 ); 538 539 $ccompletion = new completion_completion($params); 540 return $ccompletion->is_complete(); 541 } 542 543 /** 544 * Check whether the supplied user can override the activity completion statuses within the current course. 545 * 546 * @param stdClass $user The user object. 547 * @return bool True if the user can override, false otherwise. 548 */ 549 public function user_can_override_completion($user) { 550 return has_capability('moodle/course:overridecompletion', context_course::instance($this->course_id), $user); 551 } 552 553 /** 554 * Updates (if necessary) the completion state of activity $cm for the given 555 * user. 556 * 557 * For manual completion, this function is called when completion is toggled 558 * with $possibleresult set to the target state. 559 * 560 * For automatic completion, this function should be called every time a module 561 * does something which might influence a user's completion state. For example, 562 * if a forum provides options for marking itself 'completed' once a user makes 563 * N posts, this function should be called every time a user makes a new post. 564 * [After the post has been saved to the database]. When calling, you do not 565 * need to pass in the new completion state. Instead this function carries out completion 566 * calculation by checking grades and viewed state itself, and calling the involved module 567 * via mod_{modulename}\\completion\\custom_completion::get_overall_completion_state() to 568 * check module-specific conditions. 569 * 570 * @param stdClass|cm_info $cm Course-module 571 * @param int $possibleresult Expected completion result. If the event that 572 * has just occurred (e.g. add post) can only result in making the activity 573 * complete when it wasn't before, use COMPLETION_COMPLETE. If the event that 574 * has just occurred (e.g. delete post) can only result in making the activity 575 * not complete when it was previously complete, use COMPLETION_INCOMPLETE. 576 * Otherwise use COMPLETION_UNKNOWN. Setting this value to something other than 577 * COMPLETION_UNKNOWN significantly improves performance because it will abandon 578 * processing early if the user's completion state already matches the expected 579 * result. For manual events, COMPLETION_COMPLETE or COMPLETION_INCOMPLETE 580 * must be used; these directly set the specified state. 581 * @param int $userid User ID to be updated. Default 0 = current user 582 * @param bool $override Whether manually overriding the existing completion state. 583 * @return void 584 * @throws moodle_exception if trying to override without permission. 585 */ 586 public function update_state($cm, $possibleresult=COMPLETION_UNKNOWN, $userid=0, $override = false) { 587 global $USER; 588 589 // Do nothing if completion is not enabled for that activity 590 if (!$this->is_enabled($cm)) { 591 return; 592 } 593 594 // If we're processing an override and the current user isn't allowed to do so, then throw an exception. 595 if ($override) { 596 if (!$this->user_can_override_completion($USER)) { 597 throw new required_capability_exception(context_course::instance($this->course_id), 598 'moodle/course:overridecompletion', 'nopermission', ''); 599 } 600 } 601 602 // Default to current user if one is not provided. 603 if ($userid == 0) { 604 $userid = $USER->id; 605 } 606 607 // Delete the cm's cached completion data for this user if automatic completion is enabled. 608 // This ensures any changes to the status of individual completion conditions in the activity will be fetched. 609 if ($cm->completion == COMPLETION_TRACKING_AUTOMATIC) { 610 $completioncache = cache::make('core', 'completion'); 611 $completionkey = $userid . '_' . $this->course->id; 612 $completiondata = $completioncache->get($completionkey); 613 614 if ($completiondata !== false) { 615 unset($completiondata[$cm->id]); 616 $completioncache->set($completionkey, $completiondata); 617 } 618 } 619 620 // Get current value of completion state and do nothing if it's same as 621 // the possible result of this change. If the change is to COMPLETE and the 622 // current value is one of the COMPLETE_xx subtypes, ignore that as well 623 $current = $this->get_data($cm, false, $userid); 624 if ($possibleresult == $current->completionstate || 625 ($possibleresult == COMPLETION_COMPLETE && 626 ($current->completionstate == COMPLETION_COMPLETE_PASS || 627 $current->completionstate == COMPLETION_COMPLETE_FAIL))) { 628 return; 629 } 630 631 // For auto tracking, if the status is overridden to 'COMPLETION_COMPLETE', then disallow further changes, 632 // unless processing another override. 633 // Basically, we want those activities which have been overridden to COMPLETE to hold state, and those which have been 634 // overridden to INCOMPLETE to still be processed by normal completion triggers. 635 if ($cm->completion == COMPLETION_TRACKING_AUTOMATIC && !is_null($current->overrideby) 636 && $current->completionstate == COMPLETION_COMPLETE && !$override) { 637 return; 638 } 639 640 // For manual tracking, or if overriding the completion state, we set the state directly. 641 if ($cm->completion == COMPLETION_TRACKING_MANUAL || $override) { 642 switch($possibleresult) { 643 case COMPLETION_COMPLETE: 644 case COMPLETION_INCOMPLETE: 645 $newstate = $possibleresult; 646 break; 647 default: 648 $this->internal_systemerror("Unexpected manual completion state for {$cm->id}: $possibleresult"); 649 } 650 651 } else { 652 $newstate = $this->internal_get_state($cm, $userid, $current); 653 } 654 655 // If the overall completion state has changed, update it in the cache. 656 if ($newstate != $current->completionstate) { 657 $current->completionstate = $newstate; 658 $current->timemodified = time(); 659 $current->overrideby = $override ? $USER->id : null; 660 $this->internal_set_data($cm, $current); 661 } 662 } 663 664 /** 665 * Calculates the completion state for an activity and user. 666 * 667 * Internal function. Not private, so we can unit-test it. 668 * 669 * @param stdClass|cm_info $cm Activity 670 * @param int $userid ID of user 671 * @param stdClass $current Previous completion information from database 672 * @return mixed 673 */ 674 public function internal_get_state($cm, $userid, $current) { 675 global $USER, $DB; 676 677 // Get user ID 678 if (!$userid) { 679 $userid = $USER->id; 680 } 681 682 // Check viewed 683 if ($cm->completionview == COMPLETION_VIEW_REQUIRED && 684 $current->viewed == COMPLETION_NOT_VIEWED) { 685 686 return COMPLETION_INCOMPLETE; 687 } 688 689 if ($cm instanceof stdClass) { 690 // Modname hopefully is provided in $cm but just in case it isn't, let's grab it. 691 if (!isset($cm->modname)) { 692 $cm->modname = $DB->get_field('modules', 'name', array('id' => $cm->module)); 693 } 694 // Some functions call this method and pass $cm as an object with ID only. Make sure course is set as well. 695 if (!isset($cm->course)) { 696 $cm->course = $this->course_id; 697 } 698 } 699 // Make sure we're using a cm_info object. 700 $cminfo = cm_info::create($cm, $userid); 701 702 $newstate = COMPLETION_COMPLETE; 703 704 // Check grade 705 if (!is_null($cminfo->completiongradeitemnumber)) { 706 $newstate = $this->get_grade_completion($cminfo, $userid); 707 if ($newstate == COMPLETION_INCOMPLETE) { 708 return COMPLETION_INCOMPLETE; 709 } 710 } 711 712 if (plugin_supports('mod', $cminfo->modname, FEATURE_COMPLETION_HAS_RULES)) { 713 $cmcompletionclass = activity_custom_completion::get_cm_completion_class($cminfo->modname); 714 if ($cmcompletionclass) { 715 /** @var activity_custom_completion $cmcompletion */ 716 $cmcompletion = new $cmcompletionclass($cminfo, $userid); 717 if ($cmcompletion->get_overall_completion_state() == COMPLETION_INCOMPLETE) { 718 return COMPLETION_INCOMPLETE; 719 } 720 } else { 721 // Fallback to the get_completion_state callback. 722 $cmcompletionclass = "mod_{$cminfo->modname}\\completion\\custom_completion"; 723 $function = $cminfo->modname . '_get_completion_state'; 724 if (!function_exists($function)) { 725 $this->internal_systemerror("Module {$cminfo->modname} claims to support FEATURE_COMPLETION_HAS_RULES " . 726 "but does not implement the custom completion class $cmcompletionclass which extends " . 727 "\core_completion\activity_custom_completion."); 728 } 729 debugging("*_get_completion_state() callback functions such as $function have been deprecated and should no " . 730 "longer be used. Please implement the custom completion class $cmcompletionclass which extends " . 731 "\core_completion\activity_custom_completion.", DEBUG_DEVELOPER); 732 if (!$function($this->course, $cminfo, $userid, COMPLETION_AND)) { 733 return COMPLETION_INCOMPLETE; 734 } 735 } 736 } 737 738 return $newstate; 739 740 } 741 742 /** 743 * Fetches the completion state for an activity completion's require grade completion requirement. 744 * 745 * @param cm_info $cm The course module information. 746 * @param int $userid The user ID. 747 * @return int The completion state. 748 */ 749 public function get_grade_completion(cm_info $cm, int $userid): int { 750 global $CFG; 751 752 require_once($CFG->libdir . '/gradelib.php'); 753 $item = grade_item::fetch([ 754 'courseid' => $cm->course, 755 'itemtype' => 'mod', 756 'itemmodule' => $cm->modname, 757 'iteminstance' => $cm->instance, 758 'itemnumber' => $cm->completiongradeitemnumber 759 ]); 760 if ($item) { 761 // Fetch 'grades' (will be one or none). 762 $grades = grade_grade::fetch_users_grades($item, [$userid], false); 763 if (empty($grades)) { 764 // No grade for user. 765 return COMPLETION_INCOMPLETE; 766 } 767 if (count($grades) > 1) { 768 $this->internal_systemerror("Unexpected result: multiple grades for 769 item '{$item->id}', user '{$userid}'"); 770 } 771 return self::internal_get_grade_state($item, reset($grades)); 772 } 773 774 return COMPLETION_INCOMPLETE; 775 } 776 777 /** 778 * Marks a module as viewed. 779 * 780 * Should be called whenever a module is 'viewed' (it is up to the module how to 781 * determine that). Has no effect if viewing is not set as a completion condition. 782 * 783 * Note that this function must be called before you print the page header because 784 * it is possible that the navigation block may depend on it. If you call it after 785 * printing the header, it shows a developer debug warning. 786 * 787 * @param stdClass|cm_info $cm Activity 788 * @param int $userid User ID or 0 (default) for current user 789 * @return void 790 */ 791 public function set_module_viewed($cm, $userid=0) { 792 global $PAGE; 793 if ($PAGE->headerprinted) { 794 debugging('set_module_viewed must be called before header is printed', 795 DEBUG_DEVELOPER); 796 } 797 798 // Don't do anything if view condition is not turned on 799 if ($cm->completionview == COMPLETION_VIEW_NOT_REQUIRED || !$this->is_enabled($cm)) { 800 return; 801 } 802 803 // Get current completion state 804 $data = $this->get_data($cm, false, $userid); 805 806 // If we already viewed it, don't do anything unless the completion status is overridden. 807 // If the completion status is overridden, then we need to allow this 'view' to trigger automatic completion again. 808 if ($data->viewed == COMPLETION_VIEWED && empty($data->overrideby)) { 809 return; 810 } 811 812 // OK, change state, save it, and update completion 813 $data->viewed = COMPLETION_VIEWED; 814 $this->internal_set_data($cm, $data); 815 $this->update_state($cm, COMPLETION_COMPLETE, $userid); 816 } 817 818 /** 819 * Determines how much completion data exists for an activity. This is used when 820 * deciding whether completion information should be 'locked' in the module 821 * editing form. 822 * 823 * @param cm_info $cm Activity 824 * @return int The number of users who have completion data stored for this 825 * activity, 0 if none 826 */ 827 public function count_user_data($cm) { 828 global $DB; 829 830 return $DB->get_field_sql(" 831 SELECT 832 COUNT(1) 833 FROM 834 {course_modules_completion} 835 WHERE 836 coursemoduleid=? AND completionstate<>0", array($cm->id)); 837 } 838 839 /** 840 * Determines how much course completion data exists for a course. This is used when 841 * deciding whether completion information should be 'locked' in the completion 842 * settings form and activity completion settings. 843 * 844 * @param int $user_id Optionally only get course completion data for a single user 845 * @return int The number of users who have completion data stored for this 846 * course, 0 if none 847 */ 848 public function count_course_user_data($user_id = null) { 849 global $DB; 850 851 $sql = ' 852 SELECT 853 COUNT(1) 854 FROM 855 {course_completion_crit_compl} 856 WHERE 857 course = ? 858 '; 859 860 $params = array($this->course_id); 861 862 // Limit data to a single user if an ID is supplied 863 if ($user_id) { 864 $sql .= ' AND userid = ?'; 865 $params[] = $user_id; 866 } 867 868 return $DB->get_field_sql($sql, $params); 869 } 870 871 /** 872 * Check if this course's completion criteria should be locked 873 * 874 * @return boolean 875 */ 876 public function is_course_locked() { 877 return (bool) $this->count_course_user_data(); 878 } 879 880 /** 881 * Deletes all course completion completion data. 882 * 883 * Intended to be used when unlocking completion criteria settings. 884 */ 885 public function delete_course_completion_data() { 886 global $DB; 887 888 $DB->delete_records('course_completions', array('course' => $this->course_id)); 889 $DB->delete_records('course_completion_crit_compl', array('course' => $this->course_id)); 890 891 // Difficult to find affected users, just purge all completion cache. 892 cache::make('core', 'completion')->purge(); 893 cache::make('core', 'coursecompletion')->purge(); 894 } 895 896 /** 897 * Deletes all activity and course completion data for an entire course 898 * (the below delete_all_state function does this for a single activity). 899 * 900 * Used by course reset page. 901 */ 902 public function delete_all_completion_data() { 903 global $DB; 904 905 // Delete from database. 906 $DB->delete_records_select('course_modules_completion', 907 'coursemoduleid IN (SELECT id FROM {course_modules} WHERE course=?)', 908 array($this->course_id)); 909 910 // Wipe course completion data too. 911 $this->delete_course_completion_data(); 912 } 913 914 /** 915 * Deletes completion state related to an activity for all users. 916 * 917 * Intended for use only when the activity itself is deleted. 918 * 919 * @param stdClass|cm_info $cm Activity 920 */ 921 public function delete_all_state($cm) { 922 global $DB; 923 924 // Delete from database 925 $DB->delete_records('course_modules_completion', array('coursemoduleid'=>$cm->id)); 926 927 // Check if there is an associated course completion criteria 928 $criteria = $this->get_criteria(COMPLETION_CRITERIA_TYPE_ACTIVITY); 929 $acriteria = false; 930 foreach ($criteria as $criterion) { 931 if ($criterion->moduleinstance == $cm->id) { 932 $acriteria = $criterion; 933 break; 934 } 935 } 936 937 if ($acriteria) { 938 // Delete all criteria completions relating to this activity 939 $DB->delete_records('course_completion_crit_compl', array('course' => $this->course_id, 'criteriaid' => $acriteria->id)); 940 $DB->delete_records('course_completions', array('course' => $this->course_id)); 941 } 942 943 // Difficult to find affected users, just purge all completion cache. 944 cache::make('core', 'completion')->purge(); 945 cache::make('core', 'coursecompletion')->purge(); 946 } 947 948 /** 949 * Recalculates completion state related to an activity for all users. 950 * 951 * Intended for use if completion conditions change. (This should be avoided 952 * as it may cause some things to become incomplete when they were previously 953 * complete, with the effect - for example - of hiding a later activity that 954 * was previously available.) 955 * 956 * Resetting state of manual tickbox has same result as deleting state for 957 * it. 958 * 959 * @param stcClass|cm_info $cm Activity 960 */ 961 public function reset_all_state($cm) { 962 global $DB; 963 964 if ($cm->completion == COMPLETION_TRACKING_MANUAL) { 965 $this->delete_all_state($cm); 966 return; 967 } 968 // Get current list of users with completion state 969 $rs = $DB->get_recordset('course_modules_completion', array('coursemoduleid'=>$cm->id), '', 'userid'); 970 $keepusers = array(); 971 foreach ($rs as $rec) { 972 $keepusers[] = $rec->userid; 973 } 974 $rs->close(); 975 976 // Delete all existing state. 977 $this->delete_all_state($cm); 978 979 // Merge this with list of planned users (according to roles) 980 $trackedusers = $this->get_tracked_users(); 981 foreach ($trackedusers as $trackeduser) { 982 $keepusers[] = $trackeduser->id; 983 } 984 $keepusers = array_unique($keepusers); 985 986 // Recalculate state for each kept user 987 foreach ($keepusers as $keepuser) { 988 $this->update_state($cm, COMPLETION_UNKNOWN, $keepuser); 989 } 990 } 991 992 /** 993 * Obtains completion data for a particular activity and user (from the 994 * completion cache if available, or by SQL query) 995 * 996 * @param stdClass|cm_info $cm Activity; only required field is ->id 997 * @param bool $wholecourse If true (default false) then, when necessary to 998 * fill the cache, retrieves information from the entire course not just for 999 * this one activity 1000 * @param int $userid User ID or 0 (default) for current user 1001 * @param array $modinfo Supply the value here - this is used for unit 1002 * testing and so that it can be called recursively from within 1003 * get_fast_modinfo. (Needs only list of all CMs with IDs.) 1004 * Otherwise the method calls get_fast_modinfo itself. 1005 * @return object Completion data. Record from course_modules_completion plus other completion statuses such as 1006 * - Completion status for 'must-receive-grade' completion rule. 1007 * - Custom completion statuses defined by the activity module plugin. 1008 */ 1009 public function get_data($cm, $wholecourse = false, $userid = 0, $modinfo = null) { 1010 global $USER, $DB; 1011 $completioncache = cache::make('core', 'completion'); 1012 1013 // Get user ID 1014 if (!$userid) { 1015 $userid = $USER->id; 1016 } 1017 1018 // See if requested data is present in cache (use cache for current user only). 1019 $usecache = $userid == $USER->id; 1020 $cacheddata = array(); 1021 if ($usecache) { 1022 $key = $userid . '_' . $this->course->id; 1023 if (!isset($this->course->cacherev)) { 1024 $this->course = get_course($this->course_id); 1025 } 1026 if ($cacheddata = $completioncache->get($key)) { 1027 if ($cacheddata['cacherev'] != $this->course->cacherev) { 1028 // Course structure has been changed since the last caching, forget the cache. 1029 $cacheddata = array(); 1030 } else if (isset($cacheddata[$cm->id])) { 1031 return (object)$cacheddata[$cm->id]; 1032 } 1033 } 1034 } 1035 1036 // Some call completion_info::get_data and pass $cm as an object with ID only. Make sure course is set as well. 1037 if ($cm instanceof stdClass && !isset($cm->course)) { 1038 $cm->course = $this->course_id; 1039 } 1040 // Make sure we're working on a cm_info object. 1041 $cminfo = cm_info::create($cm, $userid); 1042 1043 // Default data to return when no completion data is found. 1044 $defaultdata = [ 1045 'id' => 0, 1046 'coursemoduleid' => $cminfo->id, 1047 'userid' => $userid, 1048 'completionstate' => 0, 1049 'viewed' => 0, 1050 'overrideby' => null, 1051 'timemodified' => 0, 1052 ]; 1053 1054 // If cached completion data is not found, fetch via SQL. 1055 // Fetch completion data for all of the activities in the course ONLY if we're caching the fetched completion data. 1056 // If we're not caching the completion data, then just fetch the completion data for the user in this course module. 1057 if ($usecache && $wholecourse) { 1058 // Get whole course data for cache. 1059 $alldatabycmc = $DB->get_records_sql("SELECT cm.id AS cmid, cmc.* 1060 FROM {course_modules} cm 1061 LEFT JOIN {course_modules_completion} cmc ON cmc.coursemoduleid = cm.id 1062 AND cmc.userid = ? 1063 INNER JOIN {modules} m ON m.id = cm.module 1064 WHERE m.visible = 1 AND cm.course = ?", [$userid, $this->course->id]); 1065 1066 $cminfos = get_fast_modinfo($cm->course, $userid)->get_cms(); 1067 1068 // Reindex by course module id. 1069 foreach ($alldatabycmc as $data) { 1070 1071 // Filter acitivites with no cm_info (missing plugins or other causes). 1072 if (!isset($cminfos[$data->cmid])) { 1073 continue; 1074 } 1075 1076 if (empty($data->coursemoduleid)) { 1077 $cacheddata[$data->cmid] = $defaultdata; 1078 $cacheddata[$data->cmid]['coursemoduleid'] = $data->cmid; 1079 } else { 1080 $cacheddata[$data->cmid] = (array) $data; 1081 } 1082 1083 // Add the other completion data for this user in this module instance. 1084 $othercminfo = $cminfos[$data->cmid]; 1085 $cacheddata[$othercminfo->id] += $this->get_other_cm_completion_data($othercminfo, $userid); 1086 } 1087 1088 if (!isset($cacheddata[$cminfo->id])) { 1089 $errormessage = "Unexpected error: course-module {$cminfo->id} could not be found on course {$this->course->id}"; 1090 $this->internal_systemerror($errormessage); 1091 } 1092 1093 } else { 1094 // Get single record 1095 $data = $DB->get_record('course_modules_completion', array('coursemoduleid' => $cminfo->id, 'userid' => $userid)); 1096 if ($data) { 1097 $data = (array)$data; 1098 } else { 1099 // Row not present counts as 'not complete'. 1100 $data = $defaultdata; 1101 } 1102 // Fill the other completion data for this user in this module instance. 1103 $data += $this->get_other_cm_completion_data($cminfo, $userid); 1104 1105 // Put in cache 1106 $cacheddata[$cminfo->id] = $data; 1107 } 1108 1109 if ($usecache) { 1110 $cacheddata['cacherev'] = $this->course->cacherev; 1111 $completioncache->set($key, $cacheddata); 1112 } 1113 return (object)$cacheddata[$cminfo->id]; 1114 } 1115 1116 /** 1117 * Adds the user's custom completion data on the given course module. 1118 * 1119 * @param cm_info $cm The course module information. 1120 * @param int $userid The user ID. 1121 * @return array The additional completion data. 1122 */ 1123 protected function get_other_cm_completion_data(cm_info $cm, int $userid): array { 1124 $data = []; 1125 1126 // Include in the completion info the grade completion, if necessary. 1127 if (!is_null($cm->completiongradeitemnumber)) { 1128 $data['completiongrade'] = $this->get_grade_completion($cm, $userid); 1129 } 1130 1131 // Custom activity module completion data. 1132 1133 // Cast custom data to array before checking for custom completion rules. 1134 // We call ->get_custom_data() instead of ->customdata here because there is the chance of recursive calling, 1135 // and we cannot call a getter from a getter in PHP. 1136 $customdata = (array) $cm->get_custom_data(); 1137 // Return early if the plugin does not define custom completion rules. 1138 if (empty($customdata['customcompletionrules'])) { 1139 return $data; 1140 } 1141 1142 // Return early if the activity modules doe not implement the activity_custom_completion class. 1143 $cmcompletionclass = activity_custom_completion::get_cm_completion_class($cm->modname); 1144 if (!$cmcompletionclass) { 1145 return $data; 1146 } 1147 1148 /** @var activity_custom_completion $customcmcompletion */ 1149 $customcmcompletion = new $cmcompletionclass($cm, $userid); 1150 foreach ($customdata['customcompletionrules'] as $rule => $enabled) { 1151 if (!$enabled) { 1152 // Skip inactive completion rules. 1153 continue; 1154 } 1155 // Get this custom completion rule's completion state. 1156 $data['customcompletion'][$rule] = $customcmcompletion->get_state($rule); 1157 } 1158 1159 return $data; 1160 } 1161 1162 /** 1163 * Updates completion data for a particular coursemodule and user (user is 1164 * determined from $data). 1165 * 1166 * (Internal function. Not private, so we can unit-test it.) 1167 * 1168 * @param stdClass|cm_info $cm Activity 1169 * @param stdClass $data Data about completion for that user 1170 */ 1171 public function internal_set_data($cm, $data) { 1172 global $USER, $DB; 1173 1174 $transaction = $DB->start_delegated_transaction(); 1175 if (!$data->id) { 1176 // Check there isn't really a row 1177 $data->id = $DB->get_field('course_modules_completion', 'id', 1178 array('coursemoduleid'=>$data->coursemoduleid, 'userid'=>$data->userid)); 1179 } 1180 if (!$data->id) { 1181 // Didn't exist before, needs creating 1182 $data->id = $DB->insert_record('course_modules_completion', $data); 1183 } else { 1184 // Has real (nonzero) id meaning that a database row exists, update 1185 $DB->update_record('course_modules_completion', $data); 1186 } 1187 $transaction->allow_commit(); 1188 1189 $cmcontext = context_module::instance($data->coursemoduleid); 1190 1191 $completioncache = cache::make('core', 'completion'); 1192 if ($data->userid == $USER->id) { 1193 // Fetch other completion data to cache (e.g. require grade completion status, custom completion rule statues). 1194 $cminfo = cm_info::create($cm, $data->userid); // Make sure we're working on a cm_info object. 1195 $otherdata = $this->get_other_cm_completion_data($cminfo, $data->userid); 1196 foreach ($otherdata as $key => $value) { 1197 $data->$key = $value; 1198 } 1199 1200 // Update module completion in user's cache. 1201 if (!($cachedata = $completioncache->get($data->userid . '_' . $cm->course)) 1202 || $cachedata['cacherev'] != $this->course->cacherev) { 1203 $cachedata = array('cacherev' => $this->course->cacherev); 1204 } 1205 $cachedata[$cm->id] = $data; 1206 $completioncache->set($data->userid . '_' . $cm->course, $cachedata); 1207 1208 // reset modinfo for user (no need to call rebuild_course_cache()) 1209 get_fast_modinfo($cm->course, 0, true); 1210 } else { 1211 // Remove another user's completion cache for this course. 1212 $completioncache->delete($data->userid . '_' . $cm->course); 1213 } 1214 1215 // Trigger an event for course module completion changed. 1216 $event = \core\event\course_module_completion_updated::create(array( 1217 'objectid' => $data->id, 1218 'context' => $cmcontext, 1219 'relateduserid' => $data->userid, 1220 'other' => array( 1221 'relateduserid' => $data->userid, 1222 'overrideby' => $data->overrideby, 1223 'completionstate' => $data->completionstate 1224 ) 1225 )); 1226 $event->add_record_snapshot('course_modules_completion', $data); 1227 $event->trigger(); 1228 } 1229 1230 /** 1231 * Return whether or not the course has activities with completion enabled. 1232 * 1233 * @return boolean true when there is at least one activity with completion enabled. 1234 */ 1235 public function has_activities() { 1236 $modinfo = get_fast_modinfo($this->course); 1237 foreach ($modinfo->get_cms() as $cm) { 1238 if ($cm->completion != COMPLETION_TRACKING_NONE) { 1239 return true; 1240 } 1241 } 1242 return false; 1243 } 1244 1245 /** 1246 * Obtains a list of activities for which completion is enabled on the 1247 * course. The list is ordered by the section order of those activities. 1248 * 1249 * @return cm_info[] Array from $cmid => $cm of all activities with completion enabled, 1250 * empty array if none 1251 */ 1252 public function get_activities() { 1253 $modinfo = get_fast_modinfo($this->course); 1254 $result = array(); 1255 foreach ($modinfo->get_cms() as $cm) { 1256 if ($cm->completion != COMPLETION_TRACKING_NONE && !$cm->deletioninprogress) { 1257 $result[$cm->id] = $cm; 1258 } 1259 } 1260 return $result; 1261 } 1262 1263 /** 1264 * Checks to see if the userid supplied has a tracked role in 1265 * this course 1266 * 1267 * @param int $userid User id 1268 * @return bool 1269 */ 1270 public function is_tracked_user($userid) { 1271 return is_enrolled(context_course::instance($this->course->id), $userid, 'moodle/course:isincompletionreports', true); 1272 } 1273 1274 /** 1275 * Returns the number of users whose progress is tracked in this course. 1276 * 1277 * Optionally supply a search's where clause, or a group id. 1278 * 1279 * @param string $where Where clause sql (use 'u.whatever' for user table fields) 1280 * @param array $whereparams Where clause params 1281 * @param int $groupid Group id 1282 * @return int Number of tracked users 1283 */ 1284 public function get_num_tracked_users($where = '', $whereparams = array(), $groupid = 0) { 1285 global $DB; 1286 1287 list($enrolledsql, $enrolledparams) = get_enrolled_sql( 1288 context_course::instance($this->course->id), 'moodle/course:isincompletionreports', $groupid, true); 1289 $sql = 'SELECT COUNT(eu.id) FROM (' . $enrolledsql . ') eu JOIN {user} u ON u.id = eu.id'; 1290 if ($where) { 1291 $sql .= " WHERE $where"; 1292 } 1293 1294 $params = array_merge($enrolledparams, $whereparams); 1295 return $DB->count_records_sql($sql, $params); 1296 } 1297 1298 /** 1299 * Return array of users whose progress is tracked in this course. 1300 * 1301 * Optionally supply a search's where clause, group id, sorting, paging. 1302 * 1303 * @param string $where Where clause sql, referring to 'u.' fields (optional) 1304 * @param array $whereparams Where clause params (optional) 1305 * @param int $groupid Group ID to restrict to (optional) 1306 * @param string $sort Order by clause (optional) 1307 * @param int $limitfrom Result start (optional) 1308 * @param int $limitnum Result max size (optional) 1309 * @param context $extracontext If set, includes extra user information fields 1310 * as appropriate to display for current user in this context 1311 * @return array Array of user objects with standard user fields 1312 */ 1313 public function get_tracked_users($where = '', $whereparams = array(), $groupid = 0, 1314 $sort = '', $limitfrom = '', $limitnum = '', context $extracontext = null) { 1315 1316 global $DB; 1317 1318 list($enrolledsql, $params) = get_enrolled_sql( 1319 context_course::instance($this->course->id), 1320 'moodle/course:isincompletionreports', $groupid, true); 1321 1322 // TODO Does not support custom user profile fields (MDL-70456). 1323 $userfieldsapi = \core_user\fields::for_identity($extracontext, false)->with_name(); 1324 $allusernames = $userfieldsapi->get_sql('u')->selects; 1325 $sql = 'SELECT u.id, u.idnumber ' . $allusernames; 1326 $sql .= ' FROM (' . $enrolledsql . ') eu JOIN {user} u ON u.id = eu.id'; 1327 1328 if ($where) { 1329 $sql .= " AND $where"; 1330 $params = array_merge($params, $whereparams); 1331 } 1332 1333 if ($sort) { 1334 $sql .= " ORDER BY $sort"; 1335 } 1336 1337 return $DB->get_records_sql($sql, $params, $limitfrom, $limitnum); 1338 } 1339 1340 /** 1341 * Obtains progress information across a course for all users on that course, or 1342 * for all users in a specific group. Intended for use when displaying progress. 1343 * 1344 * This includes only users who, in course context, have one of the roles for 1345 * which progress is tracked (the gradebookroles admin option) and are enrolled in course. 1346 * 1347 * Users are included (in the first array) even if they do not have 1348 * completion progress for any course-module. 1349 * 1350 * @param bool $sortfirstname If true, sort by first name, otherwise sort by 1351 * last name 1352 * @param string $where Where clause sql (optional) 1353 * @param array $where_params Where clause params (optional) 1354 * @param int $groupid Group ID or 0 (default)/false for all groups 1355 * @param int $pagesize Number of users to actually return (optional) 1356 * @param int $start User to start at if paging (optional) 1357 * @param context $extracontext If set, includes extra user information fields 1358 * as appropriate to display for current user in this context 1359 * @return stdClass with ->total and ->start (same as $start) and ->users; 1360 * an array of user objects (like mdl_user id, firstname, lastname) 1361 * containing an additional ->progress array of coursemoduleid => completionstate 1362 */ 1363 public function get_progress_all($where = '', $where_params = array(), $groupid = 0, 1364 $sort = '', $pagesize = '', $start = '', context $extracontext = null) { 1365 global $CFG, $DB; 1366 1367 // Get list of applicable users 1368 $users = $this->get_tracked_users($where, $where_params, $groupid, $sort, 1369 $start, $pagesize, $extracontext); 1370 1371 // Get progress information for these users in groups of 1, 000 (if needed) 1372 // to avoid making the SQL IN too long 1373 $results = array(); 1374 $userids = array(); 1375 foreach ($users as $user) { 1376 $userids[] = $user->id; 1377 $results[$user->id] = $user; 1378 $results[$user->id]->progress = array(); 1379 } 1380 1381 for($i=0; $i<count($userids); $i+=1000) { 1382 $blocksize = count($userids)-$i < 1000 ? count($userids)-$i : 1000; 1383 1384 list($insql, $params) = $DB->get_in_or_equal(array_slice($userids, $i, $blocksize)); 1385 array_splice($params, 0, 0, array($this->course->id)); 1386 $rs = $DB->get_recordset_sql(" 1387 SELECT 1388 cmc.* 1389 FROM 1390 {course_modules} cm 1391 INNER JOIN {course_modules_completion} cmc ON cm.id=cmc.coursemoduleid 1392 WHERE 1393 cm.course=? AND cmc.userid $insql", $params); 1394 foreach ($rs as $progress) { 1395 $progress = (object)$progress; 1396 $results[$progress->userid]->progress[$progress->coursemoduleid] = $progress; 1397 } 1398 $rs->close(); 1399 } 1400 1401 return $results; 1402 } 1403 1404 /** 1405 * Called by grade code to inform the completion system when a grade has 1406 * been changed. If the changed grade is used to determine completion for 1407 * the course-module, then the completion status will be updated. 1408 * 1409 * @param stdClass|cm_info $cm Course-module for item that owns grade 1410 * @param grade_item $item Grade item 1411 * @param stdClass $grade 1412 * @param bool $deleted 1413 */ 1414 public function inform_grade_changed($cm, $item, $grade, $deleted) { 1415 // Bail out now if completion is not enabled for course-module, it is enabled 1416 // but is set to manual, grade is not used to compute completion, or this 1417 // is a different numbered grade 1418 if (!$this->is_enabled($cm) || 1419 $cm->completion == COMPLETION_TRACKING_MANUAL || 1420 is_null($cm->completiongradeitemnumber) || 1421 $item->itemnumber != $cm->completiongradeitemnumber) { 1422 return; 1423 } 1424 1425 // What is the expected result based on this grade? 1426 if ($deleted) { 1427 // Grade being deleted, so only change could be to make it incomplete 1428 $possibleresult = COMPLETION_INCOMPLETE; 1429 } else { 1430 $possibleresult = self::internal_get_grade_state($item, $grade); 1431 } 1432 1433 // OK, let's update state based on this 1434 $this->update_state($cm, $possibleresult, $grade->userid); 1435 } 1436 1437 /** 1438 * Calculates the completion state that would result from a graded item 1439 * (where grade-based completion is turned on) based on the actual grade 1440 * and settings. 1441 * 1442 * Internal function. Not private, so we can unit-test it. 1443 * 1444 * @param grade_item $item an instance of grade_item 1445 * @param grade_grade $grade an instance of grade_grade 1446 * @return int Completion state e.g. COMPLETION_INCOMPLETE 1447 */ 1448 public static function internal_get_grade_state($item, $grade) { 1449 // If no grade is supplied or the grade doesn't have an actual value, then 1450 // this is not complete. 1451 if (!$grade || (is_null($grade->finalgrade) && is_null($grade->rawgrade))) { 1452 return COMPLETION_INCOMPLETE; 1453 } 1454 1455 // Conditions to show pass/fail: 1456 // a) Grade has pass mark (default is 0.00000 which is boolean true so be careful) 1457 // b) Grade is visible (neither hidden nor hidden-until) 1458 if ($item->gradepass && $item->gradepass > 0.000009 && !$item->hidden) { 1459 // Use final grade if set otherwise raw grade 1460 $score = !is_null($grade->finalgrade) ? $grade->finalgrade : $grade->rawgrade; 1461 1462 // We are displaying and tracking pass/fail 1463 if ($score >= $item->gradepass) { 1464 return COMPLETION_COMPLETE_PASS; 1465 } else { 1466 return COMPLETION_COMPLETE_FAIL; 1467 } 1468 } else { 1469 // Not displaying pass/fail, so just if there is a grade 1470 if (!is_null($grade->finalgrade) || !is_null($grade->rawgrade)) { 1471 // Grade exists, so maybe complete now 1472 return COMPLETION_COMPLETE; 1473 } else { 1474 // Grade does not exist, so maybe incomplete now 1475 return COMPLETION_INCOMPLETE; 1476 } 1477 } 1478 } 1479 1480 /** 1481 * Aggregate activity completion state 1482 * 1483 * @param int $type Aggregation type (COMPLETION_* constant) 1484 * @param bool $old Old state 1485 * @param bool $new New state 1486 * @return bool 1487 */ 1488 public static function aggregate_completion_states($type, $old, $new) { 1489 if ($type == COMPLETION_AND) { 1490 return $old && $new; 1491 } else { 1492 return $old || $new; 1493 } 1494 } 1495 1496 /** 1497 * This is to be used only for system errors (things that shouldn't happen) 1498 * and not user-level errors. 1499 * 1500 * @global type $CFG 1501 * @param string $error Error string (will not be displayed to user unless debugging is enabled) 1502 * @throws moodle_exception Exception with the error string as debug info 1503 */ 1504 public function internal_systemerror($error) { 1505 global $CFG; 1506 throw new moodle_exception('err_system','completion', 1507 $CFG->wwwroot.'/course/view.php?id='.$this->course->id,null,$error); 1508 } 1509} 1510 1511/** 1512 * Aggregate criteria status's as per configured aggregation method. 1513 * 1514 * @param int $method COMPLETION_AGGREGATION_* constant. 1515 * @param bool $data Criteria completion status. 1516 * @param bool|null $state Aggregation state. 1517 */ 1518function completion_cron_aggregate($method, $data, &$state) { 1519 if ($method == COMPLETION_AGGREGATION_ALL) { 1520 if ($data && $state !== false) { 1521 $state = true; 1522 } else { 1523 $state = false; 1524 } 1525 } else if ($method == COMPLETION_AGGREGATION_ANY) { 1526 if ($data) { 1527 $state = true; 1528 } else if (!$data && $state === null) { 1529 $state = false; 1530 } 1531 } 1532} 1533