Skip to content

Commit

Permalink
CTP-3559 course mod permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
watson8 committed Aug 19, 2024
1 parent 4cc98a7 commit 77d57df
Show file tree
Hide file tree
Showing 8 changed files with 63 additions and 43 deletions.
10 changes: 5 additions & 5 deletions actions/finalgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@
// Determines whether the current user is the owner of the grade.
$gradeowner = true;

$course_module = get_coursemodule_from_id('coursework', $cmid, 0, false, MUST_EXIST);
$course = $DB->get_record('course', array('id' => $course_module->course), '*', MUST_EXIST);
require_login($course, false, $course_module);
$coursemodule = get_coursemodule_from_id('coursework', $cmid, 0, false, MUST_EXIST);
$course = $DB->get_record('course', array('id' => $coursemodule->course), '*', MUST_EXIST);
require_login($course, false, $coursemodule);

$coursework = mod_coursework\models\coursework::find($course_module->instance);
$coursework = mod_coursework\models\coursework::find($coursemodule->instance);
$submission = submission::find($submission_id);
$teacherfeedback = $DB->get_record('coursework_feedbacks', array('id' => $feedbackid));

// This is where stuff used to construct the dynamic form is fed in.

// Can the user final grade in this course?
// Can the user final grade for this course module?
$canfinalgrade = has_capability('mod/coursework:addagreedgrade', $PAGE->context);

// TODO shift into custom data and set via somewhere else.
Expand Down
43 changes: 21 additions & 22 deletions actions/general_feedback.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,43 +26,42 @@

global $CFG, $PAGE, $DB, $OUTPUT;

$course_module_id = required_param('cmid', PARAM_INT);
$id = optional_param('id', 0, PARAM_INT);
$cmid = required_param('cmid', PARAM_INT);
$ajax = optional_param('ajax', false, PARAM_BOOL);

$coursework = $DB->get_record('coursework', array('id' => $id));
$course = $DB->get_record('course', array('id' => $coursework->course));
$cm = get_coursemodule_from_instance('coursework', $cmid);
$course = $DB->get_record('course', array('id' => $cm->course));
require_login($course, false, $cm);

require_login($course);
$coursework = $DB->get_record('coursework', array('id' => $cm->instance));

if (!has_capability('mod/coursework:addinitialgrade', $PAGE->context)) {
print_error('Can\'t grade here - permission denied.');
die();
throw new \moodle_exception('access_denied', 'coursework');
}

$url = '/mod/coursework/actions/general_feedback.php';
$link = new moodle_url($url, array('cmid' => $course_module_id, 'id' => $id));
$link = new moodle_url($url, array('cmid' => $cmid));
$PAGE->set_url($link);
$title = get_string('generalfeedback', 'mod_coursework');
$PAGE->set_title($title);

$custom_data = new stdClass();
$custom_data->ajax = $ajax;
$custom_data->id = $id;
$custom_data->cmid = $course_module_id;
$customdata = new stdClass();
$customdata->ajax = $ajax;
$customdata->id = $coursework->id;
$customdata->cmid = $cmid;

$grading_form = new general_feedback_form(null, $custom_data);
$gradingform = new general_feedback_form(null, $customdata);

$returned_data = $grading_form->get_data();
$returneddata = $gradingform->get_data();

