Newer
Older
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
<?php
/**
* StatusgroupController
*
* This program 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 2 of
* the License, or (at your option) any later version.
*
* @author Thomas Hackl <thomas.hackl@uni-passau.de>
* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
* @category Stud.IP
* @since 3.5
*/
require_once 'lib/messaging.inc.php'; //Funktionen des Nachrichtensystems
require_once 'lib/export/export_studipdata_func.inc.php'; // Funktionen für den Export
require_once 'lib/export/export_linking_func.inc.php';
class Course_StatusgroupsController extends AuthenticatedController
{
public function before_filter(&$action, &$args)
{
parent::before_filter($action, $args);
global $perm;
checkObject();
checkObjectModule("participants");
$course = Course::findCurrent();
$this->course_id = $course->id;
$this->course_title = $course->getFullname();
$this->config = CourseConfig::get($this->course_id);
// Check perms
$this->is_dozent = $perm->have_studip_perm('dozent', $this->course_id);
$this->is_tutor = $perm->have_studip_perm('tutor', $this->course_id);
$this->is_autor = $perm->have_studip_perm('autor', $this->course_id);
// Hide groups page?
if (!$this->is_tutor && $this->config->COURSE_MEMBERS_HIDE) {
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
throw new AccessDeniedException();
}
// Check lock rules
$this->is_locked = LockRules::Check($this->course_id, 'groups');
$this->is_participants_locked = LockRules::Check($this->course_id, 'participants');
PageLayout::setTitle(sprintf('%s - %s', Course::findCurrent()->getFullname(), _('Gruppen')));
PageLayout::addStyleSheet('studip-statusgroups.css');
PageLayout::addScript('studip-statusgroups.js');
}
/**
* Lists all available statusgroups.
*/
public function index_action()
{
Navigation::activateItem('/course/members/statusgroups');
if ($this->is_locked && $this->is_tutor) {
$lockdata = LockRules::getObjectRule($this->course_id);
if ($lockdata['description']) {
PageLayout::postInfo(formatLinks($lockdata['description']));
}
}
// Sorting as given by Request parameters
$this->sort_by = Request::option('sortby', 'nachname');
$this->order = Request::option('order', 'desc');
$this->sort_group = Request::get('sort_group', '');
$this->open_groups = Request::get('open_groups');
// Get all course members (needed for mkdate).
$this->allmembers = SimpleCollection::createFromArray(
CourseMember::findByCourse($this->course_id));
// Find all statusgroups for this course.
$groups = Statusgruppen::findBySeminar_id($this->course_id);
/*
* Check if the current user may join any group at all. This is needed
* for deciding if a Sidebar action for joining a group will be
* displayed.
*/
$joinable = false;
// Fetch membercounts (all at once for performance)
$membercounts = array_column(DBManager::get()->fetchAll(
"SELECT u.`statusgruppe_id`, COUNT(u.`user_id`) as membercount
FROM `statusgruppen` s
JOIN `statusgruppe_user` u USING (`statusgruppe_id`)
WHERE s.`range_id` = ?
GROUP BY `statusgruppe_id`
ORDER BY s.`position` ASC, s.`name` ASC",
[$this->course_id]),
'membercount',
'statusgruppe_id'
);
// Now build actual groups.
$this->groups = [];
foreach ($groups as $g) {
$groupdata = [
'group' => $g,
'members' => [],
'membercount' => $membercounts[$g->id] ?: 0,
'invisible_users' => 0
];
/*
* We only need to load members for a group that shall be sorted
* explicitly, as this group will be loaded at once and not via AJAX.
*/
if ($g->id == $this->sort_group || $this->open_groups) {
if ($this->sort_group == $g->id) {
$sorted = $this->sortMembers($g->members, $this->sort_by, $this->order);
} else {
$sorted = $sorted = $this->sortMembers($g->members);
}
foreach ($sorted as $member) {
//Note: $member is a StatusgruppeUser object.
//We must get the CourseMember object to correctly
//determine the visibility of the user.
$course_member = CourseMember::findOneBySql(
'user_id = :user_id AND seminar_id = :course_id',
['user_id' => $member->user_id, 'course_id' => $member->group->range_id]
);
if ($this->is_tutor || ($member->user_id == $GLOBALS['user']->id) ||
($course_member->visible != 'no')) {
$groupdata['members'][] = $member;
} else {
$groupdata['invisible_users']++;
}
}
$groupdata['load'] = true;
}
if (!$this->is_tutor && $g->userMayJoin($GLOBALS['user']->id)) {
$groupdata['joinable'] = true;
$joinable = true;
}
$this->groups[] = $groupdata;
}
/*
* Get number of users that are in no group, this is needed
* for displaying in group header.
*/
$ungrouped_count = DBManager::get()->fetchFirst(
"SELECT COUNT(s.`user_id`) FROM `seminar_user` s WHERE s.`Seminar_id` = :course AND NOT EXISTS (
SELECT u.`user_id` FROM `statusgruppe_user` u
WHERE u.`statusgruppe_id` IN (:groups) AND u.`user_id` = s.`user_id`)",
[
'course' => $this->course_id,
'groups' => DBManager::get()->fetchFirst(
"SELECT `statusgruppe_id` FROM `statusgruppen` WHERE `range_id` = ?",
[$this->course_id])
]);
$ungrouped_count = $ungrouped_count[0];
if ($ungrouped_count > 0) {
// Create dummy entry for "no group" users.
$no_group = new StdClass();
$no_group->id = 'nogroup';
$no_group->name = _('keiner Gruppe zugeordnet');
$no_group->size = 0;
$no_group->selfassign = 0;
$groupdata = [
'group' => $no_group,
'membercount' => $ungrouped_count,
'joinable' => false,
'invisible_users' => 0,
'members' => []
];
$nogroupmembers = DBManager::get()->fetchFirst("SELECT user_id
FROM seminar_user
WHERE `Seminar_id` = :course AND NOT EXISTS (
SELECT `user_id` FROM `statusgruppe_user`
WHERE `statusgruppe_id` IN (:groups) AND `user_id` = seminar_user.`user_id`)",
[
'course' => $this->course_id,
'groups' => array_map(function ($g) { return $g->id; }, $groups)
]);
$this->nogroupmembers = $nogroupmembers;
if ($this->sort_group == 'nogroup') {
$members = $this->allmembers->findby('user_id', $nogroupmembers);
$members = $this->sortMembers($members, $this->sort_by, $this->order);
$groupdata['load'] = true;
} else {
$members = $this->allmembers->findby(
'user_id',
$this->nogroupmembers
);
}
if(!empty($members)) {
foreach ($members as $member) {
//Note: $member is a CourseMember object here.
if ($this->is_tutor || ($member->user_id == $GLOBALS['user']->id) ||
($member->visible != 'no')) {
$groupdata['members'][] = $member;
} else {
$groupdata['invisible_users']++;
}
}
}
$this->groups[] = $groupdata;
}
// Prepare search object for MultiPersonSearch.
$this->memberSearch = new PermissionSearch(
'user',
_('Personen suchen'),
'user_id',
[
'permission' => ['user', 'autor', 'tutor', 'dozent'],
'exclude_user' => []
]
);
/*
* Setup sidebar.
*/
$sidebar = Sidebar::get();
$actions = new ActionsWidget();
if ($this->is_tutor) {
if (!$this->is_locked) {
$actions->addLink(
_('Neue Gruppe anlegen'),
$this->url_for('course/statusgroups/edit'),
Icon::create('add')
)->asDialog('size=auto');
$actions->addLink(
_('Mehrere Gruppen anlegen'),
$this->url_for('course/statusgroups/create_groups'),
Icon::create('group2+add')
)->asDialog('size=auto');
}
if (Config::get()->EXPORT_ENABLE) {
$export = new ExportWidget();
// create csv-export link
$csvExport = export_link($this->course_id, 'person',
sprintf('%s %s', _('Gruppenliste'), htmlReady($this->course_title)),
'csv', 'csv-gruppen', 'status',
_('Gruppen als CSV-Dokument exportieren'),
'passthrough');
$element = LinkElement::fromHTML($csvExport, Icon::create('file-office'));
$export->addElement($element);
// create rtf-export link
$rtfExport = export_link($this->course_id, 'person',
sprintf('%s %s', _('Gruppenliste'), htmlReady($this->course_title)),
'rtf', 'rtf-gruppen', 'status',
_('Gruppen als RTF-Dokument exportieren'),
'passthrough');
$element = LinkElement::fromHTML($rtfExport, Icon::create('file-text'));
$export->addElement($element);
$sidebar->addWidget($export);
}
// Current user may join at least one group => show sidebar action.
} else if ($joinable) {
$actions->addLink(
_('In eine Gruppe eintragen'),
$this->url_for('course/statusgroups/joinables'),
Icon::create('door-enter')
)->asDialog('size=auto');
}
if ($this->open_groups) {
$actions->addLink(
_('Alle Gruppen zuklappen'),
$this->url_for('course/statusgroups'),
Icon::create('arr_2up')
);
} else {
$actions->addLink(
_('Alle Gruppen aufklappen'),
$this->url_for('course/statusgroups', ['open_groups' => '1']),
Icon::create('arr_2down')
);
}
$sidebar->addWidget($actions);
}
/**
* Fetches the members of the given group.
*
* @param String $group_id the statusgroup to get members for.
*/
public function getgroup_action($group_id)
{
if ($group_id != 'nogroup') {
$this->group = Statusgruppen::find($group_id);
$this->members = [];
$this->invisible = 0;
if (count($this->group->members) > 0) {
//Note: $members consists of StatusgruppeUser objects here.
$members = $this->sortMembers($this->group->members);
foreach ($members as $member) {
//Get the course member object to check the visibility
//in the course.
$course_member = CourseMember::findOneBySql(
'user_id = :user_id AND seminar_id = :course_id',
['user_id' => $member->user_id, 'course_id' => $member->group->range_id]
);
if ($this->is_tutor || ($member->user_id == $GLOBALS['user']->id)
|| ($course_member->visible != 'no')) {
$this->members[] = $member;
} else {
$this->invisible++;
}
}
}
} else {
// Create dummy entry for "no group" users.
$no_group = new StdClass();
$no_group->id = 'nogroup';
$no_group->name = _('keiner Gruppe zugeordnet');
$no_group->size = 0;
$no_group->selfassign = 0;
$members = DBManager::get()->fetchAll("SELECT seminar_user.*,
aum.vorname,aum.nachname,aum.email,
aum.username,ui.title_front,ui.title_rear
FROM seminar_user
LEFT JOIN auth_user_md5 aum USING (user_id)
LEFT JOIN user_info ui USING (user_id)
WHERE `Seminar_id` = :course AND NOT EXISTS (
SELECT `user_id` FROM `statusgruppe_user`
WHERE `statusgruppe_id` IN (:groups) AND `user_id` = seminar_user.`user_id`)",
[
'course' => $this->course_id,
'groups' => DBManager::get()->fetchFirst(
"SELECT `statusgruppe_id` FROM `statusgruppen` WHERE `range_id` = ?",
[$this->course_id])
], 'CourseMember::buildExisting');
$members = new SimpleCollection($members);
//Note: $members consists of CourseMember objects here.
$members = $this->sortMembers($members);
$this->invisible = 0;
$this->members = [];
foreach ($members as $member) {
if ($this->is_tutor || ($member->user_id == $GLOBALS['user']->id)
|| ($member->visible != 'no')) {
$this->members[] = $member;
} else {
$this->invisible++;
}
}
$this->group = $no_group;
}
}
/**
* Provides extended info about a status group, like maximum number of
* participants, selfassign, exclusive entry, selfassign start and end
* times.
*
* @param String $group_id The group to show info for.
*/
public function groupinfo_action($group_id)
{
$this->group = Statusgruppen::find($group_id);
// Topics can be implicitly assigned via course dates.
$this->topics = $this->group->findTopics();
// Lecturers can be implicitly assigned via course dates.
$this->lecturers = $this->group->findLecturers();
}
/**
* Shows a list of all groups that can be joined by current user
* and allows the user to select one.
*/
public function joinables_action()
{
$this->joinables = SimpleCollection::createFromArray(
Statusgruppen::findJoinableGroups($this->course_id, $GLOBALS['user']->id))
->orderBy('position asc, name asc');
}
/**
* Adds selected persons to given group. user_ids to add come from a
* MultiPersonSearch object which was triggered in group actions.
*
* @param String $group_id
*/
public function add_member_action($group_id)
{
$g = Statusgruppen::find($group_id);
// Get selected persons.
$mp = MultiPersonSearch::load('add_statusgroup_member' . $group_id);
$success = 0;
$fail = 0;
foreach ($mp->getAddedUsers() as $a) {
if (!CourseMember::exists([$this->course_id, $a])) {
$m = new CourseMember();
$m->seminar_id = $this->course_id;
$m->user_id = $a;
$m->status = User::find($a)->perms == 'user' ? 'user' : 'autor';
$m->store();
}
$s = new StatusgruppeUser();
$s->statusgruppe_id = $group_id;
$s->user_id = $a;
if ($s->store() !== false) {
$success++;
} else {
$fail++;
}
}
if ($success > 0 && $fail == 0) {
PageLayout::postSuccess(sprintf(ngettext(
'%u Person wurde zu %s hinzugefügt.',
'%u Personen wurden zu %s hinzugefügt.',
$success), $success, htmlReady($g->name)
));
} else if ($success > 0 && $fail > 0) {
$successMsg = sprintf(ngettext(
'%u Person wurde zu %s hinzugefügt.',
'%u Personen wurden zu %s hinzugefügt.',
$success), $success, htmlReady($g->name)
);
$failMsg = sprintf(ngettext(
'%u Person konnte nicht zu %s hinzugefügt werden.',
'%u Personen konnten nicht zu %s hinzugefügt werden.',
$fail), $fail, htmlReady($g->name)
);
PageLayout::postWarning($successMsg . ' ' . $failMsg);
} else if ($success == 0 && $fail > 0) {
PageLayout::postError(sprintf(ngettext(
'%u Person konnte nicht zu %s hinzugefügt werden.',
'%u Personen konnten nicht zu %s hinzugefügt werden.',
$success), $success, htmlReady($g->name)
));
}
$this->relocate('course/statusgroups');
}
/**
* Allows editing of a given statusgroup or creating a new one.
* @param String $group_id ID of the group to edit
* @throws AccessDeniedException if access not allowed with current permission level.
*/
public function edit_action($group_id = '')
{
if (!$this->is_tutor) {
throw new AccessDeniedException();
}
// Fetch group with given ID or create a new one.
$this->group = new Statusgruppen($group_id);
// Check if course has regular times.
$this->cycles = SeminarCycleDate::findBySeminar_id($this->course_id);
// Check if course has single dates, not belonging to a regular cycle.
$dates = CourseDate::findBySeminar_id($this->course_id);
$this->singledates = array_filter($dates, function ($d) {
return !((bool) $d->metadate_id);
});
}
/**
* Saves changes to given statusgroup or creates a new entry.
*
* @param String $group_id ID of the group to edit
* @throws AccessDeniedException if access not allowed with current permission level.
*/
public function save_action($group_id = '')
{
if (!$this->is_tutor) {
throw new AccessDeniedException();
}
CSRFProtection::verifyUnsafeRequest();
/*
* Check if a valid end time was given.
*/
if (Request::int('selfassign', 0)) {
$endtime = strtotime(Request::get('selfassign_end', 'now'));
$starttime = strtotime(Request::get('selfassign_start', 'now'));
if ($endtime <= $starttime) {
$endtime = 0;
}
}
$position = Statusgruppen::find($group_id)->position;
$group = Statusgruppen::createOrUpdate(
$group_id,
Request::get('name'),
$position,
$this->course_id, Request::int('size', 0),
Request::int('selfassign', 0) + Request::int('exclusive', 0),
strtotime(Request::get('selfassign_start', 'now')),
Request::get('selfassign_end') ? strtotime(Request::get('selfassign_end')) : 0,
Request::int('makefolder', 0),
Request::getArray('dates')
);
$group->description = trim(Request::get('description')) ?: null;
$group->store();
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
if (!$group_id) {
PageLayout::postSuccess(sprintf(
_('Die Gruppe "%s" wurde angelegt.'),
htmlReady($group->name)
));
} else {
PageLayout::postSuccess(sprintf(
_('Die Daten der Gruppe "%s" wurden gespeichert.'),
htmlReady($group->name)
));
}
$thread = BlubberStatusgruppeThread::findByStatusgruppe_id($group->id);
if (Request::get("blubber") && !$thread) {
$thread = new BlubberStatusgruppeThread();
$thread['context_type'] = "course";
$thread['context_id'] = $this->course_id;
$thread['user_id'] = $GLOBALS['user']->id;
$thread['external_contact'] = 0;
$thread['visible_in_stream'] = 1;
$thread['display_class'] = "BlubberStatusgruppeThread";
$thread['commentable'] = 1;
$thread['metadata'] = ['statusgruppe_id' => $group->id];
$thread->store();
} elseif(!Request::get("blubber") && $thread) {
$thread->delete();
}
$this->relocate('course/statusgroups');
}
/**
* Deletes the given statusgroup.
*
* @param String $group_id ID of the group to delete
* @throws AccessDeniedException if access not allowed with current permission level.
*/
public function delete_action($group_id)
{
if (!$this->is_tutor) {
throw new AccessDeniedException();
}
$group = Statusgruppen::find($group_id);
$groupname = $group->name;
$group->delete();
PageLayout::postSuccess(sprintf(
_('Die Gruppe "%s" wurde gelöscht.'),
htmlReady($groupname)
));
$this->relocate('course/statusgroups');
}
/**
* Removes the given user from the given statusgroup.
*
* @param String $user_id user to remove
* @param String $group_id affected group
*/
public function delete_member_action($user_id, $group_id)
{
$g = Statusgruppen::find($group_id);
if (!$this->is_tutor && ($user_id !== $GLOBALS['user']->id || !$g->userMayLeave($user_id))) {
throw new AccessDeniedException();
}
$s = StatusgruppeUser::find([$group_id, $user_id]);
$name = $s->user->getFullname();
if ($s->delete()) {
if ($user_id == $GLOBALS['user']->id) {
PageLayout::postSuccess(sprintf(
_('Sie wurden aus der Gruppe %s ausgetragen.'),
htmlReady($g->name)
));
} else {
PageLayout::postSuccess(sprintf(
_('%s wurde aus der Gruppe %s ausgetragen.'),
htmlReady($name),
htmlReady($g->name)
));
}
} else {
if ($user_id == $GLOBALS['user']->id) {
PageLayout::postError(sprintf(
_('Sie konnten nicht aus der Gruppe %s ausgetragen werden.'),
htmlReady($g->name)
));
} else {
PageLayout::postError(sprintf(
_('%s konnte nicht aus der Gruppe %s ausgetragen werden.'),
htmlReady($name),
htmlReady($g->name)
));
}
}
$this->relocate('course/statusgroups');
}
public function move_member_action($user_id, $group_id)
{
if (!$this->is_tutor) {
throw new AccessDeniedException();
}
$this->source_group = $group_id;
$this->members = [$user_id];
// Find possible target groups.
$this->target_groups = SimpleCollection::createFromArray(
Statusgruppen::findByRange_id($this->course_id))
->orderBy('position, name')
->filter(function ($g) use ($group_id) { return $g->id != $group_id; });
}
/**
* Provides the possibility to batch create several groups at once.
*
* @throws AccessDeniedException if access not allowed with current permission level.
*/
public function create_groups_action()
{
if (!$this->is_tutor) {
throw new AccessDeniedException();
}
// Check if course has regular times.
$this->has_cycles = count(SeminarCycleDate::findBySeminar_id($this->course_id)) > 0;
// Check if course has single dates, not belonging to a regular cycle.
$dates = CourseDate::findBySeminar_id($this->course_id);
$this->has_singledates = count(array_filter($dates, function ($d) {
return !((bool) $d->metadate_id);
})) > 0;
// Check if course has topics.
$topics = CourseTopic::findBySeminar_id($this->course_id);
$paper_topics = array_filter($topics, function ($topic) {
return $topic->paper_related;
});
$this->has_topics = count($topics) > 0;
$this->has_paper_related_topics = count($paper_topics) > 0;
}
/**
* Adds the current user to the given group.
*
* @throws AccessDeniedException if current user may not join the given group.
*/
public function join_action($group_id = '')
{
// group_id can also be given per request.
if (!$group_id) {
CSRFProtection::verifyUnsafeRequest();
$group_id = Request::option('target_group');
// Safety check if no group_id at all.
if (!$group_id) {
throw new Trails_Exception(400);
}
}
$g = Statusgruppen::find($group_id);
if (!$g->userMayJoin($GLOBALS['user']->id)) {
throw new AccessDeniedException();
}
$s = new StatusgruppeUser();
$s->user_id = $GLOBALS['user']->id;
$s->statusgruppe_id = $group_id;
if ($s->store()) {
PageLayout::postSuccess(sprintf(
_('Sie wurden als Mitglied der Gruppe %s eingetragen.'),
htmlReady($g->name)
));
} else {
PageLayout::postError(sprintf(
_('Sie konnten nicht als Mitglied der Gruppe %s eingetragen werden.'),
htmlReady($g->name)
));
}
$this->relocate('course/statusgroups');
}
/**
* Removes the current user from the given group.
*
* @throws AccessDeniedException if current user may not join the given group.
*/
public function leave_action($group_id)
{
$g = Statusgruppen::find($group_id);
if (!$g->userMayLeave($GLOBALS['user']->id)) {
throw new AccessDeniedException();
}
$s = StatusgruppeUser::find([$group_id, $GLOBALS['user']->id]);
if ($s->delete()) {
PageLayout::postSuccess(sprintf(
_('Sie wurden aus der Gruppe %s ausgetragen.'),
htmlReady($g->name)
));
} else {
PageLayout::postError(sprintf(
_('Sie konnten nicht aus der Gruppe %s ausgetragen werden.'),
htmlReady($g->name)
));
}
$this->relocate('course/statusgroups');
}
/**
* Batch creation of statusgroups according to given settings.
*
* @throws AccessDeniedException if access not allowed with current permission level.
*/
public function batch_create_action()
{
if (!$this->is_tutor) {
throw new AccessDeniedException();
}
CSRFProtection::verifyUnsafeRequest();
$counter = 0;
// Create a number of groups, sequentially named.
if (Request::option('mode') == 'numbering') {
if (Request::get('numbering_type') == 2) {
$numbering = 'A';
} else {
$numbering = Request::int('startnumber', 1);
}
for ($i = 0 ; $i < Request::int('number') ; $i++) {
$group = Statusgruppen::createOrUpdate('', Request::get('prefix').' '.
$numbering++,
null, $this->course_id, Request::int('size', 0),
Request::int('selfassign', 0) + Request::int('exclusive', 0),
strtotime(Request::get('selfassign_start', 'now')),
strtotime(Request::get('selfassign_end', 0)),
Request::int('makefolder', 0));
$counter++;
}
// Create groups by course metadata, like topics, dates or lecturers.
} else if (Request::option('mode') == 'coursedata') {
$mode = Request::option('createmode');
switch ($mode) {
// Create groups per topic.
case 'topics':
case 'paper_related':
$topics = SimpleCollection::createFromArray(
CourseTopic::findBySeminar_id($this->course_id)
)->filter(function ($topic) use ($mode) {
return $mode !== 'paper_related'
|| $topic->paper_related;
})->orderBy('priority');
foreach ($topics as $t) {
$group = Statusgruppen::createOrUpdate('', _('Thema:') . ' ' . $t->title,
null, $this->course_id, Request::int('size', 0),
Request::int('selfassign', 0) + Request::int('exclusive', 0),
strtotime(Request::get('selfassign_start', 'now')),
strtotime(Request::get('selfassign_end', 0)),
Request::int('makefolder', 0)
);
// Connect group to dates that are assigned to the given topic.
$dates = CourseDate::findByIssue_id($t->id);
foreach ($dates as $d) {
$d->statusgruppen->append($group);
$d->store();
}
$counter++;
}
break;
// Create groups per (regular and irregular) dates.
case 'dates':
// Find regular cycles first and create corresponding groups.
$cycles = SimpleCollection::createFromArray(
SeminarCycleDate::findBySeminar_id($this->course_id));
foreach ($cycles as $c) {
$cd = new CycleData($c);
$name = $c->toString();
// Append description to group title if applicable.
if ($c->description) {
$name .= ' ' . mila($c->description, 30);
}
// Get name of most used room and append to group title.
if ($rooms = $cd->getPredominantRoom()) {
$room_keys = array_keys($rooms);
$room_name = DBManager::get()->fetchOne(
"SELECT `name` FROM `resources` WHERE `id` = ?",
[array_pop($room_keys)]);
$name .= ' (' . $room_name['name'] . ')';
} else {
$free_text_predominant_rooms = array_keys($cd->getFreeTextPredominantRoom());
$room = trim(array_pop($free_text_predominant_rooms));
if ($room) {
$name .= ' (' . $room . ')';
}
}
$group = Statusgruppen::createOrUpdate('', $name,
null, $this->course_id, Request::int('size', 0),
Request::int('selfassign', 0) + Request::int('exclusive', 0),
strtotime(Request::get('selfassign_start', 'now')),
strtotime(Request::get('selfassign_end', 0)),
Request::int('makefolder', 0));
// Connect group to dates that are assigned to the given cycle.
foreach ($c->dates as $d) {
$d->statusgruppen->append($group);
$d->store();
}
$counter++;
}
// Now find irregular dates and create groups.
$dates = CourseDate::findBySeminar_id($this->course_id);
$singledates = array_filter($dates, function ($d) { return !((bool) $d->metadate_id); });
foreach ($singledates as $d) {
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Append description to group title if applicable.
if ($d->description) {
$name .= ' ' . mila($d->description, 30);
}
// Get room name and append to group title.
if ($room = $d->getRoomName()) {
$name .= ' (' . $room . ')';
}
$group = Statusgruppen::createOrUpdate('', $name,
$counter + 1, $this->course_id, Request::int('size', 0),
Request::int('selfassign', 0) + Request::int('exclusive', 0),
strtotime(Request::get('selfassign_start', 'now')),
strtotime(Request::get('selfassign_end', 0)),
Request::int('makefolder', 0));
$d->statusgruppen->append($group);
$d->store();
$counter++;
}
break;
// Create groups per lecturer.
case 'lecturers':
$lecturers = SimpleCollection::createFromArray(
CourseMember::findByCourseAndStatus($this->course_id, 'dozent'))->orderBy('position');
foreach ($lecturers as $l) {
Statusgruppen::createOrUpdate('', $l->getUserFullname('full'),
null, $this->course_id, Request::int('size', 0),
Request::int('selfassign', 0) + Request::int('exclusive', 0),
strtotime(Request::get('selfassign_start', 'now')),
strtotime(Request::get('selfassign_end', 0)),
Request::int('makefolder', 0));
$counter++;
}
break;
}
}
if ($counter > 0) {
PageLayout::postSuccess(sprintf(
ngettext('Eine Gruppe wurde angelegt.', '%u Gruppen wurden angelegt.', $counter),
$counter)
);
}
$this->relocate('course/statusgroups');
}
/**
* Batch action for several groups or group members at once.
*
* @throws AccessDeniedException if access not allowed with current permission level.
*/
public function batch_action_action()
{
// Non-tutors may not access this.
if (!$this->is_tutor) {
throw new AccessDeniedException();
}
// Actions for selected groups.
if (Request::submitted('batch_groups')) {
if ($groups = Request::getArray('groups')) {
$this->groups = SimpleCollection::createFromArray(
Statusgruppen::findMany($groups))->orderBy('position, name');
switch (Request::option('groups_action')) {
case 'edit_size':
PageLayout::setTitle(_('Gruppengröße bearbeiten'));
$this->edit_size = true;
$sizes = [];
// Check for diverging values on all groups.
foreach ($this->groups as $group) {
$sizes[$group->size] = true;
}
// Get default group size
$this->size = max(array_keys($sizes));
break;
case 'edit_selfassign':
PageLayout::setTitle(_('Selbsteintrag bearbeiten'));
$this->edit_selfassign = true;
$selfassign = 0;
$exclusive = 0;
$selfassign_start = [];
$selfassign_end = [];
// Check for diverging values on all groups.
foreach ($this->groups as $group) {
if ((int)$group->selfassign == 1) {
$selfassign++;
}
if ((int)$group->selfassign === 2) {
$selfassign++;
$exclusive++;
}
$selfassign_start[$group->selfassign_start] = true;
$selfassign_end[$group->selfassign_end] = true;
}
if ($selfassign > 0) {
$this->selfassign = true;
}
if ($exclusive > 0) {
$this->exclusive = true;
}
// Selfassign start time set for all selected groups?
if (count($selfassign_start) <= 1) {
// Just one entry, take it as value for all.
$selfassign_starts = array_keys($selfassign_start);
$start = array_pop($selfassign_starts);
$this->selfassign_start = $start ? date('d.m.Y H:i', $start) : '';
} else {
// Different entries, mark this.
$this->selfassign_start = -1;
}
// Selfassign end time set for all selected groups?
if (count($selfassign_end) <= 1) {
// Just one entry, take it as value for all.
$selfassign_ends = array_keys($selfassign_end);
$end = array_pop($selfassign_ends);
$this->selfassign_end = $end ? date('d.m.Y H:i', $end) : '';