38 require_once __DIR__ .
'/../lib/nusoap.php';
39 require_once __DIR__ .
'/../include/inc.soap_functions.php';
47 define(
'SERVICE_NAME',
'ILIASSoapWebservice');
48 define(
'SERVICE_NAMESPACE',
'urn:ilUserAdministration');
49 define(
'SERVICE_STYLE',
'rpc');
50 define(
'SERVICE_USE',
'encoded');
52 $this->
server->decode_utf8 =
false;
53 $this->
server->class =
"ilSoapFunctions";
60 $this->registerMethods();
65 $postdata = file_get_contents(
"php://input");
66 $this->
server->service($postdata);
72 $this->
server->configureWSDL(SERVICE_NAME, SERVICE_NAMESPACE);
73 $internal_path = $setting->
get(
'soap_internal_wsdl_path',
'');
75 $this->
server->addInternalPort(SERVICE_NAME, $internal_path);
79 private function registerMethods():
void 82 $this->
server->wsdl->addComplexType(
89 array(array(
'ref' =>
'SOAP-ENC:arrayType',
'wsdl:arrayType' =>
'xsd:int[]')),
93 $this->
server->wsdl->addComplexType(
100 array(array(
'ref' =>
'SOAP-ENC:arrayType',
'wsdl:arrayType' =>
'xsd:string[]')),
104 $this->
server->wsdl->addComplexType(
111 array(array(
'ref' =>
'SOAP-ENC:arrayType',
'wsdl:arrayType' =>
'xsd:double[]')),
120 array(
'client' =>
'xsd:string',
121 'username' =>
'xsd:string',
122 'password' =>
'xsd:string' 124 array(
'sid' =>
'xsd:string'),
126 SERVICE_NAMESPACE .
'#login',
129 'ILIAS login function' 135 array(
'sid' =>
'xsd:string'),
136 array(
'success' =>
'xsd:boolean'),
138 SERVICE_NAMESPACE .
'#logout',
141 'ILIAS logout function' 144 $this->
server->wsdl->addComplexType(
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')
193 array(
'sid' =>
'xsd:string',
194 'user_name' =>
'xsd:string' 196 array(
'usr_id' =>
'xsd:int'),
198 SERVICE_NAMESPACE .
'#lookupUser',
201 'ILIAS lookupUser(): check if username exists. Return usr_id or 0 if lookup fails.' 208 array(
'sid' =>
'xsd:string',
209 'target_id' =>
'xsd:int',
210 'crs_xml' =>
'xsd:string' 212 array(
'course_id' =>
'xsd:int'),
214 SERVICE_NAMESPACE .
'#addCourse',
217 'ILIAS addCourse(). Course import. See ilias_course_0_1.dtd for details about course xml structure' 223 array(
'sid' =>
'xsd:string',
224 'course_id' =>
'xsd:int' 226 array(
'success' =>
'xsd:boolean'),
228 SERVICE_NAMESPACE .
'#deleteCourse',
231 'ILIAS deleteCourse(). Deletes a course. Delete courses are stored in "Trash" and can be undeleted in ' .
232 ' the ILIAS administration. ' 236 AsyncTaskManager::CMD_START_WORKER,
237 array(
'sid' =>
'xsd:string'),
238 array(
'success' =>
'xsd:boolean'),
240 SERVICE_NAMESPACE .
'#' . AsyncTaskManager::CMD_START_WORKER,
243 'ILIAS ' . AsyncTaskManager::CMD_START_WORKER .
'().' 248 'assignCourseMember',
249 array(
'sid' =>
'xsd:string',
250 'course_id' =>
'xsd:int',
251 'user_id' =>
'xsd:int',
252 'type' =>
'xsd:string' 254 array(
'success' =>
'xsd:boolean'),
256 SERVICE_NAMESPACE .
'#assignCourseMember',
259 'ILIAS assignCourseMember(). Assigns an user to an existing course. Type should be "Admin", "Tutor" or "Member"' 264 'excludeCourseMember',
265 array(
'sid' =>
'xsd:string',
266 'course_id' =>
'xsd:int',
267 'user_id' =>
'xsd:int' 269 array(
'success' =>
'xsd:boolean'),
271 SERVICE_NAMESPACE .
'#excludeCourseMember',
274 'ILIAS excludeCourseMember(). Excludes an user from an existing course.' 279 'isAssignedToCourse',
280 array(
'sid' =>
'xsd:string',
281 'course_id' =>
'xsd:int',
282 'user_id' =>
'xsd:int' 284 array(
'role' =>
'xsd:int'),
286 SERVICE_NAMESPACE .
'#isAssignedToCourse',
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' 296 array(
'sid' =>
'xsd:string',
297 'course_id' =>
'xsd:int' 299 array(
'xml' =>
'xsd:string'),
301 SERVICE_NAMESPACE .
'#getCourseXML',
304 'ILIAS getCourseXML(). Get a xml description of a specific course.' 310 array(
'sid' =>
'xsd:string',
311 'course_id' =>
'xsd:int',
312 'xml' =>
'xsd:string' 314 array(
'success' =>
'xsd:boolean'),
316 SERVICE_NAMESPACE .
'#updateCourse',
319 'ILIAS updateCourse(). Update course settings, assigned members, tutors, administrators with a ' .
320 'given xml description' 325 'getObjIdByImportId',
326 array(
'sid' =>
'xsd:string',
327 'import_id' =>
'xsd:string' 329 array(
'obj_id' =>
'xsd:int'),
331 SERVICE_NAMESPACE .
'#getCourseIdByImportId',
334 'ILIAS getObjIdByImportId(). Get the obj_id of an ILIAS obj by a given import id.' 339 'getRefIdsByImportId',
340 array(
'sid' =>
'xsd:string',
341 'import_id' =>
'xsd:string' 343 array(
'ref_ids' =>
'tns:intArray'),
345 SERVICE_NAMESPACE .
'#getRefIdsByImportId',
348 'ILIAS getRefIdsByImportId(). Get all reference ids by a given import id.' 354 array(
'sid' =>
'xsd:string',
355 'obj_id' =>
'xsd:string' 357 array(
'ref_ids' =>
'tns:intArray'),
359 SERVICE_NAMESPACE .
'#getRefIdsByObjId',
362 'ILIAS getRefIdsByObjId(). Get all reference ids by a given object id.' 367 'getObjectByReference',
368 array(
'sid' =>
'xsd:string',
369 'reference_id' =>
'xsd:int',
370 'user_id' =>
'xsd:int' 372 array(
'object_xml' =>
'xsd:string'),
374 SERVICE_NAMESPACE .
'#getObjectByReference',
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.' 383 array(
'sid' =>
'xsd:string',
384 'title' =>
'xsd:string',
385 'user_id' =>
'xsd:int' 387 array(
'object_xml' =>
'xsd:string'),
389 SERVICE_NAMESPACE .
'#getObjectsByTitle',
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.' 398 array(
'sid' =>
'xsd:string',
399 'types' =>
'tns:stringArray',
400 'key' =>
'xsd:string',
401 'combination' =>
'xsd:string',
402 'user_id' =>
'xsd:int' 404 array(
'object_xml' =>
'xsd:string'),
406 SERVICE_NAMESPACE .
'#searchObjects',
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' 417 array(
'sid' =>
'xsd:string',
418 'ref_id' =>
'xsd:int',
419 'types' =>
'tns:stringArray',
420 'user_id' =>
'xsd:int' 422 array(
'object_xml' =>
'xsd:string'),
424 SERVICE_NAMESPACE .
'#getTreeChilds',
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' 433 array(
'sid' =>
'xsd:string',
434 'ref_id' =>
'xsd:int',
435 'types' =>
'tns:stringArray',
436 'user_id' =>
'xsd:int' 438 array(
'object_xml' =>
'xsd:string'),
440 SERVICE_NAMESPACE .
'#getXMLTree',
443 'ILIAS getXMLTree(): Returns a xml stream with the subtree objects.' 448 array(
'sid' =>
'xsd:string',
449 'target_id' =>
'xsd:int',
450 'object_xml' =>
'xsd:string' 452 array(
'ref_id' =>
'xsd:int'),
454 SERVICE_NAMESPACE .
'#addObject',
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.' 463 array(
'sid' =>
'xsd:string',
464 'object_xml' =>
'xsd:string' 466 array(
'success' =>
'xsd:boolean'),
468 SERVICE_NAMESPACE .
'#updateObjects',
471 'ILIAS updateObjects. Update object data (title,description,owner)' 476 array(
'sid' =>
'xsd:string',
477 'source_id' =>
'xsd:int',
478 'target_id' =>
'xsd:int' 480 array(
'ref_id' =>
'xsd:int'),
482 SERVICE_NAMESPACE .
'#addReference',
485 'ILIAS addReference. Create new link of given object to new object. Return the new reference id' 490 array(
'sid' =>
'xsd:string',
491 'reference_id' =>
'xsd:int' 493 array(
'success' =>
'xsd:boolean'),
495 SERVICE_NAMESPACE .
'#deleteObject',
498 'ILIAS deleteObject. Stores object in trash. If multiple references exist, only the reference is deleted ' 502 'removeFromSystemByImportId',
503 array(
'sid' =>
'xsd:string',
504 'import_id' =>
'xsd:string' 506 array(
'success' =>
'xsd:boolean'),
508 SERVICE_NAMESPACE .
'#removeFromSystemByImportId',
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.' 518 array(
'sid' =>
'xsd:string',
519 'user_id' =>
'xsd:int',
520 'role_id' =>
'xsd:int' 522 array(
'success' =>
'xsd:boolean'),
524 SERVICE_NAMESPACE .
'#addUserRoleEntry',
527 'ILIAS addUserRoleEntry. Assign user to role.' 531 'deleteUserRoleEntry',
532 array(
'sid' =>
'xsd:string',
533 'user_id' =>
'xsd:int',
534 'role_id' =>
'xsd:int' 536 array(
'success' =>
'xsd:boolean'),
538 SERVICE_NAMESPACE .
'#deleteUserRoleEntry',
541 'ILIAS deleteUserRoleEntry. Deassign user from role.' 545 $this->
server->wsdl->addComplexType(
551 array(
'ops_id' => array(
'name' =>
'ops_id',
554 'operation' => array(
'name' =>
'operation',
555 'type' =>
'xsd:string' 557 'description' => array(
'name' =>
'description',
558 'type' =>
'xsd:string' 563 $this->
server->wsdl->addComplexType(
570 array(array(
'ref' =>
'SOAP-ENC:arrayType',
571 'wsdl:arrayType' =>
'tns:ilOperation[]' 578 array(
'sid' =>
'xsd:string'),
579 array(
'operations' =>
'tns:ilOperations'),
581 SERVICE_NAMESPACE .
'#getOperations',
584 'ILIAS getOperations(): get complete set of RBAC operations.' 589 array(
'sid' =>
'xsd:string',
590 'ref_id' =>
'xsd:int',
591 'role_id' =>
'xsd:int' 593 array(
'success' =>
'xsd:boolean'),
595 SERVICE_NAMESPACE .
'#revokePermissions',
598 'ILIAS revokePermissions(): Revoke all permissions for a specific role on an object.' 601 $this->
server->wsdl->addComplexType(
608 array(array(
'ref' =>
'SOAP-ENC:arrayType',
609 'wsdl:arrayType' =>
'xsd:int[]' 617 array(
'sid' =>
'xsd:string',
618 'ref_id' =>
'xsd:int',
619 'role_id' =>
'xsd:int',
620 'operations' =>
'tns:intArray' 622 array(
'success' =>
'xsd:boolean'),
624 SERVICE_NAMESPACE .
'#grantPermissions',
627 'ILIAS grantPermissions(): Grant permissions for a specific role on an object. ' .
628 '(Substitutes existing permission settings)' 633 array(
'sid' =>
'xsd:string',
634 'ref_id' =>
'xsd:int' 636 array(
'role_xml' =>
'xsd:string'),
638 SERVICE_NAMESPACE .
'#getLocalRoles',
641 'ILIAS getLocalRoles(): Get all local roles assigned to an specific object.' 646 array(
'sid' =>
'xsd:string',
647 'user_id' =>
'xsd:int' 649 array(
'role_xml' =>
'xsd:string'),
651 SERVICE_NAMESPACE .
'#getLocalRoles',
654 'ILIAS getUserRoles(): Get all local roles assigned to an specific user. ' 659 array(
'sid' =>
'xsd:string',
660 'target_id' =>
'xsd:int',
661 'obj_xml' =>
'xsd:string' 663 array(
'role_ids' =>
'tns:intArray'),
665 SERVICE_NAMESPACE .
'#addRole',
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.' 674 array(
'sid' =>
'xsd:string',
675 'role_id' =>
'xsd:int' 677 array(
'success' =>
'xsd:boolean'),
679 SERVICE_NAMESPACE .
'#deleteRole',
682 'ILIAS deleteRole(): Deletes an role and all user assignments. Fails if it is the last role of an user' 686 'addRoleFromTemplate',
687 array(
'sid' =>
'xsd:string',
688 'target_id' =>
'xsd:int',
689 'obj_xml' =>
'xsd:string',
690 'role_template_id' =>
'xsd:int' 692 array(
'role_ids' =>
'tns:intArray'),
694 SERVICE_NAMESPACE .
'#addRole',
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' 703 'getObjectTreeOperations',
704 array(
'sid' =>
'xsd:string',
705 'ref_id' =>
'xsd:int',
706 'user_id' =>
'xsd:int' 708 array(
'operations' =>
'tns:ilOperations'),
710 SERVICE_NAMESPACE .
'#getPermissionsForObject',
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' 719 array(
'sid' =>
'xsd:string',
720 'target_id' =>
'xsd:int',
721 'group_xml' =>
'xsd:string' 723 array(
'ref_id' =>
'xsd:int'),
725 SERVICE_NAMESPACE .
'#addGroup',
728 'ILIAS addGroup(): Add grop according to valid group XML ' .
729 '@See ilias_group_0_1.dtd' 734 array(
'sid' =>
'xsd:string',
735 'title' =>
'xsd:string' 737 array(
'exists' =>
'xsd:boolean'),
739 SERVICE_NAMESPACE .
'#groupExists',
742 'ILIAS addGroup(): Check if group with given name exists. ' 748 array(
'sid' =>
'xsd:string',
749 'ref_id' =>
'xsd:int' 751 array(
'group_xml' =>
'xsd:string'),
753 SERVICE_NAMESPACE .
'#getGroup',
756 'ILIAS getGroup(): get xml description of grouip with given reference id.' 762 array(
'sid' =>
'xsd:string',
763 'group_id' =>
'xsd:int',
764 'user_id' =>
'xsd:int',
765 'type' =>
'xsd:string' 767 array(
'success' =>
'xsd:boolean'),
769 SERVICE_NAMESPACE .
'#assignGroupMember',
772 'ILIAS assignGroupMember(). Assigns an user to an existing group. Type should be "Admin","Member"' 777 'excludeGroupMember',
778 array(
'sid' =>
'xsd:string',
779 'group_id' =>
'xsd:int',
780 'user_id' =>
'xsd:int' 782 array(
'success' =>
'xsd:boolean'),
784 SERVICE_NAMESPACE .
'#excludeGroupMember',
787 'ILIAS excludeGroupMember(). Excludes an user from an existing group.' 793 array(
'sid' =>
'xsd:string',
794 'group_id' =>
'xsd:int',
795 'user_id' =>
'xsd:int' 797 array(
'role' =>
'xsd:int'),
799 SERVICE_NAMESPACE .
'#isAssignedToGroup',
802 'ILIAS isAssignedToGroup(). Checks whether an user is assigned to a given group. ' .
803 'Returns 0 => not assigned, 1 => group admin, 2 => group member' 810 array(
'sid' =>
'xsd:string',
'copy_identifier' =>
'xsd:int'),
811 array(
'new_ref_id' =>
'xsd:int'),
813 SERVICE_NAMESPACE .
'#ilClone',
816 'ILIAS ilClone(): Only for internal usage.' .
817 'Syntax, parameters may change in future releases. ' 821 'ilCloneDependencies',
822 array(
'sid' =>
'xsd:string',
'copy_identifier' =>
'xsd:int'),
823 array(
'success' =>
'xsd:boolean'),
825 SERVICE_NAMESPACE .
'#ilCloneDependencies',
828 'ILIAS ilCloneDependencies(): Only for internal usage.' .
829 'Syntax, parameters may change in future releases. ' 835 array(
'sid' =>
'xsd:string',
836 'active_id' =>
'xsd:long',
837 'question_id' =>
'xsd:long',
839 'solution' =>
'tns:stringArray' 841 array(
'status' =>
'xsd:boolean'),
843 SERVICE_NAMESPACE .
'#saveQuestion',
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.' 850 'saveQuestionSolution',
851 array(
'sid' =>
'xsd:string',
852 'active_id' =>
'xsd:long',
853 'question_id' =>
'xsd:long',
855 'solution' =>
'xsd:string' 857 array(
'status' =>
'xsd:string'),
859 SERVICE_NAMESPACE .
'#saveQuestionSolution',
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 <values><value>VALUE</value><value>VALUE</value><points>POINTS</points>...</values> where the triplet (value,value,points) can repeat n times. The result string is either TRUE or it contains an error message.' 866 'getQuestionSolution',
867 array(
'sid' =>
'xsd:string',
868 'active_id' =>
'xsd:long',
869 'question_id' =>
'xsd:int',
872 array(
'solution' =>
'tns:stringArray'),
874 SERVICE_NAMESPACE .
'#getQuestionSolution',
877 'ILIAS getQuestionSolution: Typically called from external assessment questions to retrieve the previous input of a user.' 882 array(
'sid' =>
'xsd:string',
883 'active_id' =>
'xsd:long' 885 array(
'userdata' =>
'tns:stringArray'),
887 SERVICE_NAMESPACE .
'#getTestUserData',
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.' 894 'getPositionOfQuestion',
895 array(
'sid' =>
'xsd:string',
896 'active_id' =>
'xsd:long',
897 'question_id' =>
'xsd:int',
900 array(
'position' =>
'xsd:int'),
902 SERVICE_NAMESPACE .
'#getPositionOfQuestion',
905 'ILIAS getPositionOfQuestion: Returns the position of a given question for a given user in a given test pass.' 909 'getPreviousReachedPoints',
910 array(
'sid' =>
'xsd:string',
911 'active_id' =>
'xsd:long',
912 'question_id' =>
'xsd:int',
915 array(
'position' =>
'tns:doubleArray'),
917 SERVICE_NAMESPACE .
'#getPreviousReachedPoints',
920 'ILIAS getPreviousReachedPoints: Returns an array of reached points for the previous questions in a given test pass.' 924 'getNrOfQuestionsInPass',
925 array(
'sid' =>
'xsd:string',
926 'active_id' =>
'xsd:long',
929 array(
'count' =>
'xsd:int'),
931 SERVICE_NAMESPACE .
'#getNrOfQuestionsInPass',
934 'ILIAS getNrOfQuestionsInPass: Returns the question count for a given test user in a given pass.' 938 'getStructureObjects',
939 array(
'sid' =>
'xsd:string',
940 'ref_id' =>
'xsd:int' 942 array(
'xml' =>
'xsd:string'),
944 SERVICE_NAMESPACE .
'#getStructureObjects',
947 'ILIAS getStructureObjects: delivers structure of content objects like learning modules (chapters/pages) or glossary (terms)' 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' 959 array(
'protocol' =>
'xsd:string'),
961 SERVICE_NAMESPACE .
'#importUsers',
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' 969 array(
'sid' =>
'xsd:string',
970 'role_type' =>
'xsd:string',
973 array(
'role_xml' =>
'xsd:string'),
975 SERVICE_NAMESPACE .
'#getRoles',
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' 982 'getUsersForContainer',
983 array(
'sid' =>
'xsd:string',
984 'ref_id' =>
'xsd:int',
985 'attach_roles' =>
'xsd:int',
986 'active' =>
'xsd:int' 988 array(
'user_xml' =>
'xsd:string'),
990 SERVICE_NAMESPACE .
'#getUsersForContainer',
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' 998 array(
'sid' =>
'xsd:string',
999 'role_id' =>
'xsd:int',
1000 'attach_roles' =>
'xsd:int',
1001 'active' =>
'xsd:int' 1003 array(
'user_xml' =>
'xsd:string'),
1005 SERVICE_NAMESPACE .
'#getUsersForRole',
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' 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' 1020 array(
'user_xml' =>
'xsd:string'),
1022 SERVICE_NAMESPACE .
'#searchUsers',
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' 1032 array(
'sid' =>
'xsd:string'),
1033 array(
'status' =>
'xsd:boolean'),
1035 SERVICE_NAMESPACE .
'#hasNewMail',
1038 'ILIAS hasNewMail(): Checks whether the current authenticated user has a new mail.' 1043 array(
'sid' =>
'xsd:string',
"ref_id" =>
'xsd:int',
"attachment_mode" =>
"xsd:int"),
1044 array(
'exercisexml' =>
'xsd:string'),
1046 SERVICE_NAMESPACE .
'#getExerciseXML',
1049 'ILIAS getExerciseXML(): returns xml description of exercise. Attachment mode: 0 - no file contents, 1 - plain content (base64encoded), 2 zlib + base64, 3 gzip + base64)' 1054 array(
'sid' =>
'xsd:string',
"target_id" =>
'xsd:int',
"xml" =>
"xsd:string"),
1055 array(
'refid' =>
'xsd:int'),
1057 SERVICE_NAMESPACE .
'#addExercise',
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!' 1065 array(
'sid' =>
'xsd:string',
'ref_id' =>
'xsd:int',
'xml' =>
'xsd:string'),
1066 array(
'success' =>
'xsd:boolean'),
1068 SERVICE_NAMESPACE .
'#updateExercise',
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.!' 1076 array(
'sid' =>
'xsd:string',
'ref_id' =>
'xsd:int',
'attachment_mode' =>
'xsd:int'),
1077 array(
'filexml' =>
'xsd:string'),
1079 SERVICE_NAMESPACE .
'#getFileXML',
1082 'ILIAS getFileXML(): returns xml description of file. Attachment mode: 0 - no file contents, 1 - plain content (base64encoded), 2 zlib + base64, 3 gzip + base64)' 1087 array(
'sid' =>
'xsd:string',
'target_id' =>
'xsd:int',
'xml' =>
'xsd:string'),
1088 array(
'refid' =>
'xsd:int'),
1090 SERVICE_NAMESPACE .
'#addFile',
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!' 1098 array(
'sid' =>
'xsd:string',
'ref_id' =>
'xsd:int',
'xml' =>
'xsd:string'),
1099 array(
'success' =>
'xsd:boolean'),
1101 SERVICE_NAMESPACE .
'#updateFile',
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.!' 1109 array(
'sid' =>
'xsd:string',
'user_ids' =>
'tns:intArray',
'attach_roles' =>
'xsd:int'),
1110 array(
'xml' =>
'xsd:string'),
1112 SERVICE_NAMESPACE .
'#resolveUsers',
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' 1120 'getObjIdsByRefIds',
1121 array(
'sid' =>
'xsd:string',
1122 'ref_ids' =>
'tns:intArray' 1124 array(
'obj_ids' =>
'tns:intArray'),
1126 SERVICE_NAMESPACE .
'#getRefIdsByImportId',
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' 1134 array(
'sid' =>
'xsd:string',
'ref_id' =>
'xsd:int',
'xml' =>
'xsd:string'),
1135 array(
'success' =>
'xsd:boolean'),
1137 SERVICE_NAMESPACE .
'#updateGroup',
1140 'ILIAS updateGroup(): update existing group using ref id and group xml (see DTD).' 1144 'getIMSManifestXML',
1145 array(
'sid' =>
'xsd:string',
'ref_id' =>
'xsd:int'),
1146 array(
'xml' =>
'xsd:string'),
1148 SERVICE_NAMESPACE .
'#getIMSManifestXML',
1151 'ILIAS getIMSManifestXML(): returns xml of ims manifest file (scorm learning module) referred by refid' 1155 'hasSCORMCertificate',
1156 array(
'sid' =>
'xsd:string',
'ref_id' =>
'xsd:int',
'usr_id' =>
'xsd:int'),
1157 array(
'success' =>
'xsd:boolean'),
1159 SERVICE_NAMESPACE .
'#hasSCORMCertificate',
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' 1166 'getSCORMCompletionStatus',
1167 array(
'sid' =>
'xsd:string',
'usr_id' =>
'xsd:int',
'ref_id' =>
'xsd:int'),
1168 array(
'status' =>
'xsd:string'),
1170 SERVICE_NAMESPACE .
'#getSCORMCompletionStatus',
1173 'ILIAS getSCORMCompletionStatus(): returns a completion status of a scorm module' 1178 array(
'sid' =>
'xsd:string',
'xml' =>
'xsd:string'),
1179 array(
'xml' =>
'xsd:int'),
1181 SERVICE_NAMESPACE .
'#copyObject',
1184 'ILIAS copyObject(): returns reference of copy, if copy is created directly, or the ref id of the target if copy is in progress.' 1189 array(
'sid' =>
'xsd:string',
'ref_id' =>
'xsd:int',
'target_id' =>
'xsd:int'),
1190 array(
'result' =>
'xsd:boolean'),
1192 SERVICE_NAMESPACE .
'#moveObject',
1195 'ILIAS moveObject(): returns true, if object with refid could be successfully moved to target id, other it raises an error.' 1200 array(
'sid' =>
'xsd:string',
'ref_id' =>
'xsd:int',
'sum_only' =>
'xsd:boolean'),
1201 array(
'xml' =>
'xsd:string'),
1203 SERVICE_NAMESPACE .
'#getTestResults',
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' 1212 'removeTestResults',
1214 'sid' =>
'xsd:string',
1215 'ref_id' =>
'xsd:int',
1216 'user_ids' =>
'tns:intArray' 1218 array(
'success' =>
'xsd:boolean'),
1220 SERVICE_NAMESPACE .
'#removeTestResults',
1223 'ILIAS removeTestResults(): remove test results for the chosen users' 1227 'getCoursesForUser',
1228 array(
'sid' =>
'xsd:string',
'parameters' =>
'xsd:string'),
1229 array(
'xml' =>
'xsd:string'),
1231 SERVICE_NAMESPACE .
'#getCoursesForUser',
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.' 1239 array(
'sid' =>
'xsd:string',
'parameters' =>
'xsd:string'),
1240 array(
'xml' =>
'xsd:string'),
1242 SERVICE_NAMESPACE .
'#getGroupsForUser',
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.' 1250 array(
'sid' =>
'xsd:string',
'ref_id' =>
'xsd:int'),
1251 array(
'xml' =>
'xsd:string'),
1253 SERVICE_NAMESPACE .
'#getPathForRefId',
1256 'ILIAS getPathForRefId(): returns XMLResultSet with columns ref_id, type and title.' 1261 array(
'sid' =>
'xsd:string',
1262 'key' =>
'xsd:string',
1263 'combination' =>
'xsd:string',
1264 'role_type' =>
'xsd:string' 1266 array(
'xml' =>
'xsd:string'),
1268 SERVICE_NAMESPACE .
'#searchRoles',
1271 'ILIAS searchRoles(): returns XML following role dtd with search results for given role type and search terms.' 1275 'getInstallationInfoXML',
1277 array(
'xml' =>
'xsd:string'),
1279 SERVICE_NAMESPACE .
'#getInstallationInfoXML',
1282 'ILIAS getInstallationInfoXML(): returns XML following installation_info dtd' 1287 array(
'clientid' =>
'xsd:string'),
1288 array(
'xml' =>
'xsd:string'),
1290 SERVICE_NAMESPACE .
'#getClientInfoXML',
1293 'ILIAS getClientInfoXML(): returns XML following installation_info dtd, contains the client the data of given client id' 1297 'getSkillCompletionDateForTriggerRefId',
1298 array(
'sid' =>
'xsd:string',
1299 'user_id' =>
'xsd:string',
1300 'ref_id' =>
'xsd:string' 1302 array(
'dates' =>
'xsd:string'),
1304 SERVICE_NAMESPACE .
'#getSkillCompletionDateForTriggerRefId',
1307 'ILIAS getSkillCompletionDateForTriggerRefId(). Get completion dates for skill trigger ref ids.' 1311 'checkSkillUserCertificateForTriggerRefId',
1312 array(
'sid' =>
'xsd:string',
1313 'user_id' =>
'xsd:string',
1314 'ref_id' =>
'xsd:string' 1316 array(
'have_certificates' =>
'xsd:string'),
1318 SERVICE_NAMESPACE .
'#checkSkillUserCertificateForTriggerRefId',
1321 'ILIAS checkSkillUserCertificateForTriggerRefId(). Check user certificates for trigger ref ids.' 1325 'getSkillTriggerOfAllCertificates',
1326 array(
'sid' =>
'xsd:string',
1327 'user_id' =>
'xsd:string' 1329 array(
'certificate_triggers' =>
'xsd:string'),
1331 SERVICE_NAMESPACE .
'#getSkillTriggerOfAllCertificates',
1334 'ILIAS getSkillTriggerOfAllCertificates(). Check get all trigger with certificate for a user.' 1339 array(
'sid' =>
'xsd:string'),
1340 array(
'usr_id' =>
'xsd:int'),
1342 SERVICE_NAMESPACE .
'#getUserIdBySid',
1345 'ILIAS getUserIdBySid(): returns an ILIAS usr_id for the given sid' 1349 'deleteExpiredDualOptInUserObjects',
1350 array(
'sid' =>
'xsd:string',
1351 'usr_id' =>
'xsd:int' 1353 array(
'status' =>
'xsd:boolean'),
1355 SERVICE_NAMESPACE .
'#deleteExpiredDualOptInUserObjects',
1358 'ILIAS deleteExpiredDualOptInUserObjects(): Deletes expired user accounts caused by unconfirmed registration links in "dual opt in" registration method' 1363 array(
'sid' =>
'xsd:string',
"ref_id" =>
'xsd:int'),
1364 array(
'weblinkxml' =>
'xsd:string'),
1366 SERVICE_NAMESPACE .
'#readWebLink',
1369 'ILIAS readWebLink(): returns xml description of a weblink container.' 1374 array(
'sid' =>
'xsd:string',
"target_id" =>
'xsd:int',
"xml" =>
"xsd:string"),
1375 array(
'refid' =>
'xsd:int'),
1377 SERVICE_NAMESPACE .
'#createWebLink',
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!' 1385 array(
'sid' =>
'xsd:string',
'ref_id' =>
'xsd:int',
'xml' =>
'xsd:string'),
1386 array(
'success' =>
'xsd:boolean'),
1388 SERVICE_NAMESPACE .
'#updateWebLink',
1391 'ILIAS updateWebLink():update existing weblink, update weblink properties from xml (see ilias_weblink_4_0.dtd for details).' 1396 'getLearningProgressChanges',
1397 array(
'sid' =>
'xsd:string',
1398 'timestamp' =>
'xsd:string',
1399 'include_ref_ids' =>
'xsd:boolean',
1400 'type_filter' =>
'tns:stringArray' 1402 array(
'lp_data' =>
'xsd:string'),
1404 SERVICE_NAMESPACE .
'#getLearningProgressChanges',
1407 'ILIAS getLearningProgressChanges(): Get learning progress changes after a given timestamp.' 1414 'sid' =>
'xsd:string',
1415 'ref_ids' =>
'tns:intArray',
1416 'usr_ids' =>
'tns:intArray',
1417 'type_filter' =>
'tns:stringArray',
1418 'progress_filter' =>
'tns:intArray' 1420 array(
'status' =>
'xsd:boolean'),
1422 SERVICE_NAMESPACE .
'#deleteProgress',
1425 'Delete user progress data of objects. ' 1431 'sid' =>
'xsd:string',
1432 'ref_id' =>
'xsd:int',
1433 'progress_filter' =>
'tns:intArray' 1435 array(
'user_results' =>
'xsd:string'),
1437 SERVICE_NAMESPACE .
'#getProgressInfo',
1440 'Get object learning progress information' 1444 'exportDataCollectionContent',
1446 'sid' =>
'xsd:string',
1447 'ref_id' =>
'xsd:int',
1448 'table_id' =>
'xsd:int',
1449 'format' =>
'xsd:string',
1450 'filepath' =>
'xsd:string' 1452 array(
'export_path' =>
'xsd:string'),
1454 SERVICE_NAMESPACE .
'#exportDataCollectionTableContent',
1457 'Generate DataCollectionContent Export' 1461 'processBackgroundTask',
1463 'sid' =>
'xsd:string',
1464 'task_id' =>
'xsd:int' 1466 array(
'status' =>
'xsd:boolean'),
1468 SERVICE_NAMESPACE .
'#processBackgroundTask',
1471 'Process task in background' 1491 foreach (
$f as $function) {
1493 $function->getName(),
1494 $function->getInputParams(),
1495 $function->getOutputParams(),
1497 SERVICE_NAMESPACE .
'#orgu',
1500 $function->getDocumentation()
1506 if (isset(
$_GET[
'client_id'])) {
1524 $component_factory = $DIC[
'component.factory'];
1525 $soapHook =
new ilSoapHook($component_factory);
1526 foreach ($soapHook->getWsdlTypes() as $type) {
1527 $this->
server->wsdl->addComplexType(
1529 $type->getTypeClass(),
1530 $type->getPhpType(),
1531 $type->getCompositor(),
1532 $type->getRestrictionBase(),
1533 $type->getElements(),
1534 $type->getAttributes(),
1535 $type->getArrayType()
1538 foreach ($soapHook->getSoapMethods() as $method) {
1541 $method->getInputParams(),
1542 $method->getOutputParams(),
1543 $method->getServiceNamespace(),
1544 $method->getServiceNamespace() .
'#' . $method->getName(),
1545 $method->getServiceStyle(),
1546 $method->getServiceUse(),
1547 $method->getDocumentation()
Class AddUserIdToPositionInOrgUnit.
get(string $a_keyword, ?string $a_default_value=null)
get setting
handleSoapPlugins()
Register any methods and types of SOAP plugins to the SOAP server.
Class EmployeePositionId.
Class AddUserIdToPositionInOrgUnit.
const CONTEXT_SOAP_NO_AUTH
__construct(bool $a_use_wsdl=true)
server()
description: > This example shows how a Progress Bar can be rendered and updated by the server...
static initILIAS()
ilias initialisation
Class UserIdsOfPositionAndOrgUnit.
Class SuperiorPositionId.
enableWSDL(ilSetting $setting)
static init(string $a_type)
Init context by type.
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...