-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsource_delete.php
More file actions
256 lines (220 loc) · 12.3 KB
/
Copy pathsource_delete.php
File metadata and controls
256 lines (220 loc) · 12.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<?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/>.
require __DIR__ . '/inc.php';
require_once __DIR__ . "/classes/data.php";
$courseid = required_param('courseid', PARAM_INT);
global $DB, $OUTPUT, $PAGE, $CFG;
if (!$course = $DB->get_record('course', array('id' => $courseid))) {
print_error('invalidcourse', 'block_simplehtml', $courseid);
}
block_exacomp_require_login($course);
$course_context = context_course::instance($courseid);
require_capability('block/exacomp:admin', context_system::instance());
$action = required_param('action', PARAM_ALPHANUMEXT);
$source = required_param('source', PARAM_INT);
$output = block_exacomp_get_renderer();
/* PAGE IDENTIFIER - MUST BE CHANGED. Please use string identifier from lang file */
$page_identifier = 'tab_admin_settings';
/* PAGE URL - MUST BE CHANGED */
$PAGE->set_url('/blocks/exacomp/source_delete.php', array('courseid' => $courseid, 'source' => $source, 'action' => 'select'));
$PAGE->set_heading(block_exacomp_get_string('blocktitle'));
$PAGE->set_title(block_exacomp_get_string($page_identifier));
function block_exacomp_source_delete_get_subjects($source, $subjects_preselection = -1) {
$subjects = block_exacomp\db_layer_whole_moodle::get()->get_subjects_for_source($source, $subjects_preselection);
return $subjects;
}
// Showing all the subjects of a source can become a huge task on large systems ==> Show only the subject, but not the topics etc in the first step
function block_exacomp_source_delete_get_subjects_for_preselection($source) {
$subjects = block_exacomp\db_layer_whole_moodle::get()->get_subjects_preselection_for_source($source);
return $subjects;
}
function block_exacomp_source_delete_get_edulevel_and_schooltype_for_subjects($subjects, $source, $output) {
// get the edulevel and schooltype of the subjects
// each subject has a stid for the schooltype, and each schooltype has an elid for the edulevel
// first, index the subjects by their stid. This way we can assign them to the schooltypes later in a performant way
$indexedSubjects = array();
foreach ($subjects as $subject) {
if (!isset($indexedSubjects[$subject->stid])) {
$indexedSubjects[$subject->stid] = array();
}
$indexedSubjects[$subject->stid][$subject->id] = $subject;
}
// get all $edulevels from this source
$edulevels = block_exacomp_get_edulevels($source);
// iterate over the edulevels and get the schooltypes
foreach ($edulevels as $edulevel) {
$schooltypes = block_exacomp_get_schooltypes($edulevel->id); // there is no way a schooltype can be from a different source thant he edulevel, right?
// Iterate over the schooltypes and add the subjects
foreach ($schooltypes as $schooltype) {
// Check if there are subjects for this schooltype
if (isset($indexedSubjects[$schooltype->id])) {
$schooltype->subjects = $indexedSubjects[$schooltype->id];
} else {
// if there are no subjects, then remove the schooltype from the edulevel
unset($schooltypes[$schooltype->id]);
}
}
// Add the schooltypes to the edulevel
$edulevel->schooltypes = $schooltypes;
// check if there are no schooltypes for this edulevel
if (empty($schooltypes)) {
// if there are no schooltypes, remove the edulevel
unset($edulevels[$edulevel->id]);
}
}
// check if the number of $subjects is the same as the number of subjects when iterating over the edulevels
$numberOfSubjects = 0;
foreach ($edulevels as $edulevel) {
foreach ($edulevel->schooltypes as $schooltype) {
$numberOfSubjects += count($schooltype->subjects);
}
}
// if it is different, echo a warning since something went wrong.
if (count($subjects) != $numberOfSubjects) {
echo $output->notification("Debuginfo: Error: Some Subjects went missing during the Edulevel and Schooltype display: Different number of subjects: " . count($subjects) . " != " . $numberOfSubjects);
echo "Debuginfo: Error: Some Subjects went missing during the Edulevel and Schooltype display: Different number of subjects: " . count($subjects) . " != " . $numberOfSubjects;
}
return $edulevels;
}
if ($action == 'delete_selected') {
require_sesskey();
$json_data = block_exacomp\param::required_json('json_data', (object)array(
'subjects' => [PARAM_INT],
'topics' => [PARAM_INT],
'descriptors' => [PARAM_INT],
'examples' => [PARAM_INT],
));
$post_examples = array_combine($json_data->examples, $json_data->examples);
$post_descriptors = array_combine($json_data->descriptors, $json_data->descriptors);
$post_topics = array_combine($json_data->topics, $json_data->topics);
$post_subjects = array_combine($json_data->subjects, $json_data->subjects);
// 2022.01.20 RW this is not needed anymore. The warnings are displayed before anyways, but deletion is still allowed and will never be stopped here.
// 2025.04.30 RW: looked at it again: Earlier, the can_delete check was done. But it was then commented out.
// the check was then only !empty($post_subjects[$subject->id]) and !empty($post_topics[$topic->id]) etc. Instead, use the posted data directly.
// ==> therefore the whole block was not needed anymore and for performance reasons it was removed
// rechte hier nochmal pruefen!
// $delete_examples = array();
// $delete_descriptors = array();
// $delete_topics = array();
// $delete_subjects = array();
// foreach ($subjects as $subject) {
// if (!empty($post_subjects[$subject->id]) /*&& $subject->can_delete*/) {
// $delete_subjects[$subject->id] = $subject->id;
// }
//
// foreach ($subject->topics as $topic) {
// if (!empty($post_topics[$topic->id]) /*&& $topic->can_delete*/) {
// $delete_topics[$topic->id] = $topic->id;
// }
//
// foreach($topic->descriptors as $descriptor){
// if (!empty($post_descriptors[$descriptor->id]) /*&& $descriptor->can_delete*/) {
// $delete_descriptors[$descriptor->id] = $descriptor->id;
// }
//
// foreach($descriptor->children as $child_descriptor){
// if (!empty($post_descriptors[$child_descriptor->id]) /*&& $child_descriptor->can_delete*/) {
// $delete_descriptors[$child_descriptor->id] = $child_descriptor->id;
// }
//
// foreach ($child_descriptor->examples as $example){
// if (!empty($post_examples[$example->id]) /*&& $example->can_delete*/) {
// $delete_examples[$example->id] = $example->id;
// }
// }
// }
//
// foreach ($descriptor->examples as $example){
// if (!empty($post_examples[$example->id]) /*&& $example->can_delete*/) {
// $delete_examples[$example->id] = $example->id;
// }
// }
// }
// }
// }
if ($post_examples) {
// TODO auch filestorage loeschen
$DB->delete_records_list(BLOCK_EXACOMP_DB_EXAMPLES, 'id', $post_examples);
// BLOCK_EXACOMP_DB_EXAMPTAX, BLOCK_EXACOMP_DB_ITEM_MM, BLOCK_EXACOMP_DB_EXAMPLEEVAL etc will/should be handles when normalizing the database
// Loop probably a loop will be needed for clearing the filestorage
// $fs = get_file_storage();
// $fs->delete_area_files(\context_system::instance()->id, 'block_exacomp', 'example_task', $exampleid);
// $fs->delete_area_files(\context_system::instance()->id, 'block_exacomp', 'example_solution', $exampleid);
// $fs->delete_area_files(\context_system::instance()->id, 'block_exacomp', 'example_completefile', $exampleid);
}
if ($post_descriptors) {
$DB->delete_records_list(BLOCK_EXACOMP_DB_DESCRIPTORS, 'id', $post_descriptors);
}
if ($post_topics) {
$DB->delete_records_list(BLOCK_EXACOMP_DB_TOPICS, 'id', $post_topics);
}
if ($post_subjects) {
$DB->delete_records_list(BLOCK_EXACOMP_DB_SUBJECTS, 'id', $post_subjects);
}
//block_exacomp\data::normalize_database(); // not needed here, since it is done in cronjobs
// $time_elapsed_secs = microtime(true) - $start;
redirect($CFG->wwwroot . '/blocks/exacomp/import.php?courseid=' . $courseid);
exit;
} else if ($action == 'select') {
// deprecated... this shows ALL subjects at once... Would be useful for small sources. For sources with a huge amount of subjects, preselection is needed.
/*
$subjects = block_exacomp_source_delete_get_subjects($source);
// build breadcrumbs navigation
$coursenode = $PAGE->navigation->find($courseid, navigation_node::TYPE_COURSE);
$blocknode = $coursenode->add(block_exacomp_get_string('blocktitle'));
$pagenode = $blocknode->add(block_exacomp_get_string($page_identifier), $PAGE->url);
$pagenode->make_active();
echo $output->header($course_context, $courseid, 'tab_admin_settings');
echo $OUTPUT->tabtree(block_exacomp_build_navigation_tabs_admin_settings($courseid), $page_identifier);
echo $output->descriptor_selection_source_delete($source, $subjects);
echo $output->footer();
*/
print_error("Deprecated action '$action'");
} else if ($action == 'preselect_subjects') {
// The user can select from which subject they want to delete. This can be only one subject, or several, or all.
// If the user chooses all in a huge setting, this could lead to performance issues.
$subjects = block_exacomp_source_delete_get_subjects_for_preselection($source);
// build breadcrumbs navigation
$coursenode = $PAGE->navigation->find($courseid, navigation_node::TYPE_COURSE);
$blocknode = $coursenode->add(block_exacomp_get_string('blocktitle'));
$pagenode = $blocknode->add(block_exacomp_get_string($page_identifier), $PAGE->url);
$pagenode->make_active();
echo $output->header($course_context, $courseid, 'tab_admin_settings');
echo $OUTPUT->tabtree(block_exacomp_build_navigation_tabs_admin_settings($courseid), $page_identifier);
$edulevels = block_exacomp_source_delete_get_edulevel_and_schooltype_for_subjects($subjects, $source, $output);
echo $output->subject_preselection_source_delete($source, $edulevels, $courseid);
echo $output->footer();
} else if ($action == 'select_from_preselection') {
// The user has selected 1 or several subjects from a source. Now the user can choose the details of what exactly they want to delete.
$json_data = block_exacomp\param::required_json('json_data', (object)array(
'subjects' => [PARAM_INT],
));
$preselected_subjects = array_combine($json_data->subjects, $json_data->subjects);
// Now we have the preselected subjects that the user wants to see in detail. The following code is very similar to the old 'select' code, where all subjects of a source have been shown in detail.
$subjects = block_exacomp_source_delete_get_subjects($source, $preselected_subjects);
// build breadcrumbs navigation
$coursenode = $PAGE->navigation->find($courseid, navigation_node::TYPE_COURSE);
$blocknode = $coursenode->add(block_exacomp_get_string('blocktitle'));
$pagenode = $blocknode->add(block_exacomp_get_string($page_identifier), $PAGE->url);
$pagenode->make_active();
echo $output->header($course_context, $courseid, 'tab_admin_settings');
echo $OUTPUT->tabtree(block_exacomp_build_navigation_tabs_admin_settings($courseid), $page_identifier);
$edulevels = block_exacomp_source_delete_get_edulevel_and_schooltype_for_subjects($subjects, $source, $output);
echo $output->descriptor_selection_source_delete($source, $edulevels);
echo $output->footer();
} else {
print_error("wrong action '$action'");
}