Skip to content
Snippets Groups Projects
Commit cf961f34 authored by Ron Lucke's avatar Ron Lucke Committed by Jan-Hendrik Willms
Browse files

fix #797

Closes #797

Merge request studip/studip!1814
parent 04ad36e3
No related branches found
No related tags found
No related merge requests found
Showing
with 254 additions and 68 deletions
......@@ -439,7 +439,7 @@ class PrivacyController extends AuthenticatedController
'content' => [
'icon' => Icon::create('forum2'),
'title' => _('Inhalte'),
'description' => _('Dateien, Forum, Wiki, Literaturlisten'),
'description' => _('Courseware, Dateien, Forum, Wiki, Literaturlisten'),
],
'quest' => [
'icon' => Icon::create('vote'),
......
......@@ -43,7 +43,20 @@ class Privacy
'content' => [
'FileRef',
'ForumEntry',
'WikiPage'
'WikiPage',
'Courseware\Unit',
'Courseware\StructuralElement',
'Courserware\StructuralElementComment',
'Courserware\StructuralElementFeedback',
'Courseware\TaskGroup',
'Courseware\TaskFeedback',
'Courseware\Bookmark',
'Courseware\Container',
'Courseware\Block',
'Courserware\BlockComment',
'Courserware\BlockFeedback',
'Courseware\UserDataField',
'Courseware\UserProgress'
],
'quest' => [
'Evaluation',
......
......@@ -36,7 +36,7 @@ use User;
* @property \User $edit_blocker belongs_to User
* @property \Courseware\Container $container belongs_to Courseware\Container
*/
class Block extends \SimpleORMap
class Block extends \SimpleORMap implements \PrivacyObject
{
protected static function configure($config = [])
{
......@@ -222,4 +222,22 @@ class Block extends \SimpleORMap
return StructuralElement::build($structuralElement, false);
}
/**
* Export available data of a given user into a storage object
* (an instance of the StoredUserData class) for that user.
*
* @param StoredUserData $storage object to store data into
*/
public static function exportUserData(\StoredUserData $storage)
{
$blocks = \DBManager::get()->fetchAll(
'SELECT * FROM cw_blocks WHERE owner_id = ? OR editor_id = ?',
[$storage->user_id, $storage->user_id]
);
if ($blocks) {
$storage->addTabularData(_('Courseware Blöcke'), 'cw_blocks', $blocks);
}
}
}
......@@ -23,7 +23,7 @@ use User;
* @property \User $user belongs_to User
* @property \Courseware\Block $block belongs_to Courseware\Block
*/
class BlockComment extends \SimpleORMap
class BlockComment extends \SimpleORMap implements \PrivacyObject
{
protected static function configure($config = [])
{
......@@ -57,4 +57,21 @@ class BlockComment extends \SimpleORMap
return StructuralElement::build($structuralElement, false);
}
/**
* Export available data of a given user into a storage object
* (an instance of the StoredUserData class) for that user.
*
* @param StoredUserData $storage object to store data into
*/
public static function exportUserData(\StoredUserData $storage)
{
$comments = \DBManager::get()->fetchAll(
'SELECT * FROM cw_block_comments WHERE user_id = ?',
[$storage->user_id]
);
if ($comments) {
$storage->addTabularData(_('Courseware Block Kommentare'), 'cw_block_comments', $comments);
}
}
}
......@@ -21,7 +21,7 @@ use User;
* @property \User $user belongs_to User
* @property \Courseware\Block $block belongs_to Courseware\Block
*/
class BlockFeedback extends \SimpleORMap
class BlockFeedback extends \SimpleORMap implements \PrivacyObject
{
protected static function configure($config = [])
{
......@@ -55,4 +55,21 @@ class BlockFeedback extends \SimpleORMap
return StructuralElement::build($structuralElement, false);
}
/**
* Export available data of a given user into a storage object
* (an instance of the StoredUserData class) for that user.
*
* @param StoredUserData $storage object to store data into
*/
public static function exportUserData(\StoredUserData $storage)
{
$feedback = \DBManager::get()->fetchAll(
'SELECT * FROM cw_block_feedbacks WHERE user_id = ?',
[$storage->user_id]
);
if ($feedback) {
$storage->addTabularData(_('Courseware Block Feedback'), 'cw_block_feedback', $feedback);
}
}
}
......@@ -20,7 +20,7 @@ namespace Courseware;
* @property \User $user belongs_to User
* @property \Courseware\StructuralElement $element belongs_to Courseware\StructuralElement
*/
class Bookmark extends \SimpleORMap
class Bookmark extends \SimpleORMap implements \PrivacyObject
{
protected static function configure($config = [])
{
......@@ -62,4 +62,21 @@ class Bookmark extends \SimpleORMap
{
return self::findBySQL('user_id = ? ORDER BY chdate', [$user->id]);
}
/**
* Export available data of a given user into a storage object
* (an instance of the StoredUserData class) for that user.
*
* @param StoredUserData $storage object to store data into
*/
public static function exportUserData(\StoredUserData $storage)
{
$bookmarks = \DBManager::get()->fetchAll(
'SELECT * FROM cw_bookmarks WHERE user_id = ?',
[$storage->user_id]
);
if ($bookmarks) {
$storage->addTabularData(_('Courseware Lesezeichen'), 'cw_bookmarks', $bookmarks);
}
}
}
......@@ -33,7 +33,7 @@ use User;
* @property \User $edit_blocker belongs_to User
* @property \Courseware\StructuralElement $structural_element belongs_to Courseware\StructuralElement
*/
class Container extends \SimpleORMap
class Container extends \SimpleORMap implements \PrivacyObject
{
protected static function configure($config = [])
{
......@@ -142,4 +142,22 @@ class Container extends \SimpleORMap
return [$blockMap, $newBlockList];
}
/**
* Export available data of a given user into a storage object
* (an instance of the StoredUserData class) for that user.
*
* @param StoredUserData $storage object to store data into
*/
public static function exportUserData(\StoredUserData $storage)
{
$containers = \DBManager::get()->fetchAll(
'SELECT * FROM cw_containers WHERE owner_id = ? OR editor_id = ?',
[$storage->user_id, $storage->user_id]
);
if ($containers) {
$storage->addTabularData(_('Courseware Abschnitte'), 'cw_containers', $containers);
}
}
}
......@@ -53,7 +53,7 @@ use User;
* @SuppressWarnings(PHPMD.TooManyPublicMethods)
* @SuppressWarnings(PHPMD.ExcessiveClassComplexity)
*/
class StructuralElement extends \SimpleORMap
class StructuralElement extends \SimpleORMap implements \PrivacyObject
{
protected static function configure($config = [])
{
......@@ -1091,4 +1091,22 @@ SQL;
}
}
}
/**
* Export available data of a given user into a storage object
* (an instance of the StoredUserData class) for that user.
*
* @param StoredUserData $storage object to store data into
*/
public static function exportUserData(\StoredUserData $storage)
{
$structuralElements = \DBManager::get()->fetchAll(
'SELECT * FROM cw_structural_elements WHERE ? IN (owner_id, editor_id, range_id)',
[$storage->user_id]
);
if ($structuralElements) {
$storage->addTabularData(_('Courseware Seiten'), 'cw_structural_elements', $structuralElements);
}
}
}
......@@ -21,7 +21,7 @@ use User;
* @property \User $user belongs_to User
* @property \Courseware\StructuralElement $structural_element belongs_to Courseware\StructuralElement
*/
class StructuralElementComment extends \SimpleORMap
class StructuralElementComment extends \SimpleORMap implements \PrivacyObject
{
protected static function configure($config = [])
{
......@@ -39,4 +39,21 @@ class StructuralElementComment extends \SimpleORMap
parent::configure($config);
}
/**
* Export available data of a given user into a storage object
* (an instance of the StoredUserData class) for that user.
*
* @param StoredUserData $storage object to store data into
*/
public static function exportUserData(\StoredUserData $storage)
{
$comments = \DBManager::get()->fetchAll(
'SELECT * FROM cw_structural_element_comments WHERE user_id = ?',
[$storage->user_id]
);
if ($comments) {
$storage->addTabularData(_('Courseware Seiten Kommentare'), 'cw_structural_element_comments', $comments);
}
}
}
......@@ -21,7 +21,7 @@ use User;
* @property \User $user belongs_to User
* @property \Courseware\StructuralElement $structural_element belongs_to Courseware\StructuralElement
*/
class StructuralElementFeedback extends \SimpleORMap
class StructuralElementFeedback extends \SimpleORMap implements \PrivacyObject
{
protected static function configure($config = [])
{
......@@ -39,4 +39,21 @@ class StructuralElementFeedback extends \SimpleORMap
parent::configure($config);
}
/**
* Export available data of a given user into a storage object
* (an instance of the StoredUserData class) for that user.
*
* @param StoredUserData $storage object to store data into
*/
public static function exportUserData(\StoredUserData $storage)
{
$feedback = \DBManager::get()->fetchAll(
'SELECT * FROM cw_structural_element_feedbacks WHERE user_id = ?',
[$storage->user_id]
);
if ($feedback) {
$storage->addTabularData(_('Courseware Seiten Feedback'), 'cw_structural_element_feedbacks', $feedback);
}
}
}
......@@ -22,7 +22,7 @@ use User;
* @property \User $lecturer belongs_to User
* @property \Courseware\Task $task belongs_to Courseware\Task
*/
class TaskFeedback extends \SimpleORMap
class TaskFeedback extends \SimpleORMap implements \PrivacyObject
{
protected static function configure($config = [])
{
......@@ -55,4 +55,21 @@ class TaskFeedback extends \SimpleORMap
return StructuralElement::build($structuralElement, false);
}
/**
* Export available data of a given user into a storage object
* (an instance of the StoredUserData class) for that user.
*
* @param StoredUserData $storage object to store data into
*/
public static function exportUserData(\StoredUserData $storage)
{
$feedback = \DBManager::get()->fetchAll(
'SELECT * FROM cw_task_feedbacks WHERE lecturer_id = ?',
[$storage->user_id]
);
if ($feedback) {
$storage->addTabularData(_('Courseware Aufgaben Feedback'), 'cw_task_feedbacks', $feedback);
}
}
}
......@@ -25,7 +25,7 @@ use User;
* @property \Courseware\StructuralElement $structural_element belongs_to Courseware\StructuralElement
* @property \SimpleORMapCollection $tasks has_many Courseware\Task
*/
class TaskGroup extends \SimpleORMap
class TaskGroup extends \SimpleORMap implements \PrivacyObject
{
protected static function configure($config = [])
{
......@@ -58,4 +58,22 @@ class TaskGroup extends \SimpleORMap
return $solvers;
}
/**
* Export available data of a given user into a storage object
* (an instance of the StoredUserData class) for that user.
*
* @param StoredUserData $storage object to store data into
*/
public static function exportUserData(\StoredUserData $storage)
{
$task_groups = \DBManager::get()->fetchAll(
'SELECT * FROM cw_task_groups WHERE lecturer_id = ?',
[$storage->user_id]
);
if ($task_groups) {
$storage->addTabularData(_('Courseware Aufgaben'), 'cw_task_groups', $task_groups);
}
}
}
......@@ -31,7 +31,7 @@ use User;
* @SuppressWarnings(PHPMD.ExcessiveClassComplexity)
*/
class Unit extends \SimpleORMap
class Unit extends \SimpleORMap implements \PrivacyObject
{
protected static function configure($config = [])
{
......@@ -110,4 +110,21 @@ class Unit extends \SimpleORMap
return $newUnit;
}
/**
* Export available data of a given user into a storage object
* (an instance of the StoredUserData class) for that user.
*
* @param StoredUserData $storage object to store data into
*/
public static function exportUserData(\StoredUserData $storage)
{
$units = \DBManager::get()->fetchAll(
'SELECT * FROM cw_units WHERE creator_id = ?',
[$storage->user_id]
);
if ($units) {
$storage->addTabularData(_('Courseware Lernmaterialien'), 'cw_units', $units);
}
}
}
......@@ -21,7 +21,7 @@ namespace Courseware;
* @property \Courseware\Block $block belongs_to Courseware\Block
* @property \User $user belongs_to User
*/
class UserDataField extends \SimpleORMap
class UserDataField extends \SimpleORMap implements \PrivacyObject
{
protected static function configure($config = [])
{
......@@ -67,4 +67,21 @@ class UserDataField extends \SimpleORMap
return $userDataField;
}
/**
* Export available data of a given user into a storage object
* (an instance of the StoredUserData class) for that user.
*
* @param StoredUserData $storage object to store data into
*/
public static function exportUserData(\StoredUserData $storage)
{
$userData = \DBManager::get()->fetchAll(
'SELECT * FROM cw_user_data_fields WHERE user_id = ?',
[$storage->user_id]
);
if ($userData) {
$storage->addTabularData(_('Courseware Nutzerdaten'), 'cw_user_data_fields', $userData);
}
}
}
......@@ -21,7 +21,7 @@ namespace Courseware;
* @property \Courseware\Block $block belongs_to Courseware\Block
* @property \User $user belongs_to User
*/
class UserProgress extends \SimpleORMap
class UserProgress extends \SimpleORMap implements \PrivacyObject
{
protected static function configure($config = [])
{
......@@ -63,4 +63,21 @@ class UserProgress extends \SimpleORMap
return $progress;
}
/**
* Export available data of a given user into a storage object
* (an instance of the StoredUserData class) for that user.
*
* @param StoredUserData $storage object to store data into
*/
public static function exportUserData(\StoredUserData $storage)
{
$userProgresses = \DBManager::get()->fetchAll(
'SELECT * FROM cw_user_progresses WHERE user_id = ?',
[$storage->user_id]
);
if ($userProgresses) {
$storage->addTabularData(_('Courseware Fortschritt'), 'cw_user_progresses', $userProgresses);
}
}
}
......@@ -3,7 +3,7 @@
use Courseware\Instance;
use Courseware\StructuralElement;
class CoursewareModule extends CorePlugin implements SystemPlugin, StudipModule, PrivacyPlugin
class CoursewareModule extends CorePlugin implements SystemPlugin, StudipModule
{
/**
* {@inheritdoc}
......@@ -146,58 +146,6 @@ class CoursewareModule extends CorePlugin implements SystemPlugin, StudipModule,
];
}
/**
* {@inheritdoc}
*/
public function exportUserData(StoredUserData $storage)
{
$db = DBManager::get();
$structuralElements = $db->fetchAll(
'SELECT * FROM cw_structural_elements WHERE owner_id = ? OR editor_id = ? OR range_id = ?',
[$storage->user_id, $storage->user_id, $storage->user_id]
);
$storage->addTabularData(_('Courseware-Strukturelemente-Ergebnisse'), 'cw_structural_elements', $structuralElements);
$containers = $db->fetchAll(
'SELECT * FROM cw_containers WHERE owner_id = ? OR editor_id = ?',
[$storage->user_id, $storage->user_id]
);
$storage->addTabularData(_('Courseware-Container-Ergebnisse'), 'cw_containers', $containers);
$blocks = $db->fetchAll(
'SELECT * FROM cw_blocks WHERE owner_id = ? OR editor_id = ?',
[$storage->user_id, $storage->user_id]
);
$storage->addTabularData(_('Courseware-Blöcke-Ergebnisse'), 'cw_blocks', $blocks);
$comments = $db->fetchAll(
'SELECT * FROM cw_block_comments WHERE user_id = ?',
[$storage->user_id]
);
$storage->addTabularData(_('Courseware-Kommentare-Ergebnisse'), 'cw_block_comments', $comments);
$userData = $db->fetchAll(
'SELECT * FROM cw_user_data_fields WHERE user_id = ?',
[$storage->user_id]
);
$storage->addTabularData(_('Courseware-Nutzer-Daten-Ergebnisse'), 'cw_user_data_fields', $userData);
$userProgresses = $db->fetchAll(
'SELECT * FROM cw_user_progresses WHERE user_id = ?',
[$storage->user_id]
);
$storage->addTabularData(_('Courseware-Nutzer-Fortschritt-Ergebnisse'), 'cw_user_progresses', $userProgresses);
$bookmarks = $db->fetchAll(
'SELECT * FROM cw_bookmarks WHERE user_id = ?',
[$storage->user_id]
);
$storage->addTabularData(_('Courseware-Lesezeichen-Ergebnisse'), 'cw_bookmarks', $bookmarks);
}
public function isActivatableForContext(Range $context)
{
return $context->getRangeType() === 'course';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment