ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSoapCourseAdministration.php
Go to the documentation of this file.
1 <?php
25 {
26  public const MEMBER = 1;
27  public const TUTOR = 2;
28  public const ADMIN = 4;
29  public const OWNER = 8;
30 
34  public function addCourse(string $sid, int $target_id, string $crs_xml)
35  {
36  $this->initAuth($sid);
37  $this->initIlias();
38 
39  if (!$this->checkSession($sid)) {
40  return $this->raiseError($this->getMessage(), $this->getMessageCode());
41  }
42 
43  global $DIC;
44 
45  $rbacsystem = $DIC['rbacsystem'];
46 
47  if (!$target_obj = ilObjectFactory::getInstanceByRefId($target_id, false)) {
48  return $this->raiseError('No valid target given.', 'Client');
49  }
50 
51  if (ilObject::_isInTrash($target_id)) {
52  return $this->raiseError("Parent with ID $target_id has been deleted.", 'CLIENT_OBJECT_DELETED');
53  }
54 
55  if (!$rbacsystem->checkAccess('create', $target_id, 'crs')) {
56  return $this->raiseError('Check access failed. No permission to create courses', 'Server');
57  }
58 
59  $newObj = new ilObjCourse();
60  $newObj->setType('crs');
61  $newObj->setTitle('dummy');
62  $newObj->setDescription("");
63  $newObj->create(true); // true for upload
64  $newObj->createReference();
65  $newObj->putInTree($target_id);
66  $newObj->setPermissions($target_id);
67 
68  $xml_parser = new ilCourseXMLParser($newObj);
69  $xml_parser->setMode(ilCourseXMLParser::MODE_SOAP);
70  $xml_parser->setXMLContent($crs_xml);
71  $xml_parser->startParsing();
72  return $newObj->getRefId() ?: "0";
73  }
74 
78  public function deleteCourse(string $sid, int $course_id)
79  {
80  $this->initAuth($sid);
81  $this->initIlias();
82 
83  if (!$this->checkSession($sid)) {
84  return $this->raiseError($this->getMessage(), $this->getMessageCode());
85  }
86 
87  global $DIC;
88 
89  $rbacsystem = $DIC['rbacsystem'];
90 
91  if (ilObject::_lookupType(ilObject::_lookupObjId($course_id)) !== 'crs') {
92  $ref_ids = ilObject::_getAllReferences($course_id);
93  $course_id = end($ref_ids);
94  if (ilObject::_lookupType(ilObject::_lookupObjId($course_id)) !== 'crs') {
95  return $this->raiseError(
96  'Invalid course id. Object with id "' . $course_id . '" is not of type "course"',
97  'Client'
98  );
99  }
100  }
101 
102  if (!$rbacsystem->checkAccess('delete', $course_id)) {
103  return $this->raiseError('Check access failed. No permission to delete course', 'Server');
104  }
105 
106  global $DIC;
107  $tree = $DIC->repositoryTree();
108  $user = $DIC->user();
109  $rbacadmin = $DIC['rbacadmin'];
110  $log = $DIC['log'];
111 
112  if ($tree->isDeleted($course_id)) {
113  return $this->raiseError('Node already deleted', 'Server');
114  }
115 
116  $subnodes = $tree->getSubTree($tree->getNodeData($course_id));
117  foreach ($subnodes as $subnode) {
118  $rbacadmin->revokePermission($subnode["child"]);
119  }
120  if (!$tree->moveToTrash($course_id, true, $user->getId())) {
121  return $this->raiseError('Node already deleted', 'Client');
122  }
123 
124  $log->write("SOAP ilObjectGUI::confirmedDeleteObject(), moved ref_id " . $course_id . " to trash");
125  return true;
126  }
127 
131  public function assignCourseMember(string $sid, int $course_id, int $user_id, string $type)
132  {
133  $this->initAuth($sid);
134  $this->initIlias();
135 
136  if (!$this->checkSession($sid)) {
137  return $this->raiseError($this->getMessage(), $this->getMessageCode());
138  }
139 
140  global $DIC;
141 
142  $rbacsystem = $DIC['rbacsystem'];
143 
144  if (ilObject::_lookupType(ilObject::_lookupObjId($course_id)) !== 'crs') {
145  $ref_ids = ilObject::_getAllReferences($course_id);
146  $course_id = end($ref_ids);
147  if (ilObject::_lookupType(ilObject::_lookupObjId($course_id)) !== 'crs') {
148  return $this->raiseError(
149  'Invalid course id. Object with id "' . $course_id . '" is not of type "course"',
150  'Client'
151  );
152  }
153  }
154 
155  if (!$rbacsystem->checkAccess('manage_members', $course_id)) {
156  return $this->raiseError('Check access failed. No permission to write to course', 'Server');
157  }
158 
159  if (ilObject::_lookupType($user_id) !== 'usr') {
160  return $this->raiseError('Invalid user id. User with id "' . $user_id . ' does not exist', 'Client');
161  }
162  if ($type !== 'Admin' &&
163  $type !== 'Tutor' &&
164  $type !== 'Member') {
165  return $this->raiseError(
166  'Invalid type given. Parameter "type" must be "Admin", "Tutor" or "Member"',
167  'Client'
168  );
169  }
170 
171  if (!$tmp_course = ilObjectFactory::getInstanceByRefId($course_id, false)) {
172  return $this->raiseError('Cannot create course instance!', 'Server');
173  }
174 
175  if (!$tmp_user = ilObjectFactory::getInstanceByObjId($user_id, false)) {
176  return $this->raiseError('Cannot create user instance!', 'Server');
177  }
178 
179  $course_members = ilCourseParticipants::_getInstanceByObjId($tmp_course->getId());
180 
181  switch ($type) {
182  case 'Admin':
183  $settings = new ilSetting();
184  $course_members->add($tmp_user->getId(), ilParticipants::IL_CRS_ADMIN);
185  $course_members->updateNotification(
186  $tmp_user->getId(),
187  (bool) $settings->get('mail_crs_admin_notification', "1")
188  );
189  break;
190 
191  case 'Tutor':
192  $course_members->add($tmp_user->getId(), ilParticipants::IL_CRS_TUTOR);
193  break;
194 
195  case 'Member':
196  $course_members->add($tmp_user->getId(), ilParticipants::IL_CRS_MEMBER);
197  break;
198  }
199  return true;
200  }
201 
205  public function excludeCourseMember(string $sid, int $course_id, int $user_id)
206  {
207  $this->initAuth($sid);
208  $this->initIlias();
209 
210  if (!$this->checkSession($sid)) {
211  return $this->raiseError($this->getMessage(), $this->getMessageCode());
212  }
213 
214  global $DIC;
215 
216  $rbacsystem = $DIC['rbacsystem'];
217 
218  if (ilObject::_lookupType(ilObject::_lookupObjId($course_id)) !== 'crs') {
219  $ref_ids = ilObject::_getAllReferences($course_id);
220  $course_id = end($ref_ids);
221  if (ilObject::_lookupType(ilObject::_lookupObjId($course_id)) !== 'crs') {
222  return $this->raiseError(
223  'Invalid course id. Object with id "' . $course_id . '" is not of type "course"',
224  'Client'
225  );
226  }
227  }
228 
229  if (ilObject::_lookupType($user_id) !== 'usr') {
230  return $this->raiseError('Invalid user id. User with id "' . $user_id . ' does not exist', 'Client');
231  }
232 
233  if (!$tmp_course = ilObjectFactory::getInstanceByRefId($course_id, false)) {
234  return $this->raiseError('Cannot create course instance!', 'Server');
235  }
236 
237  if (!$rbacsystem->checkAccess('manage_members', $course_id)) {
238  return $this->raiseError('Check access failed. No permission to write to course', 'Server');
239  }
240 
241  $course_members = ilCourseParticipants::_getInstanceByObjId($tmp_course->getId());
242  if (!$course_members->checkLastAdmin(array($user_id))) {
243  return $this->raiseError('Cannot deassign last administrator from course', 'Server');
244  }
245  $course_members->delete($user_id);
246  return true;
247  }
248 
252  public function isAssignedToCourse(string $sid, int $course_id, int $user_id)
253  {
254  $this->initAuth($sid);
255  $this->initIlias();
256 
257  if (!$this->checkSession($sid)) {
258  return $this->raiseError($this->getMessage(), $this->getMessageCode());
259  }
260 
261  global $DIC;
262 
263  $rbacsystem = $DIC['rbacsystem'];
264 
265  if (ilObject::_lookupType(ilObject::_lookupObjId($course_id)) !== 'crs') {
266  $ref_ids = ilObject::_getAllReferences($course_id);
267  $course_id = end($ref_ids);
268  if (ilObject::_lookupType(ilObject::_lookupObjId($course_id)) !== 'crs') {
269  return $this->raiseError(
270  'Invalid course id. Object with id "' . $course_id . '" is not of type "course"',
271  'Client'
272  );
273  }
274  }
275 
276  if (ilObject::_lookupType($user_id) !== 'usr') {
277  return $this->raiseError('Invalid user id. User with id "' . $user_id . ' does not exist', 'Client');
278  }
279 
281  if (!$tmp_course = ilObjectFactory::getInstanceByRefId($course_id, false)) {
282  return $this->raiseError('Cannot create course instance!', 'Server');
283  }
284 
285  if (!$rbacsystem->checkAccess('manage_members', $course_id)) {
286  return $this->raiseError('Check access failed. No permission to write to course', 'Server');
287  }
288 
289  $crs_members = ilCourseParticipants::_getInstanceByObjId($tmp_course->getId());
290 
291  if ($crs_members->isAdmin($user_id)) {
293  }
294  if ($crs_members->isTutor($user_id)) {
296  }
297  if ($crs_members->isMember($user_id)) {
299  }
300  return "0";
301  }
302 
306  public function getCourseXML(string $sid, int $course_id)
307  {
308  $this->initAuth($sid);
309  $this->initIlias();
310 
311  if (!$this->checkSession($sid)) {
312  return $this->raiseError($this->getMessage(), $this->getMessageCode());
313  }
314 
315  global $DIC;
316 
317  $rbacsystem = $DIC['rbacsystem'];
318 
320  $tmp_course = $this->checkObjectAccess($course_id, ['crs'], "read", true);
321  if ($this->isFault($tmp_course)) {
322  return $tmp_course;
323  }
324 
325  $xml_writer = new ilCourseXMLWriter($tmp_course);
326  $xml_writer->start();
327  return $xml_writer->getXML();
328  }
329 
333  public function updateCourse(string $sid, int $course_id, string $xml)
334  {
335  $this->initAuth($sid);
336  $this->initIlias();
337 
338  if (!$this->checkSession($sid)) {
339  return $this->raiseError($this->getMessage(), $this->getMessageCode());
340  }
341 
342  global $DIC;
343 
344  $rbacsystem = $DIC['rbacsystem'];
345 
346  if (ilObject::_lookupType(ilObject::_lookupObjId($course_id)) !== 'crs') {
347  $ref_ids = ilObject::_getAllReferences($course_id);
348  $course_id = end($ref_ids);
349  if (ilObject::_lookupType(ilObject::_lookupObjId($course_id)) !== 'crs') {
350  return $this->raiseError(
351  'Invalid course id. Object with id "' . $course_id . '" is not of type "course"',
352  'Client'
353  );
354  }
355  }
356 
358  if (!$tmp_course = ilObjectFactory::getInstanceByRefId($course_id, false)) {
359  return $this->raiseError('Cannot create course instance!', 'Server');
360  }
361 
362  if (!$rbacsystem->checkAccess('write', $course_id)) {
363  return $this->raiseError('Check access failed. No permission to write course', 'Server');
364  }
365 
366  // First delete old meta data
367 
368  $md = new ilMD($tmp_course->getId(), 0, 'crs');
369  $md->deleteAll();
370 
371  ilCourseParticipants::_deleteAllEntries($tmp_course->getId());
372 
373  ilCourseWaitingList::_deleteAll($tmp_course->getId());
374 
375 
376  $xml_parser = new ilCourseXMLParser($tmp_course);
377  $xml_parser->setMode(ilCourseXMLParser::MODE_SOAP);
378  $xml_parser->setXMLContent($xml);
379  $xml_parser->startParsing();
380  $tmp_course->MDUpdateListener('General');
381 
382  return true;
383  }
384 
388  public function getCoursesForUser(string $sid, string $parameters)
389  {
390  $this->initAuth($sid);
391  $this->initIlias();
392 
393  if (!$this->checkSession($sid)) {
394  return $this->raiseError($this->getMessage(), $this->getMessageCode());
395  }
396 
397  global $DIC;
398 
399  $rbacreview = $DIC['rbacreview'];
400  $ilObjDataCache = $DIC['ilObjDataCache'];
401  $tree = $DIC['tree'];
402 
403  $parser = new ilXMLResultSetParser($parameters);
404  try {
405  $parser->startParsing();
406  } catch (ilSaxParserException $exception) {
407  return $this->raiseError($exception->getMessage(), "Client");
408  }
409  $xmlResultSet = $parser->getXMLResultSet();
410 
411  if (!$xmlResultSet->hasColumn("user_id")) {
412  return $this->raiseError("parameter user_id is missing", "Client");
413  }
414 
415  if (!$xmlResultSet->hasColumn("status")) {
416  return $this->raiseError("parameter status is missing", "Client");
417  }
418 
419  $user_id = (int) $xmlResultSet->getValue(0, "user_id");
420  $status = (int) $xmlResultSet->getValue(0, "status");
421 
422  $ref_ids = array();
423 
424  if (self::MEMBER == ($status & self::MEMBER) ||
425  self::TUTOR == ($status & self::TUTOR) ||
426  self::ADMIN == ($status & self::ADMIN)) {
427  foreach ($rbacreview->assignedRoles($user_id) as $role_id) {
428  if ($role = ilObjectFactory::getInstanceByObjId($role_id, false)) {
429  #echo $role->getType();
430  if ($role->getType() !== "role") {
431  continue;
432  }
433  if ($role->getParent() == ROLE_FOLDER_ID) {
434  continue;
435  }
436  $role_title = $role->getTitle();
437 
438  if ($ref_id = ilUtil::__extractRefId($role_title)) {
440  continue;
441  }
442 
443  if (self::MEMBER == ($status & self::MEMBER) && strpos(
444  $role_title,
445  "member"
446  ) !== false) {
447  $ref_ids [] = $ref_id;
448  } elseif (self::TUTOR == ($status & self::TUTOR) && strpos(
449  $role_title,
450  "tutor"
451  ) !== false) {
452  $ref_ids [] = $ref_id;
453  } elseif (self::ADMIN == ($status & self::ADMIN) && strpos(
454  $role_title,
455  "admin"
456  ) !== false) {
457  $ref_ids [] = $ref_id;
458  } elseif (($status & self::OWNER) == self::OWNER && $ilObjDataCache->lookupOwner($ilObjDataCache->lookupObjId($ref_id)) == $user_id) {
459  $ref_ids [] = $ref_id;
460  }
461  }
462  }
463  }
464  }
465  if (($status & self::OWNER) == self::OWNER) {
466  $owned_objects = ilObjectFactory::getObjectsForOwner("crs", $user_id);
467  $refs = [];
468  foreach ($owned_objects as $obj_id) {
469  $allrefs = ilObject::_getAllReferences($obj_id);
470  foreach ($allrefs as $r) {
471  if ($tree->isDeleted($r)) {
472  continue;
473  }
474  if ($tree->isInTree($r)) {
475  $refs[] = $r;
476  }
477  }
478  if (count($refs) > 0) {
479  $ref_ids[] = array_pop($refs);
480  }
481  }
482  }
483  $ref_ids = array_unique($ref_ids);
484 
485  $ref_ids = array_unique($ref_ids);
486 
487  $xmlResultSet = new ilXMLResultSet();
488  $xmlResultSet->addColumn("ref_id");
489  $xmlResultSet->addColumn("xml");
490  $xmlResultSet->addColumn("parent_ref_id");
491 
492  global $DIC;
493 
494  $ilUser = $DIC['ilUser'];
495  //#18004
496  // Enable to see own participations by reducing the needed permissions
497  $permission = $user_id === $ilUser->getId() ? 'read' : 'write';
498 
499  foreach ($ref_ids as $course_id) {
500  $course_obj = $this->checkObjectAccess($course_id, ['crs'], $permission, true);
501  if ($course_obj instanceof ilObjCourse) {
502  $row = new ilXMLResultSetRow();
503  $row->setValue("ref_id", $course_id);
504  $xmlWriter = new ilCourseXMLWriter($course_obj);
505  $xmlWriter->setAttachUsers(false);
506  $xmlWriter->start();
507  $row->setValue("xml", $xmlWriter->getXML());
508  $row->setValue("parent_ref_id", $tree->getParentId($course_id));
509  $xmlResultSet->addRow($row);
510  }
511  }
512  $xmlResultSetWriter = new ilXMLResultSetWriter($xmlResultSet);
513  $xmlResultSetWriter->start();
514  return $xmlResultSetWriter->getXML();
515  }
516 }
addCourse(string $sid, int $target_id, string $crs_xml)
XML Writer for XMLResultSet.
static _getAllReferences(int $id)
get all reference ids for object ID
deleteAll()
Definition: class.ilMD.php:302
raiseError(string $a_message, $a_code)
Row Class for XMLResultSet.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getCoursesForUser(string $sid, string $parameters)
static _lookupObjId(int $ref_id)
static _deleteAll(int $a_obj_id)
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
$ref_id
Definition: ltiauth.php:65
static _getInstanceByObjId(int $a_obj_id)
$log
Definition: result.php:32
static getObjectsForOwner(string $object_type, int $owner_id)
returns all objects of an owner, filtered by type, objects are not deleted!
deleteCourse(string $sid, int $course_id)
static _isInTrash(int $ref_id)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
global $DIC
Definition: shib_login.php:22
checkObjectAccess(int $ref_id, array $expected_type, string $permission, bool $returnObject=false)
check access for ref id: expected type, permission, return object instance if returnobject is true ...
excludeCourseMember(string $sid, int $course_id, int $user_id)
const ROLE_FOLDER_ID
Definition: constants.php:34
assignCourseMember(string $sid, int $course_id, int $user_id, string $type)
static _deleteAllEntries(int $a_obj_id)
Delete all entries Normally called in case of object deletion.
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
static _lookupType(int $id, bool $reference=false)
XML writer class Class to simplify manual writing of xml documents.
static __extractRefId(string $role_title)
extract ref id from role title, e.g.
$r