33 protected \ILIAS\Exercise\Team\TeamDBRepository
$repo;
44 $this->db = $DIC->database();
45 $this->
user = $DIC->user();
46 $this->repo = $DIC->exercise()->internal()->repo()->team();
47 $this->team_manager = $DIC->exercise()->internal()->domain()->team();
56 bool $a_create_on_demand =
false 58 $id = self::getTeamId($a_assignment_id, $a_user_id, $a_create_on_demand);
65 foreach (self::getAssignmentTeamMap($a_assignment_id) as
$user_id => $team_id) {
70 foreach ($teams as $team_id => $members) {
73 $team->assignment_id = $a_assignment_id;
75 $res[$team_id] = $team;
86 private function setId(?
int $a_id): void
91 protected function read(
int $a_id): void
98 foreach ($this->repo->getMembers($a_id) as $member) {
99 $this->assignment_id = $member->getAssignmentId();
100 $this->members[] = $member->getUserId();
106 int $a_assignment_id,
108 bool $a_create_on_demand =
false 112 $ilDB = $DIC->database();
113 $repo = $DIC->exercise()->internal()->repo()->team();
114 $manager = $DIC->exercise()->internal()->domain()->team();
116 $id = $repo->getTeamForMember($a_assignment_id, $a_user_id);
118 if (!$id && $a_create_on_demand) {
120 $id = $manager->create(
129 if ($idl->getStartingTimestamp() > 0) {
131 $idl_team->setStartingTimestamp($idl->getStartingTimestamp());
135 self::writeTeamLog($id, self::TEAM_LOG_CREATE_TEAM);
138 self::TEAM_LOG_ADD_MEMBER,
147 int $a_assignment_id,
151 $id = $this->team_manager->create(
156 self::writeTeamLog($id, self::TEAM_LOG_CREATE_TEAM);
159 self::TEAM_LOG_ADD_MEMBER,
177 return iterator_to_array(
178 $this->repo->getAllMemberIdsOfAssignment($this->assignment_id)
189 ?
int $a_exc_ref_id =
null 201 $status = $this->team_manager->getStatusForTeam($this->
id);
203 $this->repo->addUser(
205 $this->assignment_id,
211 $this->assignment_id,
214 $mem_stat->setStatus($status);
223 self::TEAM_LOG_ADD_MEMBER,
227 $this->
read($this->
id);
240 ?
int $a_exc_ref_id =
null 248 $this->repo->removeUser(
250 $this->assignment_id,
259 self::TEAM_LOG_REMOVE_MEMBER,
263 $this->
read($this->
id);
271 $repo = $DIC->exercise()->internal()->repo()->team();
272 return $repo->getUserTeamMap($a_ass_id);
277 ?
string $a_details =
null 279 self::writeTeamLog($this->
id, $a_action, $a_details);
288 ?
string $a_details =
null 292 $ilDB = $DIC->database();
293 $ilUser = $DIC->user();
294 $id =
$ilDB->nextId(
'il_exc_team_log');
297 "log_id" => array(
"integer", $id),
298 "team_id" => array(
"integer", $a_team_id),
299 "user_id" => array(
"integer", $ilUser->getId()),
300 "action" => array(
"integer", $a_action),
301 "details" => array(
"text", $a_details),
302 "tstamp" => array(
"integer", time())
305 $ilDB->insert(
"il_exc_team_log", $fields);
317 $sql =
"SELECT * FROM il_exc_team_log" .
318 " WHERE team_id = " .
$ilDB->quote($this->
id,
"integer") .
319 " ORDER BY tstamp DESC";
320 $set =
$ilDB->query($sql);
321 while ($row =
$ilDB->fetchAssoc($set)) {
339 $obsolete_teams = [];
340 $set =
$ilDB->query(
"SELECT DISTINCT l.team_id as id FROM il_exc_team_log as l LEFT JOIN il_exc_team as t ON (l.team_id = t.id) WHERE t.id IS NULL;");
341 while ($row =
$ilDB->fetchAssoc($set)) {
342 $obsolete_teams[] = $row[
"id"];
345 if (count($obsolete_teams) > 0) {
346 $q =
"DELETE FROM il_exc_team_log" .
347 " WHERE " .
$ilDB->in(
"team_id", $obsolete_teams,
false,
"integer");
364 if (!$a_exc_ref_id ||
365 $ilUser->getId() == $a_user_id) {
371 $ntf->setLangModules(array(
"exc"));
372 $ntf->setRefId($a_exc_ref_id);
373 $ntf->setChangedByUserId($ilUser->getId());
374 $ntf->setSubjectLangId(
'exc_team_notification_subject_' . $a_action);
375 $ntf->setIntroductionLangId(
'exc_team_notification_body_' . $a_action);
376 $ntf->addAdditionalInfo(
"exc_assignment", $ass->getTitle());
377 $ntf->setGotoLangId(
'exc_team_notification_link');
378 $ntf->setReasonLangId(
'exc_team_notification_reason');
379 $ntf->sendMailAndReturnRecipients(array($a_user_id));
385 ?
int $a_exclude_ass_id =
null,
386 ?
int $a_user_id =
null 391 foreach (
$data as $row) {
392 if ($a_exclude_ass_id && $row[
"id"] == $a_exclude_ass_id) {
397 $map = self::getAssignmentTeamMap($row[
"id"]);
399 if ($a_user_id && !array_key_exists($a_user_id, $map)) {
406 $user_team_id = $map[$a_user_id];
407 $user_team = array();
408 foreach ($map as
$user_id => $team_id) {
410 $user_team_id == $team_id) {
418 $res[$row[
"id"]] = array(
419 "title" => $row[
"title"],
420 "teams" => count(array_flip($map)),
424 $res[$row[
"id"]][
"user_team"] = $user_team;
438 int $a_source_ass_id,
439 int $a_target_ass_id,
440 ?
int $a_user_id =
null,
441 ?
int $a_exc_ref_id =
null 446 foreach (self::getAssignmentTeamMap($a_source_ass_id) as
$user_id => $team_id) {
449 if ($a_user_id &&
$user_id == $a_user_id) {
450 $old_team = $team_id;
457 self::getInstanceByUserId($a_target_ass_id, $a_user_id)->
getId()) {
462 $current_map = self::getAssignmentTeamMap($a_target_ass_id);
464 foreach ($teams as $team_id => $user_ids) {
465 if (!$old_team || $team_id == $old_team) {
469 if (!array_key_exists($user_id, $current_map)) {
474 if ($missing !== []) {
476 $first = array_shift($missing);
477 $new_team = self::getInstanceByUserId($a_target_ass_id, $first,
true);
480 if ($a_user_id > 0 && $old_team > 0) {
482 if ($idl->getStartingTimestamp()) {
484 $idl_team->setStartingTimestamp($idl->getStartingTimestamp());
491 $new_team->sendNotification($a_exc_ref_id, $first,
"add");
494 foreach ($missing as $user_id) {
495 $new_team->addTeamMember($user_id, $a_exc_ref_id);
514 $tree = $DIC->repositoryTree();
518 $parent_ref_id = $tree->getParentId($a_exc_ref_id);
519 if ($parent_ref_id) {
520 foreach ($tree->getChildsByType($parent_ref_id,
"grp") as $group) {
521 $res[] = $group[
"obj_id"];
532 foreach (self::getAdoptableGroups($a_exc_ref_id) as $grp_obj_id) {
535 $res[$grp_obj_id] = array(
537 ,
"members" => $members_obj->getMembers()
557 int $a_assignment_id,
559 int $a_min_participants
562 if (count(self::getAssignmentTeamMap($a_assignment_id))) {
567 $members = $obj_exc_members->getMembers();
568 $total_exc_members = count($members);
569 $number_of_teams = $a_number_teams;
570 if (!$number_of_teams) {
571 if ($a_min_participants) {
572 $number_of_teams = round($total_exc_members / $a_min_participants);
574 $number_of_teams = random_int(1, $total_exc_members);
577 $members_per_team = round($total_exc_members / $number_of_teams);
579 for ($i = 0;$i < $number_of_teams;$i++) {
580 $members_counter = 0;
581 while (!empty($members) && $members_counter < $members_per_team) {
582 $member_id = array_pop($members);
583 if ($members_counter == 0) {
584 $team_id = $this->
createTeam($a_assignment_id, $member_id);
585 $this->
setId($team_id);
586 $this->assignment_id = $a_assignment_id;
594 $teams = array_unique(array_values(self::getAssignmentTeamMap($a_assignment_id)));
596 while (!empty($members)) {
597 $member_id = array_pop($members);
598 $team_id = array_pop($teams);
599 $this->
setId($team_id);
static getAdoptableTeamAssignments(int $a_exercise_id, ?int $a_exclude_ass_id=null, ?int $a_user_id=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
removeTeamMember(int $a_user_id, ?int $a_exc_ref_id=null)
createTeam(int $a_assignment_id, int $a_user_id)
const TEAM_LOG_REMOVE_MEMBER
static _lookupFullname(int $a_user_id)
static writeTeamLog(int $a_team_id, int $a_action, ?string $a_details=null)
Add entry to team log.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstanceByUserId(int $a_assignment_id, int $a_user_id, bool $a_create_on_demand=false)
addTeamMember(int $a_user_id, ?int $a_exc_ref_id=null)
sendNotification(int $a_exc_ref_id, int $a_user_id, string $a_action)
Send notification about team status.
static getAdoptableGroups(int $a_exc_ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getAssignmentDataOfExercise(int $a_exc_id)
const TEAM_LOG_REMOVE_FILE
static _lookupTitle(int $obj_id)
writeLog(int $a_action, ?string $a_details=null)
cleanLog()
Remove obsolete log entries.
static getTeamId(int $a_assignment_id, int $a_user_id, bool $a_create_on_demand=false)
getMembersOfAllTeams()
Get members for all teams of assignment.
static getAssignmentTeamMap(int $a_ass_id)
__construct(?int $a_id=null)
ILIAS Exercise Team TeamDBRepository $repo
createRandomTeams(int $a_exercise_id, int $a_assignment_id, int $a_number_teams, int $a_min_participants)
Create random teams for assignment type "team upload" following specific rules.
static getGroupMembersMap(int $a_exc_ref_id)
static adoptTeams(int $a_source_ass_id, int $a_target_ass_id, ?int $a_user_id=null, ?int $a_exc_ref_id=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const TEAM_LOG_CREATE_TEAM
static getInstance(int $a_ass_id, int $a_participant_id, bool $a_is_team=false)
static getInstancesFromMap(int $a_assignment_id)
const TEAM_LOG_ADD_MEMBER
ILIAS Exercise Team TeamManager $team_manager
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)