mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +02:00
1177 lines
49 KiB
PHP
1177 lines
49 KiB
PHP
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Library of internal classes and functions for module workshop
|
|
*
|
|
* All the workshop specific functions, needed to implement the module
|
|
* logic, should go to here. Instead of having bunch of function named
|
|
* workshop_something() taking the workshop instance as the first
|
|
* parameter, we use a class workshop that provides all methods.
|
|
*
|
|
* @package mod-workshop
|
|
* @copyright 2009 David Mudrak <david.mudrak@gmail.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
require_once(dirname(__FILE__).'/lib.php'); // we extend this library here
|
|
require_once($CFG->libdir . '/gradelib.php');
|
|
|
|
/**
|
|
* Full-featured workshop API
|
|
*
|
|
* This wraps the workshop database record with a set of methods that are called
|
|
* from the module itself. The class should be initialized right after you get
|
|
* $workshop, $cm and $course records at the begining of the script.
|
|
*/
|
|
class workshop {
|
|
|
|
/** return statuses of {@link add_allocation} to be passed to a workshop renderer method */
|
|
const ALLOCATION_EXISTS = -1;
|
|
const ALLOCATION_ERROR = -2;
|
|
|
|
/** the internal code of the workshop phases as are stored in the database */
|
|
const PHASE_SETUP = 10;
|
|
const PHASE_SUBMISSION = 20;
|
|
const PHASE_ASSESSMENT = 30;
|
|
const PHASE_EVALUATION = 40;
|
|
const PHASE_CLOSED = 50;
|
|
|
|
/** how many participants per page are displayed by various reports */
|
|
const PERPAGE = 30;
|
|
|
|
/** @var stdClass course module record */
|
|
public $cm = null;
|
|
|
|
/** @var stdClass course record */
|
|
public $course = null;
|
|
|
|
/**
|
|
* @var workshop_strategy grading strategy instance
|
|
* Do not use directly, get the instance using {@link workshop::grading_strategy_instance()}
|
|
*/
|
|
protected $strategyinstance = null;
|
|
|
|
/**
|
|
* @var workshop_evaluation grading evaluation instance
|
|
* Do not use directly, get the instance using {@link workshop::grading_evaluation_instance()}
|
|
*/
|
|
protected $evaluationinstance = null;
|
|
|
|
/**
|
|
* Initializes the workshop API instance using the data from DB
|
|
*
|
|
* Makes deep copy of all passed records properties. Replaces integer $course attribute
|
|
* with a full database record (course should not be stored in instances table anyway).
|
|
*
|
|
* @param stdClass $dbrecord Workshop instance data from {workshop} table
|
|
* @param stdClass $cm Course module record as returned by {@link get_coursemodule_from_id()}
|
|
* @param stdClass $course Course record from {course} table
|
|
*/
|
|
public function __construct(stdClass $dbrecord, stdClass $cm, stdClass $course) {
|
|
foreach ($dbrecord as $field => $value) {
|
|
$this->{$field} = $value;
|
|
}
|
|
$this->evaluation = 'best'; // todo make this configurable
|
|
$this->cm = $cm;
|
|
$this->course = $course; // beware - this replaces the standard course field in the instance table
|
|
// this is intentional - IMO there should be no such field as it violates
|
|
// 3rd normal form with no real performance gain
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Static methods //
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/**
|
|
* Return list of available allocation methods
|
|
*
|
|
* @return array Array ['string' => 'string'] of localized allocation method names
|
|
*/
|
|
public static function installed_allocators() {
|
|
$installed = get_plugin_list('workshopallocation');
|
|
$forms = array();
|
|
foreach ($installed as $allocation => $allocationpath) {
|
|
if (file_exists($allocationpath . '/lib.php')) {
|
|
$forms[$allocation] = get_string('pluginname', 'workshopallocation_' . $allocation);
|
|
}
|
|
}
|
|
// usability - make sure that manual allocation appears the first
|
|
if (isset($forms['manual'])) {
|
|
$m = array('manual' => $forms['manual']);
|
|
unset($forms['manual']);
|
|
$forms = array_merge($m, $forms);
|
|
}
|
|
return $forms;
|
|
}
|
|
|
|
/**
|
|
* Returns an array of options for the editors that are used for submitting and assessing instructions
|
|
*
|
|
* @param stdClass $context
|
|
* @return array
|
|
*/
|
|
public static function instruction_editors_options(stdClass $context) {
|
|
return array('subdirs' => 1, 'maxbytes' => 0, 'maxfiles' => EDITOR_UNLIMITED_FILES,
|
|
'changeformat' => 1, 'context' => $context, 'noclean' => 1, 'trusttext' => 0);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Workshop API //
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/**
|
|
* Fetches all users with the capability mod/workshop:submit in the current context
|
|
*
|
|
* The returned objects contain id, lastname and firstname properties and are ordered by lastname,firstname
|
|
*
|
|
* @todo handle with limits and groups
|
|
* @param stdClass $context
|
|
* @param bool $musthavesubmission If true, return only users who have already submitted. All possible authors otherwise.
|
|
* @return array array[userid] => stdClass{->id ->lastname ->firstname}
|
|
*/
|
|
public function get_potential_authors(stdClass $context, $musthavesubmission=true) {
|
|
$users = get_users_by_capability($context, 'mod/workshop:submit',
|
|
'u.id,u.lastname,u.firstname', 'u.lastname,u.firstname,u.id', 0, 1000, '', '', false, false, true);
|
|
if ($musthavesubmission) {
|
|
$users = array_intersect_key($users, $this->users_with_submission(array_keys($users)));
|
|
}
|
|
return $users;
|
|
}
|
|
|
|
/**
|
|
* Fetches all users with the capability mod/workshop:peerassess in the current context
|
|
*
|
|
* The returned objects contain id, lastname and firstname properties and are ordered by lastname,firstname
|
|
*
|
|
* @todo handle with limits and groups
|
|
* @param stdClass $context
|
|
* @param bool $musthavesubmission If true, return only users who have already submitted. All possible users otherwise.
|
|
* @return array array[userid] => stdClass{->id ->lastname ->firstname}
|
|
*/
|
|
public function get_potential_reviewers(stdClass $context, $musthavesubmission=false) {
|
|
$users = get_users_by_capability($context, 'mod/workshop:peerassess',
|
|
'u.id, u.lastname, u.firstname', 'u.lastname,u.firstname,u.id', 0, 1000, '', '', false, false, true);
|
|
if ($musthavesubmission) {
|
|
// users without their own submission can not be reviewers
|
|
$users = array_intersect_key($users, $this->users_with_submission(array_keys($users)));
|
|
}
|
|
return $users;
|
|
}
|
|
|
|
/**
|
|
* Groups the given users by the group membership
|
|
*
|
|
* This takes the module grouping settings into account. If "Available for group members only"
|
|
* is set, returns only groups withing the course module grouping. Always returns group [0] with
|
|
* all the given users.
|
|
*
|
|
* @param array $users array[userid] => stdClass{->id ->lastname ->firstname}
|
|
* @return array array[groupid][userid] => stdClass{->id ->lastname ->firstname}
|
|
*/
|
|
public function get_grouped($users) {
|
|
global $DB;
|
|
global $CFG;
|
|
|
|
$grouped = array(); // grouped users to be returned
|
|
if (empty($users)) {
|
|
return $grouped;
|
|
}
|
|
if (!empty($CFG->enablegroupings) and $this->cm->groupmembersonly) {
|
|
// Available for group members only - the workshop is available only
|
|
// to users assigned to groups within the selected grouping, or to
|
|
// any group if no grouping is selected.
|
|
$groupingid = $this->cm->groupingid;
|
|
// All users that are members of at least one group will be
|
|
// added into a virtual group id 0
|
|
$grouped[0] = array();
|
|
} else {
|
|
$groupingid = 0;
|
|
// there is no need to be member of a group so $grouped[0] will contain
|
|
// all users
|
|
$grouped[0] = $users;
|
|
}
|
|
$gmemberships = groups_get_all_groups($this->cm->course, array_keys($users), $groupingid,
|
|
'gm.id,gm.groupid,gm.userid');
|
|
foreach ($gmemberships as $gmembership) {
|
|
if (!isset($grouped[$gmembership->groupid])) {
|
|
$grouped[$gmembership->groupid] = array();
|
|
}
|
|
$grouped[$gmembership->groupid][$gmembership->userid] = $users[$gmembership->userid];
|
|
$grouped[0][$gmembership->userid] = $users[$gmembership->userid];
|
|
}
|
|
return $grouped;
|
|
}
|
|
|
|
/**
|
|
* Returns the list of all allocations (it est assigned assessments) in the workshop
|
|
*
|
|
* Assessments of example submissions are ignored
|
|
*
|
|
* @return array
|
|
*/
|
|
public function get_allocations() {
|
|
global $DB;
|
|
|
|
$sql = 'SELECT a.id, a.submissionid, a.reviewerid, s.authorid
|
|
FROM {workshop_assessments} a
|
|
INNER JOIN {workshop_submissions} s ON (a.submissionid = s.id)
|
|
WHERE s.example = 0 AND s.workshopid = :workshopid';
|
|
$params = array('workshopid' => $this->id);
|
|
|
|
return $DB->get_records_sql($sql, $params);
|
|
}
|
|
|
|
/**
|
|
* Returns submissions from this workshop
|
|
*
|
|
* Fetches data from {workshop_submissions} and adds some useful information from other
|
|
* tables. Does not return textual fields to prevent possible memory lack issues.
|
|
*
|
|
* @param mixed $authorid int|array|'all' If set to [array of] integer, return submission[s] of the given user[s] only
|
|
* @return array of records or an empty array
|
|
*/
|
|
public function get_submissions($authorid='all') {
|
|
global $DB;
|
|
|
|
$sql = 'SELECT s.id, s.workshopid, s.example, s.authorid, s.timecreated, s.timemodified,
|
|
s.title, s.grade, s.gradeover, s.gradeoverby,
|
|
u.lastname AS authorlastname, u.firstname AS authorfirstname,
|
|
u.picture AS authorpicture, u.imagealt AS authorimagealt,
|
|
t.lastname AS overlastname, t.firstname AS overfirstname,
|
|
t.picture AS overpicture, t.imagealt AS overimagealt
|
|
FROM {workshop_submissions} s
|
|
INNER JOIN {user} u ON (s.authorid = u.id)
|
|
LEFT JOIN {user} t ON (s.gradeoverby = t.id)
|
|
WHERE s.example = 0 AND s.workshopid = :workshopid';
|
|
$params = array('workshopid' => $this->id);
|
|
|
|
if ('all' === $authorid) {
|
|
// no additional conditions
|
|
} elseif (!empty($authorid)) {
|
|
list($usql, $uparams) = $DB->get_in_or_equal($authorid, SQL_PARAMS_NAMED);
|
|
$sql .= " AND authorid $usql";
|
|
$params = array_merge($params, $uparams);
|
|
} else {
|
|
// $authorid is empty
|
|
return array();
|
|
}
|
|
$sql .= ' ORDER BY u.lastname, u.firstname';
|
|
|
|
return $DB->get_records_sql($sql, $params);
|
|
}
|
|
|
|
/**
|
|
* Returns a submission record with the author's data
|
|
*
|
|
* @param int $id submission id
|
|
* @return stdClass
|
|
*/
|
|
public function get_submission_by_id($id) {
|
|
global $DB;
|
|
|
|
// we intentionally check the workshopid here, too, so the workshop can't touch submissions
|
|
// from other instances
|
|
$sql = 'SELECT s.*,
|
|
u.lastname AS authorlastname, u.firstname AS authorfirstname, u.id AS authorid,
|
|
u.picture AS authorpicture, u.imagealt AS authorimagealt
|
|
FROM {workshop_submissions} s
|
|
INNER JOIN {user} u ON (s.authorid = u.id)
|
|
WHERE s.workshopid = :workshopid AND s.id = :id';
|
|
$params = array('workshopid' => $this->id, 'id' => $id);
|
|
return $DB->get_record_sql($sql, $params, MUST_EXIST);
|
|
}
|
|
|
|
/**
|
|
* Returns a submission submitted by the given author
|
|
*
|
|
* @param int $id author id
|
|
* @return stdClass|false
|
|
*/
|
|
public function get_submission_by_author($authorid) {
|
|
global $DB;
|
|
|
|
if (empty($authorid)) {
|
|
return false;
|
|
}
|
|
$sql = 'SELECT s.*,
|
|
u.lastname AS authorlastname, u.firstname AS authorfirstname, u.id AS authorid,
|
|
u.picture AS authorpicture, u.imagealt AS authorimagealt
|
|
FROM {workshop_submissions} s
|
|
INNER JOIN {user} u ON (s.authorid = u.id)
|
|
WHERE s.example = 0 AND s.workshopid = :workshopid AND s.authorid = :authorid';
|
|
$params = array('workshopid' => $this->id, 'authorid' => $authorid);
|
|
return $DB->get_record_sql($sql, $params);
|
|
}
|
|
|
|
/**
|
|
* Returns the list of all assessments in the workshop with some data added
|
|
*
|
|
* Fetches data from {workshop_assessments} and adds some useful information from other
|
|
* tables. The returned object does not contain textual fields (ie comments) to prevent memory
|
|
* lack issues.
|
|
*
|
|
* @return array [assessmentid] => assessment stdClass
|
|
*/
|
|
public function get_all_assessments() {
|
|
global $DB;
|
|
|
|
$sql = 'SELECT a.id, a.submissionid, a.reviewerid, a.timecreated, a.timemodified, a.timeagreed,
|
|
a.grade, a.gradinggrade, a.gradinggradeover, a.gradinggradeoverby,
|
|
reviewer.id AS reviewerid,reviewer.firstname AS reviewerfirstname,reviewer.lastname as reviewerlastname,
|
|
s.title,
|
|
author.id AS authorid, author.firstname AS authorfirstname,author.lastname AS authorlastname
|
|
FROM {workshop_assessments} a
|
|
INNER JOIN {user} reviewer ON (a.reviewerid = reviewer.id)
|
|
INNER JOIN {workshop_submissions} s ON (a.submissionid = s.id)
|
|
INNER JOIN {user} author ON (s.authorid = author.id)
|
|
WHERE s.workshopid = :workshopid AND s.example = 0
|
|
ORDER BY reviewer.lastname, reviewer.firstname';
|
|
$params = array('workshopid' => $this->id);
|
|
|
|
return $DB->get_records_sql($sql, $params);
|
|
}
|
|
|
|
/**
|
|
* Get the complete information about the given assessment
|
|
*
|
|
* @param int $id Assessment ID
|
|
* @return mixed false if not found, stdClass otherwise
|
|
*/
|
|
public function get_assessment_by_id($id) {
|
|
global $DB;
|
|
|
|
$sql = 'SELECT a.*,
|
|
reviewer.id AS reviewerid,reviewer.firstname AS reviewerfirstname,reviewer.lastname as reviewerlastname,
|
|
s.title,
|
|
author.id AS authorid, author.firstname AS authorfirstname,author.lastname as authorlastname
|
|
FROM {workshop_assessments} a
|
|
INNER JOIN {user} reviewer ON (a.reviewerid = reviewer.id)
|
|
INNER JOIN {workshop_submissions} s ON (a.submissionid = s.id)
|
|
INNER JOIN {user} author ON (s.authorid = author.id)
|
|
WHERE a.id = :id AND s.workshopid = :workshopid';
|
|
$params = array('id' => $id, 'workshopid' => $this->id);
|
|
|
|
return $DB->get_record_sql($sql, $params, MUST_EXIST);
|
|
}
|
|
|
|
/**
|
|
* Get the complete information about all assessments allocated to the given reviewer
|
|
*
|
|
* @param int $reviewerid
|
|
* @return array
|
|
*/
|
|
public function get_assessments_by_reviewer($reviewerid) {
|
|
global $DB;
|
|
|
|
$sql = 'SELECT a.*,
|
|
reviewer.id AS reviewerid,reviewer.firstname AS reviewerfirstname,reviewer.lastname AS reviewerlastname,
|
|
s.id AS submissionid, s.title AS submissiontitle, s.timecreated AS submissioncreated,
|
|
s.timemodified AS submissionmodified,
|
|
author.id AS authorid, author.firstname AS authorfirstname,author.lastname AS authorlastname,
|
|
author.picture AS authorpicture, author.imagealt AS authorimagealt
|
|
FROM {workshop_assessments} a
|
|
INNER JOIN {user} reviewer ON (a.reviewerid = reviewer.id)
|
|
INNER JOIN {workshop_submissions} s ON (a.submissionid = s.id)
|
|
INNER JOIN {user} author ON (s.authorid = author.id)
|
|
WHERE s.example = 0 AND reviewer.id = :reviewerid AND s.workshopid = :workshopid';
|
|
$params = array('reviewerid' => $reviewerid, 'workshopid' => $this->id);
|
|
|
|
return $DB->get_records_sql($sql, $params);
|
|
}
|
|
|
|
/**
|
|
* Allocate a submission to a user for review
|
|
*
|
|
* @param stdClass $submission Submission record
|
|
* @param int $reviewerid User ID
|
|
* @param bool $bulk repeated inserts into DB expected
|
|
* @return int ID of the new assessment or an error code
|
|
*/
|
|
public function add_allocation(stdClass $submission, $reviewerid, $bulk=false) {
|
|
global $DB;
|
|
|
|
if ($DB->record_exists('workshop_assessments', array('submissionid' => $submission->id, 'reviewerid' => $reviewerid))) {
|
|
return self::ALLOCATION_EXISTS;
|
|
}
|
|
|
|
$now = time();
|
|
$assessment = new stdClass();
|
|
$assessment->submissionid = $submission->id;
|
|
$assessment->reviewerid = $reviewerid;
|
|
$assessment->timecreated = $now;
|
|
$assessment->timemodified = $now;
|
|
$assessment->weight = 1; // todo better handling of the weight value/default
|
|
|
|
return $DB->insert_record('workshop_assessments', $assessment, true, $bulk);
|
|
}
|
|
|
|
/**
|
|
* Delete assessment record or records
|
|
*
|
|
* @param mixed $id int|array assessment id or array of assessments ids
|
|
* @return bool false if $id not a valid parameter, true otherwise
|
|
*/
|
|
public function delete_assessment($id) {
|
|
global $DB;
|
|
|
|
// todo remove all given grades from workshop_grades;
|
|
|
|
if (is_array($id)) {
|
|
return $DB->delete_records_list('workshop_assessments', 'id', $id);
|
|
} else {
|
|
return $DB->delete_records('workshop_assessments', array('id' => $id));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns instance of grading strategy class
|
|
*
|
|
* @return stdClass Instance of a grading strategy
|
|
*/
|
|
public function grading_strategy_instance() {
|
|
global $CFG; // because we require other libs here
|
|
|
|
if (is_null($this->strategyinstance)) {
|
|
$strategylib = dirname(__FILE__) . '/form/' . $this->strategy . '/lib.php';
|
|
if (is_readable($strategylib)) {
|
|
require_once($strategylib);
|
|
} else {
|
|
throw new coding_exception('the grading forms subplugin must contain library ' . $strategylib);
|
|
}
|
|
$classname = 'workshop_' . $this->strategy . '_strategy';
|
|
$this->strategyinstance = new $classname($this);
|
|
if (!in_array('workshop_strategy', class_implements($this->strategyinstance))) {
|
|
throw new coding_exception($classname . ' does not implement workshop_strategy interface');
|
|
}
|
|
}
|
|
return $this->strategyinstance;
|
|
}
|
|
|
|
/**
|
|
* Returns instance of grading evaluation class
|
|
*
|
|
* @return stdClass Instance of a grading evaluation
|
|
*/
|
|
public function grading_evaluation_instance() {
|
|
global $CFG; // because we require other libs here
|
|
|
|
if (is_null($this->evaluationinstance)) {
|
|
$evaluationlib = dirname(__FILE__) . '/eval/' . $this->evaluation . '/lib.php';
|
|
if (is_readable($evaluationlib)) {
|
|
require_once($evaluationlib);
|
|
} else {
|
|
throw new coding_exception('the grading evaluation subplugin must contain library ' . $evaluationlib);
|
|
}
|
|
$classname = 'workshop_' . $this->evaluation . '_evaluation';
|
|
$this->evaluationinstance = new $classname($this);
|
|
if (!in_array('workshop_evaluation', class_implements($this->evaluationinstance))) {
|
|
throw new coding_exception($classname . ' does not implement workshop_evaluation interface');
|
|
}
|
|
}
|
|
return $this->evaluationinstance;
|
|
}
|
|
|
|
/**
|
|
* Returns instance of submissions allocator
|
|
*
|
|
* @param stdClass $method The name of the allocation method, must be PARAM_ALPHA
|
|
* @return stdClass Instance of submissions allocator
|
|
*/
|
|
public function allocator_instance($method) {
|
|
global $CFG; // because we require other libs here
|
|
|
|
$allocationlib = dirname(__FILE__) . '/allocation/' . $method . '/lib.php';
|
|
if (is_readable($allocationlib)) {
|
|
require_once($allocationlib);
|
|
} else {
|
|
throw new coding_exception('Unable to find the allocation library ' . $allocationlib);
|
|
}
|
|
$classname = 'workshop_' . $method . '_allocator';
|
|
return new $classname($this);
|
|
}
|
|
|
|
/**
|
|
* @return moodle_url of this workshop's view page
|
|
*/
|
|
public function view_url() {
|
|
global $CFG;
|
|
return new moodle_url($CFG->wwwroot . '/mod/workshop/view.php', array('id' => $this->cm->id));
|
|
}
|
|
|
|
/**
|
|
* @return moodle_url of the page for editing this workshop's grading form
|
|
*/
|
|
public function editform_url() {
|
|
global $CFG;
|
|
return new moodle_url($CFG->wwwroot . '/mod/workshop/editform.php', array('cmid' => $this->cm->id));
|
|
}
|
|
|
|
/**
|
|
* @return moodle_url of the page for previewing this workshop's grading form
|
|
*/
|
|
public function previewform_url() {
|
|
global $CFG;
|
|
return new moodle_url($CFG->wwwroot . '/mod/workshop/assessment.php', array('preview' => $this->cm->id));
|
|
}
|
|
|
|
/**
|
|
* @param int $assessmentid The ID of assessment record
|
|
* @return moodle_url of the assessment page
|
|
*/
|
|
public function assess_url($assessmentid) {
|
|
global $CFG;
|
|
$assessmentid = clean_param($assessmentid, PARAM_INT);
|
|
return new moodle_url($CFG->wwwroot . '/mod/workshop/assessment.php', array('asid' => $assessmentid));
|
|
}
|
|
|
|
/**
|
|
* @return moodle_url of the page to view own submission
|
|
*/
|
|
public function submission_url() {
|
|
global $CFG;
|
|
return new moodle_url($CFG->wwwroot . '/mod/workshop/submission.php', array('cmid' => $this->cm->id));
|
|
}
|
|
|
|
/**
|
|
* @return moodle_url of the mod_edit form
|
|
*/
|
|
public function updatemod_url() {
|
|
global $CFG;
|
|
return new moodle_url($CFG->wwwroot . '/course/modedit.php', array('update' => $this->cm->id, 'return' => 1));
|
|
}
|
|
|
|
/**
|
|
* @return moodle_url to the allocation page
|
|
*/
|
|
public function allocation_url() {
|
|
global $CFG;
|
|
return new moodle_url($CFG->wwwroot . '/mod/workshop/allocation.php', array('cmid' => $this->cm->id));
|
|
}
|
|
|
|
/**
|
|
* @param int $phasecode The internal phase code
|
|
* @return moodle_url of the script to change the current phase to $phasecode
|
|
*/
|
|
public function switchphase_url($phasecode) {
|
|
global $CFG;
|
|
$phasecode = clean_param($phasecode, PARAM_INT);
|
|
return new moodle_url($CFG->wwwroot . '/mod/workshop/switchphase.php', array('cmid' => $this->cm->id, 'phase' => $phasecode));
|
|
}
|
|
|
|
/**
|
|
* Returns an object containing all data to display the user's full name and picture
|
|
*
|
|
* @param int $id optional user id, defaults to the current user
|
|
* @return stdClass containing properties lastname, firstname, picture and imagealt
|
|
*/
|
|
public function user_info($id=null) {
|
|
global $USER, $DB;
|
|
|
|
if (is_null($id) || ($id == $USER->id)) {
|
|
return $USER;
|
|
} else {
|
|
return $DB->get_record('user', array('id' => $id), 'id,lastname,firstname,picture,imagealt', MUST_EXIST);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Are users allowed to create/edit their submissions?
|
|
*
|
|
* TODO: this depends on the workshop phase, phase deadlines, submitting after deadlines possibility
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function submitting_allowed() {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Are the peer-reviews available to the authors?
|
|
*
|
|
* TODO: this depends on the workshop phase
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function assessments_available() {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Can the given grades be displayed to the authors?
|
|
*
|
|
* Grades are not displayed if {@link self::assessments_available()} return false. The returned
|
|
* value may be true (if yes, display grades), false (no, hide grades yet) or null (only
|
|
* display grades if the assessment has been agreed by the author).
|
|
*
|
|
* @return bool|null
|
|
*/
|
|
public function grades_available() {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Returns the localized name of the grading strategy method to be displayed to the users
|
|
*
|
|
* @return string
|
|
*/
|
|
public function strategy_name() {
|
|
return get_string('pluginname', 'workshopform_' . $this->strategy);
|
|
}
|
|
|
|
/**
|
|
* Prepare an individual workshop plan for the given user.
|
|
*
|
|
* @param int $userid whom the plan is prepared for
|
|
* @param stdClass context of the planned workshop
|
|
* @return stdClass data object to be passed to the renderer
|
|
*/
|
|
public function prepare_user_plan($userid, stdClass $context) {
|
|
global $DB;
|
|
|
|
$phases = array();
|
|
|
|
// Prepare tasks for the setup phase
|
|
$phase = new stdClass();
|
|
$phase->title = get_string('phasesetup', 'workshop');
|
|
$phase->tasks = array();
|
|
if (has_capability('moodle/course:manageactivities', $context, $userid)) {
|
|
$task = new stdClass();
|
|
$task->title = get_string('taskintro', 'workshop');
|
|
$task->link = $this->updatemod_url();
|
|
$task->completed = !(trim(strip_tags($this->intro)) == '');
|
|
$phase->tasks['intro'] = $task;
|
|
}
|
|
if (has_capability('moodle/course:manageactivities', $context, $userid)) {
|
|
$task = new stdClass();
|
|
$task->title = get_string('taskinstructauthors', 'workshop');
|
|
$task->link = $this->updatemod_url();
|
|
$task->completed = !(trim(strip_tags($this->instructauthors)) == '');
|
|
$phase->tasks['instructauthors'] = $task;
|
|
}
|
|
if (has_capability('mod/workshop:editdimensions', $context, $userid)) {
|
|
$task = new stdClass();
|
|
$task->title = get_string('editassessmentform', 'workshop');
|
|
$task->link = $this->editform_url();
|
|
if ($this->assessment_form_ready()) {
|
|
$task->completed = true;
|
|
} elseif ($this->phase > self::PHASE_SETUP) {
|
|
$task->completed = false;
|
|
}
|
|
$phase->tasks['editform'] = $task;
|
|
}
|
|
if (empty($phase->tasks) and $this->phase == self::PHASE_SETUP) {
|
|
// if we are in the setup phase and there is no task (typical for students), let us
|
|
// display some explanation what is going on
|
|
$task = new stdClass();
|
|
$task->title = get_string('undersetup', 'workshop');
|
|
$task->completed = 'info';
|
|
$phase->tasks['setupinfo'] = $task;
|
|
}
|
|
$phases[self::PHASE_SETUP] = $phase;
|
|
|
|
// Prepare tasks for the submission phase
|
|
$phase = new stdClass();
|
|
$phase->title = get_string('phasesubmission', 'workshop');
|
|
$phase->tasks = array();
|
|
if (has_capability('moodle/course:manageactivities', $context, $userid)) {
|
|
$task = new stdClass();
|
|
$task->title = get_string('taskinstructreviewers', 'workshop');
|
|
$task->link = $this->updatemod_url();
|
|
if (trim(strip_tags($this->instructreviewers))) {
|
|
$task->completed = true;
|
|
} elseif ($this->phase >= self::PHASE_ASSESSMENT) {
|
|
$task->completed = false;
|
|
}
|
|
$phase->tasks['instructreviewers'] = $task;
|
|
}
|
|
if (has_capability('mod/workshop:submit', $context, $userid, false)) {
|
|
$task = new stdClass();
|
|
$task->title = get_string('tasksubmit', 'workshop');
|
|
$task->link = $this->submission_url();
|
|
if ($DB->record_exists('workshop_submissions', array('workshopid'=>$this->id, 'example'=>0, 'authorid'=>$userid))) {
|
|
$task->completed = true;
|
|
} elseif ($this->phase >= self::PHASE_ASSESSMENT) {
|
|
$task->completed = false;
|
|
} else {
|
|
$task->completed = null; // still has a chance to submit
|
|
}
|
|
$phase->tasks['submit'] = $task;
|
|
}
|
|
$phases[self::PHASE_SUBMISSION] = $phase;
|
|
if (has_capability('mod/workshop:allocate', $context, $userid)) {
|
|
$task = new stdClass();
|
|
$task->title = get_string('allocate', 'workshop');
|
|
$task->link = $this->allocation_url();
|
|
$numofauthors = count(get_users_by_capability($context, 'mod/workshop:submit', 'u.id', '', '', '',
|
|
'', '', false, true));
|
|
$numofsubmissions = $DB->count_records('workshop_submissions', array('workshopid'=>$this->id, 'example'=>0));
|
|
$sql = 'SELECT COUNT(s.id) AS nonallocated
|
|
FROM {workshop_submissions} s
|
|
LEFT JOIN {workshop_assessments} a ON (a.submissionid=s.id)
|
|
WHERE s.workshopid = :workshopid AND s.example=0 AND a.submissionid IS NULL';
|
|
$params['workshopid'] = $this->id;
|
|
$numnonallocated = $DB->count_records_sql($sql, $params);
|
|
if ($numofsubmissions == 0) {
|
|
$task->completed = null;
|
|
} elseif ($numnonallocated == 0) {
|
|
$task->completed = true;
|
|
} elseif ($this->phase > self::PHASE_SUBMISSION) {
|
|
$task->completed = false;
|
|
} else {
|
|
$task->completed = null; // still has a chance to allocate
|
|
}
|
|
$a = new stdClass();
|
|
$a->expected = $numofauthors;
|
|
$a->submitted = $numofsubmissions;
|
|
$a->allocate = $numnonallocated;
|
|
$task->details = get_string('allocatedetails', 'workshop', $a);
|
|
unset($a);
|
|
$phase->tasks['allocate'] = $task;
|
|
|
|
if ($numofsubmissions < $numofauthors and $this->phase >= self::PHASE_SUBMISSION) {
|
|
$task = new stdClass();
|
|
$task->title = get_string('someuserswosubmission', 'workshop');
|
|
$task->completed = 'info';
|
|
$phase->tasks['allocateinfo'] = $task;
|
|
}
|
|
}
|
|
|
|
// Prepare tasks for the peer-assessment phase (includes eventual self-assessments)
|
|
$phase = new stdClass();
|
|
$phase->title = get_string('phaseassessment', 'workshop');
|
|
$phase->tasks = array();
|
|
$phase->isreviewer = has_capability('mod/workshop:peerassess', $context, $userid);
|
|
$phase->assessments = $this->get_assessments_by_reviewer($userid);
|
|
$numofpeers = 0; // number of allocated peer-assessments
|
|
$numofpeerstodo = 0; // number of peer-assessments to do
|
|
$numofself = 0; // number of allocated self-assessments - should be 0 or 1
|
|
$numofselftodo = 0; // number of self-assessments to do - should be 0 or 1
|
|
foreach ($phase->assessments as $a) {
|
|
if ($a->authorid == $userid) {
|
|
$numofself++;
|
|
if (is_null($a->grade)) {
|
|
$numofselftodo++;
|
|
}
|
|
} else {
|
|
$numofpeers++;
|
|
if (is_null($a->grade)) {
|
|
$numofpeerstodo++;
|
|
}
|
|
}
|
|
}
|
|
unset($a);
|
|
if ($numofpeers) {
|
|
$task = new stdClass();
|
|
if ($numofpeerstodo == 0) {
|
|
$task->completed = true;
|
|
} elseif ($this->phase > self::PHASE_ASSESSMENT) {
|
|
$task->completed = false;
|
|
}
|
|
$a = new stdClass();
|
|
$a->total = $numofpeers;
|
|
$a->todo = $numofpeerstodo;
|
|
$task->title = get_string('taskassesspeers', 'workshop');
|
|
$task->details = get_string('taskassesspeersdetails', 'workshop', $a);
|
|
unset($a);
|
|
$phase->tasks['assesspeers'] = $task;
|
|
}
|
|
if ($numofself) {
|
|
$task = new stdClass();
|
|
if ($numofselftodo == 0) {
|
|
$task->completed = true;
|
|
} elseif ($this->phase > self::PHASE_ASSESSMENT) {
|
|
$task->completed = false;
|
|
}
|
|
$task->title = get_string('taskassessself', 'workshop');
|
|
$phase->tasks['assessself'] = $task;
|
|
}
|
|
$phases[self::PHASE_ASSESSMENT] = $phase;
|
|
|
|
// Prepare tasks for the grading evaluation phase - todo
|
|
$phase = new stdClass();
|
|
$phase->title = get_string('phaseevaluation', 'workshop');
|
|
$phase->tasks = array();
|
|
$phases[self::PHASE_EVALUATION] = $phase;
|
|
|
|
// Prepare tasks for the "workshop closed" phase - todo
|
|
$phase = new stdClass();
|
|
$phase->title = get_string('phaseclosed', 'workshop');
|
|
$phase->tasks = array();
|
|
$phases[self::PHASE_CLOSED] = $phase;
|
|
|
|
// Polish data, set default values if not done explicitly
|
|
foreach ($phases as $phasecode => $phase) {
|
|
$phase->title = isset($phase->title) ? $phase->title : '';
|
|
$phase->tasks = isset($phase->tasks) ? $phase->tasks : array();
|
|
if ($phasecode == $this->phase) {
|
|
$phase->active = true;
|
|
} else {
|
|
$phase->active = false;
|
|
}
|
|
if (!isset($phase->actions)) {
|
|
$phase->actions = array();
|
|
}
|
|
|
|
foreach ($phase->tasks as $taskcode => $task) {
|
|
$task->title = isset($task->title) ? $task->title : '';
|
|
$task->link = isset($task->link) ? $task->link : null;
|
|
$task->details = isset($task->details) ? $task->details : '';
|
|
$task->completed = isset($task->completed) ? $task->completed : null;
|
|
}
|
|
}
|
|
|
|
// Add phase swithing actions
|
|
if (has_capability('mod/workshop:switchphase', $context, $userid)) {
|
|
foreach ($phases as $phasecode => $phase) {
|
|
if (! $phase->active) {
|
|
$action = new stdClass();
|
|
$action->type = 'switchphase';
|
|
$action->url = $this->switchphase_url($phasecode);
|
|
$phase->actions[] = $action;
|
|
}
|
|
}
|
|
}
|
|
|
|
return $phases;
|
|
}
|
|
|
|
/**
|
|
* Has the assessment form been defined?
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function assessment_form_ready() {
|
|
return $this->grading_strategy_instance()->form_ready();
|
|
}
|
|
|
|
/**
|
|
* Switch to a new workshop phase
|
|
*
|
|
* Modifies the underlying database record. You should terminate the script shortly after calling this.
|
|
*
|
|
* @param int $newphase new phase code
|
|
* @return bool true if success, false otherwise
|
|
*/
|
|
public function switch_phase($newphase) {
|
|
global $DB;
|
|
|
|
$known = $this->available_phases();
|
|
if (!isset($known[$newphase])) {
|
|
return false;
|
|
}
|
|
$DB->set_field('workshop', 'phase', $newphase, array('id' => $this->id));
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Saves a raw grade for submission as calculated from the assessment form fields
|
|
*
|
|
* @param array $assessmentid assessment record id, must exists
|
|
* @param mixed $grade raw percentual grade from 0.00000 to 100.00000
|
|
* @return false|float the saved grade
|
|
*/
|
|
public function set_peer_grade($assessmentid, $grade) {
|
|
global $DB;
|
|
|
|
if (is_null($grade)) {
|
|
return false;
|
|
}
|
|
$data = new stdClass();
|
|
$data->id = $assessmentid;
|
|
$data->grade = $grade;
|
|
$DB->update_record('workshop_assessments', $data);
|
|
return $grade;
|
|
}
|
|
|
|
/**
|
|
* Prepares data object with all workshop grades to be rendered
|
|
*
|
|
* @todo this is very similar to what allocation/manual/lib.php does - refactoring expectable
|
|
* @param stdClass $context of the workshop instance
|
|
* @param int $userid
|
|
* @param int $page the current page (for the pagination)
|
|
* @return stdClass data for the renderer
|
|
*/
|
|
public function prepare_grading_report(stdClass $context, $userid, $page) {
|
|
global $DB;
|
|
|
|
$canviewall = has_capability('mod/workshop:viewallassessments', $context, $userid);
|
|
$isparticipant = has_any_capability(array('mod/workshop:submit', 'mod/workshop:peerassess'), $context, $userid);
|
|
|
|
if (!$canviewall and !$isparticipant) {
|
|
// who the hell is this?
|
|
return array();
|
|
}
|
|
|
|
if ($canviewall) {
|
|
// fetch the list of ids of all workshop participants - this may get really long so fetch just id
|
|
$participants = get_users_by_capability($context, array('mod/workshop:submit', 'mod/workshop:peerassess'),
|
|
'u.id', 'u.lastname,u.firstname,u.id', '', '', '', '', false, false, true);
|
|
} else {
|
|
// this is an ordinary workshop participant (aka student) - display the report just for him/her
|
|
$participants = array($userid => (object)array('id' => $userid));
|
|
}
|
|
|
|
// we will need to know the number of all later for the pagination purposes
|
|
$numofparticipants = count($participants);
|
|
|
|
// slice the list of participants according to the current page
|
|
$participants = array_slice($participants, $page * self::PERPAGE, self::PERPAGE, true);
|
|
|
|
// this will hold the information needed to display user names and pictures
|
|
$userinfo = $DB->get_records_list('user', 'id', array_keys($participants), '', 'id,lastname,firstname,picture,imagealt');
|
|
|
|
// load the participants' submissions
|
|
$submissions = $this->get_submissions(array_keys($participants));
|
|
foreach ($submissions as $submission) {
|
|
if (!isset($userinfo[$submission->authorid])) {
|
|
$userinfo[$submission->authorid] = new stdClass();
|
|
$userinfo[$submission->authorid]->id = $submission->authorid;
|
|
$userinfo[$submission->authorid]->firstname = $submission->authorfirstname;
|
|
$userinfo[$submission->authorid]->lastname = $submission->authorlastname;
|
|
$userinfo[$submission->authorid]->picture = $submission->authorpicture;
|
|
$userinfo[$submission->authorid]->imagealt = $submission->authorimagealt;
|
|
}
|
|
if (!isset($userinfo[$submission->gradeoverby])) {
|
|
$userinfo[$submission->gradeoverby] = new stdClass();
|
|
$userinfo[$submission->gradeoverby]->id = $submission->gradeoverby;
|
|
$userinfo[$submission->gradeoverby]->firstname = $submission->overfirstname;
|
|
$userinfo[$submission->gradeoverby]->lastname = $submission->overlastname;
|
|
$userinfo[$submission->gradeoverby]->picture = $submission->overpicture;
|
|
$userinfo[$submission->gradeoverby]->imagealt = $submission->overimagealt;
|
|
}
|
|
}
|
|
|
|
// get current reviewers
|
|
$reviewers = array();
|
|
if ($submissions) {
|
|
list($submissionids, $params) = $DB->get_in_or_equal(array_keys($submissions), SQL_PARAMS_NAMED);
|
|
$sql = "SELECT a.id AS assessmentid, a.submissionid, a.grade, a.gradinggrade, a.gradinggradeover,
|
|
r.id AS reviewerid, r.lastname, r.firstname, r.picture, r.imagealt,
|
|
s.id AS submissionid, s.authorid
|
|
FROM {workshop_assessments} a
|
|
JOIN {user} r ON (a.reviewerid = r.id)
|
|
JOIN {workshop_submissions} s ON (a.submissionid = s.id)
|
|
WHERE a.submissionid $submissionids";
|
|
$reviewers = $DB->get_records_sql($sql, $params);
|
|
foreach ($reviewers as $reviewer) {
|
|
if (!isset($userinfo[$reviewer->reviewerid])) {
|
|
$userinfo[$reviewer->reviewerid] = new stdClass();
|
|
$userinfo[$reviewer->reviewerid]->id = $reviewer->reviewerid;
|
|
$userinfo[$reviewer->reviewerid]->firstname = $reviewer->firstname;
|
|
$userinfo[$reviewer->reviewerid]->lastname = $reviewer->lastname;
|
|
$userinfo[$reviewer->reviewerid]->picture = $reviewer->picture;
|
|
$userinfo[$reviewer->reviewerid]->imagealt = $reviewer->imagealt;
|
|
}
|
|
}
|
|
}
|
|
|
|
// get current reviewees
|
|
$reviewees = array();
|
|
if ($participants) {
|
|
list($participantids, $params) = $DB->get_in_or_equal(array_keys($participants), SQL_PARAMS_NAMED);
|
|
$params['workshopid'] = $this->id;
|
|
$sql = "SELECT a.id AS assessmentid, a.submissionid, a.grade, a.gradinggrade, a.gradinggradeover,
|
|
u.id AS reviewerid,
|
|
s.id AS submissionid,
|
|
e.id AS authorid, e.lastname, e.firstname, e.picture, e.imagealt
|
|
FROM {user} u
|
|
JOIN {workshop_assessments} a ON (a.reviewerid = u.id)
|
|
JOIN {workshop_submissions} s ON (a.submissionid = s.id)
|
|
JOIN {user} e ON (s.authorid = e.id)
|
|
WHERE u.id $participantids AND s.workshopid = :workshopid";
|
|
$reviewees = $DB->get_records_sql($sql, $params);
|
|
foreach ($reviewees as $reviewee) {
|
|
if (!isset($userinfo[$reviewee->authorid])) {
|
|
$userinfo[$reviewee->authorid] = new stdClass();
|
|
$userinfo[$reviewee->authorid]->id = $reviewee->authorid;
|
|
$userinfo[$reviewee->authorid]->firstname = $reviewee->firstname;
|
|
$userinfo[$reviewee->authorid]->lastname = $reviewee->lastname;
|
|
$userinfo[$reviewee->authorid]->picture = $reviewee->picture;
|
|
$userinfo[$reviewee->authorid]->imagealt = $reviewee->imagealt;
|
|
}
|
|
}
|
|
}
|
|
|
|
// get the current grades for assessment
|
|
$gradinggrades = array();
|
|
if ($participants) {
|
|
list($participantids, $params) = $DB->get_in_or_equal(array_keys($participants), SQL_PARAMS_NAMED);
|
|
$params['workshopid'] = $this->id;
|
|
$sql = "SELECT * FROM {workshop_evaluations} WHERE reviewerid $participantids AND workshopid = :workshopid";
|
|
$gradinggrades = $DB->get_records_sql($sql, $params);
|
|
}
|
|
|
|
// now populate the final data object to be rendered
|
|
$grades = array();
|
|
|
|
foreach ($participants as $participant) {
|
|
// set up default (null) values
|
|
$grades[$participant->id] = new stdClass;
|
|
$grades[$participant->id]->userid = $participant->id;
|
|
$grades[$participant->id]->submissionid = null;
|
|
$grades[$participant->id]->submissiongrade = null;
|
|
$grades[$participant->id]->reviewedby = array();
|
|
$grades[$participant->id]->reviewerof = array();
|
|
$grades[$participant->id]->gradinggrade = null;
|
|
$grades[$participant->id]->totalgrade = null;
|
|
}
|
|
unset($participants);
|
|
unset($participant);
|
|
|
|
foreach ($submissions as $submission) {
|
|
$grades[$submission->authorid]->submissionid = $submission->id;
|
|
$grades[$submission->authorid]->submissiontitle = $submission->title;
|
|
$grades[$submission->authorid]->submissiongrade = $submission->grade;
|
|
$grades[$submission->authorid]->submissiongradeover = $submission->gradeover;
|
|
$grades[$submission->authorid]->submissiongradeoverby = $submission->gradeoverby;
|
|
}
|
|
unset($submissions);
|
|
unset($submission);
|
|
|
|
foreach($reviewers as $reviewer) {
|
|
$info = new stdClass();
|
|
$info->userid = $reviewer->reviewerid;
|
|
$info->assessmentid = $reviewer->assessmentid;
|
|
$info->submissionid = $reviewer->submissionid;
|
|
$info->grade = $reviewer->grade;
|
|
$info->gradinggrade = $reviewer->gradinggrade;
|
|
$info->gradinggradeover = $reviewer->gradinggradeover;
|
|
$grades[$reviewer->authorid]->reviewedby[$reviewer->reviewerid] = $info;
|
|
}
|
|
unset($reviewers);
|
|
unset($reviewer);
|
|
|
|
foreach($reviewees as $reviewee) {
|
|
$info = new stdClass();
|
|
$info->userid = $reviewee->authorid;
|
|
$info->assessmentid = $reviewee->assessmentid;
|
|
$info->submissionid = $reviewee->submissionid;
|
|
$info->grade = $reviewee->grade;
|
|
$info->gradinggrade = $reviewee->gradinggrade;
|
|
$info->gradinggradeover = $reviewee->gradinggradeover;
|
|
$grades[$reviewee->reviewerid]->reviewerof[$reviewee->authorid] = $info;
|
|
}
|
|
unset($reviewees);
|
|
unset($reviewee);
|
|
|
|
foreach ($gradinggrades as $gradinggrade) {
|
|
$grades[$gradinggrade->reviewerid]->gradinggrade = $gradinggrade->gradinggrade;
|
|
}
|
|
|
|
foreach ($grades as $grade) {
|
|
$grade->totalgrade = $this->total_grade($grade->submissiongrade, $grade->gradinggrade);
|
|
}
|
|
|
|
$data = new stdClass();
|
|
$data->grades = $grades;
|
|
$data->userinfo = $userinfo;
|
|
$data->totalcount = $numofparticipants;
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* Format the grade for the output
|
|
*
|
|
* The returned value must not be used for calculations, it is intended for the displaying purposes only
|
|
*
|
|
* @param float $value the grade value
|
|
* @param bool $keepnull whether keep nulls as nulls or return their string representation
|
|
* @return string
|
|
*/
|
|
public function format_grade($value, $keepnull = false) {
|
|
if (is_null($value)) {
|
|
if ($keepnull) {
|
|
return null;
|
|
} else {
|
|
return get_string('null', 'workshop');
|
|
}
|
|
}
|
|
$decimalpoints = 1; // todo make the precision configurable
|
|
$localized = true;
|
|
|
|
return format_float($value, $decimalpoints, $localized);
|
|
}
|
|
|
|
/**
|
|
* Calculate the participant's total grade given the aggregated grades for submission and assessments
|
|
*
|
|
* todo there will be a setting how to deal with null values (for example no grade for submission) - if
|
|
* they are considered as 0 or excluded
|
|
*
|
|
* @param float|null $grade for submission
|
|
* @param float|null $gradinggrade for assessment
|
|
* @return float|null
|
|
*/
|
|
public function total_grade($grade=null, $gradinggrade=null) {
|
|
if (is_null($grade) and is_null($gradinggrade)) {
|
|
return null;
|
|
}
|
|
return grade_floatval((float)$grade + (float)$gradinggrade);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Internal methods (implementation details) //
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/**
|
|
* Given a list of user ids, returns the filtered one containing just ids of users with own submission
|
|
*
|
|
* Example submissions are ignored.
|
|
*
|
|
* @param array $userids
|
|
* @return array
|
|
*/
|
|
protected function users_with_submission(array $userids) {
|
|
global $DB;
|
|
|
|
if (empty($userids)) {
|
|
return array();
|
|
}
|
|
$userswithsubmission = array();
|
|
list($usql, $uparams) = $DB->get_in_or_equal($userids, SQL_PARAMS_NAMED);
|
|
$sql = "SELECT id,authorid
|
|
FROM {workshop_submissions}
|
|
WHERE example = 0 AND workshopid = :workshopid AND authorid $usql";
|
|
$params = array('workshopid' => $this->id);
|
|
$params = array_merge($params, $uparams);
|
|
$submissions = $DB->get_records_sql($sql, $params);
|
|
foreach ($submissions as $submission) {
|
|
$userswithsubmission[$submission->authorid] = true;
|
|
}
|
|
|
|
return $userswithsubmission;
|
|
}
|
|
|
|
/**
|
|
* @return array of available workshop phases
|
|
*/
|
|
protected function available_phases() {
|
|
return array(
|
|
self::PHASE_SETUP => true,
|
|
self::PHASE_SUBMISSION => true,
|
|
self::PHASE_ASSESSMENT => true,
|
|
self::PHASE_EVALUATION => true,
|
|
self::PHASE_CLOSED => true,
|
|
);
|
|
}
|
|
|
|
|
|
}
|