19 declare(strict_types=1);
40 $this->log = $DIC->logger()->wsrv();
67 $details = $crsm_reader->getCourseMember($a_content_id,
true);
68 $this->mid = $details->getMySender();
72 if (!$part->isImportEnabled()) {
73 $this->log->warning(
'Import disabled for mid ' . $this->
getMid());
81 return $this->mapping->isCourseAllocationEnabled();
83 $this->log->error(
'Reading course member details failed with message ' . $e->getMessage());
100 $this->
doUpdate($a_content_id, $course_member);
103 $this->log->error(
'Course member creation failed with mesage ' . $e->getMessage());
129 $this->
doUpdate($a_content_id, $course_member);
132 $this->log->error(
'Course member update failed with mesage ' . $e->getMessage());
142 protected function doUpdate($a_content_id, $course_member): bool
144 $this->log->debug(
'Starting ecs member update');
146 $course_id = (
int) $course_member->lectureID;
148 $this->log->warning(
'Missing course id');
151 $this->log->debug(
'sid: ' . $this->
getServer()->getServerId() .
' course_id: ' . $course_id .
' mid: ' . $this->mid);
156 $this->log->info(
'No main course created. Group scenario >= 3 ?');
160 if (is_null($course)) {
161 $this->log->info(
'No course found, skip processing' . print_r($course_member,
true));
167 $this->log->debug(
'Parallel group assignments');
169 $this->log->debug(
'------------------ End assignemtns');
172 foreach ($assignments as $cms_id => $assigned) {
173 $sub_id = ($cms_id === $course_id) ?
null : (
string) $cms_id;
175 $this->log->debug(
'sub id is ' . is_null($sub_id) ?
"<null>" : $sub_id .
' for ' . $cms_id);
195 switch ((
int) $course->groupScenario) {
197 $this->log->debug(
'Parallel group scenario one course.');
201 $this->log->debug(
'Parallel group scenario groups in courses.');
205 $this->log->debug(
'Parallel group scenario only courses.');
209 $this->log->debug(
'Parallel group scenario undefined.');
213 $course_id = $course_member->lectureID;
215 foreach ((array) $course_member->members as $member) {
216 $assigned[$course_id][$member->personID] = array(
217 'id' => $member->personID,
218 'role' => $member->role
221 $this->log->debug(
'Group scenarion "one course". Ignoring group assignments');
225 foreach ((array) $member->groups as $pgroup) {
227 $sequence_number = (
int) $pgroup->num;
229 $tmp_pgroup = $course->groups[$sequence_number];
230 if (is_object($tmp_pgroup) && $tmp_pgroup->id !==
'') {
231 $this->log->debug(
'Found parallel group with id: ' . $tmp_pgroup->id .
': for sequence number: ' . $sequence_number);
234 $assigned[$tmp_pgroup->id][$member->personID] = array(
235 'id' => $member->personID,
236 'role' => $pgroup->role
239 $this->log->warning(
'Cannot find parallel group with sequence id: ' . $sequence_number);
243 $this->log->debug(
'ECS member assignments ' . print_r($assigned,
true));
254 $this->log->debug(
'Currrent sub_id = ' . $sub_id .
', obj_id = ' . $obj_id);
257 if ($type ===
'crs') {
259 } elseif ($type ===
'grp') {
262 $this->log->warning(
'Invalid object type given for obj_id: ' . $obj_id);
266 $course_id = (
int) $course_member->lectureID;
269 is_null($sub_id) ? $sub_id : (
int) $sub_id,
274 foreach ($usr_ids as $usr_id) {
275 if (!isset($assigned[$usr_id])) {
279 $this->mapping->getAuthMode(),
283 $this->log->debug(
'Local user assignment: ' . $usr_id .
' <-> ' . $login);
287 $part->delete($il_usr_id);
290 $this->log->notice(
'Deassigning unknown ILIAS user ' . $usr_id .
' ' .
'from course ' .
ilObject::_lookupTitle($obj_id));
298 $this->log->debug(
'Handled assignmnent...');
301 foreach ((array) $assigned as $person_id => $person) {
302 $role = $this->
lookupRole((
string) $person[
'role'], $type);
305 $this->log->debug(
'Using role info...');
307 $this->mapping->getAuthMode(),
310 $this->log->info(
'Handling user ' . $person_id);
312 if (in_array($person_id, $usr_ids,
true)) {
314 $part->updateRoleAssignments($il_usr_id, array($part->getAutoGeneratedRoleId($role)));
315 } elseif ($role_info[
'create']) {
317 $this->log->info(
'Added new user ' . $person_id);
319 $this->mapping->getAuthMode(),
323 $part->add($il_usr_id, $role);
332 $this->log->info(
'Assigning new user ' . $person_id .
' ' .
'to ' .
ilObject::_lookupTitle($obj_id) .
' using role: ' . $role);
333 $part->add($il_usr_id, $role);
338 if ($role_info[
'create']) {
340 $this->log->info(
'Added new user ' . $person_id);
342 $this->mapping->getAuthMode(),
348 $part->add($il_usr_id, $role);
354 $assignment->setServer($this->
getServer()->getServerId());
355 $assignment->setMid($this->mid);
356 $assignment->setCmsId($course_id);
357 $assignment->setCmsSubId((
int) $sub_id);
358 $assignment->setObjId($obj_id);
359 $assignment->setUid((
string) $person_id);
371 $role_mappings = $this->mapping->getRoleMappings();
375 $this->log->debug(
'No role assignment attribute: role');
377 foreach ($role_mappings as $name => $map) {
378 $this->log->debug(
'Role "name" is ' . $name);
381 $exploded_map = (array) explode(
',', $map);
382 if (in_array($role_value, $exploded_map,
true)) {
387 if ($a_obj_type ===
'crs') {
388 $this->log->debug(
'Role: ' . $role_value .
' maps: ' . $map);
395 if ($a_obj_type ===
'grp') {
396 $this->log->debug(
'Role: ' . $role_value .
' maps: ' . $map);
403 $this->log->info(
'No role assignment mapping for role ' . $role_value);
413 $this->log->warning(
'Node mapping settings not initialized.');
415 $auth_mode = $this->mapping->getAuthMode();
418 $this->mapping->getAuthMode() ===
421 $this->log->info(
'Not handling direct user creation for auth mode: ' . $auth_mode);
424 if (strpos($auth_mode,
'ldap') !== 0) {
425 $this->log->info(
'Not handling direct user creation for auth mode: ' . $auth_mode);
431 $server->doConnectionCheck();
436 $users = $query->fetchUser((
string) $a_person_id);
441 $xml->setNewUserAuthMode($server->getAuthenticationMappingKey());
442 $xml->setUserData($users);
446 $this->log->error($exc->getMessage());
467 $course_member->lectureID
handleCreate(ilECSSetting $server, $a_content_id)
Handle create.
static _getFirstActiveServer()
Get first active server.
static getInstance(int $a_server_id, int $mid)
Get instance by server id and mid.
static getRoleMappingInfo($a_role_type_info=0)
Get role mapping info.
__construct(ilECSSetting $server)
Constructor.
const TYPE_ADMISSION_MEMBER
static getInstanceByServerId(int $a_server_id)
Get instance by server id.
static getInstanceByServerMid(int $a_server_id, int $a_mid)
Get instance.
ilECSnodeMappingSettings $mapping
if(!file_exists('../ilias.ini.php'))
static _lookupId($a_user_str)
lookupRole(string $role_value, $a_obj_type)
Lookup local role by assignment.
static _checkExternalAuthAccount(string $a_auth, string $a_account, bool $tryFallback=true)
check whether external account and authentication method matches with a user
server()
description: > This example shows how a Progress Bar can be rendered and updated by the server...
const PARALLEL_ONE_COURSE
checkAllocationActivation(ilECSSetting $server, $a_content_id)
Check if course allocation is activated for one recipient of the.
static _getAuthModeName($a_auth_key)
Interface for all command queue handler classes.
handleDelete(ilECSSetting $server, $a_content_id)
Handle delete.
createMember($a_person_id)
Create user account.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static lookupAssignment(int $a_cms_id, ?int $a_cms_sub_id, int $a_obj_id, string $a_usr_id)
Lookup assignment of user.
Synchronize member assignments.
static getInstance()
Get the singleton instance of this ilECSImportManager.
doUpdate($a_content_id, $course_member)
Perform update.
static _lookupTitle(int $obj_id)
static _getInstanceByObjId(int $a_obj_id)
readAssignments($course, $course_member)
Read assignments for all parallel groups.
static lookupUserIds(int $a_cms_id, ?int $a_cms_sub_id, int $a_obj_id)
Lookup user ids.
Connector for course member ressource.
const PARALLEL_ALL_COURSES
Storage of ecs course assignments.
static _getInstanceByObjId(int $a_obj_id)
Get singleton instance.
readCourseMember(ilECSSetting $server, $a_content_id)
Read course from ecs.
handleUpdate(ilECSSetting $server, $a_content_id)
Handle update.
Update/create ILIAS user account by given LDAP attributes according to user attribute mapping setting...
const PARALLEL_GROUPS_IN_COURSE
refreshAssignmentStatus(object $course_member, int $obj_id, ?string $sub_id, $assigned)
Refresh status of course member assignments.
static _lookupType(int $id, bool $reference=false)
readCourse($course_member)
Read course from ecs.