if ($grading_form->is_cancelled()) {
redirect(new moodle_url('/mod/coursework/view.php', array('id' => $course_module_id)));
} else if ($returned_data) {
$grading_form->process_data($returned_data);
if ($gradingform->is_cancelled()) {
redirect(new moodle_url('/mod/coursework/view.php', array('id' => $cmid)));
} else if ($returneddata) {
$gradingform->process_data($returneddata);
// TODO should not echo before header.
echo 'General feedback updated..';
if (!$ajax) {
redirect(new moodle_url('/mod/coursework/view.php', array('id' => $course_module_id)),
redirect(new moodle_url('/mod/coursework/view.php', array('id' => $cmid)),
get_string('changessaved'));
}
} else {
Expand All @@ -72,9 +71,9 @@
echo $OUTPUT->header();
echo $OUTPUT->heading('General Feedback');
}
$custom_data->feedbackcomment_editor['text'] = $coursework->feedbackcomment;
$grading_form->set_data($custom_data);
$grading_form->display();
$customdata->feedbackcomment_editor['text'] = $coursework->feedbackcomment;
$gradingform->set_data($customdata);
$gradingform->display();

if (!$ajax) {
echo $OUTPUT->footer();
Expand Down
15 changes: 12 additions & 3 deletions classes/controllers/deadline_extensions_controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,10 @@ public function ajax_submit_mitigation($data_params) {
$extended_deadline = false;
$response = [];
$this->coursework = coursework::find(['id' => $this->params['courseworkid']]);
require_login($this->coursework->course);
$cm = get_coursemodule_from_instance(
'coursework', $this->coursework->id, 0, false, MUST_EXIST
);
require_login($this->coursework->course, false, $cm);
$params = $this->set_default_current_deadline();
$ability = new ability(user::find($USER), $this->coursework);
$errors = $this->validation($data_params);
Expand Down Expand Up @@ -278,7 +281,10 @@ public function ajax_edit_mitigation($data_params) {
$response = [];
if ($data_params['id'] > 0) {
$this->coursework = coursework::find(['id' => $this->params['courseworkid']]);
require_login($this->coursework->course);
$cm = get_coursemodule_from_instance(
'coursework', $this->coursework->id, 0, false, MUST_EXIST
);
require_login($this->coursework->course, false, $cm);

$ability = new ability(user::find($USER), $this->coursework);
$deadline_extension = deadline_extension::find(['id' => $data_params['id']]);
Expand Down Expand Up @@ -332,7 +338,10 @@ public function ajax_new_mitigation($data_params) {
global $USER, $DB;
$response = [];
$this->coursework = coursework::find(['id' => $this->params['courseworkid']]);
require_login($this->coursework->course);
$cm = get_coursemodule_from_instance(
'coursework', $this->coursework->id, 0, false, MUST_EXIST
);
require_login($this->coursework->course, false, $cm);

$params = array(
'allocatableid' => $this->params['allocatableid'],
Expand Down
2 changes: 1 addition & 1 deletion classes/controllers/grading_controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ public function get_remain_rows_grading_table($options) {
$coursework_record = $DB->get_record('coursework', array('id' => $options['courseworkid']), '*', MUST_EXIST);
//$coursework = mod_coursework\models\coursework::find($coursework_record);
$coursework = coursework::find($coursework_record, false);
require_login($coursework->course);

$coursework->coursemodule = get_coursemodule_from_instance('coursework', $coursework->id, $coursework->course, false, MUST_EXIST);
require_login($coursework->course, false, $coursework->coursemodule);
$grading_report = $coursework->renderable_grading_report_factory($options);

$tablerows = $grading_report->get_table_rows_for_page();
Expand Down
5 changes: 4 additions & 1 deletion classes/controllers/personal_deadlines_controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,10 @@ public function insert_update($time) {
];
}
$this->coursework = coursework::find(['id' => $this->params['courseworkid']]);
require_login($this->coursework->course);
$cm = get_coursemodule_from_instance(
'coursework', $this->coursework->id, 0, false, MUST_EXIST
);
require_login($this->coursework->course, false, $cm);
$params = $this->set_default_current_deadline();

$ability = new ability(user::find($USER), $this->coursework);
Expand Down
27 changes: 18 additions & 9 deletions classes/export/csv/cells/assessorfeedback_cell.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,22 @@ public function get_header($stage) {
public function validate_cell($value, $submissionid, $stage_identifier='', $uploadedgradecells = []) {
global $DB, $PAGE, $USER;

$modulecontext = $PAGE->context;
if ($modulecontext->contextlevel !== CONTEXT_MODULE) {
// CTP-3559 sometimes require_login() is being called without passing a module context.
// This means that $PAGE->context will be course context & capability checks may be wrong so check it here.
throw new \moodle_exception(
"accesserror", 'coursework', "", null,
"Invalid context level " . $modulecontext->contextlevel
);
}
$agreedgradecap = array('mod/coursework:addagreedgrade', 'mod/coursework:editagreedgrade');
$initialgradecap = array('mod/coursework:addinitialgrade', 'mod/coursework:editinitialgrade');

$subdbrecord = $DB->get_record('coursework_submissions', array('id' => $submissionid));
$submission = \mod_coursework\models\submission::find($subdbrecord);
if (has_any_capability($agreedgradecap, $PAGE->context) && has_any_capability($initialgradecap, $PAGE->context)
|| has_capability('mod/coursework:administergrades', $PAGE->context)) {
if (has_any_capability($agreedgradecap, $modulecontext) && has_any_capability($initialgradecap, $modulecontext)
|| has_capability('mod/coursework:administergrades', $modulecontext)) {

// Is the submission in question ready to grade?
if (!$submission->ready_to_grade()) return get_string('submissionnotreadytograde', 'coursework');
Expand All @@ -92,7 +101,7 @@ public function validate_cell($value, $submissionid, $stage_identifier='', $uplo
if ($submission->get_state() >= submission::PUBLISHED) return $submission->get_status_text();

// If you have administer grades you can grade anything
if (has_capability('mod/coursework:administergrades', $PAGE->context)) return true;
if (has_capability('mod/coursework:administergrades', $modulecontext)) return true;

// Has this submission been graded if yes then check if the current user graded it (only if allocation is not enabled).
$feedback_params = array(
Expand All @@ -106,18 +115,18 @@ public function validate_cell($value, $submissionid, $stage_identifier='', $uplo
//does a feedback exist for this stage
if (!empty($feedback)) {
// This is a new feedback check it against the new ability checks
if (!has_capability('mod/coursework:administergrades', $PAGE->context) && !$ability->can('new', $feedback)) return get_string('nopermissiontoeditgrade', 'coursework');
if (!has_capability('mod/coursework:administergrades', $modulecontext) && !$ability->can('new', $feedback)) return get_string('nopermissiontoeditgrade', 'coursework');

} else {

// This is a new feedback check it against the edit ability checks
if (!has_capability('mod/coursework:administergrades', $PAGE->context) && !$ability->can('edit', $feedback)) return get_string('nopermissiontoeditgrade', 'coursework');
if (!has_capability('mod/coursework:administergrades', $modulecontext) && !$ability->can('edit', $feedback)) return get_string('nopermissiontoeditgrade', 'coursework');

}

if (!$this->coursework->allocation_enabled() && !empty($feedback)) {
// Was this user the one who last graded this submission if not then user cannot grade
if ($feedback->assessorid != $USER->id || !has_capability('mod/coursework:editinitialgrade', $PAGE->context) )
if ($feedback->assessorid != $USER->id || !has_capability('mod/coursework:editinitialgrade', $modulecontext) )
return get_string('nopermissiontogradesubmission', 'coursework');

}
Expand All @@ -131,12 +140,12 @@ public function validate_cell($value, $submissionid, $stage_identifier='', $uplo
'stage_identifier' => $stage_identifier
);

if (!has_capability('mod/coursework:administergrades', $PAGE->context)
if (!has_capability('mod/coursework:administergrades', $modulecontext)
&& !$DB->get_record('coursework_allocation_pairs', $allocation_params)) return get_string('nopermissiontogradesubmission', 'coursework');
}

// Check for coursework without allocations - with/without samplings
if (has_capability('mod/coursework:addinitialgrade', $PAGE->context) && !has_capability('mod/coursework:editinitialgrade', $PAGE->context)
if (has_capability('mod/coursework:addinitialgrade', $modulecontext) && !has_capability('mod/coursework:editinitialgrade', $modulecontext)
&& $this->coursework->get_max_markers() > 1 && !$this->coursework->allocation_enabled()) {

// check how many feedbacks for this submission
Expand All @@ -153,7 +162,7 @@ public function validate_cell($value, $submissionid, $stage_identifier='', $uplo
if ($assessors == $feedbacks) return get_string('gradealreadyexists', 'coursework');
}

} else if (has_any_capability($agreedgradecap, $PAGE->context)) {
} else if (has_any_capability($agreedgradecap, $modulecontext)) {

// If you have the add agreed or edit agreed grades capabilities then you may have the grades on your export sheet
// We will return true as we will ignore them
Expand Down
1 change: 1 addition & 0 deletions lang/en/coursework.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
global $CFG;

$string['access_denied'] = 'Access denied';
$string['accesserror'] = 'Access error';
$string['all'] = 'ALL';

$string['aday'] = 'A day';
Expand Down
3 changes: 1 addition & 2 deletions renderers/object_renderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -536,8 +536,7 @@ protected function render_mod_coursework_coursework(mod_coursework_coursework $c
$class = ($coursework->feedbackcomment) ? 'edit-btn' : 'add-general_feedback-btn';
$out .= html_writer::tag('p', '', array('id' => 'feedback_text'));
$link = new moodle_url('/mod/coursework/actions/general_feedback.php',
array('cmid' => $coursework->get_coursemodule_id(),
'id' => $coursework->id));
array('cmid' => $coursework->get_coursemodule_id()));
$out .= html_writer::link($link,
$title,
array('class' => $class));
Expand Down

0 comments on commit 77d57df

Please sign in to comment.