ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilNusoapUserAdministrationAdapter.php
Go to the documentation of this file.
1 <?php
2 
37 
38 require_once __DIR__ . '/../lib/nusoap.php';
39 require_once __DIR__ . '/../include/inc.soap_functions.php';
40 
42 {
44 
45  public function __construct(bool $a_use_wsdl = true)
46  {
47  define('SERVICE_NAME', 'ILIASSoapWebservice');
48  define('SERVICE_NAMESPACE', 'urn:ilUserAdministration');
49  define('SERVICE_STYLE', 'rpc');
50  define('SERVICE_USE', 'encoded');
51  $this->server = new soap_server();
52  $this->server->decode_utf8 = false;
53  $this->server->class = "ilSoapFunctions";
54 
55  if ($a_use_wsdl) {
56  global $DIC;
57  $this->enableWSDL($DIC->settings());
58  }
59 
60  $this->registerMethods();
61  }
62 
63  public function start(): void
64  {
65  $postdata = file_get_contents("php://input");
66  $this->server->service($postdata);
67  exit();
68  }
69 
70  private function enableWSDL(ilSetting $setting): void
71  {
72  $this->server->configureWSDL(SERVICE_NAME, SERVICE_NAMESPACE);
73  $internal_path = $setting->get('soap_internal_wsdl_path', '');
74  if ($internal_path) {
75  $this->server->addInternalPort(SERVICE_NAME, $internal_path);
76  }
77  }
78 
79  private function registerMethods(): void
80  {
81  // Add useful complex types. E.g. array("a","b") or array(1,2)
82  $this->server->wsdl->addComplexType(
83  'intArray',
84  'complexType',
85  'array',
86  '',
87  'SOAP-ENC:Array',
88  array(),
89  array(array('ref' => 'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'xsd:int[]')),
90  'xsd:int'
91  );
92 
93  $this->server->wsdl->addComplexType(
94  'stringArray',
95  'complexType',
96  'array',
97  '',
98  'SOAP-ENC:Array',
99  array(),
100  array(array('ref' => 'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'xsd:string[]')),
101  'xsd:string'
102  );
103 
104  $this->server->wsdl->addComplexType(
105  'doubleArray',
106  'complexType',
107  'array',
108  '',
109  'SOAP-ENC:Array',
110  array(),
111  array(array('ref' => 'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'xsd:double[]')),
112  'xsd:double'
113  );
114 
115  // It's not possible to register classes in nusoap
116 
117  // login()
118  $this->server->register(
119  'login',
120  array('client' => 'xsd:string',
121  'username' => 'xsd:string',
122  'password' => 'xsd:string'
123  ),
124  array('sid' => 'xsd:string'),
125  SERVICE_NAMESPACE,
126  SERVICE_NAMESPACE . '#login',
127  SERVICE_STYLE,
128  SERVICE_USE,
129  'ILIAS login function'
130  );
131 
132  // logout()
133  $this->server->register(
134  'logout',
135  array('sid' => 'xsd:string'),
136  array('success' => 'xsd:boolean'),
137  SERVICE_NAMESPACE,
138  SERVICE_NAMESPACE . '#logout',
139  SERVICE_STYLE,
140  SERVICE_USE,
141  'ILIAS logout function'
142  );
143  // user_data definitions
144  $this->server->wsdl->addComplexType(
145  'ilUserData',
146  'complexType',
147  'struct',
148  'all',
149  '',
150  array('usr_id' => array('name' => 'usr_id', 'type' => 'xsd:int'),
151  'login' => array('name' => 'login', 'type' => 'xsd:string'),
152  'passwd' => array('name' => 'passwd', 'type' => 'xsd:string'),
153  'firstname' => array('name' => 'firstname', 'type' => 'xsd:string'),
154  'lastname' => array('name' => 'lastname', 'type' => 'xsd:string'),
155  'title' => array('name' => 'title', 'type' => 'xsd:string'),
156  'gender' => array('name' => 'gender', 'type' => 'xsd:string'),
157  'email' => array('name' => 'email', 'type' => 'xsd:string'),
158  'second_email' => array('name' => 'second_email', 'type' => 'xsd:string'),
159  'institution' => array('name' => 'institution', 'type' => 'xsd:string'),
160  'street' => array('name' => 'street', 'type' => 'xsd:string'),
161  'city' => array('name' => 'city', 'type' => 'xsd:string'),
162  'zipcode' => array('name' => 'zipcode', 'type' => 'xsd:string'),
163  'country' => array('name' => 'country', 'type' => 'xsd:string'),
164  'phone_office' => array('name' => 'phone_office', 'type' => 'xsd:string'),
165  'last_login' => array('name' => 'last_login', 'type' => 'xsd:string'),
166  'last_update' => array('name' => 'last_update', 'type' => 'xsd:string'),
167  'create_date' => array('name' => 'create_date', 'type' => 'xsd:string'),
168  'hobby' => array('name' => 'hobby', 'type' => 'xsd:string'),
169  'department' => array('name' => 'department', 'type' => 'xsd:string'),
170  'phone_home' => array('name' => 'phone_home', 'type' => 'xsd:string'),
171  'phone_mobile' => array('name' => 'phone_mobile', 'type' => 'xsd:string'),
172  'fax' => array('name' => 'fax', 'type' => 'xsd:string'),
173  'time_limit_owner' => array('name' => 'time_limit_owner', 'type' => 'xsd:int'),
174  'time_limit_unlimited' => array('name' => 'time_limit_unlimited', 'type' => 'xsd:int'),
175  'time_limit_from' => array('name' => 'time_limit_from', 'type' => 'xsd:int'),
176  'time_limit_until' => array('name' => 'time_limit_until', 'type' => 'xsd:int'),
177  'time_limit_message' => array('name' => 'time_limit_message', 'type' => 'xsd:int'),
178  'referral_comment' => array('name' => 'referral_comment', 'type' => 'xsd:string'),
179  'matriculation' => array('name' => 'matriculation', 'type' => 'xsd:string'),
180  'active' => array('name' => 'active', 'type' => 'xsd:int'),
181  'accepted_agreement' => array('name' => 'accepted_agreement', 'type' => 'xsd:boolean'),
182  'approve_date' => array('name' => 'approve_date', 'type' => 'xsd:string'),
183  'user_skin' => array('name' => 'user_skin', 'type' => 'xsd:string'),
184  'user_style' => array('name' => 'user_style', 'type' => 'xsd:string'),
185  'user_language' => array('name' => 'user_language', 'type' => 'xsd:string'),
186  'import_id' => array('name' => 'import_id', 'type' => 'xsd:string')
187  )
188  );
189 
190  // lookupUser()
191  $this->server->register(
192  'lookupUser',
193  array('sid' => 'xsd:string',
194  'user_name' => 'xsd:string'
195  ),
196  array('usr_id' => 'xsd:int'),
197  SERVICE_NAMESPACE,
198  SERVICE_NAMESPACE . '#lookupUser',
199  SERVICE_STYLE,
200  SERVICE_USE,
201  'ILIAS lookupUser(): check if username exists. Return usr_id or 0 if lookup fails.'
202  );
203 
204 
205  // addCourse()
206  $this->server->register(
207  'addCourse',
208  array('sid' => 'xsd:string',
209  'target_id' => 'xsd:int',
210  'crs_xml' => 'xsd:string'
211  ),
212  array('course_id' => 'xsd:int'),
213  SERVICE_NAMESPACE,
214  SERVICE_NAMESPACE . '#addCourse',
215  SERVICE_STYLE,
216  SERVICE_USE,
217  'ILIAS addCourse(). Course import. See ilias_course_0_1.dtd for details about course xml structure'
218  );
219 
220  // deleteCourse()
221  $this->server->register(
222  'deleteCourse',
223  array('sid' => 'xsd:string',
224  'course_id' => 'xsd:int'
225  ),
226  array('success' => 'xsd:boolean'),
227  SERVICE_NAMESPACE,
228  SERVICE_NAMESPACE . '#deleteCourse',
229  SERVICE_STYLE,
230  SERVICE_USE,
231  'ILIAS deleteCourse(). Deletes a course. Delete courses are stored in "Trash" and can be undeleted in ' .
232  ' the ILIAS administration. '
233  );
234  // startBackgroundTaskWorker()
235  $this->server->register(
236  AsyncTaskManager::CMD_START_WORKER,
237  array('sid' => 'xsd:string'),
238  array('success' => 'xsd:boolean'),
239  SERVICE_NAMESPACE,
240  SERVICE_NAMESPACE . '#' . AsyncTaskManager::CMD_START_WORKER,
241  SERVICE_STYLE,
242  SERVICE_USE,
243  'ILIAS ' . AsyncTaskManager::CMD_START_WORKER . '().'
244  );
245 
246  // assignCourseMember()
247  $this->server->register(
248  'assignCourseMember',
249  array('sid' => 'xsd:string',
250  'course_id' => 'xsd:int',
251  'user_id' => 'xsd:int',
252  'type' => 'xsd:string'
253  ),
254  array('success' => 'xsd:boolean'),
255  SERVICE_NAMESPACE,
256  SERVICE_NAMESPACE . '#assignCourseMember',
257  SERVICE_STYLE,
258  SERVICE_USE,
259  'ILIAS assignCourseMember(). Assigns an user to an existing course. Type should be "Admin", "Tutor" or "Member"'
260  );
261 
262  // excludeCourseMember()
263  $this->server->register(
264  'excludeCourseMember',
265  array('sid' => 'xsd:string',
266  'course_id' => 'xsd:int',
267  'user_id' => 'xsd:int'
268  ),
269  array('success' => 'xsd:boolean'),
270  SERVICE_NAMESPACE,
271  SERVICE_NAMESPACE . '#excludeCourseMember',
272  SERVICE_STYLE,
273  SERVICE_USE,
274  'ILIAS excludeCourseMember(). Excludes an user from an existing course.'
275  );
276 
277  // isAssignedToCourse()
278  $this->server->register(
279  'isAssignedToCourse',
280  array('sid' => 'xsd:string',
281  'course_id' => 'xsd:int',
282  'user_id' => 'xsd:int'
283  ),
284  array('role' => 'xsd:int'),
285  SERVICE_NAMESPACE,
286  SERVICE_NAMESPACE . '#isAssignedToCourse',
287  SERVICE_STYLE,
288  SERVICE_USE,
289  'ILIAS isAssignedToCourse(). Checks whether an user is assigned to a given course. ' .
290  'Returns 0 => not assigned, 1 => course admin, 2 => course member or 3 => course tutor'
291  );
292 
293  // getCourseXML($sid,$course_id)
294  $this->server->register(
295  'getCourseXML',
296  array('sid' => 'xsd:string',
297  'course_id' => 'xsd:int'
298  ),
299  array('xml' => 'xsd:string'),
300  SERVICE_NAMESPACE,
301  SERVICE_NAMESPACE . '#getCourseXML',
302  SERVICE_STYLE,
303  SERVICE_USE,
304  'ILIAS getCourseXML(). Get a xml description of a specific course.'
305  );
306 
307  // updateCourse($sid,$course_id,$xml)
308  $this->server->register(
309  'updateCourse',
310  array('sid' => 'xsd:string',
311  'course_id' => 'xsd:int',
312  'xml' => 'xsd:string'
313  ),
314  array('success' => 'xsd:boolean'),
315  SERVICE_NAMESPACE,
316  SERVICE_NAMESPACE . '#updateCourse',
317  SERVICE_STYLE,
318  SERVICE_USE,
319  'ILIAS updateCourse(). Update course settings, assigned members, tutors, administrators with a ' .
320  'given xml description'
321  );
322 
323  // get obj_id by import id
324  $this->server->register(
325  'getObjIdByImportId',
326  array('sid' => 'xsd:string',
327  'import_id' => 'xsd:string'
328  ),
329  array('obj_id' => 'xsd:int'),
330  SERVICE_NAMESPACE,
331  SERVICE_NAMESPACE . '#getCourseIdByImportId',
332  SERVICE_STYLE,
333  SERVICE_USE,
334  'ILIAS getObjIdByImportId(). Get the obj_id of an ILIAS obj by a given import id.'
335  );
336 
337  // get ref ids by import id
338  $this->server->register(
339  'getRefIdsByImportId',
340  array('sid' => 'xsd:string',
341  'import_id' => 'xsd:string'
342  ),
343  array('ref_ids' => 'tns:intArray'),
344  SERVICE_NAMESPACE,
345  SERVICE_NAMESPACE . '#getRefIdsByImportId',
346  SERVICE_STYLE,
347  SERVICE_USE,
348  'ILIAS getRefIdsByImportId(). Get all reference ids by a given import id.'
349  );
350 
351  // get obj_id by import id
352  $this->server->register(
353  'getRefIdsByObjId',
354  array('sid' => 'xsd:string',
355  'obj_id' => 'xsd:string'
356  ),
357  array('ref_ids' => 'tns:intArray'),
358  SERVICE_NAMESPACE,
359  SERVICE_NAMESPACE . '#getRefIdsByObjId',
360  SERVICE_STYLE,
361  SERVICE_USE,
362  'ILIAS getRefIdsByObjId(). Get all reference ids by a given object id.'
363  );
364 
365  // Object administration
366  $this->server->register(
367  'getObjectByReference',
368  array('sid' => 'xsd:string',
369  'reference_id' => 'xsd:int',
370  'user_id' => 'xsd:int'
371  ),
372  array('object_xml' => 'xsd:string'),
373  SERVICE_NAMESPACE,
374  SERVICE_NAMESPACE . '#getObjectByReference',
375  SERVICE_STYLE,
376  SERVICE_USE,
377  'ILIAS getObjectByReference(). Get XML-description of an ILIAS object. If a user id is given, ' .
378  'this methods also checks the permissions of that user on the object.'
379  );
380 
381  $this->server->register(
382  'getObjectsByTitle',
383  array('sid' => 'xsd:string',
384  'title' => 'xsd:string',
385  'user_id' => 'xsd:int'
386  ),
387  array('object_xml' => 'xsd:string'),
388  SERVICE_NAMESPACE,
389  SERVICE_NAMESPACE . '#getObjectsByTitle',
390  SERVICE_STYLE,
391  SERVICE_USE,
392  'ILIAS getObjectsByTitle(). Get XML-description of an ILIAS object with given title. ' .
393  'If a user id is given this method also checks the permissions of that user on the object.'
394  );
395 
396  $this->server->register(
397  'searchObjects',
398  array('sid' => 'xsd:string',
399  'types' => 'tns:stringArray',
400  'key' => 'xsd:string',
401  'combination' => 'xsd:string',
402  'user_id' => 'xsd:int'
403  ),
404  array('object_xml' => 'xsd:string'),
405  SERVICE_NAMESPACE,
406  SERVICE_NAMESPACE . '#searchObjects',
407  SERVICE_STYLE,
408  SERVICE_USE,
409  'ILIAS searchObjects(): Searches for objects. Key is within "title" or "description" ' .
410  'Typical calls are searchObject($sid,array("lm","crs"),"\"this and that\"","and"); ' .
411  ' If an optional user id is given, this methods also return the permissions for that user ' .
412  'on the found objects'
413  );
414 
415  $this->server->register(
416  'getTreeChilds',
417  array('sid' => 'xsd:string',
418  'ref_id' => 'xsd:int',
419  'types' => 'tns:stringArray',
420  'user_id' => 'xsd:int'
421  ),
422  array('object_xml' => 'xsd:string'),
423  SERVICE_NAMESPACE,
424  SERVICE_NAMESPACE . '#getTreeChilds',
425  SERVICE_STYLE,
426  SERVICE_USE,
427  'ILIAS getTreeChilds(): Get all child objects of a given object.' .
428  'Choose array of types to filter the output. Choose empty type array to receive all object types'
429  );
430 
431  $this->server->register(
432  'getXMLTree',
433  array('sid' => 'xsd:string',
434  'ref_id' => 'xsd:int',
435  'types' => 'tns:stringArray',
436  'user_id' => 'xsd:int'
437  ),
438  array('object_xml' => 'xsd:string'),
439  SERVICE_NAMESPACE,
440  SERVICE_NAMESPACE . '#getXMLTree',
441  SERVICE_STYLE,
442  SERVICE_USE,
443  'ILIAS getXMLTree(): Returns a xml stream with the subtree objects.'
444  );
445 
446  $this->server->register(
447  'addObject',
448  array('sid' => 'xsd:string',
449  'target_id' => 'xsd:int',
450  'object_xml' => 'xsd:string'
451  ),
452  array('ref_id' => 'xsd:int'),
453  SERVICE_NAMESPACE,
454  SERVICE_NAMESPACE . '#addObject',
455  SERVICE_STYLE,
456  SERVICE_USE,
457  'ILIAS addObject. Create new object based on xml description under a given node ' .
458  '("category,course,group or folder). Return created reference id of the new object.'
459  );
460 
461  $this->server->register(
462  'updateObjects',
463  array('sid' => 'xsd:string',
464  'object_xml' => 'xsd:string'
465  ),
466  array('success' => 'xsd:boolean'),
467  SERVICE_NAMESPACE,
468  SERVICE_NAMESPACE . '#updateObjects',
469  SERVICE_STYLE,
470  SERVICE_USE,
471  'ILIAS updateObjects. Update object data (title,description,owner)'
472  );
473 
474  $this->server->register(
475  'addReference',
476  array('sid' => 'xsd:string',
477  'source_id' => 'xsd:int',
478  'target_id' => 'xsd:int'
479  ),
480  array('ref_id' => 'xsd:int'),
481  SERVICE_NAMESPACE,
482  SERVICE_NAMESPACE . '#addReference',
483  SERVICE_STYLE,
484  SERVICE_USE,
485  'ILIAS addReference. Create new link of given object to new object. Return the new reference id'
486  );
487 
488  $this->server->register(
489  'deleteObject',
490  array('sid' => 'xsd:string',
491  'reference_id' => 'xsd:int'
492  ),
493  array('success' => 'xsd:boolean'),
494  SERVICE_NAMESPACE,
495  SERVICE_NAMESPACE . '#deleteObject',
496  SERVICE_STYLE,
497  SERVICE_USE,
498  'ILIAS deleteObject. Stores object in trash. If multiple references exist, only the reference is deleted '
499  );
500 
501  $this->server->register(
502  'removeFromSystemByImportId',
503  array('sid' => 'xsd:string',
504  'import_id' => 'xsd:string'
505  ),
506  array('success' => 'xsd:boolean'),
507  SERVICE_NAMESPACE,
508  SERVICE_NAMESPACE . '#removeFromSystemByImportId',
509  SERVICE_STYLE,
510  SERVICE_USE,
511  'ILIAS removeFromSystemByImportId(). Removes an object identified by its import id permanently from the ' .
512  'system. All data will be deleted. There will be no possibility to restore it from the trash. Do not use ' .
513  'this function for deleting roles or users. Use deleteUser() or deleteRole() instead.'
514  );
515 
516  $this->server->register(
517  'addUserRoleEntry',
518  array('sid' => 'xsd:string',
519  'user_id' => 'xsd:int',
520  'role_id' => 'xsd:int'
521  ),
522  array('success' => 'xsd:boolean'),
523  SERVICE_NAMESPACE,
524  SERVICE_NAMESPACE . '#addUserRoleEntry',
525  SERVICE_STYLE,
526  SERVICE_USE,
527  'ILIAS addUserRoleEntry. Assign user to role.'
528  );
529 
530  $this->server->register(
531  'deleteUserRoleEntry',
532  array('sid' => 'xsd:string',
533  'user_id' => 'xsd:int',
534  'role_id' => 'xsd:int'
535  ),
536  array('success' => 'xsd:boolean'),
537  SERVICE_NAMESPACE,
538  SERVICE_NAMESPACE . '#deleteUserRoleEntry',
539  SERVICE_STYLE,
540  SERVICE_USE,
541  'ILIAS deleteUserRoleEntry. Deassign user from role.'
542  );
543 
544  // Add complex type for operations e.g array(array('name' => 'read','ops_id' => 2),...)
545  $this->server->wsdl->addComplexType(
546  'ilOperation',
547  'complexType',
548  'struct',
549  'all',
550  '',
551  array('ops_id' => array('name' => 'ops_id',
552  'type' => 'xsd:int'
553  ),
554  'operation' => array('name' => 'operation',
555  'type' => 'xsd:string'
556  ),
557  'description' => array('name' => 'description',
558  'type' => 'xsd:string'
559  )
560  )
561  );
562  // Now create an array of ilOperations
563  $this->server->wsdl->addComplexType(
564  'ilOperations',
565  'complexType',
566  'array',
567  '',
568  'SOAP-ENC:Array',
569  array(),
570  array(array('ref' => 'SOAP-ENC:arrayType',
571  'wsdl:arrayType' => 'tns:ilOperation[]'
572  )
573  ),
574  'tns:ilOperation'
575  );
576  $this->server->register(
577  'getOperations',
578  array('sid' => 'xsd:string'),
579  array('operations' => 'tns:ilOperations'),
580  SERVICE_NAMESPACE,
581  SERVICE_NAMESPACE . '#getOperations',
582  SERVICE_STYLE,
583  SERVICE_USE,
584  'ILIAS getOperations(): get complete set of RBAC operations.'
585  );
586 
587  $this->server->register(
588  'revokePermissions',
589  array('sid' => 'xsd:string',
590  'ref_id' => 'xsd:int',
591  'role_id' => 'xsd:int'
592  ),
593  array('success' => 'xsd:boolean'),
594  SERVICE_NAMESPACE,
595  SERVICE_NAMESPACE . '#revokePermissions',
596  SERVICE_STYLE,
597  SERVICE_USE,
598  'ILIAS revokePermissions(): Revoke all permissions for a specific role on an object.'
599  );
600 
601  $this->server->wsdl->addComplexType(
602  'ilOperationIds',
603  'complexType',
604  'array',
605  '',
606  'SOAP-ENC:Array',
607  array(),
608  array(array('ref' => 'SOAP-ENC:arrayType',
609  'wsdl:arrayType' => 'xsd:int[]'
610  )
611  ),
612  'xsd:int'
613  );
614 
615  $this->server->register(
616  'grantPermissions',
617  array('sid' => 'xsd:string',
618  'ref_id' => 'xsd:int',
619  'role_id' => 'xsd:int',
620  'operations' => 'tns:intArray'
621  ),
622  array('success' => 'xsd:boolean'),
623  SERVICE_NAMESPACE,
624  SERVICE_NAMESPACE . '#grantPermissions',
625  SERVICE_STYLE,
626  SERVICE_USE,
627  'ILIAS grantPermissions(): Grant permissions for a specific role on an object. ' .
628  '(Substitutes existing permission settings)'
629  );
630 
631  $this->server->register(
632  'getLocalRoles',
633  array('sid' => 'xsd:string',
634  'ref_id' => 'xsd:int'
635  ),
636  array('role_xml' => 'xsd:string'),
637  SERVICE_NAMESPACE,
638  SERVICE_NAMESPACE . '#getLocalRoles',
639  SERVICE_STYLE,
640  SERVICE_USE,
641  'ILIAS getLocalRoles(): Get all local roles assigned to an specific object.'
642  );
643 
644  $this->server->register(
645  'getUserRoles',
646  array('sid' => 'xsd:string',
647  'user_id' => 'xsd:int'
648  ),
649  array('role_xml' => 'xsd:string'),
650  SERVICE_NAMESPACE,
651  SERVICE_NAMESPACE . '#getLocalRoles',
652  SERVICE_STYLE,
653  SERVICE_USE,
654  'ILIAS getUserRoles(): Get all local roles assigned to an specific user. '
655  );
656 
657  $this->server->register(
658  'addRole',
659  array('sid' => 'xsd:string',
660  'target_id' => 'xsd:int',
661  'obj_xml' => 'xsd:string'
662  ),
663  array('role_ids' => 'tns:intArray'),
664  SERVICE_NAMESPACE,
665  SERVICE_NAMESPACE . '#addRole',
666  SERVICE_STYLE,
667  SERVICE_USE,
668  'ILIAS addRole(): Creates new role under given node. "target_id" is the reference id of an ILIAS ' .
669  'ILIAS object. E.g ref_id of crs,grp. If no role folder exists, a new role folder will be created.'
670  );
671 
672  $this->server->register(
673  'deleteRole',
674  array('sid' => 'xsd:string',
675  'role_id' => 'xsd:int'
676  ),
677  array('success' => 'xsd:boolean'),
678  SERVICE_NAMESPACE,
679  SERVICE_NAMESPACE . '#deleteRole',
680  SERVICE_STYLE,
681  SERVICE_USE,
682  'ILIAS deleteRole(): Deletes an role and all user assignments. Fails if it is the last role of an user'
683  );
684 
685  $this->server->register(
686  'addRoleFromTemplate',
687  array('sid' => 'xsd:string',
688  'target_id' => 'xsd:int',
689  'obj_xml' => 'xsd:string',
690  'role_template_id' => 'xsd:int'
691  ),
692  array('role_ids' => 'tns:intArray'),
693  SERVICE_NAMESPACE,
694  SERVICE_NAMESPACE . '#addRole',
695  SERVICE_STYLE,
696  SERVICE_USE,
697  'ILIAS addRole(): Creates new role under given node. "target_id" is the reference id of an ILIAS ' .
698  'ILIAS object. E.g ref_id of crs,grp. If no role folder exists, a new role folder will be created. ' .
699  'In addition to addRole the template permissions will be copied from the given role template'
700  );
701 
702  $this->server->register(
703  'getObjectTreeOperations',
704  array('sid' => 'xsd:string',
705  'ref_id' => 'xsd:int',
706  'user_id' => 'xsd:int'
707  ),
708  array('operations' => 'tns:ilOperations'),
709  SERVICE_NAMESPACE,
710  SERVICE_NAMESPACE . '#getPermissionsForObject',
711  SERVICE_STYLE,
712  SERVICE_USE,
713  'ILIAS getObjectTreeOperations(): Get all granted permissions for all references of ' .
714  'an object for a specific user. Returns array of granted operations or empty array'
715  );
716 
717  $this->server->register(
718  'addGroup',
719  array('sid' => 'xsd:string',
720  'target_id' => 'xsd:int',
721  'group_xml' => 'xsd:string'
722  ),
723  array('ref_id' => 'xsd:int'),
724  SERVICE_NAMESPACE,
725  SERVICE_NAMESPACE . '#addGroup',
726  SERVICE_STYLE,
727  SERVICE_USE,
728  'ILIAS addGroup(): Add grop according to valid group XML ' .
729  '@See ilias_group_0_1.dtd'
730  );
731 
732  $this->server->register(
733  'groupExists',
734  array('sid' => 'xsd:string',
735  'title' => 'xsd:string'
736  ),
737  array('exists' => 'xsd:boolean'),
738  SERVICE_NAMESPACE,
739  SERVICE_NAMESPACE . '#groupExists',
740  SERVICE_STYLE,
741  SERVICE_USE,
742  'ILIAS addGroup(): Check if group with given name exists. '
743  );
744 
745  // getGroup
746  $this->server->register(
747  'getGroup',
748  array('sid' => 'xsd:string',
749  'ref_id' => 'xsd:int'
750  ),
751  array('group_xml' => 'xsd:string'),
752  SERVICE_NAMESPACE,
753  SERVICE_NAMESPACE . '#getGroup',
754  SERVICE_STYLE,
755  SERVICE_USE,
756  'ILIAS getGroup(): get xml description of grouip with given reference id.'
757  );
758 
759  // assignGroupMember()
760  $this->server->register(
761  'assignGroupMember',
762  array('sid' => 'xsd:string',
763  'group_id' => 'xsd:int',
764  'user_id' => 'xsd:int',
765  'type' => 'xsd:string'
766  ),
767  array('success' => 'xsd:boolean'),
768  SERVICE_NAMESPACE,
769  SERVICE_NAMESPACE . '#assignGroupMember',
770  SERVICE_STYLE,
771  SERVICE_USE,
772  'ILIAS assignGroupMember(). Assigns an user to an existing group. Type should be "Admin","Member"'
773  );
774 
775  // excludeGroupMember()
776  $this->server->register(
777  'excludeGroupMember',
778  array('sid' => 'xsd:string',
779  'group_id' => 'xsd:int',
780  'user_id' => 'xsd:int'
781  ),
782  array('success' => 'xsd:boolean'),
783  SERVICE_NAMESPACE,
784  SERVICE_NAMESPACE . '#excludeGroupMember',
785  SERVICE_STYLE,
786  SERVICE_USE,
787  'ILIAS excludeGroupMember(). Excludes an user from an existing group.'
788  );
789 
790  // isAssignedToGroup()
791  $this->server->register(
792  'isAssignedToGroup',
793  array('sid' => 'xsd:string',
794  'group_id' => 'xsd:int',
795  'user_id' => 'xsd:int'
796  ),
797  array('role' => 'xsd:int'),
798  SERVICE_NAMESPACE,
799  SERVICE_NAMESPACE . '#isAssignedToGroup',
800  SERVICE_STYLE,
801  SERVICE_USE,
802  'ILIAS isAssignedToGroup(). Checks whether an user is assigned to a given group. ' .
803  'Returns 0 => not assigned, 1 => group admin, 2 => group member'
804  );
805 
806 
807  // Clone functions
808  $this->server->register(
809  'ilClone',
810  array('sid' => 'xsd:string', 'copy_identifier' => 'xsd:int'),
811  array('new_ref_id' => 'xsd:int'),
812  SERVICE_NAMESPACE,
813  SERVICE_NAMESPACE . '#ilClone',
814  SERVICE_STYLE,
815  SERVICE_USE,
816  'ILIAS ilClone(): Only for internal usage.' .
817  'Syntax, parameters may change in future releases. '
818  );
819 
820  $this->server->register(
821  'ilCloneDependencies',
822  array('sid' => 'xsd:string', 'copy_identifier' => 'xsd:int'),
823  array('success' => 'xsd:boolean'),
824  SERVICE_NAMESPACE,
825  SERVICE_NAMESPACE . '#ilCloneDependencies',
826  SERVICE_STYLE,
827  SERVICE_USE,
828  'ILIAS ilCloneDependencies(): Only for internal usage.' .
829  'Syntax, parameters may change in future releases. '
830  );
831 
832 
833  $this->server->register(
834  'saveQuestion',
835  array('sid' => 'xsd:string',
836  'active_id' => 'xsd:long',
837  'question_id' => 'xsd:long',
838  'pass' => 'xsd:int',
839  'solution' => 'tns:stringArray'
840  ),
841  array('status' => 'xsd:boolean'),
842  SERVICE_NAMESPACE,
843  SERVICE_NAMESPACE . '#saveQuestion',
844  SERVICE_STYLE,
845  SERVICE_USE,
846  'ILIAS saveQuestion: Saves the result of a question in a given test pass for the active test user. The active user is identified by the active ID, which assigns a user to a test.'
847  );
848 
849  $this->server->register(
850  'saveQuestionSolution',
851  array('sid' => 'xsd:string',
852  'active_id' => 'xsd:long',
853  'question_id' => 'xsd:long',
854  'pass' => 'xsd:int',
855  'solution' => 'xsd:string'
856  ),
857  array('status' => 'xsd:string'),
858  SERVICE_NAMESPACE,
859  SERVICE_NAMESPACE . '#saveQuestionSolution',
860  SERVICE_STYLE,
861  SERVICE_USE,
862  'ILIAS saveQuestionSolution: Saves the result of a question in a given test pass for the active test user. The active user is identified by the active ID, which assigns a user to a test. The solution has to be an XML string which contains &lt;values&gt;&lt;value&gt;VALUE&lt;/value&gt;&lt;value&gt;VALUE&lt;/value&gt;&lt;points&gt;POINTS&lt;/points&gt;...&lt;/values&gt; where the triplet (value,value,points) can repeat n times. The result string is either TRUE or it contains an error message.'
863  );
864 
865  $this->server->register(
866  'getQuestionSolution',
867  array('sid' => 'xsd:string',
868  'active_id' => 'xsd:long',
869  'question_id' => 'xsd:int',
870  'pass' => 'xsd:int'
871  ),
872  array('solution' => 'tns:stringArray'),
873  SERVICE_NAMESPACE,
874  SERVICE_NAMESPACE . '#getQuestionSolution',
875  SERVICE_STYLE,
876  SERVICE_USE,
877  'ILIAS getQuestionSolution: Typically called from external assessment questions to retrieve the previous input of a user.'
878  );
879 
880  $this->server->register(
881  'getTestUserData',
882  array('sid' => 'xsd:string',
883  'active_id' => 'xsd:long'
884  ),
885  array('userdata' => 'tns:stringArray'),
886  SERVICE_NAMESPACE,
887  SERVICE_NAMESPACE . '#getTestUserData',
888  SERVICE_STYLE,
889  SERVICE_USE,
890  'ILIAS getTestUserData: Typically called from external assessment questions to retrieve data of the active user. The returned string array values are fullname, title, firstname, lastname, login.'
891  );
892 
893  $this->server->register(
894  'getPositionOfQuestion',
895  array('sid' => 'xsd:string',
896  'active_id' => 'xsd:long',
897  'question_id' => 'xsd:int',
898  'pass' => 'xsd:int'
899  ),
900  array('position' => 'xsd:int'),
901  SERVICE_NAMESPACE,
902  SERVICE_NAMESPACE . '#getPositionOfQuestion',
903  SERVICE_STYLE,
904  SERVICE_USE,
905  'ILIAS getPositionOfQuestion: Returns the position of a given question for a given user in a given test pass.'
906  );
907 
908  $this->server->register(
909  'getPreviousReachedPoints',
910  array('sid' => 'xsd:string',
911  'active_id' => 'xsd:long',
912  'question_id' => 'xsd:int',
913  'pass' => 'xsd:int'
914  ),
915  array('position' => 'tns:doubleArray'),
916  SERVICE_NAMESPACE,
917  SERVICE_NAMESPACE . '#getPreviousReachedPoints',
918  SERVICE_STYLE,
919  SERVICE_USE,
920  'ILIAS getPreviousReachedPoints: Returns an array of reached points for the previous questions in a given test pass.'
921  );
922 
923  $this->server->register(
924  'getNrOfQuestionsInPass',
925  array('sid' => 'xsd:string',
926  'active_id' => 'xsd:long',
927  'pass' => 'xsd:int'
928  ),
929  array('count' => 'xsd:int'),
930  SERVICE_NAMESPACE,
931  SERVICE_NAMESPACE . '#getNrOfQuestionsInPass',
932  SERVICE_STYLE,
933  SERVICE_USE,
934  'ILIAS getNrOfQuestionsInPass: Returns the question count for a given test user in a given pass.'
935  );
936 
937  $this->server->register(
938  'getStructureObjects',
939  array('sid' => 'xsd:string',
940  'ref_id' => 'xsd:int'
941  ),
942  array('xml' => 'xsd:string'),
943  SERVICE_NAMESPACE,
944  SERVICE_NAMESPACE . '#getStructureObjects',
945  SERVICE_STYLE,
946  SERVICE_USE,
947  'ILIAS getStructureObjects: delivers structure of content objects like learning modules (chapters/pages) or glossary (terms)'
948  );
949 
950  // importUsers()
951  $this->server->register(
952  'importUsers',
953  array('sid' => 'xsd:string',
954  'folder_id' => 'xsd:int',
955  'usr_xml' => 'xsd:string',
956  'conflict_rule' => 'xsd:int',
957  'send_account_mail' => 'xsd:int'
958  ),
959  array('protocol' => 'xsd:string'),
960  SERVICE_NAMESPACE,
961  SERVICE_NAMESPACE . '#importUsers',
962  SERVICE_STYLE,
963  SERVICE_USE,
964  'ILIAS import users into folder id, which should be ref_id of folder or user folder (-1:System user folder, 0: checks access at user level, otherwise refid): conflict_rule: IL_FAIL_ON_CONFLICT = 1, IL_UPDATE_ON_CONFLICT = 2, IL_IGNORE_ON_CONFLICT = 3. The Return-Value is a protocol with the columns userid, login, action, message, following xmlresultset dtd. Send Account Mail = 0 deactivates sending a mail to each user, 1 activates it'
965  );
966 
967  $this->server->register(
968  'getRoles',
969  array('sid' => 'xsd:string',
970  'role_type' => 'xsd:string',
971  'id' => 'xsd:string'
972  ),
973  array('role_xml' => 'xsd:string'),
974  SERVICE_NAMESPACE,
975  SERVICE_NAMESPACE . '#getRoles',
976  SERVICE_STYLE,
977  SERVICE_USE,
978  'ILIAS getRoles():if id equals -1, get all roles specified by type (global|local|user|user_login|template or empty), if type is empty all roles with all types are delivered, if id > -1 and role_type <> user or user_login, delivers all roles which belong to a repository object with specified ref_id, if roletype is user a numeric id is interpreted as userid, if roletype is user_login it is interpreted as login,if roletype is template all role templates will be listed'
979  );
980 
981  $this->server->register(
982  'getUsersForContainer',
983  array('sid' => 'xsd:string',
984  'ref_id' => 'xsd:int',
985  'attach_roles' => 'xsd:int',
986  'active' => 'xsd:int'
987  ),
988  array('user_xml' => 'xsd:string'),
989  SERVICE_NAMESPACE,
990  SERVICE_NAMESPACE . '#getUsersForContainer',
991  SERVICE_STYLE,
992  SERVICE_USE,
993  'ILIAS getUsersForContainer(): get all users of a specific ref_id, which can be crs, group, category or user folder (value: -1). Choose if all roles of a user should be attached (1) or not (0). set active to -1 to get all, 0, to get inactive users only, 1 to get active users only'
994  );
995 
996  $this->server->register(
997  'getUsersForRole',
998  array('sid' => 'xsd:string',
999  'role_id' => 'xsd:int',
1000  'attach_roles' => 'xsd:int',
1001  'active' => 'xsd:int'
1002  ),
1003  array('user_xml' => 'xsd:string'),
1004  SERVICE_NAMESPACE,
1005  SERVICE_NAMESPACE . '#getUsersForRole',
1006  SERVICE_STYLE,
1007  SERVICE_USE,
1008  'ILIAS getUsersForRole(): get all users of a role with specified id, specify attach_roles to 1, to attach all role assignmnents; specify active: 1, to import active only, 0: inactive only, -1: both'
1009  );
1010 
1011  $this->server->register(
1012  'searchUser',
1013  array('sid' => 'xsd:string',
1014  'key_fields' => 'tns:stringArray',
1015  'query_operator' => 'xsd:string',
1016  'key_values' => 'tns:stringArray',
1017  'attach_roles' => 'xsd:int',
1018  'active' => 'xsd:int'
1019  ),
1020  array('user_xml' => 'xsd:string'),
1021  SERVICE_NAMESPACE,
1022  SERVICE_NAMESPACE . '#searchUsers',
1023  SERVICE_STYLE,
1024  SERVICE_USE,
1025  'ILIAS searchUser(): get all users, which match a query, consisting of the keyfields, matched with values of the field values, concatenated with the logical query operator. Specify attach_roles to 1, to attach all role assignmnents; specify active: 1, to import active only, 0: inactive only, -1: both'
1026  );
1027 
1028  // Mail Functions
1029  // Check whether current user has new mail
1030  $this->server->register(
1031  'hasNewMail',
1032  array('sid' => 'xsd:string'),
1033  array('status' => 'xsd:boolean'),
1034  SERVICE_NAMESPACE,
1035  SERVICE_NAMESPACE . '#hasNewMail',
1036  SERVICE_STYLE,
1037  SERVICE_USE,
1038  'ILIAS hasNewMail(): Checks whether the current authenticated user has a new mail.'
1039  );
1040 
1041  $this->server->register(
1042  'getExerciseXML',
1043  array('sid' => 'xsd:string', "ref_id" => 'xsd:int', "attachment_mode" => "xsd:int"),
1044  array('exercisexml' => 'xsd:string'),
1045  SERVICE_NAMESPACE,
1046  SERVICE_NAMESPACE . '#getExerciseXML',
1047  SERVICE_STYLE,
1048  SERVICE_USE,
1049  'ILIAS getExerciseXML(): returns xml description of exercise. Attachment mode: 0 - no file contents, 1 - plain content (base64encoded), 2 zlib + base64, 3 gzip + base64)'
1050  );
1051 
1052  $this->server->register(
1053  'addExercise',
1054  array('sid' => 'xsd:string', "target_id" => 'xsd:int', "xml" => "xsd:string"),
1055  array('refid' => 'xsd:int'),
1056  SERVICE_NAMESPACE,
1057  SERVICE_NAMESPACE . '#addExercise',
1058  SERVICE_STYLE,
1059  SERVICE_USE,
1060  'ILIAS addExercise(): create exercise, put it into target (ref_id) and update exercise properties from xml (see ilias_exercise_3_8.dtd for details). Obj_id must not be set!'
1061  );
1062 
1063  $this->server->register(
1064  'updateExercise',
1065  array('sid' => 'xsd:string', 'ref_id' => 'xsd:int', 'xml' => 'xsd:string'),
1066  array('success' => 'xsd:boolean'),
1067  SERVICE_NAMESPACE,
1068  SERVICE_NAMESPACE . '#updateExercise',
1069  SERVICE_STYLE,
1070  SERVICE_USE,
1071  'ILIAS updateExercise():update existing exercise, update exercise properties from xml (see ilias_exercise_3_8.dtd for details). obj_id in xml must match according obj id of refid.!'
1072  );
1073 
1074  $this->server->register(
1075  'getFileXML',
1076  array('sid' => 'xsd:string', 'ref_id' => 'xsd:int', 'attachment_mode' => 'xsd:int'),
1077  array('filexml' => 'xsd:string'),
1078  SERVICE_NAMESPACE,
1079  SERVICE_NAMESPACE . '#getFileXML',
1080  SERVICE_STYLE,
1081  SERVICE_USE,
1082  'ILIAS getFileXML(): returns xml description of file. Attachment mode: 0 - no file contents, 1 - plain content (base64encoded), 2 zlib + base64, 3 gzip + base64)'
1083  );
1084 
1085  $this->server->register(
1086  'addFile',
1087  array('sid' => 'xsd:string', 'target_id' => 'xsd:int', 'xml' => 'xsd:string'),
1088  array('refid' => 'xsd:int'),
1089  SERVICE_NAMESPACE,
1090  SERVICE_NAMESPACE . '#addFile',
1091  SERVICE_STYLE,
1092  SERVICE_USE,
1093  'ILIAS addFile(): create file, put it into target (ref_id) and update file properties from xml (see ilias_file_3_8.dtd for details). Obj_id must not be set!'
1094  );
1095 
1096  $this->server->register(
1097  'updateFile',
1098  array('sid' => 'xsd:string', 'ref_id' => 'xsd:int', 'xml' => 'xsd:string'),
1099  array('success' => 'xsd:boolean'),
1100  SERVICE_NAMESPACE,
1101  SERVICE_NAMESPACE . '#updateFile',
1102  SERVICE_STYLE,
1103  SERVICE_USE,
1104  'ILIAS updateFile():update existing file, update file properties from xml (see ilias_file_3_8.dtd for details). obj_id in xml must match according obj id of refid.!'
1105  );
1106 
1107  $this->server->register(
1108  'getUserXML',
1109  array('sid' => 'xsd:string', 'user_ids' => 'tns:intArray', 'attach_roles' => 'xsd:int'),
1110  array('xml' => 'xsd:string'),
1111  SERVICE_NAMESPACE,
1112  SERVICE_NAMESPACE . '#resolveUsers',
1113  SERVICE_STYLE,
1114  SERVICE_USE,
1115  'ILIAS getUserXML(): get xml records for user ids, e.g. retrieved vom members of course xml. Returns user xml dtds. ids are numeric ids of user'
1116  );
1117 
1118  // get objs ids by ref id
1119  $this->server->register(
1120  'getObjIdsByRefIds',
1121  array('sid' => 'xsd:string',
1122  'ref_ids' => 'tns:intArray'
1123  ),
1124  array('obj_ids' => 'tns:intArray'),
1125  SERVICE_NAMESPACE,
1126  SERVICE_NAMESPACE . '#getRefIdsByImportId',
1127  SERVICE_STYLE,
1128  SERVICE_USE,
1129  'ILIAS getObjIdsForRefIds: Returns a array of object ids which match the references id, given by a comma seperated string. Returns an array of ref ids, in the same order as object ids. Therefore, there might by duplicates'
1130  );
1131 
1132  $this->server->register(
1133  'updateGroup',
1134  array('sid' => 'xsd:string', 'ref_id' => 'xsd:int', 'xml' => 'xsd:string'),
1135  array('success' => 'xsd:boolean'),
1136  SERVICE_NAMESPACE,
1137  SERVICE_NAMESPACE . '#updateGroup',
1138  SERVICE_STYLE,
1139  SERVICE_USE,
1140  'ILIAS updateGroup(): update existing group using ref id and group xml (see DTD).'
1141  );
1142 
1143  $this->server->register(
1144  'getIMSManifestXML',
1145  array('sid' => 'xsd:string', 'ref_id' => 'xsd:int'),
1146  array('xml' => 'xsd:string'),
1147  SERVICE_NAMESPACE,
1148  SERVICE_NAMESPACE . '#getIMSManifestXML',
1149  SERVICE_STYLE,
1150  SERVICE_USE,
1151  'ILIAS getIMSManifestXML(): returns xml of ims manifest file (scorm learning module) referred by refid'
1152  );
1153 
1154  $this->server->register(
1155  'hasSCORMCertificate',
1156  array('sid' => 'xsd:string', 'ref_id' => 'xsd:int', 'usr_id' => 'xsd:int'),
1157  array('success' => 'xsd:boolean'),
1158  SERVICE_NAMESPACE,
1159  SERVICE_NAMESPACE . '#hasSCORMCertificate',
1160  SERVICE_STYLE,
1161  SERVICE_USE,
1162  'ILIAS hasSCORMCertificate(): returns true if a certficate is available for a user referred by usr_id in a SCORM learning module referred by ref_id'
1163  );
1164 
1165  $this->server->register(
1166  'getSCORMCompletionStatus',
1167  array('sid' => 'xsd:string', 'usr_id' => 'xsd:int', 'ref_id' => 'xsd:int'),
1168  array('status' => 'xsd:string'),
1169  SERVICE_NAMESPACE,
1170  SERVICE_NAMESPACE . '#getSCORMCompletionStatus',
1171  SERVICE_STYLE,
1172  SERVICE_USE,
1173  'ILIAS getSCORMCompletionStatus(): returns a completion status of a scorm module'
1174  );
1175 
1176  $this->server->register(
1177  'copyObject',
1178  array('sid' => 'xsd:string', 'xml' => 'xsd:string'),
1179  array('xml' => 'xsd:int'),
1180  SERVICE_NAMESPACE,
1181  SERVICE_NAMESPACE . '#copyObject',
1182  SERVICE_STYLE,
1183  SERVICE_USE,
1184  'ILIAS copyObject(): returns reference of copy, if copy is created directly, or the ref id of the target if copy is in progress.'
1185  );
1186 
1187  $this->server->register(
1188  'moveObject',
1189  array('sid' => 'xsd:string', 'ref_id' => 'xsd:int', 'target_id' => 'xsd:int'),
1190  array('result' => 'xsd:boolean'),
1191  SERVICE_NAMESPACE,
1192  SERVICE_NAMESPACE . '#moveObject',
1193  SERVICE_STYLE,
1194  SERVICE_USE,
1195  'ILIAS moveObject(): returns true, if object with refid could be successfully moved to target id, other it raises an error.'
1196  );
1197 
1198  $this->server->register(
1199  'getTestResults',
1200  array('sid' => 'xsd:string', 'ref_id' => 'xsd:int', 'sum_only' => 'xsd:boolean'),
1201  array('xml' => 'xsd:string'),
1202  SERVICE_NAMESPACE,
1203  SERVICE_NAMESPACE . '#getTestResults',
1204  SERVICE_STYLE,
1205  SERVICE_USE,
1206  'ILIAS getTestResults(): returns XMLResultSet with
1207  sum only = true: user_id, login, firstname, lastname, matriculation, maximum points, received points
1208  sum only = false: user_id, login, firstname, lastname, matriculation, question id, question title, question points, received points'
1209  );
1210 
1211  $this->server->register(
1212  'removeTestResults',
1213  array(
1214  'sid' => 'xsd:string',
1215  'ref_id' => 'xsd:int',
1216  'user_ids' => 'tns:intArray'
1217  ),
1218  array('success' => 'xsd:boolean'),
1219  SERVICE_NAMESPACE,
1220  SERVICE_NAMESPACE . '#removeTestResults',
1221  SERVICE_STYLE,
1222  SERVICE_USE,
1223  'ILIAS removeTestResults(): remove test results for the chosen users'
1224  );
1225 
1226  $this->server->register(
1227  'getCoursesForUser',
1228  array('sid' => 'xsd:string', 'parameters' => 'xsd:string'),
1229  array('xml' => 'xsd:string'),
1230  SERVICE_NAMESPACE,
1231  SERVICE_NAMESPACE . '#getCoursesForUser',
1232  SERVICE_STYLE,
1233  SERVICE_USE,
1234  'ILIAS getTestResults(): returns XMLResultSet with columns ref_id, course xml. $parameters has to contain a column user_id and a column status. Status is a logical AND combined value of (MEMBER = 1, TUTOR = 2, ADMIN = 4, OWNER = 8) and determines which courses should be returned.'
1235  );
1236 
1237  $this->server->register(
1238  'getGroupsForUser',
1239  array('sid' => 'xsd:string', 'parameters' => 'xsd:string'),
1240  array('xml' => 'xsd:string'),
1241  SERVICE_NAMESPACE,
1242  SERVICE_NAMESPACE . '#getGroupsForUser',
1243  SERVICE_STYLE,
1244  SERVICE_USE,
1245  'ILIAS getTestResults(): returns XMLResultSet with columns ref_id, group xml. $parameters has to contain a column user_id and a column status. Status is a logical AND combined value of (MEMBER = 1, TUTOR = 2, OWNER = 4) and determines which groups should be returned.'
1246  );
1247 
1248  $this->server->register(
1249  'getPathForRefId',
1250  array('sid' => 'xsd:string', 'ref_id' => 'xsd:int'),
1251  array('xml' => 'xsd:string'),
1252  SERVICE_NAMESPACE,
1253  SERVICE_NAMESPACE . '#getPathForRefId',
1254  SERVICE_STYLE,
1255  SERVICE_USE,
1256  'ILIAS getPathForRefId(): returns XMLResultSet with columns ref_id, type and title.'
1257  );
1258 
1259  $this->server->register(
1260  'searchRoles',
1261  array('sid' => 'xsd:string',
1262  'key' => 'xsd:string',
1263  'combination' => 'xsd:string',
1264  'role_type' => 'xsd:string'
1265  ),
1266  array('xml' => 'xsd:string'),
1267  SERVICE_NAMESPACE,
1268  SERVICE_NAMESPACE . '#searchRoles',
1269  SERVICE_STYLE,
1270  SERVICE_USE,
1271  'ILIAS searchRoles(): returns XML following role dtd with search results for given role type and search terms.'
1272  );
1273 
1274  $this->server->register(
1275  'getInstallationInfoXML',
1276  array(),
1277  array('xml' => 'xsd:string'),
1278  SERVICE_NAMESPACE,
1279  SERVICE_NAMESPACE . '#getInstallationInfoXML',
1280  SERVICE_STYLE,
1281  SERVICE_USE,
1282  'ILIAS getInstallationInfoXML(): returns XML following installation_info dtd'
1283  );
1284 
1285  $this->server->register(
1286  'getClientInfoXML',
1287  array('clientid' => 'xsd:string'),
1288  array('xml' => 'xsd:string'),
1289  SERVICE_NAMESPACE,
1290  SERVICE_NAMESPACE . '#getClientInfoXML',
1291  SERVICE_STYLE,
1292  SERVICE_USE,
1293  'ILIAS getClientInfoXML(): returns XML following installation_info dtd, contains the client the data of given client id'
1294  );
1295 
1296  $this->server->register(
1297  'getSkillCompletionDateForTriggerRefId',
1298  array('sid' => 'xsd:string',
1299  'user_id' => 'xsd:string',
1300  'ref_id' => 'xsd:string'
1301  ),
1302  array('dates' => 'xsd:string'),
1303  SERVICE_NAMESPACE,
1304  SERVICE_NAMESPACE . '#getSkillCompletionDateForTriggerRefId',
1305  SERVICE_STYLE,
1306  SERVICE_USE,
1307  'ILIAS getSkillCompletionDateForTriggerRefId(). Get completion dates for skill trigger ref ids.'
1308  );
1309 
1310  $this->server->register(
1311  'checkSkillUserCertificateForTriggerRefId',
1312  array('sid' => 'xsd:string',
1313  'user_id' => 'xsd:string',
1314  'ref_id' => 'xsd:string'
1315  ),
1316  array('have_certificates' => 'xsd:string'),
1317  SERVICE_NAMESPACE,
1318  SERVICE_NAMESPACE . '#checkSkillUserCertificateForTriggerRefId',
1319  SERVICE_STYLE,
1320  SERVICE_USE,
1321  'ILIAS checkSkillUserCertificateForTriggerRefId(). Check user certificates for trigger ref ids.'
1322  );
1323 
1324  $this->server->register(
1325  'getSkillTriggerOfAllCertificates',
1326  array('sid' => 'xsd:string',
1327  'user_id' => 'xsd:string'
1328  ),
1329  array('certificate_triggers' => 'xsd:string'),
1330  SERVICE_NAMESPACE,
1331  SERVICE_NAMESPACE . '#getSkillTriggerOfAllCertificates',
1332  SERVICE_STYLE,
1333  SERVICE_USE,
1334  'ILIAS getSkillTriggerOfAllCertificates(). Check get all trigger with certificate for a user.'
1335  );
1336 
1337  $this->server->register(
1338  'getUserIdBySid',
1339  array('sid' => 'xsd:string'),
1340  array('usr_id' => 'xsd:int'),
1341  SERVICE_NAMESPACE,
1342  SERVICE_NAMESPACE . '#getUserIdBySid',
1343  SERVICE_STYLE,
1344  SERVICE_USE,
1345  'ILIAS getUserIdBySid(): returns an ILIAS usr_id for the given sid'
1346  );
1347 
1348  $this->server->register(
1349  'deleteExpiredDualOptInUserObjects',
1350  array('sid' => 'xsd:string',
1351  'usr_id' => 'xsd:int'
1352  ),
1353  array('status' => 'xsd:boolean'),
1354  SERVICE_NAMESPACE,
1355  SERVICE_NAMESPACE . '#deleteExpiredDualOptInUserObjects',
1356  SERVICE_STYLE,
1357  SERVICE_USE,
1358  'ILIAS deleteExpiredDualOptInUserObjects(): Deletes expired user accounts caused by unconfirmed registration links in "dual opt in" registration method'
1359  );
1360 
1361  $this->server->register(
1362  'readWebLink',
1363  array('sid' => 'xsd:string', "ref_id" => 'xsd:int'),
1364  array('weblinkxml' => 'xsd:string'),
1365  SERVICE_NAMESPACE,
1366  SERVICE_NAMESPACE . '#readWebLink',
1367  SERVICE_STYLE,
1368  SERVICE_USE,
1369  'ILIAS readWebLink(): returns xml description of a weblink container.'
1370  );
1371 
1372  $this->server->register(
1373  'createWebLink',
1374  array('sid' => 'xsd:string', "target_id" => 'xsd:int', "xml" => "xsd:string"),
1375  array('refid' => 'xsd:int'),
1376  SERVICE_NAMESPACE,
1377  SERVICE_NAMESPACE . '#createWebLink',
1378  SERVICE_STYLE,
1379  SERVICE_USE,
1380  'ILIAS createWebLink(): create web link container, put it into target (ref_id) and update weblink container from xml (see ilias_weblink_4_0.dtd for details). Obj_id must not be set!'
1381  );
1382 
1383  $this->server->register(
1384  'updateWebLink',
1385  array('sid' => 'xsd:string', 'ref_id' => 'xsd:int', 'xml' => 'xsd:string'),
1386  array('success' => 'xsd:boolean'),
1387  SERVICE_NAMESPACE,
1388  SERVICE_NAMESPACE . '#updateWebLink',
1389  SERVICE_STYLE,
1390  SERVICE_USE,
1391  'ILIAS updateWebLink():update existing weblink, update weblink properties from xml (see ilias_weblink_4_0.dtd for details).'
1392  );
1393 
1394  // mcs-patch start
1395  $this->server->register(
1396  'getLearningProgressChanges',
1397  array('sid' => 'xsd:string',
1398  'timestamp' => 'xsd:string',
1399  'include_ref_ids' => 'xsd:boolean',
1400  'type_filter' => 'tns:stringArray'
1401  ),
1402  array('lp_data' => 'xsd:string'),
1403  SERVICE_NAMESPACE,
1404  SERVICE_NAMESPACE . '#getLearningProgressChanges',
1405  SERVICE_STYLE,
1406  SERVICE_USE,
1407  'ILIAS getLearningProgressChanges(): Get learning progress changes after a given timestamp.'
1408  );
1409  // mcs-patch end
1410 
1411  $this->server->register(
1412  'deleteProgress',
1413  array(
1414  'sid' => 'xsd:string',
1415  'ref_ids' => 'tns:intArray',
1416  'usr_ids' => 'tns:intArray',
1417  'type_filter' => 'tns:stringArray',
1418  'progress_filter' => 'tns:intArray'
1419  ),
1420  array('status' => 'xsd:boolean'),
1421  SERVICE_NAMESPACE,
1422  SERVICE_NAMESPACE . '#deleteProgress',
1423  SERVICE_STYLE,
1424  SERVICE_USE,
1425  'Delete user progress data of objects. '
1426  );
1427 
1428  $this->server->register(
1429  'getProgressInfo',
1430  array(
1431  'sid' => 'xsd:string',
1432  'ref_id' => 'xsd:int',
1433  'progress_filter' => 'tns:intArray'
1434  ),
1435  array('user_results' => 'xsd:string'),
1436  SERVICE_NAMESPACE,
1437  SERVICE_NAMESPACE . '#getProgressInfo',
1438  SERVICE_STYLE,
1439  SERVICE_USE,
1440  'Get object learning progress information'
1441  );
1442 
1443  $this->server->register(
1444  'exportDataCollectionContent',
1445  array(
1446  'sid' => 'xsd:string',
1447  'ref_id' => 'xsd:int',
1448  'table_id' => 'xsd:int',
1449  'format' => 'xsd:string',
1450  'filepath' => 'xsd:string'
1451  ),
1452  array('export_path' => 'xsd:string'),
1453  SERVICE_NAMESPACE,
1454  SERVICE_NAMESPACE . '#exportDataCollectionTableContent',
1455  SERVICE_STYLE,
1456  SERVICE_USE,
1457  'Generate DataCollectionContent Export'
1458  );
1459 
1460  $this->server->register(
1461  'processBackgroundTask',
1462  array(
1463  'sid' => 'xsd:string',
1464  'task_id' => 'xsd:int'
1465  ),
1466  array('status' => 'xsd:boolean'),
1467  SERVICE_NAMESPACE,
1468  SERVICE_NAMESPACE . '#processBackgroundTask',
1469  SERVICE_STYLE,
1470  SERVICE_USE,
1471  'Process task in background'
1472  );
1473 
1474  // OrgUnits Functions
1478  $f = [
1480  new EmployeePositionId(),
1481  new ImportOrgUnitTree(),
1482  new OrgUnitTree(),
1483  new PositionIds(),
1484  new PositionTitle(),
1486  new SuperiorPositionId(),
1487  new UserIdsOfPosition(),
1489  ];
1490 
1491  foreach ($f as $function) {
1492  $this->server->register(
1493  $function->getName(),
1494  $function->getInputParams(),
1495  $function->getOutputParams(),
1496  SERVICE_NAMESPACE,
1497  SERVICE_NAMESPACE . '#orgu',
1498  SERVICE_STYLE,
1499  SERVICE_USE,
1500  $function->getDocumentation()
1501  );
1502  }
1503 
1504  // If a client ID is submitted, there might be some SOAP plugins registering methods/types
1505  // no initialized ILIAS => no request wrapper available.
1506  if (isset($_GET['client_id'])) {
1507  $this->handleSoapPlugins();
1508  }
1509  }
1510 
1514  protected function handleSoapPlugins(): void
1515  {
1516  // Note: We need a context that does not handle authentication at this point, because this is
1517  // handled by an actual SOAP request which always contains the session ID and client
1521 
1522  global $DIC;
1523 
1524  $component_factory = $DIC['component.factory'];
1525  $soapHook = new ilSoapHook($component_factory);
1526  foreach ($soapHook->getWsdlTypes() as $type) {
1527  $this->server->wsdl->addComplexType(
1528  $type->getName(),
1529  $type->getTypeClass(),
1530  $type->getPhpType(),
1531  $type->getCompositor(),
1532  $type->getRestrictionBase(),
1533  $type->getElements(),
1534  $type->getAttributes(),
1535  $type->getArrayType()
1536  );
1537  }
1538  foreach ($soapHook->getSoapMethods() as $method) {
1539  $this->server->register(
1540  $method->getName(),
1541  $method->getInputParams(),
1542  $method->getOutputParams(),
1543  $method->getServiceNamespace(),
1544  $method->getServiceNamespace() . '#' . $method->getName(),
1545  $method->getServiceStyle(),
1546  $method->getServiceUse(),
1547  $method->getDocumentation()
1548  );
1549  }
1550  }
1551 }
Backward compatibility.
Definition: nusoap.php:4570
$_GET["client_id"]
Definition: webdav.php:30
get(string $a_keyword, ?string $a_default_value=null)
get setting
handleSoapPlugins()
Register any methods and types of SOAP plugins to the SOAP server.
const CONTEXT_SOAP_NO_AUTH
server()
description: > This example shows how a Progress Bar can be rendered and updated by the server...
Definition: server.php:43
static initILIAS()
ilias initialisation
Class ilSoapHook.
global $DIC
Definition: shib_login.php:22
static init(string $a_type)
Init context by type.
const CONTEXT_SOAP
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...