ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilOrgUnitSimpleUserImport.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3require_once('./Modules/OrgUnit/classes/class.ilOrgUnitImporter.php');
4
14
18 public function simpleUserImport($file_path) {
19 $this->stats = array( 'created' => 0, 'removed' => 0 );
20 $a = file_get_contents($file_path, 'r');
21 $xml = new SimpleXMLElement($a);
22
23 if (!count($xml->Assignment)) {
24 $this->addError('no_assignment', NULL, NULL);
25
26 return;
27 }
28
29 foreach ($xml->Assignment as $a) {
30 $this->simpleUserImportElement($a);
31 }
32 }
33
34
38 public function simpleUserImportElement(SimpleXMLElement $a) {
39 global $rbacadmin;
40
41 $attributes = $a->attributes();
42 $action = $attributes->action;
43 $user_id_type = $a->User->attributes()->id_type;
44 $user_id = (string)$a->User;
45 $org_unit_id_type = $a->OrgUnit->attributes()->id_type;
46 $org_unit_id = (string)$a->OrgUnit;
47 $role = (string)$a->Role;
48
49 if (!$user_id = $this->buildUserId($user_id, $user_id_type)) {
50 $this->addError('user_not_found', $a->User);
51
52 return;
53 }
54
55 if (!$org_unit_id = $this->buildRef($org_unit_id, $org_unit_id_type)) {
56 $this->addError('org_unit_not_found', $a->OrgUnit);
57
58 return;
59 }
60 $org_unit = new ilObjOrgUnit($org_unit_id);
61
62 if ($role == 'employee') {
63 $role_id = $org_unit->getEmployeeRole();
64 } elseif ($role == 'superior') {
65 $role_id = $org_unit->getSuperiorRole();
66 } else {
67 $this->addError('not_a_valid_role', $user_id);
68
69 return;
70 }
71
72 if ($action == 'add') {
73 $rbacadmin->assignUser($role_id, $user_id);
74 $this->stats['created'] ++;
75 } elseif ($action == 'remove') {
76 $rbacadmin->deassignUser($role_id, $user_id);
77 $this->stats['removed'] ++;
78 } else {
79 $this->addError('not_a_valid_action', $user_id);
80 }
81 }
82
83
90 private function buildUserId($id, $type) {
91 global $ilDB;
92 if ($type == 'ilias_login') {
93 $user_id = ilObjUser::_lookupId($id);
94
95 return $user_id ? $user_id : false;
96 } elseif ($type == 'external_id') {
98
99 return $user_id ? $user_id : false;
100 } elseif ($type == 'email') {
101 $q = 'SELECT usr_id FROM usr_data WHERE email = ' . $ilDB->quote($id, 'text');
102 $set = $ilDB->query($q);
103 $user_id = $ilDB->fetchAssoc($set);
104
105 return $user_id ? $user_id : false;
106 } elseif ($type == 'user_id') {
107 return $id;
108 } else {
109 return false;
110 }
111 }
112}
113
114?>
Class ilObjOrgUnit.
static _lookupId($a_user_str)
Lookup id by login.
static _lookupObjIdByImportId($a_import_id)
Class ilOrgUnitImporter.
addError($lang_var, $import_id, $action=NULL)
Class ilOrgUnitSimpleUserImport.
global $ilDB