123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * @package chamilo.webservices
- */
- require_once __DIR__.'/cm_webservice_course.php';
- require_once __DIR__.'/cm_soap.php';
- /**
- * Configures the WSCourse SOAP service
- */
- $s = WSCMSoapServer::singleton();
- $s->wsdl->addComplexType(
- 'course_id',
- 'complexType',
- 'struct',
- 'all',
- '',
- array(
- 'course_id_field_name' => array('name' => 'course_id_field_name', 'type' => 'xsd:string'),
- 'course_id_value' => array('name' => 'course_id_value', 'type' => 'xsd:string')
- )
- );
- $s->wsdl->addComplexType(
- 'course_result',
- 'complexType',
- 'struct',
- 'all',
- '',
- array(
- 'course_id_value' => array('name' => 'course_id_value', 'type' => 'xsd:string'),
- 'result' => array('name' => 'result', 'type' => 'tns:result')
- )
- );
- $s->wsdl->addComplexType(
- 'course_result_array',
- 'complexType',
- 'array',
- '',
- 'SOAP-ENC:Array',
- array(),
- array(array('ref'=>'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:course_result[]')),
- 'tns:course_result'
- );
- $s->register(
- 'WSCMCourse.DeleteCourse',
- array('secret_key' => 'xsd:string', 'course_id_field_name' => 'xsd:string', 'course_id_value' => 'xsd:string')
- );
- $s->register(
- 'WSCMCourse.DeleteCourses',
- array('secret_key' => 'xsd:string', 'courses' => 'tns:course_id[]'),
- array('return' => 'tns:course_result_array')
- );
- $s->register(
- 'WSCMCourse.CreateCourse',
- array(
- 'secret_key' => 'xsd:string',
- 'title' => 'xsd:string',
- 'category_code' => 'xsd:string',
- 'wanted_code' => 'xsd:string',
- 'tutor_name' => 'xsd:string',
- 'course_admin_user_id_field_name' => 'xsd:string',
- 'course_admin_user_id_value' => 'xsd:string',
- 'language' => 'xsd:string',
- 'course_id_field_name' => 'xsd:string',
- 'course_id_value' => 'xsd:string',
- 'extras' => 'tns:extra_field[]'
- ),
- array('return' => 'xsd:int')
- );
- $s->wsdl->addComplexType(
- 'course_create',
- 'complexType',
- 'struct',
- 'all',
- '',
- array(
- 'title' => array('name' => 'title', 'type' => 'xsd:string'),
- 'category_code' => array('name' => 'category_code', 'type' => 'xsd:string'),
- 'wanted_code' => array('name' => 'wanted_code', 'type' => 'xsd:int'),
- 'tutor_name' => array('name' => 'tutor_name', 'type' => 'xsd:string'),
- 'course_admin_user_id_field_name' => array('name' => 'course_admin_user_id_field_name', 'type' => 'xsd:string'),
- 'course_admin_user_id_value' => array('name' => 'course_admin_user_id_value', 'type' => 'xsd:string'),
- 'language' => array('name' => 'language', 'type' => 'xsd:string'),
- 'course_id_field_name' => array('name' => 'course_id_field_name', 'type' => 'xsd:string'),
- 'course_id_value' => array('name' => 'course_id_value', 'type' => 'xsd:string'),
- 'extras' => array('name' => 'extras', 'type' => 'tns:extra_field[]')
- )
- );
- $s->wsdl->addComplexType(
- 'course_create_result',
- 'complexType',
- 'struct',
- 'all',
- '',
- array(
- 'course_id_value' => array('name' => 'course_id_value', 'type' => 'xsd:string'),
- 'course_id_generated' => array('name' => 'course_id_generated', 'type' => 'xsd:int'),
- 'result' => array('name' => 'result', 'type' => 'tns:result')
- )
- );
- $s->wsdl->addComplexType(
- 'course_create_result_array',
- 'complexType',
- 'array',
- '',
- 'SOAP-ENC:Array',
- array(),
- array(array('ref'=>'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:course_create_result[]')),
- 'tns:course_create_result'
- );
- $s->register(
- 'WSCMCourse.CreateCourses',
- array(
- 'secret_key' => 'xsd:string',
- 'courses' => 'tns:course_create[]'
- ),
- array('return' => 'tns:course_create_result_array')
- );
- $s->register(
- 'WSCMCourse.EditCourse',
- array(
- 'secret_key' => 'xsd:string',
- 'course_id_field_name' => 'xsd:string',
- 'course_id_value' => 'xsd:string',
- 'title' => 'xsd:string',
- 'category_code' => 'xsd:string',
- 'department_name' => 'xsd:string',
- 'department_url' => 'xsd:string',
- 'language' => 'xsd:string',
- 'visibility' => 'xsd:int',
- 'subscribe' => 'xsd:int',
- 'unsubscribe' => 'xsd:int',
- 'visual_code' => 'xsd:string',
- 'extras' => 'tns:extra_field[]'
- )
- );
- $s->wsdl->addComplexType(
- 'course',
- 'complexType',
- 'struct',
- 'all',
- '',
- array(
- 'id' => array('name' => 'id', 'type' => 'xsd:int'),
- 'code' => array('name' => 'code', 'type' => 'xsd:string'),
- 'title' => array('name' => 'title', 'type' => 'xsd:string'),
- 'language' => array('name' => 'language', 'type' => 'xsd:string'),
- 'visibility' => array('name' => 'visibility', 'type' => 'xsd:int'),
- 'category_name' => array('name' => 'category_name', 'type' => 'xsd:string'),
- 'number_students' => array('name' => 'number_students', 'type' => 'xsd:int'),
- 'external_course_id' => array('name' => 'external_course_id', 'type' => 'xsd:string'),
- )
- );
- $s->wsdl->addComplexType(
- 'course_array',
- 'complexType',
- 'array',
- '',
- 'SOAP-ENC:Array',
- array(),
- array(array('ref'=>'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:course[]')),
- 'tns:course'
- );
- $s->register(
- 'WSCMCourse.ListCourses',
- array(
- 'secret_key' => 'xsd:string',
- 'course_id_field_name' => 'xsd:string'
- ),
- array('return' => 'tns:course_array')
- );
- $s->register(
- 'WSCMCourse.SubscribeUserToCourse',
- array(
- 'secret_key' => 'xsd:string',
- 'course_id_field_name' => 'xsd:string',
- 'course_id_value' => 'xsd:string',
- 'user_id_field_name' => 'xsd:string',
- 'user_id_value' => 'xsd:string',
- 'status' => 'xsd:int'
- )
- );
- $s->register(
- 'WSCMCourse.UnsubscribeUserFromCourse',
- array(
- 'secret_key' => 'xsd:string',
- 'course_id_field_name' => 'xsd:string',
- 'course_id_value' => 'xsd:string',
- 'user_id_field_name' => 'xsd:string',
- 'user_id_value' => 'xsd:string'
- )
- );
- $s->wsdl->addComplexType(
- 'course_description',
- 'complexType',
- 'struct',
- 'all',
- '',
- array(
- 'course_desc_id' => array('name' => 'course_desc_id', 'type' => 'xsd:int'),
- 'course_desc_title' => array('name' => 'course_desc_title', 'type' => 'xsd:string'),
- 'course_desc_content' => array('name' => 'course_desc_content', 'type' => 'xsd:string')
- )
- );
- $s->wsdl->addComplexType(
- 'course_description_array',
- 'complexType',
- 'array',
- '',
- 'SOAP-ENC:Array',
- array(),
- array(array('ref'=>'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:course_description[]')),
- 'tns:course_description'
- );
- $s->register(
- 'WSCMCourse.GetCourseDescriptions',
- array(
- 'secret_key' => 'xsd:string',
- 'course_id_field_name' => 'xsd:string',
- 'course_id_value' => 'xsd:string'
- ),
- array('return' => 'tns:course_description_array')
- );
- $s->register(
- 'WSCMCourse.EditCourseDescription',
- array(
- 'secret_key' => 'xsd:string',
- 'course_id_field_name' => 'xsd:string',
- 'course_id_value' => 'xsd:string',
- 'course_desc_id' => 'xsd:int',
- 'course_desc_title' => 'xsd:string',
- 'course_desc_content' => 'xsd:string'
- )
- );
- $s->register(
- 'WSCMCourse.unreadMessage',
- array(
- 'username' => 'xsd:string',
- 'password' => 'xsd:string',
- ),
- array('return' => 'xsd:string'),
- 'urn:WSCMService',
- '',
- '',
- '',
- 'Retorna a quantidade de mensagens nao lidas na caixa de entrada do usuario.'
- );
- $s->register(
- 'WSCMCourse.getIdMessage',
- array(
- 'username' => 'xsd:string',
- 'password' => 'xsd:string',
- ),
- array('return' => 'xsd:string'),
- 'urn:WSCMService',
- '',
- '',
- '',
- 'Retorna o ID das mensagens.'
- );
- $s->register(
- 'WSCMCourse.nada',
- array('username' => 'xsd:string', 'password' => 'xsd:string'),
- array('return' => 'xsd:string')
- );
|