mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 00:12:42 +02:00
Merge branch 'MDL-61905-master-privacyworkshop' of git://github.com/mudrd8mz/moodle
This commit is contained in:
commit
4191032993
68
mod/workshop/allocation/manual/classes/privacy/provider.php
Normal file
68
mod/workshop/allocation/manual/classes/privacy/provider.php
Normal file
@ -0,0 +1,68 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides the class {@link workshopallocation_manual\privacy\provider}
|
||||
*
|
||||
* @package workshopallocation_manual
|
||||
* @category privacy
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace workshopallocation_manual\privacy;
|
||||
|
||||
use core_privacy\local\metadata\collection;
|
||||
use core_privacy\local\request\writer;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Privacy API implementation for the Manual allocation method.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class provider implements \core_privacy\local\metadata\provider, \core_privacy\local\request\user_preference_provider {
|
||||
|
||||
/**
|
||||
* Describe all the places where this plugin stores some personal data.
|
||||
*
|
||||
* @param collection $collection Collection of items to add metadata to.
|
||||
* @return collection Collection with our added items.
|
||||
*/
|
||||
public static function get_metadata(collection $collection) : collection {
|
||||
|
||||
$collection->add_user_preference('workshopallocation_manual_perpage', 'privacy:metadata:preference:perpage');
|
||||
|
||||
return $collection;
|
||||
}
|
||||
|
||||
/**
|
||||
* Export user preferences controlled by this plugin.
|
||||
*
|
||||
* @param int $userid ID of the user we are exporting data form.
|
||||
*/
|
||||
public static function export_user_preferences(int $userid) {
|
||||
|
||||
$perpage = get_user_preferences('workshopallocation_manual_perpage', null, $userid);
|
||||
|
||||
if ($perpage !== null) {
|
||||
writer::export_user_preference('workshopallocation_manual', 'workshopallocation_manual_perpage', $perpage,
|
||||
get_string('privacy:metadata:preference:perpage', 'workshopallocation_manual'));
|
||||
}
|
||||
}
|
||||
}
|
@ -31,4 +31,5 @@ $string['allocationexists'] = 'The allocation already exists';
|
||||
$string['areyousuretodeallocate'] = 'Are you sure you want deallocate the selected assessment?';
|
||||
$string['areyousuretodeallocategraded'] = 'You are going to remove the assessment that has already been graded. Are you really sure you want to do it?';
|
||||
$string['pluginname'] = 'Manual allocation';
|
||||
$string['privacy:metadata:preference:perpage'] = 'Number of allocated assessments the user prefers to see on one page.';
|
||||
$string['showallparticipants'] = 'Show all participants';
|
||||
|
@ -0,0 +1,69 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides the {@link workshopallocation_manual_privacy_provider_testcase} class.
|
||||
*
|
||||
* @package workshopallocation_manual
|
||||
* @category test
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
use core_privacy\local\request\writer;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Unit tests for the privacy API implementation.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class workshopallocation_manual_privacy_provider_testcase extends \core_privacy\tests\provider_testcase {
|
||||
|
||||
/**
|
||||
* When no preference exists, there should be no export.
|
||||
*/
|
||||
public function test_no_preference() {
|
||||
global $USER;
|
||||
$this->resetAfterTest();
|
||||
$this->setAdminUser();
|
||||
|
||||
\workshopallocation_manual\privacy\provider::export_user_preferences($USER->id);
|
||||
$this->assertFalse(writer::with_context(\context_system::instance())->has_any_data());
|
||||
}
|
||||
|
||||
/**
|
||||
* Test that the recently selected perpage is exported.
|
||||
*/
|
||||
public function test_export_preferences() {
|
||||
global $USER;
|
||||
$this->resetAfterTest();
|
||||
$this->setAdminUser();
|
||||
|
||||
set_user_preference('workshopallocation_manual_perpage', 81);
|
||||
|
||||
\workshopallocation_manual\privacy\provider::export_user_preferences($USER->id);
|
||||
$this->assertTrue(writer::with_context(\context_system::instance())->has_any_data());
|
||||
|
||||
$prefs = writer::with_context(\context_system::instance())->get_user_preferences('workshopallocation_manual');
|
||||
$this->assertNotEmpty($prefs->workshopallocation_manual_perpage);
|
||||
$this->assertEquals(81, $prefs->workshopallocation_manual_perpage->value);
|
||||
$this->assertContains(get_string('privacy:metadata:preference:perpage', 'workshopallocation_manual'),
|
||||
$prefs->workshopallocation_manual_perpage->description);
|
||||
}
|
||||
}
|
46
mod/workshop/allocation/random/classes/privacy/provider.php
Normal file
46
mod/workshop/allocation/random/classes/privacy/provider.php
Normal file
@ -0,0 +1,46 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides the class {@link workshopallocation_random\privacy\provider}
|
||||
*
|
||||
* @package workshopallocation_random
|
||||
* @category privacy
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace workshopallocation_random\privacy;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Privacy API implementation for the Random allocation method.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class provider implements \core_privacy\local\metadata\null_provider {
|
||||
|
||||
/**
|
||||
* Explain that this plugin stores no personal data.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function get_reason() : string {
|
||||
return 'privacy:metadata';
|
||||
}
|
||||
}
|
@ -43,6 +43,7 @@ $string['numofselfallocatedsubmissions'] = 'Self-allocating {$a} submission(s)';
|
||||
$string['numperauthor'] = 'per submission';
|
||||
$string['numperreviewer'] = 'per reviewer';
|
||||
$string['pluginname'] = 'Random allocation';
|
||||
$string['privacy:metadata'] = 'The Random allocation plugin does not store any personal data. Actual personal data about who is going to assess whom are stored by the Workshop module itself and they form basis for exporting the assessments details.';
|
||||
$string['randomallocationdone'] = 'Random allocation done';
|
||||
$string['resultnomorepeers'] = 'No more peers available';
|
||||
$string['resultnomorepeersingroup'] = 'No more peers available in this separate group';
|
||||
|
@ -0,0 +1,46 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides the class {@link workshopallocation_scheduled\privacy\provider}
|
||||
*
|
||||
* @package workshopallocation_scheduled
|
||||
* @category privacy
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace workshopallocation_scheduled\privacy;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Privacy API implementation for the Scheduled allocation method.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class provider implements \core_privacy\local\metadata\null_provider {
|
||||
|
||||
/**
|
||||
* Explain that this plugin stores no personal data.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function get_reason() : string {
|
||||
return 'privacy:metadata';
|
||||
}
|
||||
}
|
@ -47,6 +47,7 @@ Internally, the random allocation method is executed with the parameters pre-def
|
||||
|
||||
Note that the scheduled allocation is *not* executed if you manually switch the workshop into the assessment phase before the submissions deadline. You have to allocate submissions yourself in that case. The scheduled allocation method is particularly useful when used together with the automatic phase switching feature.';
|
||||
$string['pluginname'] = 'Scheduled allocation';
|
||||
$string['privacy:metadata'] = 'The Scheduled allocation plugin does not store any personal data. Actual personal data about who is going to assess whom are stored by the Workshop module itself and they form basis for exporting the assessments details.';
|
||||
$string['randomallocationsettings'] = 'Allocation settings';
|
||||
$string['randomallocationsettings_help'] = 'Parameters for the random allocation method are defined here. They will be used by the random allocation plugin for the actual allocation of submissions.';
|
||||
$string['resultdisabled'] = 'Scheduled allocation disabled';
|
||||
|
668
mod/workshop/classes/privacy/provider.php
Normal file
668
mod/workshop/classes/privacy/provider.php
Normal file
@ -0,0 +1,668 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Defines {@link \mod_workshop\privacy\provider} class.
|
||||
*
|
||||
* @package mod_workshop
|
||||
* @category privacy
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace mod_workshop\privacy;
|
||||
|
||||
use core_privacy\local\metadata\collection;
|
||||
use core_privacy\local\request\approved_contextlist;
|
||||
use core_privacy\local\request\contextlist;
|
||||
use core_privacy\local\request\deletion_criteria;
|
||||
use core_privacy\local\request\helper;
|
||||
use core_privacy\local\request\transform;
|
||||
use core_privacy\local\request\writer;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
require_once($CFG->dirroot.'/mod/workshop/locallib.php');
|
||||
|
||||
/**
|
||||
* Privacy API implementation for the Workshop activity module.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class provider implements
|
||||
\core_privacy\local\metadata\provider,
|
||||
\core_privacy\local\request\user_preference_provider,
|
||||
\core_privacy\local\request\plugin\provider {
|
||||
|
||||
/**
|
||||
* Describe all the places where the Workshop module stores some personal data.
|
||||
*
|
||||
* @param collection $collection Collection of items to add metadata to.
|
||||
* @return collection Collection with our added items.
|
||||
*/
|
||||
public static function get_metadata(collection $collection) : collection {
|
||||
|
||||
$collection->add_database_table('workshop_submissions', [
|
||||
'workshopid' => 'privacy:metadata:workshopid',
|
||||
'authorid' => 'privacy:metadata:authorid',
|
||||
'example' => 'privacy:metadata:example',
|
||||
'timecreated' => 'privacy:metadata:timecreated',
|
||||
'timemodified' => 'privacy:metadata:timemodified',
|
||||
'title' => 'privacy:metadata:submissiontitle',
|
||||
'content' => 'privacy:metadata:submissioncontent',
|
||||
'contentformat' => 'privacy:metadata:submissioncontentformat',
|
||||
'grade' => 'privacy:metadata:submissiongrade',
|
||||
'gradeover' => 'privacy:metadata:submissiongradeover',
|
||||
'feedbackauthor' => 'privacy:metadata:feedbackauthor',
|
||||
'feedbackauthorformat' => 'privacy:metadata:feedbackauthorformat',
|
||||
'published' => 'privacy:metadata:published',
|
||||
'late' => 'privacy:metadata:late',
|
||||
], 'privacy:metadata:workshopsubmissions');
|
||||
|
||||
$collection->add_database_table('workshop_assessments', [
|
||||
'submissionid' => 'privacy:metadata:submissionid',
|
||||
'reviewerid' => 'privacy:metadata:reviewerid',
|
||||
'weight' => 'privacy:metadata:weight',
|
||||
'timecreated' => 'privacy:metadata:timecreated',
|
||||
'timemodified' => 'privacy:metadata:timemodified',
|
||||
'grade' => 'privacy:metadata:assessmentgrade',
|
||||
'gradinggrade' => 'privacy:metadata:assessmentgradinggrade',
|
||||
'gradinggradeover' => 'privacy:metadata:assessmentgradinggradeover',
|
||||
'feedbackauthor' => 'privacy:metadata:feedbackauthor',
|
||||
'feedbackauthorformat' => 'privacy:metadata:feedbackauthorformat',
|
||||
'feedbackreviewer' => 'privacy:metadata:feedbackreviewer',
|
||||
'feedbackreviewerformat' => 'privacy:metadata:feedbackreviewerformat',
|
||||
], 'privacy:metadata:workshopassessments');
|
||||
|
||||
$collection->add_database_table('workshop_grades', [
|
||||
'assessmentid' => 'privacy:metadata:assessmentid',
|
||||
'strategy' => 'privacy:metadata:strategy',
|
||||
'dimensionid' => 'privacy:metadata:dimensionid',
|
||||
'grade' => 'privacy:metadata:dimensiongrade',
|
||||
'peercomment' => 'privacy:metadata:peercomment',
|
||||
'peercommentformat' => 'privacy:metadata:peercommentformat',
|
||||
], 'privacy:metadata:workshopgrades');
|
||||
|
||||
$collection->add_database_table('workshop_aggregations', [
|
||||
'workshopid' => 'privacy:metadata:workshopid',
|
||||
'userid' => 'privacy:metadata:userid',
|
||||
'gradinggrade' => 'privacy:metadata:aggregatedgradinggrade',
|
||||
'timegraded' => 'privacy:metadata:timeaggregated',
|
||||
], 'privacy:metadata:workshopaggregations');
|
||||
|
||||
$collection->add_subsystem_link('core_files', [], 'privacy:metadata:subsystem:corefiles');
|
||||
$collection->add_subsystem_link('core_plagiarism', [], 'privacy:metadata:subsystem:coreplagiarism');
|
||||
|
||||
$collection->add_user_preference('workshop_perpage', 'privacy:metadata:preference:perpage');
|
||||
|
||||
return $collection;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the list of contexts that contain personal data for the specified user.
|
||||
*
|
||||
* User has personal data in the workshop if any of the following cases happens:
|
||||
*
|
||||
* - the user has submitted in the workshop
|
||||
* - the user has overridden a submission grade
|
||||
* - the user has been assigned as a reviewer of a submission
|
||||
* - the user has overridden a grading grade
|
||||
* - the user has a grading grade (existing or to be calculated)
|
||||
*
|
||||
* @param int $userid ID of the user.
|
||||
* @return contextlist List of contexts containing the user's personal data.
|
||||
*/
|
||||
public static function get_contexts_for_userid(int $userid) : contextlist {
|
||||
|
||||
$contextlist = new contextlist();
|
||||
|
||||
$sql = "SELECT ctx.id
|
||||
FROM {course_modules} cm
|
||||
JOIN {modules} m ON cm.module = m.id AND m.name = :module
|
||||
JOIN {context} ctx ON ctx.contextlevel = :contextlevel AND ctx.instanceid = cm.id
|
||||
JOIN {workshop} w ON cm.instance = w.id
|
||||
LEFT JOIN {workshop_submissions} ws ON ws.workshopid = w.id
|
||||
LEFT JOIN {workshop_assessments} wa ON wa.submissionid = ws.id
|
||||
LEFT JOIN {workshop_aggregations} wr ON wr.workshopid = w.id
|
||||
WHERE ws.authorid = :wsauthorid
|
||||
OR ws.gradeoverby = :wsgradeoverby
|
||||
OR wa.reviewerid = :wareviewerid
|
||||
OR wa.gradinggradeoverby = :wagradinggradeoverby
|
||||
OR wr.userid = :wruserid";
|
||||
|
||||
$params = [
|
||||
'module' => 'workshop',
|
||||
'contextlevel' => CONTEXT_MODULE,
|
||||
'wsauthorid' => $userid,
|
||||
'wsgradeoverby' => $userid,
|
||||
'wareviewerid' => $userid,
|
||||
'wagradinggradeoverby' => $userid,
|
||||
'wruserid' => $userid,
|
||||
];
|
||||
|
||||
$contextlist->add_from_sql($sql, $params);
|
||||
|
||||
return $contextlist;
|
||||
}
|
||||
|
||||
/**
|
||||
* Export personal data stored in the given contexts.
|
||||
*
|
||||
* @param approved_contextlist $contextlist List of contexts approved for export.
|
||||
*/
|
||||
public static function export_user_data(approved_contextlist $contextlist) {
|
||||
global $DB;
|
||||
|
||||
if (!count($contextlist)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$user = $contextlist->get_user();
|
||||
|
||||
// Export general information about all workshops.
|
||||
foreach ($contextlist->get_contexts() as $context) {
|
||||
if ($context->contextlevel != CONTEXT_MODULE) {
|
||||
continue;
|
||||
}
|
||||
$data = helper::get_context_data($context, $user);
|
||||
static::append_extra_workshop_data($context, $user, $data, []);
|
||||
writer::with_context($context)->export_data([], $data);
|
||||
helper::export_context_files($context, $user);
|
||||
}
|
||||
|
||||
// Export the user's own submission and all example submissions he/she created.
|
||||
static::export_submissions($contextlist);
|
||||
|
||||
// Export all given assessments.
|
||||
static::export_assessments($contextlist);
|
||||
}
|
||||
|
||||
/**
|
||||
* Export user preferences controlled by this plugin.
|
||||
*
|
||||
* @param int $userid ID of the user we are exporting data for
|
||||
*/
|
||||
public static function export_user_preferences(int $userid) {
|
||||
|
||||
$perpage = get_user_preferences('workshop_perpage', null, $userid);
|
||||
|
||||
if ($perpage !== null) {
|
||||
writer::export_user_preference('mod_workshop', 'workshop_perpage', $perpage,
|
||||
get_string('privacy:metadata:preference:perpage', 'mod_workshop'));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Append additional relevant data into the base data about the workshop instance.
|
||||
*
|
||||
* Relevant are data that are important for interpreting or evaluating the performance of the user expressed in
|
||||
* his/her exported personal data. For example, we need to know what were the instructions for submissions or what
|
||||
* was the phase of the workshop when it was exported.
|
||||
*
|
||||
* @param context $context Workshop module content.
|
||||
* @param stdClass $user User for which we are exporting data.
|
||||
* @param stdClass $data Base data about the workshop instance to append to.
|
||||
* @param array $subcontext Subcontext path items to eventually write files into.
|
||||
*/
|
||||
protected static function append_extra_workshop_data(\context $context, \stdClass $user, \stdClass $data, array $subcontext) {
|
||||
global $DB;
|
||||
|
||||
if ($context->contextlevel != CONTEXT_MODULE) {
|
||||
throw new \coding_exception('Unexpected context provided');
|
||||
}
|
||||
|
||||
$sql = "SELECT w.instructauthors, w.instructauthorsformat, w.instructreviewers, w.instructreviewersformat, w.phase,
|
||||
w.strategy, w.evaluation, w.latesubmissions, w.submissionstart, w.submissionend, w.assessmentstart,
|
||||
w.assessmentend, w.conclusion, w.conclusionformat
|
||||
FROM {course_modules} cm
|
||||
JOIN {workshop} w ON cm.instance = w.id
|
||||
WHERE cm.id = :cmid";
|
||||
|
||||
$params = [
|
||||
'cmid' => $context->instanceid,
|
||||
];
|
||||
|
||||
$record = $DB->get_record_sql($sql, $params, MUST_EXIST);
|
||||
$writer = writer::with_context($context);
|
||||
|
||||
if ($record->phase >= \workshop::PHASE_SUBMISSION) {
|
||||
$data->instructauthors = $writer->rewrite_pluginfile_urls($subcontext, 'mod_workshop', 'instructauthors', 0,
|
||||
$record->instructauthors);
|
||||
$data->instructauthorsformat = $record->instructauthorsformat;
|
||||
}
|
||||
|
||||
if ($record->phase >= \workshop::PHASE_ASSESSMENT) {
|
||||
$data->instructreviewers = $writer->rewrite_pluginfile_urls($subcontext, 'mod_workshop', 'instructreviewers', 0,
|
||||
$record->instructreviewers);
|
||||
$data->instructreviewersformat = $record->instructreviewersformat;
|
||||
}
|
||||
|
||||
if ($record->phase >= \workshop::PHASE_CLOSED) {
|
||||
$data->conclusion = $writer->rewrite_pluginfile_urls($subcontext, 'mod_workshop', 'conclusion', 0, $record->conclusion);
|
||||
$data->conclusionformat = $record->conclusionformat;
|
||||
}
|
||||
|
||||
$data->strategy = \workshop::available_strategies_list()[$record->strategy];
|
||||
$data->evaluation = \workshop::available_evaluators_list()[$record->evaluation];
|
||||
$data->latesubmissions = transform::yesno($record->latesubmissions);
|
||||
$data->submissionstart = $record->submissionstart ? transform::datetime($record->submissionstart) : null;
|
||||
$data->submissionend = $record->submissionend ? transform::datetime($record->submissionend) : null;
|
||||
$data->assessmentstart = $record->assessmentstart ? transform::datetime($record->assessmentstart) : null;
|
||||
$data->assessmentend = $record->assessmentend ? transform::datetime($record->assessmentend) : null;
|
||||
|
||||
switch ($record->phase) {
|
||||
case \workshop::PHASE_SETUP:
|
||||
$data->phase = get_string('phasesetup', 'mod_workshop');
|
||||
break;
|
||||
case \workshop::PHASE_SUBMISSION:
|
||||
$data->phase = get_string('phasesubmission', 'mod_workshop');
|
||||
break;
|
||||
case \workshop::PHASE_ASSESSMENT:
|
||||
$data->phase = get_string('phaseassessment', 'mod_workshop');
|
||||
break;
|
||||
case \workshop::PHASE_EVALUATION:
|
||||
$data->phase = get_string('phaseevaluation', 'mod_workshop');
|
||||
break;
|
||||
case \workshop::PHASE_CLOSED:
|
||||
$data->phase = get_string('phaseclosed', 'mod_workshop');
|
||||
break;
|
||||
}
|
||||
|
||||
$writer->export_area_files($subcontext, 'mod_workshop', 'instructauthors', 0);
|
||||
$writer->export_area_files($subcontext, 'mod_workshop', 'instructreviewers', 0);
|
||||
$writer->export_area_files($subcontext, 'mod_workshop', 'conclusion', 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Export all user's submissions and example submissions he/she created in the given contexts.
|
||||
*
|
||||
* @param approved_contextlist $contextlist List of contexts approved for export.
|
||||
*/
|
||||
protected static function export_submissions(approved_contextlist $contextlist) {
|
||||
global $DB;
|
||||
|
||||
list($contextsql, $contextparams) = $DB->get_in_or_equal($contextlist->get_contextids(), SQL_PARAMS_NAMED);
|
||||
$user = $contextlist->get_user();
|
||||
|
||||
$sql = "SELECT ws.id, ws.authorid, ws.example, ws.timecreated, ws.timemodified, ws.title,
|
||||
ws.content, ws.contentformat, ws.grade, ws.gradeover, ws.feedbackauthor, ws.feedbackauthorformat,
|
||||
ws.published, ws.late,
|
||||
w.phase, w.course, cm.id AS cmid, ".\context_helper::get_preload_record_columns_sql('ctx')."
|
||||
FROM {course_modules} cm
|
||||
JOIN {modules} m ON cm.module = m.id AND m.name = :module
|
||||
JOIN {context} ctx ON ctx.contextlevel = :contextlevel AND ctx.instanceid = cm.id
|
||||
JOIN {workshop} w ON cm.instance = w.id
|
||||
JOIN {workshop_submissions} ws ON ws.workshopid = w.id
|
||||
WHERE ctx.id {$contextsql}
|
||||
AND ws.authorid = :authorid";
|
||||
|
||||
$params = $contextparams + [
|
||||
'module' => 'workshop',
|
||||
'contextlevel' => CONTEXT_MODULE,
|
||||
'authorid' => $user->id,
|
||||
];
|
||||
|
||||
$rs = $DB->get_recordset_sql($sql, $params);
|
||||
|
||||
foreach ($rs as $record) {
|
||||
\context_helper::preload_from_record($record);
|
||||
$context = \context_module::instance($record->cmid);
|
||||
$writer = \core_privacy\local\request\writer::with_context($context);
|
||||
|
||||
if ($record->example) {
|
||||
$subcontext = [get_string('examplesubmissions', 'mod_workshop'), $record->id];
|
||||
$mysubmission = null;
|
||||
} else {
|
||||
$subcontext = [get_string('mysubmission', 'mod_workshop')];
|
||||
$mysubmission = $record;
|
||||
}
|
||||
|
||||
$phase = $record->phase;
|
||||
$courseid = $record->course;
|
||||
|
||||
$data = (object) [
|
||||
'example' => transform::yesno($record->example),
|
||||
'timecreated' => transform::datetime($record->timecreated),
|
||||
'timemodified' => $record->timemodified ? transform::datetime($record->timemodified) : null,
|
||||
'title' => $record->title,
|
||||
'content' => $writer->rewrite_pluginfile_urls($subcontext, 'mod_workshop',
|
||||
'submission_content', $record->id, $record->content),
|
||||
'contentformat' => $record->contentformat,
|
||||
'grade' => $record->grade,
|
||||
'gradeover' => $record->gradeover,
|
||||
'feedbackauthor' => $record->feedbackauthor,
|
||||
'feedbackauthorformat' => $record->feedbackauthorformat,
|
||||
'published' => transform::yesno($record->published),
|
||||
'late' => transform::yesno($record->late),
|
||||
];
|
||||
|
||||
$writer->export_data($subcontext, $data);
|
||||
$writer->export_area_files($subcontext, 'mod_workshop', 'submission_content', $record->id);
|
||||
$writer->export_area_files($subcontext, 'mod_workshop', 'submission_attachment', $record->id);
|
||||
|
||||
// Export peer-assessments of my submission if the workshop was closed. We do not export received
|
||||
// assessments from peers before they were actually effective. Before the workshop is closed, grades are not
|
||||
// pushed into the gradebook. So peer assessments did not affect evaluation of the user's performance and
|
||||
// they should not be considered as their personal data. This is different from assessments given by the
|
||||
// user that are always exported.
|
||||
if ($mysubmission && $phase == \workshop::PHASE_CLOSED) {
|
||||
$assessments = $DB->get_records('workshop_assessments', ['submissionid' => $mysubmission->id], '',
|
||||
'id, reviewerid, weight, timecreated, timemodified, grade, feedbackauthor, feedbackauthorformat');
|
||||
|
||||
foreach ($assessments as $assessment) {
|
||||
$assid = $assessment->id;
|
||||
$assessment->selfassessment = transform::yesno($assessment->reviewerid == $user->id);
|
||||
$assessment->timecreated = transform::datetime($assessment->timecreated);
|
||||
$assessment->timemodified = $assessment->timemodified ? transform::datetime($assessment->timemodified) : null;
|
||||
$assessment->feedbackauthor = $writer->rewrite_pluginfile_urls($subcontext,
|
||||
'mod_workshop', 'overallfeedback_content', $assid, $assessment->feedbackauthor);
|
||||
|
||||
$assessmentsubcontext = array_merge($subcontext, [get_string('assessments', 'mod_workshop'), $assid]);
|
||||
|
||||
unset($assessment->id);
|
||||
unset($assessment->reviewerid);
|
||||
|
||||
$writer->export_data($assessmentsubcontext, $assessment);
|
||||
$writer->export_area_files($assessmentsubcontext, 'mod_workshop', 'overallfeedback_content', $assid);
|
||||
$writer->export_area_files($assessmentsubcontext, 'mod_workshop', 'overallfeedback_attachment', $assid);
|
||||
|
||||
// Export details of how the assessment forms were filled.
|
||||
static::export_assessment_forms($user, $context, $assessmentsubcontext, $assid);
|
||||
}
|
||||
}
|
||||
|
||||
// Export plagiarism data related to the submission content.
|
||||
// The last $linkarray argument consistent with how we call {@link plagiarism_get_links()} in the renderer.
|
||||
\core_plagiarism\privacy\provider::export_plagiarism_user_data($user->id, $context, $subcontext, [
|
||||
'userid' => $user->id,
|
||||
'content' => format_text($data->content, $data->contentformat, ['overflowdiv' => true]),
|
||||
'cmid' => $context->instanceid,
|
||||
'course' => $courseid,
|
||||
]);
|
||||
}
|
||||
|
||||
$rs->close();
|
||||
}
|
||||
|
||||
/**
|
||||
* Export all assessments given by the user.
|
||||
*
|
||||
* @param approved_contextlist $contextlist List of contexts approved for export.
|
||||
*/
|
||||
protected static function export_assessments(approved_contextlist $contextlist) {
|
||||
global $DB;
|
||||
|
||||
list($contextsql, $contextparams) = $DB->get_in_or_equal($contextlist->get_contextids(), SQL_PARAMS_NAMED);
|
||||
$user = $contextlist->get_user();
|
||||
|
||||
$sql = "SELECT ws.authorid, ws.example, ws.timecreated, ws.timemodified, ws.title, ws.content, ws.contentformat,
|
||||
wa.id, wa.submissionid, wa.reviewerid, wa.weight, wa.timecreated, wa.timemodified, wa.grade,
|
||||
wa.gradinggrade, wa.gradinggradeover, wa.feedbackauthor, wa.feedbackauthorformat, wa.feedbackreviewer,
|
||||
wa.feedbackreviewerformat, cm.id AS cmid, ".\context_helper::get_preload_record_columns_sql('ctx')."
|
||||
FROM {course_modules} cm
|
||||
JOIN {modules} m ON cm.module = m.id AND m.name = :module
|
||||
JOIN {context} ctx ON cm.id = ctx.instanceid AND ctx.contextlevel = :contextlevel
|
||||
JOIN {workshop} w ON cm.instance = w.id
|
||||
JOIN {workshop_submissions} ws ON ws.workshopid = w.id
|
||||
JOIN {workshop_assessments} wa ON wa.submissionid = ws.id
|
||||
WHERE ctx.id {$contextsql}
|
||||
AND wa.reviewerid = :reviewerid";
|
||||
|
||||
$params = $contextparams + [
|
||||
'module' => 'workshop',
|
||||
'contextlevel' => CONTEXT_MODULE,
|
||||
'reviewerid' => $user->id,
|
||||
];
|
||||
|
||||
$rs = $DB->get_recordset_sql($sql, $params);
|
||||
|
||||
foreach ($rs as $record) {
|
||||
\context_helper::preload_from_record($record);
|
||||
$context = \context_module::instance($record->cmid);
|
||||
$writer = \core_privacy\local\request\writer::with_context($context);
|
||||
$subcontext = [get_string('myassessments', 'mod_workshop'), $record->id];
|
||||
|
||||
$data = (object) [
|
||||
'weight' => $record->weight,
|
||||
'timecreated' => transform::datetime($record->timecreated),
|
||||
'timemodified' => $record->timemodified ? transform::datetime($record->timemodified) : null,
|
||||
'grade' => $record->grade,
|
||||
'gradinggrade' => $record->gradinggrade,
|
||||
'gradinggradeover' => $record->gradinggradeover,
|
||||
'feedbackauthor' => $writer->rewrite_pluginfile_urls($subcontext, 'mod_workshop',
|
||||
'overallfeedback_content', $record->id, $record->feedbackauthor),
|
||||
'feedbackauthorformat' => $record->feedbackauthorformat,
|
||||
'feedbackreviewer' => $record->feedbackreviewer,
|
||||
'feedbackreviewerformat' => $record->feedbackreviewerformat,
|
||||
];
|
||||
|
||||
$submission = (object) [
|
||||
'myownsubmission' => transform::yesno($record->authorid == $user->id),
|
||||
'example' => transform::yesno($record->example),
|
||||
'timecreated' => transform::datetime($record->timecreated),
|
||||
'timemodified' => $record->timemodified ? transform::datetime($record->timemodified) : null,
|
||||
'title' => $record->title,
|
||||
'content' => $writer->rewrite_pluginfile_urls($subcontext, 'mod_workshop',
|
||||
'submission_content', $record->submissionid, $record->content),
|
||||
'contentformat' => $record->contentformat,
|
||||
];
|
||||
|
||||
$writer->export_data($subcontext, $data);
|
||||
$writer->export_related_data($subcontext, 'submission', $submission);
|
||||
$writer->export_area_files($subcontext, 'mod_workshop', 'overallfeedback_content', $record->id);
|
||||
$writer->export_area_files($subcontext, 'mod_workshop', 'overallfeedback_attachment', $record->id);
|
||||
$writer->export_area_files($subcontext, 'mod_workshop', 'submission_content', $record->submissionid);
|
||||
$writer->export_area_files($subcontext, 'mod_workshop', 'submission_attachment', $record->submissionid);
|
||||
|
||||
// Export details of how the assessment forms were filled.
|
||||
static::export_assessment_forms($user, $context, $subcontext, $record->id);
|
||||
}
|
||||
|
||||
$rs->close();
|
||||
}
|
||||
|
||||
/**
|
||||
* Export the grading strategy data related to the particular assessment.
|
||||
*
|
||||
* @param stdClass $user User we are exporting for
|
||||
* @param context $context Workshop activity content
|
||||
* @param array $subcontext Subcontext path of the assessment
|
||||
* @param int $assessmentid ID of the exported assessment
|
||||
*/
|
||||
protected static function export_assessment_forms(\stdClass $user, \context $context, array $subcontext, int $assessmentid) {
|
||||
|
||||
foreach (\workshop::available_strategies_list() as $strategy => $title) {
|
||||
$providername = '\workshopform_'.$strategy.'\privacy\provider';
|
||||
|
||||
if (is_subclass_of($providername, '\mod_workshop\privacy\workshopform_provider')) {
|
||||
component_class_callback($providername, 'export_assessment_form',
|
||||
[
|
||||
$user,
|
||||
$context,
|
||||
array_merge($subcontext, [get_string('assessmentform', 'mod_workshop'), $title]),
|
||||
$assessmentid,
|
||||
]
|
||||
);
|
||||
|
||||
} else {
|
||||
debugging('Missing class '.$providername.' implementing workshopform_provider interface', DEBUG_DEVELOPER);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete personal data for all users in the context.
|
||||
*
|
||||
* @param context $context Context to delete personal data from.
|
||||
*/
|
||||
public static function delete_data_for_all_users_in_context(\context $context) {
|
||||
global $CFG, $DB;
|
||||
require_once($CFG->libdir.'/gradelib.php');
|
||||
|
||||
if ($context->contextlevel != CONTEXT_MODULE) {
|
||||
return;
|
||||
}
|
||||
|
||||
$cm = get_coursemodule_from_id('workshop', $context->instanceid, 0, false, IGNORE_MISSING);
|
||||
|
||||
if (!$cm) {
|
||||
// Probably some kind of expired context.
|
||||
return;
|
||||
}
|
||||
|
||||
$workshop = $DB->get_record('workshop', ['id' => $cm->instance], 'id, course', MUST_EXIST);
|
||||
|
||||
$submissions = $DB->get_records('workshop_submissions', ['workshopid' => $workshop->id], '', 'id');
|
||||
$assessments = $DB->get_records_list('workshop_assessments', 'submissionid', array_keys($submissions), '', 'id');
|
||||
|
||||
$DB->delete_records('workshop_aggregations', ['workshopid' => $workshop->id]);
|
||||
$DB->delete_records_list('workshop_grades', 'assessmentid', array_keys($assessments));
|
||||
$DB->delete_records_list('workshop_assessments', 'id', array_keys($assessments));
|
||||
$DB->delete_records_list('workshop_submissions', 'id', array_keys($submissions));
|
||||
|
||||
$fs = get_file_storage();
|
||||
$fs->delete_area_files($context->id, 'mod_workshop', 'submission_content');
|
||||
$fs->delete_area_files($context->id, 'mod_workshop', 'submission_attachment');
|
||||
$fs->delete_area_files($context->id, 'mod_workshop', 'overallfeedback_content');
|
||||
$fs->delete_area_files($context->id, 'mod_workshop', 'overallfeedback_attachment');
|
||||
|
||||
grade_update('mod/workshop', $workshop->course, 'mod', 'workshop', $workshop->id, 0, null, ['reset' => true]);
|
||||
grade_update('mod/workshop', $workshop->course, 'mod', 'workshop', $workshop->id, 1, null, ['reset' => true]);
|
||||
|
||||
\core_plagiarism\privacy\provider::delete_plagiarism_for_context($context);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete personal data for the user in a list of contexts.
|
||||
*
|
||||
* Removing assessments of submissions from the Workshop is not trivial. Removing one user's data can easily affect
|
||||
* other users' grades and completion criteria. So we replace the non-essential contents with a "deleted" message,
|
||||
* but keep the actual info in place. The argument is that one's right for privacy should not overweight others'
|
||||
* right for accessing their own personal data and be evaluated on their basis.
|
||||
*
|
||||
* @param approved_contextlist $contextlist List of contexts to delete data from.
|
||||
*/
|
||||
public static function delete_data_for_user(approved_contextlist $contextlist) {
|
||||
global $DB;
|
||||
|
||||
list($contextsql, $contextparams) = $DB->get_in_or_equal($contextlist->get_contextids(), SQL_PARAMS_NAMED);
|
||||
$user = $contextlist->get_user();
|
||||
$fs = get_file_storage();
|
||||
|
||||
// Replace sensitive data in all submissions by the user in the given contexts.
|
||||
|
||||
$sql = "SELECT ws.id AS submissionid
|
||||
FROM {course_modules} cm
|
||||
JOIN {modules} m ON cm.module = m.id AND m.name = :module
|
||||
JOIN {context} ctx ON ctx.contextlevel = :contextlevel AND ctx.instanceid = cm.id
|
||||
JOIN {workshop} w ON cm.instance = w.id
|
||||
JOIN {workshop_submissions} ws ON ws.workshopid = w.id
|
||||
WHERE ctx.id {$contextsql}
|
||||
AND ws.authorid = :authorid";
|
||||
|
||||
$params = $contextparams + [
|
||||
'module' => 'workshop',
|
||||
'contextlevel' => CONTEXT_MODULE,
|
||||
'authorid' => $user->id,
|
||||
];
|
||||
|
||||
$submissionids = $DB->get_fieldset_sql($sql, $params);
|
||||
|
||||
if ($submissionids) {
|
||||
list($submissionidsql, $submissionidparams) = $DB->get_in_or_equal($submissionids, SQL_PARAMS_NAMED);
|
||||
|
||||
$DB->set_field_select('workshop_submissions', 'title', get_string('privacy:request:delete:title',
|
||||
'mod_workshop'), "id $submissionidsql", $submissionidparams);
|
||||
$DB->set_field_select('workshop_submissions', 'content', get_string('privacy:request:delete:content',
|
||||
'mod_workshop'), "id $submissionidsql", $submissionidparams);
|
||||
$DB->set_field_select('workshop_submissions', 'feedbackauthor', get_string('privacy:request:delete:content',
|
||||
'mod_workshop'), "id $submissionidsql", $submissionidparams);
|
||||
|
||||
foreach ($contextlist->get_contextids() as $contextid) {
|
||||
$fs->delete_area_files_select($contextid, 'mod_workshop', 'submission_content',
|
||||
$submissionidsql, $submissionidparams);
|
||||
$fs->delete_area_files_select($contextid, 'mod_workshop', 'submission_attachment',
|
||||
$submissionidsql, $submissionidparams);
|
||||
}
|
||||
}
|
||||
|
||||
// Replace personal data in received assessments - feedback is seen as belonging to the recipient.
|
||||
|
||||
$sql = "SELECT wa.id AS assessmentid
|
||||
FROM {course_modules} cm
|
||||
JOIN {modules} m ON cm.module = m.id AND m.name = :module
|
||||
JOIN {context} ctx ON cm.id = ctx.instanceid AND ctx.contextlevel = :contextlevel
|
||||
JOIN {workshop} w ON cm.instance = w.id
|
||||
JOIN {workshop_submissions} ws ON ws.workshopid = w.id
|
||||
JOIN {workshop_assessments} wa ON wa.submissionid = ws.id
|
||||
WHERE ctx.id {$contextsql}
|
||||
AND ws.authorid = :authorid";
|
||||
|
||||
$params = $contextparams + [
|
||||
'module' => 'workshop',
|
||||
'contextlevel' => CONTEXT_MODULE,
|
||||
'authorid' => $user->id,
|
||||
];
|
||||
|
||||
$assessmentids = $DB->get_fieldset_sql($sql, $params);
|
||||
|
||||
if ($assessmentids) {
|
||||
list($assessmentidsql, $assessmentidparams) = $DB->get_in_or_equal($assessmentids, SQL_PARAMS_NAMED);
|
||||
|
||||
$DB->set_field_select('workshop_assessments', 'feedbackauthor', get_string('privacy:request:delete:content',
|
||||
'mod_workshop'), "id $assessmentidsql", $assessmentidparams);
|
||||
|
||||
foreach ($contextlist->get_contextids() as $contextid) {
|
||||
$fs->delete_area_files_select($contextid, 'mod_workshop', 'overallfeedback_content',
|
||||
$assessmentidsql, $assessmentidparams);
|
||||
$fs->delete_area_files_select($contextid, 'mod_workshop', 'overallfeedback_attachment',
|
||||
$assessmentidsql, $assessmentidparams);
|
||||
}
|
||||
}
|
||||
|
||||
// Replace sensitive data in provided assessments records.
|
||||
|
||||
$sql = "SELECT wa.id AS assessmentid
|
||||
FROM {course_modules} cm
|
||||
JOIN {modules} m ON cm.module = m.id AND m.name = :module
|
||||
JOIN {context} ctx ON cm.id = ctx.instanceid AND ctx.contextlevel = :contextlevel
|
||||
JOIN {workshop} w ON cm.instance = w.id
|
||||
JOIN {workshop_submissions} ws ON ws.workshopid = w.id
|
||||
JOIN {workshop_assessments} wa ON wa.submissionid = ws.id
|
||||
WHERE ctx.id {$contextsql}
|
||||
AND wa.reviewerid = :reviewerid";
|
||||
|
||||
$params = $contextparams + [
|
||||
'module' => 'workshop',
|
||||
'contextlevel' => CONTEXT_MODULE,
|
||||
'reviewerid' => $user->id,
|
||||
];
|
||||
|
||||
$assessmentids = $DB->get_fieldset_sql($sql, $params);
|
||||
|
||||
if ($assessmentids) {
|
||||
list($assessmentidsql, $assessmentidparams) = $DB->get_in_or_equal($assessmentids, SQL_PARAMS_NAMED);
|
||||
|
||||
$DB->set_field_select('workshop_assessments', 'feedbackreviewer', get_string('privacy:request:delete:content',
|
||||
'mod_workshop'), "id $assessmentidsql", $assessmentidparams);
|
||||
}
|
||||
|
||||
foreach ($contextlist as $context) {
|
||||
\core_plagiarism\privacy\provider::delete_plagiarism_for_user($user->id, $context);
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,58 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides {@link mod_workshop\privacy\workshopform_legacy_polyfill} trait.
|
||||
*
|
||||
* @package mod_workshop
|
||||
* @category privacy
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace mod_workshop\privacy;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Trait allowing additional (contrib) plugins to have single codebase for 3.3 and 3.4.
|
||||
*
|
||||
* The signature of the method in the {@link \mod_workshop\privacy\workshopform_provider} interface makes use of scalar
|
||||
* type hinting that is available in PHP 7.0 only. If a plugin wants to implement the interface in 3.3 (and therefore
|
||||
* PHP 5.6) with the same codebase, they can make use of this trait. Instead of implementing the interface directly, the
|
||||
* workshopform plugin can implement the required logic in the method (note the underscore and missing "int" hint):
|
||||
*
|
||||
* public static function _export_assessment_form(\stdClass $user, \context $context, array $subcontext, $assessmentid)
|
||||
*
|
||||
* and then simply use this trait in their provider class.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
trait workshopform_legacy_polyfill {
|
||||
|
||||
/**
|
||||
* Return details of the filled assessment form.
|
||||
*
|
||||
* @param stdClass $user User we are exporting data for
|
||||
* @param context $context The workshop activity context
|
||||
* @param array $subcontext Subcontext within the context to export to
|
||||
* @param int $assessmentid ID of the assessment
|
||||
*/
|
||||
public static function export_assessment_form(\stdClass $user, \context $context, array $subcontext, int $assessmentid) {
|
||||
return static::_export_assessment_form($user, $context, $subcontext, $assessmentid);
|
||||
}
|
||||
}
|
47
mod/workshop/classes/privacy/workshopform_provider.php
Normal file
47
mod/workshop/classes/privacy/workshopform_provider.php
Normal file
@ -0,0 +1,47 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides {@link mod_workshop\privacy\workshopform_provider} interface.
|
||||
*
|
||||
* @package mod_workshop
|
||||
* @category privacy
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace mod_workshop\privacy;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Interface for grading strategy subplugins implementing the privacy API.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
interface workshopform_provider extends \core_privacy\local\request\plugin\subplugin_provider {
|
||||
|
||||
/**
|
||||
* Return details of the filled assessment form.
|
||||
*
|
||||
* @param stdClass $user User we are exporting data for
|
||||
* @param context $context The workshop activity context
|
||||
* @param array $subcontext Subcontext within the context to export to
|
||||
* @param int $assessmentid ID of the assessment
|
||||
*/
|
||||
public static function export_assessment_form(\stdClass $user, \context $context, array $subcontext, int $assessmentid);
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<XMLDB PATH="mod/workshop/db" VERSION="20130325" COMMENT="XMLDB file for Moodle mod/workshop"
|
||||
<XMLDB PATH="mod/workshop/db" VERSION="20180427" COMMENT="XMLDB file for Moodle mod/workshop"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="../../../lib/xmldb/xmldb.xsd"
|
||||
>
|
||||
@ -132,191 +132,5 @@
|
||||
<KEY NAME="workshopuser" TYPE="unique" FIELDS="workshopid, userid" COMMENT="The combination of workshopid with userid must be unique in this table"/>
|
||||
</KEYS>
|
||||
</TABLE>
|
||||
<TABLE NAME="workshop_old" COMMENT="Legacy workshop table to be dropped later in Moodle 2.x">
|
||||
<FIELDS>
|
||||
<FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="true"/>
|
||||
<FIELD NAME="course" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="name" TYPE="char" LENGTH="255" NOTNULL="true" SEQUENCE="false"/>
|
||||
<FIELD NAME="description" TYPE="text" NOTNULL="true" SEQUENCE="false"/>
|
||||
<FIELD NAME="wtype" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="nelements" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="1" SEQUENCE="false"/>
|
||||
<FIELD NAME="nattachments" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="phase" TYPE="int" LENGTH="2" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="format" TYPE="int" LENGTH="2" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="gradingstrategy" TYPE="int" LENGTH="2" NOTNULL="true" DEFAULT="1" SEQUENCE="false"/>
|
||||
<FIELD NAME="resubmit" TYPE="int" LENGTH="2" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="agreeassessments" TYPE="int" LENGTH="2" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="hidegrades" TYPE="int" LENGTH="2" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="anonymous" TYPE="int" LENGTH="2" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="includeself" TYPE="int" LENGTH="2" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="maxbytes" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="100000" SEQUENCE="false"/>
|
||||
<FIELD NAME="submissionstart" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="assessmentstart" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="submissionend" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="assessmentend" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="releasegrades" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="grade" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="gradinggrade" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="ntassessments" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="assessmentcomps" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="2" SEQUENCE="false"/>
|
||||
<FIELD NAME="nsassessments" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="overallocation" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="timemodified" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="teacherweight" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="1" SEQUENCE="false"/>
|
||||
<FIELD NAME="showleaguetable" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="usepassword" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="password" TYPE="char" LENGTH="32" NOTNULL="true" SEQUENCE="false"/>
|
||||
<FIELD NAME="newplugin" TYPE="char" LENGTH="28" NOTNULL="false" SEQUENCE="false"/>
|
||||
<FIELD NAME="newid" TYPE="int" LENGTH="10" NOTNULL="false" SEQUENCE="false"/>
|
||||
</FIELDS>
|
||||
<KEYS>
|
||||
<KEY NAME="primary" TYPE="primary" FIELDS="id"/>
|
||||
</KEYS>
|
||||
<INDEXES>
|
||||
<INDEX NAME="course" UNIQUE="false" FIELDS="course"/>
|
||||
</INDEXES>
|
||||
</TABLE>
|
||||
<TABLE NAME="workshop_elements_old" COMMENT="Legacy workshop_elements table to be dropped later in Moodle 2.x">
|
||||
<FIELDS>
|
||||
<FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="true"/>
|
||||
<FIELD NAME="workshopid" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="elementno" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="description" TYPE="text" NOTNULL="true" SEQUENCE="false"/>
|
||||
<FIELD NAME="scale" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="maxscore" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="1" SEQUENCE="false"/>
|
||||
<FIELD NAME="weight" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="11" SEQUENCE="false"/>
|
||||
<FIELD NAME="stddev" TYPE="float" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="totalassessments" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="newplugin" TYPE="char" LENGTH="28" NOTNULL="false" SEQUENCE="false"/>
|
||||
<FIELD NAME="newid" TYPE="int" LENGTH="10" NOTNULL="false" SEQUENCE="false"/>
|
||||
</FIELDS>
|
||||
<KEYS>
|
||||
<KEY NAME="primary" TYPE="primary" FIELDS="id"/>
|
||||
<KEY NAME="workshopid" TYPE="foreign" FIELDS="workshopid" REFTABLE="workshop" REFFIELDS="id"/>
|
||||
</KEYS>
|
||||
</TABLE>
|
||||
<TABLE NAME="workshop_rubrics_old" COMMENT="Legacy workshop_rubrics table to be dropped later in Moodle 2.x">
|
||||
<FIELDS>
|
||||
<FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="true"/>
|
||||
<FIELD NAME="workshopid" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="elementno" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="rubricno" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="description" TYPE="text" NOTNULL="true" SEQUENCE="false"/>
|
||||
<FIELD NAME="newplugin" TYPE="char" LENGTH="28" NOTNULL="false" SEQUENCE="false"/>
|
||||
<FIELD NAME="newid" TYPE="int" LENGTH="10" NOTNULL="false" SEQUENCE="false"/>
|
||||
</FIELDS>
|
||||
<KEYS>
|
||||
<KEY NAME="primary" TYPE="primary" FIELDS="id"/>
|
||||
<KEY NAME="workshopid" TYPE="foreign" FIELDS="workshopid" REFTABLE="workshop" REFFIELDS="id"/>
|
||||
</KEYS>
|
||||
</TABLE>
|
||||
<TABLE NAME="workshop_submissions_old" COMMENT="Legacy workshop_submissions table to be dropped later in Moodle 2.x">
|
||||
<FIELDS>
|
||||
<FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="true"/>
|
||||
<FIELD NAME="workshopid" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="userid" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="title" TYPE="char" LENGTH="100" NOTNULL="true" SEQUENCE="false"/>
|
||||
<FIELD NAME="timecreated" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="mailed" TYPE="int" LENGTH="2" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="description" TYPE="text" NOTNULL="true" SEQUENCE="false"/>
|
||||
<FIELD NAME="gradinggrade" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="finalgrade" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="late" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="nassessments" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="newplugin" TYPE="char" LENGTH="28" NOTNULL="false" SEQUENCE="false"/>
|
||||
<FIELD NAME="newid" TYPE="int" LENGTH="10" NOTNULL="false" SEQUENCE="false"/>
|
||||
</FIELDS>
|
||||
<KEYS>
|
||||
<KEY NAME="primary" TYPE="primary" FIELDS="id"/>
|
||||
<KEY NAME="workshopid" TYPE="foreign" FIELDS="workshopid" REFTABLE="workshop" REFFIELDS="id"/>
|
||||
</KEYS>
|
||||
<INDEXES>
|
||||
<INDEX NAME="userid" UNIQUE="false" FIELDS="userid"/>
|
||||
<INDEX NAME="mailed" UNIQUE="false" FIELDS="mailed"/>
|
||||
</INDEXES>
|
||||
</TABLE>
|
||||
<TABLE NAME="workshop_assessments_old" COMMENT="Legacy workshop_assessments table to be dropped later in Moodle 2.x">
|
||||
<FIELDS>
|
||||
<FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="true"/>
|
||||
<FIELD NAME="workshopid" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="submissionid" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="userid" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="timecreated" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="timegraded" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="timeagreed" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="grade" TYPE="float" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="gradinggrade" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="teachergraded" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="mailed" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="resubmission" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="donotuse" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="generalcomment" TYPE="text" NOTNULL="false" SEQUENCE="false"/>
|
||||
<FIELD NAME="teachercomment" TYPE="text" NOTNULL="false" SEQUENCE="false"/>
|
||||
<FIELD NAME="newplugin" TYPE="char" LENGTH="28" NOTNULL="false" SEQUENCE="false"/>
|
||||
<FIELD NAME="newid" TYPE="int" LENGTH="10" NOTNULL="false" SEQUENCE="false"/>
|
||||
</FIELDS>
|
||||
<KEYS>
|
||||
<KEY NAME="primary" TYPE="primary" FIELDS="id"/>
|
||||
<KEY NAME="workshopid" TYPE="foreign" FIELDS="workshopid" REFTABLE="workshop" REFFIELDS="id"/>
|
||||
<KEY NAME="submissionid" TYPE="foreign" FIELDS="submissionid" REFTABLE="workshop_submissions" REFFIELDS="id"/>
|
||||
</KEYS>
|
||||
<INDEXES>
|
||||
<INDEX NAME="userid" UNIQUE="false" FIELDS="userid"/>
|
||||
<INDEX NAME="mailed" UNIQUE="false" FIELDS="mailed"/>
|
||||
</INDEXES>
|
||||
</TABLE>
|
||||
<TABLE NAME="workshop_grades_old" COMMENT="Legacy workshop_grades table to be dropped later in Moodle 2.x">
|
||||
<FIELDS>
|
||||
<FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="true"/>
|
||||
<FIELD NAME="workshopid" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="assessmentid" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="elementno" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="feedback" TYPE="text" NOTNULL="true" SEQUENCE="false"/>
|
||||
<FIELD NAME="grade" TYPE="int" LENGTH="3" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="newplugin" TYPE="char" LENGTH="28" NOTNULL="false" SEQUENCE="false"/>
|
||||
<FIELD NAME="newid" TYPE="int" LENGTH="10" NOTNULL="false" SEQUENCE="false"/>
|
||||
</FIELDS>
|
||||
<KEYS>
|
||||
<KEY NAME="primary" TYPE="primary" FIELDS="id"/>
|
||||
<KEY NAME="workshopid" TYPE="foreign" FIELDS="workshopid" REFTABLE="workshop" REFFIELDS="id"/>
|
||||
<KEY NAME="assessmentid" TYPE="foreign" FIELDS="assessmentid" REFTABLE="workshop_assessments" REFFIELDS="id"/>
|
||||
</KEYS>
|
||||
</TABLE>
|
||||
<TABLE NAME="workshop_stockcomments_old" COMMENT="Legacy workshop_stockcomments table to be dropped later in Moodle 2.x">
|
||||
<FIELDS>
|
||||
<FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="true"/>
|
||||
<FIELD NAME="workshopid" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="elementno" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="comments" TYPE="text" NOTNULL="true" SEQUENCE="false"/>
|
||||
<FIELD NAME="newplugin" TYPE="char" LENGTH="28" NOTNULL="false" SEQUENCE="false"/>
|
||||
<FIELD NAME="newid" TYPE="int" LENGTH="10" NOTNULL="false" SEQUENCE="false"/>
|
||||
</FIELDS>
|
||||
<KEYS>
|
||||
<KEY NAME="primary" TYPE="primary" FIELDS="id"/>
|
||||
<KEY NAME="workshopid" TYPE="foreign" FIELDS="workshopid" REFTABLE="workshop" REFFIELDS="id"/>
|
||||
</KEYS>
|
||||
</TABLE>
|
||||
<TABLE NAME="workshop_comments_old" COMMENT="Legacy workshop_comments table to be dropped later in Moodle 2.x">
|
||||
<FIELDS>
|
||||
<FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="true"/>
|
||||
<FIELD NAME="workshopid" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="assessmentid" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="userid" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="timecreated" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="mailed" TYPE="int" LENGTH="2" NOTNULL="true" DEFAULT="0" SEQUENCE="false"/>
|
||||
<FIELD NAME="comments" TYPE="text" NOTNULL="true" SEQUENCE="false"/>
|
||||
<FIELD NAME="newplugin" TYPE="char" LENGTH="28" NOTNULL="false" SEQUENCE="false"/>
|
||||
<FIELD NAME="newid" TYPE="int" LENGTH="10" NOTNULL="false" SEQUENCE="false"/>
|
||||
</FIELDS>
|
||||
<KEYS>
|
||||
<KEY NAME="primary" TYPE="primary" FIELDS="id"/>
|
||||
<KEY NAME="workshopid" TYPE="foreign" FIELDS="workshopid" REFTABLE="workshop" REFFIELDS="id"/>
|
||||
<KEY NAME="assessmentid" TYPE="foreign" FIELDS="assessmentid" REFTABLE="workshop_assessments" REFFIELDS="id"/>
|
||||
</KEYS>
|
||||
<INDEXES>
|
||||
<INDEX NAME="userid" UNIQUE="false" FIELDS="userid"/>
|
||||
<INDEX NAME="mailed" UNIQUE="false" FIELDS="mailed"/>
|
||||
</INDEXES>
|
||||
</TABLE>
|
||||
</TABLES>
|
||||
</XMLDB>
|
@ -48,5 +48,22 @@ function xmldb_workshop_upgrade($oldversion) {
|
||||
// Automatically generated Moodle v3.4.0 release upgrade line.
|
||||
// Put any upgrade step following this.
|
||||
|
||||
if ($oldversion < 2018042700) {
|
||||
// Drop the old Moodle 1.x tables, thanks privacy by design for forcing me to do so finally.
|
||||
|
||||
$oldtables = ['workshop_old', 'workshop_elements_old', 'workshop_rubrics_old', 'workshop_submissions_old',
|
||||
'workshop_assessments_old', 'workshop_grades_old', 'workshop_stockcomments_old', 'workshop_comments_old'];
|
||||
|
||||
foreach ($oldtables as $oldtable) {
|
||||
$table = new xmldb_table($oldtable);
|
||||
|
||||
if ($dbman->table_exists($table)) {
|
||||
$dbman->drop_table($table);
|
||||
}
|
||||
}
|
||||
|
||||
upgrade_mod_savepoint(true, 2018042700, 'workshop');
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
46
mod/workshop/eval/best/classes/privacy/provider.php
Normal file
46
mod/workshop/eval/best/classes/privacy/provider.php
Normal file
@ -0,0 +1,46 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides the class {@link workshopeval_best\privacy\provider}
|
||||
*
|
||||
* @package workshopeval_best
|
||||
* @category privacy
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace workshopeval_best\privacy;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Privacy API implementation for the Comparison with the best assessment method.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class provider implements \core_privacy\local\metadata\null_provider {
|
||||
|
||||
/**
|
||||
* Explain that this plugin stores no personal data.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function get_reason() : string {
|
||||
return 'privacy:metadata';
|
||||
}
|
||||
}
|
@ -33,3 +33,4 @@ $string['comparisonlevel7'] = 'lax';
|
||||
$string['comparisonlevel9'] = 'very lax';
|
||||
$string['configcomparison'] = 'Default value of the factor that influence the grading evaluation.';
|
||||
$string['pluginname'] = 'Comparison with the best assessment';
|
||||
$string['privacy:metadata'] = 'The Comparison with the best assessment plugin does not store any personal data. Actual personal data user\'s grades are stored by the Workshop module itself and are attached to the exported submissions and assessments data.';
|
||||
|
105
mod/workshop/form/accumulative/classes/privacy/provider.php
Normal file
105
mod/workshop/form/accumulative/classes/privacy/provider.php
Normal file
@ -0,0 +1,105 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides the class {@link workshopform_accumulative\privacy\provider}
|
||||
*
|
||||
* @package workshopform_accumulative
|
||||
* @category privacy
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace workshopform_accumulative\privacy;
|
||||
|
||||
use core_privacy\local\request\writer;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Privacy API implementation for the Accumulative grading strategy.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class provider implements \core_privacy\local\metadata\null_provider, \mod_workshop\privacy\workshopform_provider {
|
||||
|
||||
/**
|
||||
* Explain that this plugin stores no personal data.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function get_reason() : string {
|
||||
return 'privacy:metadata';
|
||||
}
|
||||
|
||||
/**
|
||||
* Return details of the filled assessment form.
|
||||
*
|
||||
* @param stdClass $user User we are exporting data for
|
||||
* @param context $context The workshop activity context
|
||||
* @param array $subcontext Subcontext within the context to export to
|
||||
* @param int $assessmentid ID of the assessment
|
||||
*/
|
||||
public static function export_assessment_form(\stdClass $user, \context $context, array $subcontext, int $assessmentid) {
|
||||
global $DB;
|
||||
|
||||
if ($context->contextlevel != CONTEXT_MODULE) {
|
||||
throw new \coding_exception('Unexpected context provided');
|
||||
}
|
||||
|
||||
$sql = "SELECT dim.id, dim.description, dim.descriptionformat, dim.grade AS dimgrade, dim.weight,
|
||||
wg.grade, wg.peercomment, wg.peercommentformat
|
||||
FROM {course_modules} cm
|
||||
JOIN {context} ctx ON ctx.contextlevel = :contextlevel AND ctx.instanceid = cm.id
|
||||
JOIN {workshop} w ON cm.instance = w.id
|
||||
JOIN {workshopform_accumulative} dim ON dim.workshopid = w.id
|
||||
LEFT JOIN {workshop_grades} wg ON wg.strategy = :strategy
|
||||
AND wg.dimensionid = dim.id AND wg.assessmentid = :assessmentid
|
||||
WHERE ctx.id = :contextid
|
||||
ORDER BY dim.sort";
|
||||
|
||||
$params = [
|
||||
'strategy' => 'accumulative',
|
||||
'contextlevel' => CONTEXT_MODULE,
|
||||
'contextid' => $context->id,
|
||||
'assessmentid' => $assessmentid,
|
||||
];
|
||||
|
||||
$writer = \core_privacy\local\request\writer::with_context($context);
|
||||
$data = [];
|
||||
$hasdata = false;
|
||||
$dimensionids = [];
|
||||
|
||||
foreach ($DB->get_records_sql($sql, $params) as $record) {
|
||||
if ($record->grade !== null) {
|
||||
$hasdata = true;
|
||||
}
|
||||
$record->description = $writer->rewrite_pluginfile_urls($subcontext, 'workshopform_accumulative',
|
||||
'description', $record->id, $record->description);
|
||||
$dimensionids[] = $record->id;
|
||||
unset($record->id);
|
||||
$data[] = $record;
|
||||
}
|
||||
|
||||
if ($hasdata) {
|
||||
$writer->export_data($subcontext, (object) ['aspects' => $data]);
|
||||
foreach ($dimensionids as $dimensionid) {
|
||||
$writer->export_area_files($subcontext, 'workshopform_accumulative', 'description', $dimensionid);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -39,6 +39,7 @@ $string['mustchoosegrade'] = 'You have to select a grade for this aspect';
|
||||
$string['pluginname'] = 'Accumulative grading';
|
||||
$string['poor'] = 'Poor';
|
||||
$string['present'] = 'Present';
|
||||
$string['privacy:metadata'] = 'The Accumulative grading plugin only stores the details of the assessment form. Actual personal data of how the form has been filled are stored by the Workshop module itself and are attached to exported assessments.';
|
||||
$string['scalename0'] = 'Yes/No (2 point)';
|
||||
$string['scalename1'] = 'Present/Absent (2 point)';
|
||||
$string['scalename2'] = 'Correct/Incorrect (2 point)';
|
||||
|
122
mod/workshop/form/accumulative/tests/privacy_provider_test.php
Normal file
122
mod/workshop/form/accumulative/tests/privacy_provider_test.php
Normal file
@ -0,0 +1,122 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides the {@link workshopform_accumulative_privacy_provider_testcase} class.
|
||||
*
|
||||
* @package workshopform_accumulative
|
||||
* @category test
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
global $CFG;
|
||||
|
||||
use core_privacy\local\request\writer;
|
||||
|
||||
/**
|
||||
* Unit tests for the privacy API implementation.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class workshopform_accumulative_privacy_provider_testcase extends advanced_testcase {
|
||||
|
||||
/**
|
||||
* Test {@link workshopform_accumulative\privacy\provider::export_assessment_form()} implementation.
|
||||
*/
|
||||
public function test_export_assessment_form() {
|
||||
global $DB;
|
||||
$this->resetAfterTest();
|
||||
$this->setAdminUser();
|
||||
|
||||
$this->generator = $this->getDataGenerator();
|
||||
$this->workshopgenerator = $this->generator->get_plugin_generator('mod_workshop');
|
||||
|
||||
$this->course1 = $this->generator->create_course();
|
||||
|
||||
$this->workshop11 = $this->generator->create_module('workshop', [
|
||||
'course' => $this->course1,
|
||||
'name' => 'Workshop11',
|
||||
]);
|
||||
$DB->set_field('workshop', 'phase', 50, ['id' => $this->workshop11->id]);
|
||||
|
||||
$this->dim1 = $DB->insert_record('workshopform_accumulative', [
|
||||
'workshopid' => $this->workshop11->id,
|
||||
'sort' => 1,
|
||||
'description' => 'Aspect 1 description',
|
||||
'descriptionformat' => FORMAT_MARKDOWN,
|
||||
'grade' => 6,
|
||||
'weight' => 1,
|
||||
]);
|
||||
|
||||
$this->dim2 = $DB->insert_record('workshopform_accumulative', [
|
||||
'workshopid' => $this->workshop11->id,
|
||||
'sort' => 2,
|
||||
'description' => 'Aspect 2 description',
|
||||
'descriptionformat' => FORMAT_MARKDOWN,
|
||||
'grade' => 4,
|
||||
'weight' => 1,
|
||||
]);
|
||||
|
||||
$this->student1 = $this->generator->create_user();
|
||||
$this->student2 = $this->generator->create_user();
|
||||
|
||||
$this->submission111 = $this->workshopgenerator->create_submission($this->workshop11->id, $this->student1->id);
|
||||
|
||||
$this->assessment1112 = $this->workshopgenerator->create_assessment($this->submission111, $this->student2->id, [
|
||||
'grade' => 92,
|
||||
]);
|
||||
|
||||
$DB->insert_record('workshop_grades', [
|
||||
'assessmentid' => $this->assessment1112,
|
||||
'strategy' => 'accumulative',
|
||||
'dimensionid' => $this->dim1,
|
||||
'grade' => 3,
|
||||
'peercomment' => 'Not awesome',
|
||||
'peercommentformat' => FORMAT_PLAIN,
|
||||
]);
|
||||
|
||||
$DB->insert_record('workshop_grades', [
|
||||
'assessmentid' => $this->assessment1112,
|
||||
'strategy' => 'accumulative',
|
||||
'dimensionid' => $this->dim2,
|
||||
'grade' => 4,
|
||||
'peercomment' => 'All good',
|
||||
'peercommentformat' => FORMAT_PLAIN,
|
||||
]);
|
||||
|
||||
$contextlist = new \core_privacy\local\request\approved_contextlist($this->student2, 'mod_workshop', [
|
||||
\context_module::instance($this->workshop11->cmid)->id,
|
||||
]);
|
||||
|
||||
\mod_workshop\privacy\provider::export_user_data($contextlist);
|
||||
|
||||
$writer = writer::with_context(\context_module::instance($this->workshop11->cmid));
|
||||
|
||||
$form = $writer->get_data([
|
||||
get_string('myassessments', 'mod_workshop'),
|
||||
$this->assessment1112,
|
||||
get_string('assessmentform', 'mod_workshop'),
|
||||
get_string('pluginname', 'workshopform_accumulative'),
|
||||
]);
|
||||
|
||||
$this->assertEquals('Aspect 1 description', $form->aspects[0]->description);
|
||||
$this->assertEquals(4, $form->aspects[1]->grade);
|
||||
}
|
||||
}
|
104
mod/workshop/form/comments/classes/privacy/provider.php
Normal file
104
mod/workshop/form/comments/classes/privacy/provider.php
Normal file
@ -0,0 +1,104 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides the class {@link workshopform_comments\privacy\provider}
|
||||
*
|
||||
* @package workshopform_comments
|
||||
* @category privacy
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace workshopform_comments\privacy;
|
||||
|
||||
use core_privacy\local\request\writer;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Privacy API implementation for the Comments grading strategy.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class provider implements \core_privacy\local\metadata\null_provider, \mod_workshop\privacy\workshopform_provider {
|
||||
|
||||
/**
|
||||
* Explain that this plugin stores no personal data.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function get_reason() : string {
|
||||
return 'privacy:metadata';
|
||||
}
|
||||
|
||||
/**
|
||||
* Return details of the filled assessment form.
|
||||
*
|
||||
* @param stdClass $user User we are exporting data for
|
||||
* @param context $context The workshop activity context
|
||||
* @param array $subcontext Subcontext within the context to export to
|
||||
* @param int $assessmentid ID of the assessment
|
||||
*/
|
||||
public static function export_assessment_form(\stdClass $user, \context $context, array $subcontext, int $assessmentid) {
|
||||
global $DB;
|
||||
|
||||
if ($context->contextlevel != CONTEXT_MODULE) {
|
||||
throw new \coding_exception('Unexpected context provided');
|
||||
}
|
||||
|
||||
$sql = "SELECT dim.id, dim.description, dim.descriptionformat, wg.peercomment, wg.peercommentformat
|
||||
FROM {course_modules} cm
|
||||
JOIN {context} ctx ON ctx.contextlevel = :contextlevel AND ctx.instanceid = cm.id
|
||||
JOIN {workshop} w ON cm.instance = w.id
|
||||
JOIN {workshopform_comments} dim ON dim.workshopid = w.id
|
||||
LEFT JOIN {workshop_grades} wg ON wg.strategy = :strategy
|
||||
AND wg.dimensionid = dim.id AND wg.assessmentid = :assessmentid
|
||||
WHERE ctx.id = :contextid
|
||||
ORDER BY dim.sort";
|
||||
|
||||
$params = [
|
||||
'strategy' => 'comments',
|
||||
'contextlevel' => CONTEXT_MODULE,
|
||||
'contextid' => $context->id,
|
||||
'assessmentid' => $assessmentid,
|
||||
];
|
||||
|
||||
$writer = \core_privacy\local\request\writer::with_context($context);
|
||||
$data = [];
|
||||
$hasdata = false;
|
||||
$dimensionids = [];
|
||||
|
||||
foreach ($DB->get_records_sql($sql, $params) as $record) {
|
||||
if ($record->peercomment !== null) {
|
||||
$hasdata = true;
|
||||
}
|
||||
$record->description = $writer->rewrite_pluginfile_urls($subcontext, 'workshopform_comments',
|
||||
'description', $record->id, $record->description);
|
||||
$dimensionids[] = $record->id;
|
||||
unset($record->id);
|
||||
$data[] = $record;
|
||||
}
|
||||
|
||||
if ($hasdata) {
|
||||
$writer->export_data($subcontext, (object) ['aspects' => $data]);
|
||||
foreach ($dimensionids as $dimensionid) {
|
||||
$writer->export_area_files($subcontext, 'workshopform_comments', 'description', $dimensionid);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -28,4 +28,4 @@ $string['dimensioncommentfor'] = 'Comment for {$a}';
|
||||
$string['dimensiondescription'] = 'Description';
|
||||
$string['dimensionnumber'] = 'Aspect {$a}';
|
||||
$string['pluginname'] = 'Comments';
|
||||
|
||||
$string['privacy:metadata'] = 'The Comments grading plugin only stores the details of the assessment form. Actual personal data of how the form has been filled are stored by the Workshop module itself and are attached to exported assessments.';
|
||||
|
118
mod/workshop/form/comments/tests/privacy_provider_test.php
Normal file
118
mod/workshop/form/comments/tests/privacy_provider_test.php
Normal file
@ -0,0 +1,118 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides the {@link workshopform_comments_privacy_provider_testcase} class.
|
||||
*
|
||||
* @package workshopform_comments
|
||||
* @category test
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
global $CFG;
|
||||
|
||||
use core_privacy\local\request\writer;
|
||||
|
||||
/**
|
||||
* Unit tests for the privacy API implementation.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class workshopform_comments_privacy_provider_testcase extends advanced_testcase {
|
||||
|
||||
/**
|
||||
* Test {@link workshopform_comments\privacy\provider::export_assessment_form()} implementation.
|
||||
*/
|
||||
public function test_export_assessment_form() {
|
||||
global $DB;
|
||||
$this->resetAfterTest();
|
||||
$this->setAdminUser();
|
||||
|
||||
$this->generator = $this->getDataGenerator();
|
||||
$this->workshopgenerator = $this->generator->get_plugin_generator('mod_workshop');
|
||||
|
||||
$this->course1 = $this->generator->create_course();
|
||||
|
||||
$this->workshop11 = $this->generator->create_module('workshop', [
|
||||
'course' => $this->course1,
|
||||
'name' => 'Workshop11',
|
||||
]);
|
||||
$DB->set_field('workshop', 'phase', 100, ['id' => $this->workshop11->id]);
|
||||
|
||||
$this->dim1 = $DB->insert_record('workshopform_comments', [
|
||||
'workshopid' => $this->workshop11->id,
|
||||
'sort' => 1,
|
||||
'description' => 'Aspect 1 description',
|
||||
'descriptionformat' => FORMAT_MARKDOWN,
|
||||
]);
|
||||
|
||||
$this->dim2 = $DB->insert_record('workshopform_comments', [
|
||||
'workshopid' => $this->workshop11->id,
|
||||
'sort' => 2,
|
||||
'description' => 'Aspect 2 description',
|
||||
'descriptionformat' => FORMAT_MARKDOWN,
|
||||
]);
|
||||
|
||||
$this->student1 = $this->generator->create_user();
|
||||
$this->student2 = $this->generator->create_user();
|
||||
|
||||
$this->submission111 = $this->workshopgenerator->create_submission($this->workshop11->id, $this->student1->id);
|
||||
|
||||
$this->assessment1112 = $this->workshopgenerator->create_assessment($this->submission111, $this->student2->id, [
|
||||
'grade' => 92,
|
||||
]);
|
||||
|
||||
$DB->insert_record('workshop_grades', [
|
||||
'assessmentid' => $this->assessment1112,
|
||||
'strategy' => 'comments',
|
||||
'dimensionid' => $this->dim1,
|
||||
'grade' => 100,
|
||||
'peercomment' => 'Not awesome',
|
||||
'peercommentformat' => FORMAT_PLAIN,
|
||||
]);
|
||||
|
||||
$DB->insert_record('workshop_grades', [
|
||||
'assessmentid' => $this->assessment1112,
|
||||
'strategy' => 'comments',
|
||||
'dimensionid' => $this->dim2,
|
||||
'grade' => 100,
|
||||
'peercomment' => 'All good',
|
||||
'peercommentformat' => FORMAT_PLAIN,
|
||||
]);
|
||||
|
||||
$contextlist = new \core_privacy\local\request\approved_contextlist($this->student2, 'mod_workshop', [
|
||||
\context_module::instance($this->workshop11->cmid)->id,
|
||||
]);
|
||||
|
||||
\mod_workshop\privacy\provider::export_user_data($contextlist);
|
||||
|
||||
$writer = writer::with_context(\context_module::instance($this->workshop11->cmid));
|
||||
|
||||
$form = $writer->get_data([
|
||||
get_string('myassessments', 'mod_workshop'),
|
||||
$this->assessment1112,
|
||||
get_string('assessmentform', 'mod_workshop'),
|
||||
get_string('pluginname', 'workshopform_comments'),
|
||||
]);
|
||||
|
||||
$this->assertEquals('Aspect 1 description', $form->aspects[0]->description);
|
||||
$this->assertEquals('All good', $form->aspects[1]->peercomment);
|
||||
}
|
||||
}
|
117
mod/workshop/form/numerrors/classes/privacy/provider.php
Normal file
117
mod/workshop/form/numerrors/classes/privacy/provider.php
Normal file
@ -0,0 +1,117 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides the class {@link workshopform_numerrors\privacy\provider}
|
||||
*
|
||||
* @package workshopform_numerrors
|
||||
* @category privacy
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace workshopform_numerrors\privacy;
|
||||
|
||||
use core_privacy\local\request\writer;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Privacy API implementation for the Number of errors strategy.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class provider implements \core_privacy\local\metadata\null_provider, \mod_workshop\privacy\workshopform_provider {
|
||||
|
||||
/**
|
||||
* Explain that this plugin stores no personal data.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function get_reason() : string {
|
||||
return 'privacy:metadata';
|
||||
}
|
||||
|
||||
/**
|
||||
* Return details of the filled assessment form.
|
||||
*
|
||||
* @param stdClass $user User we are exporting data for
|
||||
* @param context $context The workshop activity context
|
||||
* @param array $subcontext Subcontext within the context to export to
|
||||
* @param int $assessmentid ID of the assessment
|
||||
*/
|
||||
public static function export_assessment_form(\stdClass $user, \context $context, array $subcontext, int $assessmentid) {
|
||||
global $DB;
|
||||
|
||||
if ($context->contextlevel != CONTEXT_MODULE) {
|
||||
throw new \coding_exception('Unexpected context provided');
|
||||
}
|
||||
|
||||
$sql = "SELECT dim.id, dim.workshopid, dim.description, dim.descriptionformat, dim.grade0, dim.grade1, dim.weight,
|
||||
wg.grade, wg.peercomment, wg.peercommentformat
|
||||
FROM {course_modules} cm
|
||||
JOIN {context} ctx ON ctx.contextlevel = :contextlevel AND ctx.instanceid = cm.id
|
||||
JOIN {workshop} w ON cm.instance = w.id
|
||||
JOIN {workshopform_numerrors} dim ON dim.workshopid = w.id
|
||||
LEFT JOIN {workshop_grades} wg ON wg.strategy = :strategy
|
||||
AND wg.dimensionid = dim.id AND wg.assessmentid = :assessmentid
|
||||
WHERE ctx.id = :contextid
|
||||
ORDER BY dim.sort";
|
||||
|
||||
$params = [
|
||||
'strategy' => 'numerrors',
|
||||
'contextlevel' => CONTEXT_MODULE,
|
||||
'contextid' => $context->id,
|
||||
'assessmentid' => $assessmentid,
|
||||
];
|
||||
|
||||
$writer = \core_privacy\local\request\writer::with_context($context);
|
||||
$data = [];
|
||||
$workshopid = null;
|
||||
$hasdata = false;
|
||||
$dimensionids = [];
|
||||
|
||||
foreach ($DB->get_records_sql($sql, $params) as $record) {
|
||||
if ($record->grade !== null) {
|
||||
$hasdata = true;
|
||||
}
|
||||
$record->description = $writer->rewrite_pluginfile_urls($subcontext, 'workshopform_numerrors',
|
||||
'description', $record->id, $record->description);
|
||||
$workshopid = $record->workshopid;
|
||||
$dimensionids[] = $record->id;
|
||||
unset($record->id);
|
||||
unset($record->workshopid);
|
||||
$data[] = $record;
|
||||
}
|
||||
|
||||
if ($hasdata) {
|
||||
$writer->export_data($subcontext, (object)['assertions' => $data]);
|
||||
foreach ($dimensionids as $dimensionid) {
|
||||
$writer->export_area_files($subcontext, 'workshopform_numerrors', 'description', $dimensionid);
|
||||
}
|
||||
foreach ($DB->get_records('workshopform_numerrors_map', ['workshopid' => $workshopid], 'nonegative',
|
||||
'id, nonegative, grade') as $mapping) {
|
||||
$writer->export_metadata($subcontext, 'map_'.$mapping->nonegative.'_errors', $mapping->grade,
|
||||
get_string('privacy:export:metadata:map', 'workshopform_numerrors', [
|
||||
'nonegative' => $mapping->nonegative,
|
||||
'grade' => $mapping->grade
|
||||
])
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -40,4 +40,5 @@ $string['maperror'] = 'Weighted number of errors is less than or equals';
|
||||
$string['mapgrade'] = 'Grade for submission';
|
||||
$string['percents'] = '{$a} %';
|
||||
$string['pluginname'] = 'Number of errors';
|
||||
|
||||
$string['privacy:metadata'] = 'The Number of errors plugin only stores the details of the assessment form. Actual personal data of how the form has been filled are stored by the Workshop module itself and are attached to exported assessments.';
|
||||
$string['privacy:export:metadata:map'] = 'If the weighted number of errors reaches {$a->nonegative} then the grade is {$a->grade} percents.';
|
||||
|
127
mod/workshop/form/numerrors/tests/privacy_provider_test.php
Normal file
127
mod/workshop/form/numerrors/tests/privacy_provider_test.php
Normal file
@ -0,0 +1,127 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides the {@link workshopform_numerrors_privacy_provider_testcase} class.
|
||||
*
|
||||
* @package workshopform_numerrors
|
||||
* @category test
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
global $CFG;
|
||||
|
||||
use core_privacy\local\request\writer;
|
||||
|
||||
/**
|
||||
* Unit tests for the privacy API implementation.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class workshopform_numerrors_privacy_provider_testcase extends advanced_testcase {
|
||||
|
||||
/**
|
||||
* Test {@link workshopform_numerrors\privacy\provider::export_assessment_form()} implementation.
|
||||
*/
|
||||
public function test_export_assessment_form() {
|
||||
global $DB;
|
||||
$this->resetAfterTest();
|
||||
$this->setAdminUser();
|
||||
|
||||
$this->generator = $this->getDataGenerator();
|
||||
$this->workshopgenerator = $this->generator->get_plugin_generator('mod_workshop');
|
||||
|
||||
$this->course1 = $this->generator->create_course();
|
||||
|
||||
$this->workshop11 = $this->generator->create_module('workshop', [
|
||||
'course' => $this->course1,
|
||||
'name' => 'Workshop11',
|
||||
]);
|
||||
$DB->set_field('workshop', 'phase', 50, ['id' => $this->workshop11->id]);
|
||||
|
||||
$this->dim1 = $DB->insert_record('workshopform_numerrors', [
|
||||
'workshopid' => $this->workshop11->id,
|
||||
'sort' => 1,
|
||||
'description' => 'Assertion 1 description',
|
||||
'descriptionformat' => FORMAT_MARKDOWN,
|
||||
'descriptiontrust' => 0,
|
||||
'grade0' => 'No',
|
||||
'grade1' => 'Yes',
|
||||
'weight' => 1,
|
||||
]);
|
||||
|
||||
$this->dim2 = $DB->insert_record('workshopform_numerrors', [
|
||||
'workshopid' => $this->workshop11->id,
|
||||
'sort' => 2,
|
||||
'description' => 'Assertion 2 description',
|
||||
'descriptionformat' => FORMAT_MARKDOWN,
|
||||
'descriptiontrust' => 0,
|
||||
'grade0' => 'Missing',
|
||||
'grade1' => 'Present',
|
||||
'weight' => 1,
|
||||
]);
|
||||
|
||||
$this->student1 = $this->generator->create_user();
|
||||
$this->student2 = $this->generator->create_user();
|
||||
|
||||
$this->submission111 = $this->workshopgenerator->create_submission($this->workshop11->id, $this->student1->id);
|
||||
|
||||
$this->assessment1112 = $this->workshopgenerator->create_assessment($this->submission111, $this->student2->id, [
|
||||
'grade' => 92,
|
||||
]);
|
||||
|
||||
$DB->insert_record('workshop_grades', [
|
||||
'assessmentid' => $this->assessment1112,
|
||||
'strategy' => 'numerrors',
|
||||
'dimensionid' => $this->dim1,
|
||||
'grade' => 1,
|
||||
'peercomment' => 'Awesome',
|
||||
'peercommentformat' => FORMAT_PLAIN,
|
||||
]);
|
||||
|
||||
$DB->insert_record('workshop_grades', [
|
||||
'assessmentid' => $this->assessment1112,
|
||||
'strategy' => 'numerrors',
|
||||
'dimensionid' => $this->dim2,
|
||||
'grade' => 0,
|
||||
'peercomment' => 'Missing',
|
||||
'peercommentformat' => FORMAT_PLAIN,
|
||||
]);
|
||||
|
||||
$contextlist = new \core_privacy\local\request\approved_contextlist($this->student2, 'mod_workshop', [
|
||||
\context_module::instance($this->workshop11->cmid)->id,
|
||||
]);
|
||||
|
||||
\mod_workshop\privacy\provider::export_user_data($contextlist);
|
||||
|
||||
$writer = writer::with_context(\context_module::instance($this->workshop11->cmid));
|
||||
|
||||
$form = $writer->get_data([
|
||||
get_string('myassessments', 'mod_workshop'),
|
||||
$this->assessment1112,
|
||||
get_string('assessmentform', 'mod_workshop'),
|
||||
get_string('pluginname', 'workshopform_numerrors'),
|
||||
]);
|
||||
|
||||
$this->assertEquals('Assertion 1 description', $form->assertions[0]->description);
|
||||
$this->assertEquals(0, $form->assertions[1]->grade);
|
||||
$this->assertEquals('Missing', $form->assertions[1]->peercomment);
|
||||
}
|
||||
}
|
127
mod/workshop/form/rubric/classes/privacy/provider.php
Normal file
127
mod/workshop/form/rubric/classes/privacy/provider.php
Normal file
@ -0,0 +1,127 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides the class {@link workshopform_rubric\privacy\provider}
|
||||
*
|
||||
* @package workshopform_rubric
|
||||
* @category privacy
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace workshopform_rubric\privacy;
|
||||
|
||||
use core_privacy\local\request\writer;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Privacy API implementation for the Rubric strategy.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class provider implements \core_privacy\local\metadata\null_provider, \mod_workshop\privacy\workshopform_provider {
|
||||
|
||||
/**
|
||||
* Explain that this plugin stores no personal data.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function get_reason() : string {
|
||||
return 'privacy:metadata';
|
||||
}
|
||||
|
||||
/**
|
||||
* Return details of the filled assessment form.
|
||||
*
|
||||
* @param stdClass $user User we are exporting data for
|
||||
* @param context $context The workshop activity context
|
||||
* @param array $subcontext Subcontext within the context to export to
|
||||
* @param int $assessmentid ID of the assessment
|
||||
*/
|
||||
public static function export_assessment_form(\stdClass $user, \context $context, array $subcontext, int $assessmentid) {
|
||||
global $DB;
|
||||
|
||||
if ($context->contextlevel != CONTEXT_MODULE) {
|
||||
throw new \coding_exception('Unexpected context provided');
|
||||
}
|
||||
|
||||
$sql = "SELECT r.id, r.workshopid, r.description, r.descriptionformat,
|
||||
rl.id AS levelid, rl.grade AS levelgrade, rl.definition, rl.definitionformat,
|
||||
wg.grade
|
||||
FROM {course_modules} cm
|
||||
JOIN {context} ctx ON ctx.contextlevel = :contextlevel AND ctx.instanceid = cm.id
|
||||
JOIN {workshop} w ON cm.instance = w.id
|
||||
JOIN {workshopform_rubric} r ON r.workshopid = w.id
|
||||
JOIN {workshopform_rubric_levels} rl ON rl.dimensionid = r.id
|
||||
LEFT JOIN {workshop_grades} wg ON wg.strategy = :strategy AND wg.dimensionid = r.id AND wg.assessmentid = :assessmentid
|
||||
WHERE ctx.id = :contextid
|
||||
ORDER BY r.sort, rl.grade DESC";
|
||||
|
||||
$params = [
|
||||
'strategy' => 'rubric',
|
||||
'contextlevel' => CONTEXT_MODULE,
|
||||
'contextid' => $context->id,
|
||||
'assessmentid' => $assessmentid,
|
||||
];
|
||||
|
||||
$writer = \core_privacy\local\request\writer::with_context($context);
|
||||
$criteria = [];
|
||||
$workshopid = null;
|
||||
$hasdata = false;
|
||||
|
||||
$rs = $DB->get_recordset_sql($sql, $params);
|
||||
|
||||
foreach ($rs as $record) {
|
||||
if (empty($criteria[$record->id])) {
|
||||
$criteria[$record->id] = (object) [
|
||||
'description' => $writer->rewrite_pluginfile_urls($subcontext, 'workshopform_rubric', 'description',
|
||||
$record->id, $record->description),
|
||||
'descriptionformat' => $record->descriptionformat,
|
||||
'grade' => $record->grade,
|
||||
'levels' => [],
|
||||
];
|
||||
$workshopid = $record->workshopid;
|
||||
}
|
||||
$criteria[$record->id]->levels[] = (object) [
|
||||
'grade' => $record->levelgrade,
|
||||
'definition' => $record->definition,
|
||||
'definitionformat' => $record->definitionformat,
|
||||
];
|
||||
if ($record->grade !== null) {
|
||||
$hasdata = true;
|
||||
}
|
||||
}
|
||||
|
||||
$rs->close();
|
||||
|
||||
if ($hasdata) {
|
||||
$data = (object) [
|
||||
'criteria' => array_values($criteria),
|
||||
];
|
||||
$layout = $DB->get_field('workshopform_rubric_config', 'layout', ['workshopid' => $workshopid]);
|
||||
|
||||
foreach (array_keys($criteria) as $dimensionid) {
|
||||
$writer->export_area_files($subcontext, 'workshopform_rubric', 'description', $dimensionid);
|
||||
}
|
||||
|
||||
$writer->export_data($subcontext, $data);
|
||||
$writer->export_metadata($subcontext, 'layout', $layout, get_string('layout', 'workshopform_rubric'));
|
||||
}
|
||||
}
|
||||
}
|
@ -37,3 +37,4 @@ $string['mustbeunique'] = 'Level grades must be unique within a criterion';
|
||||
$string['mustdefinelevel'] = 'At least one level is required';
|
||||
$string['mustchooseone'] = 'You have to select one of these items';
|
||||
$string['pluginname'] = 'Rubric';
|
||||
$string['privacy:metadata'] = 'The Rubric plugin only stores the details of the assessment form. Actual personal data of how the form has been filled are stored by the Workshop module itself and are attached to exported assessments.';
|
||||
|
155
mod/workshop/form/rubric/tests/privacy_provider_test.php
Normal file
155
mod/workshop/form/rubric/tests/privacy_provider_test.php
Normal file
@ -0,0 +1,155 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides the {@link workshopform_rubric_privacy_provider_testcase} class.
|
||||
*
|
||||
* @package workshopform_rubric
|
||||
* @category test
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
global $CFG;
|
||||
|
||||
use core_privacy\local\request\writer;
|
||||
|
||||
/**
|
||||
* Unit tests for the privacy API implementation.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class workshopform_rubric_privacy_provider_testcase extends advanced_testcase {
|
||||
|
||||
/**
|
||||
* Test {@link workshopform_rubric\privacy\provider::export_assessment_form()} implementation.
|
||||
*/
|
||||
public function test_export_assessment_form() {
|
||||
global $DB;
|
||||
$this->resetAfterTest();
|
||||
$this->setAdminUser();
|
||||
|
||||
$this->generator = $this->getDataGenerator();
|
||||
$this->workshopgenerator = $this->generator->get_plugin_generator('mod_workshop');
|
||||
|
||||
$this->course1 = $this->generator->create_course();
|
||||
|
||||
$this->workshop11 = $this->generator->create_module('workshop', [
|
||||
'course' => $this->course1,
|
||||
'name' => 'Workshop11',
|
||||
]);
|
||||
$DB->set_field('workshop', 'phase', 50, ['id' => $this->workshop11->id]);
|
||||
|
||||
$this->dim1 = $DB->insert_record('workshopform_rubric', [
|
||||
'workshopid' => $this->workshop11->id,
|
||||
'sort' => 1,
|
||||
'description' => 'Criterion 1 description',
|
||||
'descriptionformat' => FORMAT_MARKDOWN,
|
||||
]);
|
||||
|
||||
$DB->insert_record('workshopform_rubric_levels', [
|
||||
'dimensionid' => $this->dim1,
|
||||
'grade' => 0,
|
||||
'definition' => 'Missing',
|
||||
'definitionformat' => FORMAT_PLAIN,
|
||||
]);
|
||||
|
||||
$DB->insert_record('workshopform_rubric_levels', [
|
||||
'dimensionid' => $this->dim1,
|
||||
'grade' => 1,
|
||||
'definition' => 'Poor',
|
||||
'definitionformat' => FORMAT_PLAIN,
|
||||
]);
|
||||
|
||||
$DB->insert_record('workshopform_rubric_levels', [
|
||||
'dimensionid' => $this->dim1,
|
||||
'grade' => 2,
|
||||
'definition' => 'Good',
|
||||
'definitionformat' => FORMAT_PLAIN,
|
||||
]);
|
||||
|
||||
$this->dim2 = $DB->insert_record('workshopform_rubric', [
|
||||
'workshopid' => $this->workshop11->id,
|
||||
'sort' => 2,
|
||||
'description' => 'Criterion 2 description',
|
||||
'descriptionformat' => FORMAT_MARKDOWN,
|
||||
]);
|
||||
|
||||
$DB->insert_record('workshopform_rubric_levels', [
|
||||
'dimensionid' => $this->dim2,
|
||||
'grade' => 0,
|
||||
'definition' => 'Missing',
|
||||
'definitionformat' => FORMAT_PLAIN,
|
||||
]);
|
||||
|
||||
$DB->insert_record('workshopform_rubric_levels', [
|
||||
'dimensionid' => $this->dim2,
|
||||
'grade' => 5,
|
||||
'definition' => 'Great',
|
||||
'definitionformat' => FORMAT_PLAIN,
|
||||
]);
|
||||
|
||||
$this->student1 = $this->generator->create_user();
|
||||
$this->student2 = $this->generator->create_user();
|
||||
|
||||
$this->submission111 = $this->workshopgenerator->create_submission($this->workshop11->id, $this->student1->id);
|
||||
|
||||
$this->assessment1112 = $this->workshopgenerator->create_assessment($this->submission111, $this->student2->id, [
|
||||
'grade' => 92,
|
||||
]);
|
||||
|
||||
$DB->insert_record('workshop_grades', [
|
||||
'assessmentid' => $this->assessment1112,
|
||||
'strategy' => 'rubric',
|
||||
'dimensionid' => $this->dim1,
|
||||
'grade' => 1,
|
||||
'peercomment' => '',
|
||||
'peercommentformat' => FORMAT_PLAIN,
|
||||
]);
|
||||
|
||||
$DB->insert_record('workshop_grades', [
|
||||
'assessmentid' => $this->assessment1112,
|
||||
'strategy' => 'rubric',
|
||||
'dimensionid' => $this->dim2,
|
||||
'grade' => 5,
|
||||
'peercomment' => '',
|
||||
'peercommentformat' => FORMAT_PLAIN,
|
||||
]);
|
||||
|
||||
$contextlist = new \core_privacy\local\request\approved_contextlist($this->student2, 'mod_workshop', [
|
||||
\context_module::instance($this->workshop11->cmid)->id,
|
||||
]);
|
||||
|
||||
\mod_workshop\privacy\provider::export_user_data($contextlist);
|
||||
|
||||
$writer = writer::with_context(\context_module::instance($this->workshop11->cmid));
|
||||
|
||||
$form = $writer->get_data([
|
||||
get_string('myassessments', 'mod_workshop'),
|
||||
$this->assessment1112,
|
||||
get_string('assessmentform', 'mod_workshop'),
|
||||
get_string('pluginname', 'workshopform_rubric'),
|
||||
]);
|
||||
|
||||
$this->assertEquals('Criterion 1 description', $form->criteria[0]->description);
|
||||
$this->assertEquals(3, count($form->criteria[0]->levels));
|
||||
$this->assertEquals(2, count($form->criteria[1]->levels));
|
||||
$this->assertEquals(5, $form->criteria[1]->grade);
|
||||
}
|
||||
}
|
@ -64,6 +64,7 @@ $string['assessmentofsubmission'] = '<a href="{$a->assessmenturl}">Assessment</a
|
||||
$string['assessmentreference'] = 'Reference assessment';
|
||||
$string['assessmentreferenceconflict'] = 'It is not possible to assess an example submission for which you provided a reference assessment.';
|
||||
$string['assessmentreferenceneeded'] = 'You have to assess this example submission to provide a reference assessment. Click \'Continue\' button to assess the submission.';
|
||||
$string['assessments'] = 'Assessments';
|
||||
$string['assessmentsettings'] = 'Assessment settings';
|
||||
$string['assessmentstart'] = 'Open for assessment from';
|
||||
$string['assessmentstartevent'] = '{$a} opens for assessment';
|
||||
@ -198,6 +199,7 @@ Submissions are assessed using a multi-criteria assessment form defined by the t
|
||||
Students obtain two grades in a workshop activity - a grade for their submission and a grade for their assessment of their peers\' submissions. Both grades are recorded in the gradebook.';
|
||||
$string['modulename_link'] = 'mod/workshop/view';
|
||||
$string['modulenameplural'] = 'Workshops';
|
||||
$string['myassessments'] = 'My assessments';
|
||||
$string['mysubmission'] = 'My submission';
|
||||
$string['nattachments'] = 'Maximum number of submission attachments';
|
||||
$string['noexamples'] = 'No examples yet in this workshop';
|
||||
@ -234,6 +236,46 @@ $string['pluginadministration'] = 'Workshop administration';
|
||||
$string['pluginname'] = 'Workshop';
|
||||
$string['prepareexamples'] = 'Prepare example submissions';
|
||||
$string['previewassessmentform'] = 'Preview';
|
||||
$string['privacy:metadata:aggregatedgradinggrade'] = 'Aggregated grade for all assessments made by the user in the given workshop activity';
|
||||
$string['privacy:metadata:assessmentgrade'] = 'Aggregated grade for the submission suggested by this assessment';
|
||||
$string['privacy:metadata:assessmentgradinggrade'] = 'Grade for providing this assessment';
|
||||
$string['privacy:metadata:assessmentgradinggradeover'] = 'Manually overridden value of the grade for providing this assessment';
|
||||
$string['privacy:metadata:assessmentid'] = 'Identifier of the assessment';
|
||||
$string['privacy:metadata:authorid'] = 'Identifier of the submission author';
|
||||
$string['privacy:metadata:dimensiongrade'] = 'Grade in the given assessment dimension';
|
||||
$string['privacy:metadata:dimensionid'] = 'Identifier of the assessment dimension';
|
||||
$string['privacy:metadata:example'] = 'Whether this record represents an example submission';
|
||||
$string['privacy:metadata:feedbackauthor'] = 'Feedback for the author';
|
||||
$string['privacy:metadata:feedbackauthorformat'] = 'Text format of the feedback for the author';
|
||||
$string['privacy:metadata:feedbackreviewer'] = 'Feedback for the user providing the assessment';
|
||||
$string['privacy:metadata:feedbackreviewerformat'] = 'Text format of the feedback for the user providing the assessment';
|
||||
$string['privacy:metadata:late'] = 'Whether the submission been submitted after the deadline';
|
||||
$string['privacy:metadata:peercomment'] = 'Comment on the given grade by the user providing the assessment';
|
||||
$string['privacy:metadata:peercommentformat'] = 'Text format of the comment on the given grade';
|
||||
$string['privacy:metadata:preference:perpage'] = 'Number of submissions the user prefers to see on one page';
|
||||
$string['privacy:metadata:published'] = 'Whether the submission should be published to all participants once the workshop is closed';
|
||||
$string['privacy:metadata:reviewerid'] = 'Identifier of the user providing the assessment';
|
||||
$string['privacy:metadata:strategy'] = 'Name of the grading strategy subplugin interpreting the record values';
|
||||
$string['privacy:metadata:submissioncontent'] = 'Content of the submission';
|
||||
$string['privacy:metadata:submissioncontentformat'] = 'Text format of the submission content';
|
||||
$string['privacy:metadata:submissiongrade'] = 'Aggregated grade for the submission written as a decimal number from interval 0..100';
|
||||
$string['privacy:metadata:submissiongradeover'] = 'Manually overridden value of the aggregated grade';
|
||||
$string['privacy:metadata:submissionid'] = 'Identifier of the submission';
|
||||
$string['privacy:metadata:submissiontitle'] = 'Title of the submission';
|
||||
$string['privacy:metadata:subsystem:corefiles'] = 'Workshop module stores files embedded in / attached to the submission text';
|
||||
$string['privacy:metadata:subsystem:coreplagiarism'] = 'Workshop module has inbuilt support for plagiarism prevention systems';
|
||||
$string['privacy:metadata:timeaggregated'] = 'When the aggregated grade was last calculated';
|
||||
$string['privacy:metadata:timecreated'] = 'When this record was created in the database';
|
||||
$string['privacy:metadata:timemodified'] = 'When this record was last modified in the database';
|
||||
$string['privacy:metadata:userid'] = 'Identifier of the user for which aggregated grade is calculated';
|
||||
$string['privacy:metadata:weight'] = 'Weight of the assessment';
|
||||
$string['privacy:metadata:workshopaggregations'] = 'Holds aggregated grades for assessment';
|
||||
$string['privacy:metadata:workshopassessments'] = 'Holds information about allocated assessments of workshop module submissions';
|
||||
$string['privacy:metadata:workshopgrades'] = 'Holds information about how the assessment forms were filled with grades and comments';
|
||||
$string['privacy:metadata:workshopid'] = 'Identifier of the workshop activity';
|
||||
$string['privacy:metadata:workshopsubmissions'] = 'Holds information about workshop module submissions';
|
||||
$string['privacy:request:delete:title'] = '[Deleted]';
|
||||
$string['privacy:request:delete:content'] = 'The content has been deleted at the request of the user.';
|
||||
$string['publishedsubmissions'] = 'Published submissions';
|
||||
$string['publishsubmission'] = 'Publish submission';
|
||||
$string['publishsubmission_help'] = 'Published submissions are available to the others when the workshop is closed.';
|
||||
|
@ -152,6 +152,8 @@ class mod_workshop_generator extends testing_module_generator {
|
||||
'timecreated' => $timenow,
|
||||
'timemodified' => $timenow,
|
||||
'grade' => null,
|
||||
'feedbackauthor' => '',
|
||||
'feedbackreviewer' => '',
|
||||
);
|
||||
|
||||
$id = $DB->insert_record('workshop_assessments', $record);
|
||||
|
379
mod/workshop/tests/privacy_provider_test.php
Normal file
379
mod/workshop/tests/privacy_provider_test.php
Normal file
@ -0,0 +1,379 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Provides the {@link mod_workshop_privacy_provider_testcase} class.
|
||||
*
|
||||
* @package mod_workshop
|
||||
* @category test
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
global $CFG;
|
||||
|
||||
use core_privacy\local\request\writer;
|
||||
|
||||
/**
|
||||
* Unit tests for the privacy API implementation.
|
||||
*
|
||||
* @copyright 2018 David Mudrák <david@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class mod_workshop_privacy_provider_testcase extends advanced_testcase {
|
||||
|
||||
/** @var testing_data_generator */
|
||||
protected $generator;
|
||||
|
||||
/** @var mod_workshop_generator */
|
||||
protected $workshopgenerator;
|
||||
|
||||
/** @var stdClass */
|
||||
protected $course1;
|
||||
|
||||
/** @var stdClass */
|
||||
protected $course2;
|
||||
|
||||
/** @var stdClass */
|
||||
protected $student1;
|
||||
|
||||
/** @var stdClass */
|
||||
protected $student2;
|
||||
|
||||
/** @var stdClass */
|
||||
protected $student3;
|
||||
|
||||
/** @var stdClass */
|
||||
protected $teacher4;
|
||||
|
||||
/** @var stdClass first workshop in course1 */
|
||||
protected $workshop11;
|
||||
|
||||
/** @var stdClass second workshop in course1 */
|
||||
protected $workshop12;
|
||||
|
||||
/** @var stdClass first workshop in course2 */
|
||||
protected $workshop21;
|
||||
|
||||
/** @var int ID of the submission in workshop11 by student1 */
|
||||
protected $submission111;
|
||||
|
||||
/** @var int ID of the submission in workshop12 by student1 */
|
||||
protected $submission121;
|
||||
|
||||
/** @var int ID of the submission in workshop12 by student2 */
|
||||
protected $submission122;
|
||||
|
||||
/** @var int ID of the submission in workshop21 by student2 */
|
||||
protected $submission212;
|
||||
|
||||
/** @var int ID of the assessment of submission111 by student1 */
|
||||
protected $assessment1111;
|
||||
|
||||
/** @var int ID of the assessment of submission111 by student2 */
|
||||
protected $assessment1112;
|
||||
|
||||
/** @var int ID of the assessment of submission111 by student3 */
|
||||
protected $assessment1113;
|
||||
|
||||
/** @var int ID of the assessment of submission121 by student2 */
|
||||
protected $assessment1212;
|
||||
|
||||
/** @var int ID of the assessment of submission212 by student1 */
|
||||
protected $assessment2121;
|
||||
|
||||
/**
|
||||
* Set up the test environment.
|
||||
*
|
||||
* course1
|
||||
* |
|
||||
* +--workshop11 (first digit matches the course, second is incremental)
|
||||
* | |
|
||||
* | +--submission111 (first two digits match the workshop, last one matches the author)
|
||||
* | |
|
||||
* | +--assessment1111 (first three digits match the submission, last one matches the reviewer)
|
||||
* | +--assessment1112
|
||||
* | +--assessment1113
|
||||
* |
|
||||
* +--workshop12
|
||||
* |
|
||||
* +--submission121
|
||||
* | |
|
||||
* | +--assessment1212
|
||||
* |
|
||||
* +--submission122
|
||||
*
|
||||
* etc.
|
||||
*/
|
||||
protected function setUp() {
|
||||
global $DB;
|
||||
$this->resetAfterTest();
|
||||
$this->setAdminUser();
|
||||
|
||||
$this->generator = $this->getDataGenerator();
|
||||
$this->workshopgenerator = $this->generator->get_plugin_generator('mod_workshop');
|
||||
|
||||
$this->course1 = $this->generator->create_course();
|
||||
$this->course2 = $this->generator->create_course();
|
||||
|
||||
$this->workshop11 = $this->generator->create_module('workshop', [
|
||||
'course' => $this->course1,
|
||||
'name' => 'Workshop11',
|
||||
]);
|
||||
$DB->set_field('workshop', 'phase', 50, ['id' => $this->workshop11->id]);
|
||||
|
||||
$this->workshop12 = $this->generator->create_module('workshop', ['course' => $this->course1]);
|
||||
$this->workshop21 = $this->generator->create_module('workshop', ['course' => $this->course2]);
|
||||
|
||||
$this->student1 = $this->generator->create_user();
|
||||
$this->student2 = $this->generator->create_user();
|
||||
$this->student3 = $this->generator->create_user();
|
||||
$this->teacher4 = $this->generator->create_user();
|
||||
|
||||
$this->submission111 = $this->workshopgenerator->create_submission($this->workshop11->id, $this->student1->id);
|
||||
$this->submission121 = $this->workshopgenerator->create_submission($this->workshop12->id, $this->student1->id,
|
||||
['gradeoverby' => $this->teacher4->id]);
|
||||
$this->submission122 = $this->workshopgenerator->create_submission($this->workshop12->id, $this->student2->id);
|
||||
$this->submission212 = $this->workshopgenerator->create_submission($this->workshop21->id, $this->student2->id);
|
||||
|
||||
$this->assessment1111 = $this->workshopgenerator->create_assessment($this->submission111, $this->student1->id, [
|
||||
'grade' => null,
|
||||
]);
|
||||
$this->assessment1112 = $this->workshopgenerator->create_assessment($this->submission111, $this->student2->id, [
|
||||
'grade' => 92,
|
||||
]);
|
||||
$this->assessment1113 = $this->workshopgenerator->create_assessment($this->submission111, $this->student3->id);
|
||||
|
||||
$this->assessment1212 = $this->workshopgenerator->create_assessment($this->submission121, $this->student2->id, [
|
||||
'feedbackauthor' => 'This is what student 2 thinks about submission 121',
|
||||
'feedbackreviewer' => 'This is what the teacher thinks about this assessment',
|
||||
]);
|
||||
|
||||
$this->assessment2121 = $this->workshopgenerator->create_assessment($this->submission212, $this->student1->id, [
|
||||
'grade' => 68,
|
||||
'gradinggradeover' => 80,
|
||||
'gradinggradeoverby' => $this->teacher4->id,
|
||||
'feedbackauthor' => 'This is what student 1 thinks about submission 212',
|
||||
'feedbackreviewer' => 'This is what the teacher thinks about this assessment',
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test {@link \mod_workshop\privacy\provider::get_contexts_for_userid()} implementation.
|
||||
*/
|
||||
public function test_get_contexts_for_userid() {
|
||||
|
||||
$cm11 = get_coursemodule_from_instance('workshop', $this->workshop11->id);
|
||||
$cm12 = get_coursemodule_from_instance('workshop', $this->workshop12->id);
|
||||
$cm21 = get_coursemodule_from_instance('workshop', $this->workshop21->id);
|
||||
|
||||
$context11 = context_module::instance($cm11->id);
|
||||
$context12 = context_module::instance($cm12->id);
|
||||
$context21 = context_module::instance($cm21->id);
|
||||
|
||||
// Student1 has data in workshop11 (author + self reviewer), workshop12 (author) and workshop21 (reviewer).
|
||||
$contextlist = \mod_workshop\privacy\provider::get_contexts_for_userid($this->student1->id);
|
||||
$this->assertInstanceOf(\core_privacy\local\request\contextlist::class, $contextlist);
|
||||
$this->assertEquals([$context11->id, $context12->id, $context21->id], $contextlist->get_contextids(), null, 0.0, 10, true);
|
||||
|
||||
// Student2 has data in workshop11 (reviewer), workshop12 (reviewer) and workshop21 (author).
|
||||
$contextlist = \mod_workshop\privacy\provider::get_contexts_for_userid($this->student2->id);
|
||||
$this->assertEquals([$context11->id, $context12->id, $context21->id], $contextlist->get_contextids(), null, 0.0, 10, true);
|
||||
|
||||
// Student3 has data in workshop11 (reviewer).
|
||||
$contextlist = \mod_workshop\privacy\provider::get_contexts_for_userid($this->student3->id);
|
||||
$this->assertEquals([$context11->id], $contextlist->get_contextids(), null, 0.0, 10, true);
|
||||
|
||||
// Teacher4 has data in workshop12 (gradeoverby) and workshop21 (gradinggradeoverby).
|
||||
$contextlist = \mod_workshop\privacy\provider::get_contexts_for_userid($this->teacher4->id);
|
||||
$this->assertEquals([$context21->id, $context12->id], $contextlist->get_contextids(), null, 0.0, 10, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test {@link \mod_workshop\privacy\provider::export_user_data()} implementation.
|
||||
*/
|
||||
public function test_export_user_data_1() {
|
||||
|
||||
$contextlist = new \core_privacy\local\request\approved_contextlist($this->student1, 'mod_workshop', [
|
||||
\context_module::instance($this->workshop11->cmid)->id,
|
||||
\context_module::instance($this->workshop12->cmid)->id,
|
||||
]);
|
||||
|
||||
\mod_workshop\privacy\provider::export_user_data($contextlist);
|
||||
|
||||
$writer = writer::with_context(\context_module::instance($this->workshop11->cmid));
|
||||
|
||||
$workshop = $writer->get_data([]);
|
||||
$this->assertEquals('Workshop11', $workshop->name);
|
||||
$this->assertObjectHasAttribute('phase', $workshop);
|
||||
|
||||
$mysubmission = $writer->get_data([
|
||||
get_string('mysubmission', 'mod_workshop'),
|
||||
]);
|
||||
|
||||
$mysubmissionselfassessmentwithoutgrade = $writer->get_data([
|
||||
get_string('mysubmission', 'mod_workshop'),
|
||||
get_string('assessments', 'mod_workshop'),
|
||||
$this->assessment1111,
|
||||
]);
|
||||
$this->assertNull($mysubmissionselfassessmentwithoutgrade->grade);
|
||||
$this->assertEquals(get_string('yes'), $mysubmissionselfassessmentwithoutgrade->selfassessment);
|
||||
|
||||
$mysubmissionassessmentwithgrade = $writer->get_data([
|
||||
get_string('mysubmission', 'mod_workshop'),
|
||||
get_string('assessments', 'mod_workshop'),
|
||||
$this->assessment1112,
|
||||
]);
|
||||
$this->assertEquals(92, $mysubmissionassessmentwithgrade->grade);
|
||||
$this->assertEquals(get_string('no'), $mysubmissionassessmentwithgrade->selfassessment);
|
||||
|
||||
$mysubmissionassessmentwithoutgrade = $writer->get_data([
|
||||
get_string('mysubmission', 'mod_workshop'),
|
||||
get_string('assessments', 'mod_workshop'),
|
||||
$this->assessment1113,
|
||||
]);
|
||||
$this->assertEquals(null, $mysubmissionassessmentwithoutgrade->grade);
|
||||
$this->assertEquals(get_string('no'), $mysubmissionassessmentwithoutgrade->selfassessment);
|
||||
|
||||
$myassessments = $writer->get_data([
|
||||
get_string('myassessments', 'mod_workshop'),
|
||||
]);
|
||||
$this->assertEmpty($myassessments);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test {@link \mod_workshop\privacy\provider::export_user_data()} implementation.
|
||||
*/
|
||||
public function test_export_user_data_2() {
|
||||
|
||||
$contextlist = new \core_privacy\local\request\approved_contextlist($this->student2, 'mod_workshop', [
|
||||
\context_module::instance($this->workshop11->cmid)->id,
|
||||
]);
|
||||
|
||||
\mod_workshop\privacy\provider::export_user_data($contextlist);
|
||||
|
||||
$writer = writer::with_context(\context_module::instance($this->workshop11->cmid));
|
||||
|
||||
$assessedsubmission = $writer->get_related_data([
|
||||
get_string('myassessments', 'mod_workshop'),
|
||||
$this->assessment1112,
|
||||
], 'submission');
|
||||
$this->assertEquals(get_string('no'), $assessedsubmission->myownsubmission);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test {@link \mod_workshop\privacy\provider::delete_data_for_all_users_in_context()} implementation.
|
||||
*/
|
||||
public function test_delete_data_for_all_users_in_context() {
|
||||
global $DB;
|
||||
|
||||
$this->assertTrue($DB->record_exists('workshop_submissions', ['workshopid' => $this->workshop11->id]));
|
||||
|
||||
// Passing a non-module context does nothing.
|
||||
\mod_workshop\privacy\provider::delete_data_for_all_users_in_context(\context_course::instance($this->course1->id));
|
||||
$this->assertTrue($DB->record_exists('workshop_submissions', ['workshopid' => $this->workshop11->id]));
|
||||
|
||||
// Passing a workshop context removes all data.
|
||||
\mod_workshop\privacy\provider::delete_data_for_all_users_in_context(\context_module::instance($this->workshop11->cmid));
|
||||
$this->assertFalse($DB->record_exists('workshop_submissions', ['workshopid' => $this->workshop11->id]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Test {@link \mod_workshop\privacy\provider::delete_data_for_user()} implementation.
|
||||
*/
|
||||
public function test_delete_data_for_user() {
|
||||
global $DB;
|
||||
|
||||
$student1submissions = $DB->get_records('workshop_submissions', [
|
||||
'workshopid' => $this->workshop12->id,
|
||||
'authorid' => $this->student1->id,
|
||||
]);
|
||||
|
||||
$student2submissions = $DB->get_records('workshop_submissions', [
|
||||
'workshopid' => $this->workshop12->id,
|
||||
'authorid' => $this->student2->id,
|
||||
]);
|
||||
|
||||
$this->assertNotEmpty($student1submissions);
|
||||
$this->assertNotEmpty($student2submissions);
|
||||
|
||||
foreach ($student1submissions as $submission) {
|
||||
$this->assertNotEquals(get_string('privacy:request:delete:title', 'mod_workshop'), $submission->title);
|
||||
}
|
||||
|
||||
foreach ($student2submissions as $submission) {
|
||||
$this->assertNotEquals(get_string('privacy:request:delete:title', 'mod_workshop'), $submission->title);
|
||||
}
|
||||
|
||||
$contextlist = new \core_privacy\local\request\approved_contextlist($this->student1, 'mod_workshop', [
|
||||
\context_module::instance($this->workshop12->cmid)->id,
|
||||
\context_module::instance($this->workshop21->cmid)->id,
|
||||
]);
|
||||
|
||||
\mod_workshop\privacy\provider::delete_data_for_user($contextlist);
|
||||
|
||||
$student1submissions = $DB->get_records('workshop_submissions', [
|
||||
'workshopid' => $this->workshop12->id,
|
||||
'authorid' => $this->student1->id,
|
||||
]);
|
||||
|
||||
$student2submissions = $DB->get_records('workshop_submissions', [
|
||||
'workshopid' => $this->workshop12->id,
|
||||
'authorid' => $this->student2->id,
|
||||
]);
|
||||
|
||||
$this->assertNotEmpty($student1submissions);
|
||||
$this->assertNotEmpty($student2submissions);
|
||||
|
||||
foreach ($student1submissions as $submission) {
|
||||
$this->assertEquals(get_string('privacy:request:delete:title', 'mod_workshop'), $submission->title);
|
||||
}
|
||||
|
||||
foreach ($student2submissions as $submission) {
|
||||
$this->assertNotEquals(get_string('privacy:request:delete:title', 'mod_workshop'), $submission->title);
|
||||
}
|
||||
|
||||
$student1assessments = $DB->get_records('workshop_assessments', [
|
||||
'submissionid' => $this->submission212,
|
||||
'reviewerid' => $this->student1->id,
|
||||
]);
|
||||
$this->assertNotEmpty($student1assessments);
|
||||
|
||||
foreach ($student1assessments as $assessment) {
|
||||
// In Moodle, feedback is seen to belong to the recipient user.
|
||||
$this->assertNotEquals(get_string('privacy:request:delete:content', 'mod_workshop'), $assessment->feedbackauthor);
|
||||
$this->assertEquals(get_string('privacy:request:delete:content', 'mod_workshop'), $assessment->feedbackreviewer);
|
||||
// We delete what we can without affecting others' grades.
|
||||
$this->assertEquals(68, $assessment->grade);
|
||||
}
|
||||
|
||||
$assessments = $DB->get_records_list('workshop_assessments', 'submissionid', array_keys($student1submissions));
|
||||
$this->assertNotEmpty($assessments);
|
||||
|
||||
foreach ($assessments as $assessment) {
|
||||
if ($assessment->reviewerid == $this->student1->id) {
|
||||
$this->assertNotEquals(get_string('privacy:request:delete:content', 'mod_workshop'), $assessment->feedbackauthor);
|
||||
$this->assertNotEquals(get_string('privacy:request:delete:content', 'mod_workshop'), $assessment->feedbackreviewer);
|
||||
|
||||
} else {
|
||||
$this->assertEquals(get_string('privacy:request:delete:content', 'mod_workshop'), $assessment->feedbackauthor);
|
||||
$this->assertNotEquals(get_string('privacy:request:delete:content', 'mod_workshop'), $assessment->feedbackreviewer);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -24,7 +24,7 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$plugin->version = 2018010600; // The current module version (YYYYMMDDXX)
|
||||
$plugin->version = 2018042700; // The current module version (YYYYMMDDXX)
|
||||
$plugin->requires = 2017110800; // Requires this Moodle version.
|
||||
$plugin->component = 'mod_workshop';
|
||||
$plugin->cron = 60; // Give as a chance every minute.
|
||||
|
Loading…
x
Reference in New Issue
Block a user