123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Configures the WSReport SOAP service
- * @package chamilo.webservices
- */
- require_once(dirname(__FILE__).'/webservice_report.php');
- require_once(dirname(__FILE__).'/soap.php');
- $s = WSSoapServer::singleton();
- $s->wsdl->addComplexType(
- 'user_id',
- 'complexType',
- 'struct',
- 'all',
- '',
- array(
- 'user_id_field_name' => array('name' => 'user_id_field_name', 'type' => 'xsd:string'),
- 'user_id_value' => array('name' => 'user_id_value', 'type' => 'xsd:string')
- )
- );
- $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(
- 'session_id',
- 'complexType',
- 'struct',
- 'all',
- '',
- array(
- 'session_id_field_name' => array('name' => 'session_id_field_name', 'type' => 'xsd:string'),
- 'session_id_value' => array('name' => 'session_id_value', 'type' => 'xsd:string')
- )
- );
- /*
- $s->wsdl->addComplexType(
- 'user_result',
- 'complexType',
- 'struct',
- 'all',
- '',
- array(
- 'user_id_value' => array('name' => 'user_id_value', 'type' => 'xsd:string'),
- 'result' => array('name' => 'result', 'type' => 'tns:result')
- )
- );*/
- $s->wsdl->addComplexType(
- 'user_result',
- 'complexType',
- 'struct',
- 'all',
- '',
- array(
- 'id' => array('name' => 'id', 'type' => 'xsd:string'),
- 'title' => array('name' => 'title', 'type' => 'xsd:string')
- )
- );
- $s->wsdl->addComplexType(
- 'progress_result',
- 'complexType',
- 'struct',
- 'all',
- '',
- array(
- 'progress_bar_mode' => array('name' => 'progress_bar_mode', 'type' => 'xsd:string'),
- 'progress_db' => array('name' => 'progress_db', 'type' => 'xsd:string')
- )
- );
- $s->wsdl->addComplexType(
- 'score_result',
- 'complexType',
- 'struct',
- 'all',
- '',
- array(
- 'min_score' => array('name' => 'min_score', 'type' => 'xsd:string'),
- 'max_score' => array('name' => 'max_score', 'type' => 'xsd:string'),
- 'mastery_score' => array('name' => 'mastery_score', 'type' => 'xsd:string'),
- 'current_score' => array('name' => 'current_score', 'type' => 'xsd:string'),
- )
- );
- $s->wsdl->addComplexType(
- 'user_result_array',
- 'complexType',
- 'array',
- '',
- 'SOAP-ENC:Array',
- array(),
- array(array('ref'=>'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:user_result[]')),
- 'tns:user_result'
- );
- $s->register(
- 'WSReport.GetTimeSpentOnPlatform',
- array('secret_key' => 'xsd:string', 'user_id_field_name' => 'xsd:string', 'user_id_value' => 'xsd:string'),
- array('return' => 'xsd:string')
- );
- $s->register(
- 'WSReport.GetTimeSpentOnCourse',
- array('secret_key' => 'xsd:string', 'user_id_field_name' => 'xsd:string', 'user_id_value' => 'xsd:string', 'course_id_field_name' => 'xsd:string', 'course_id_value' => 'xsd:string'),
- array('return' => 'xsd:string')
- );
- $s->register(
- 'WSReport.GetTimeSpentOnCourseInSession',
- array('secret_key' => 'xsd:string', 'user_id_field_name' => 'xsd:string', 'user_id_value' => 'xsd:string', 'course_id_field_name' => 'xsd:string', 'course_id_value' => 'xsd:string', 'session_id_field_name' => 'xsd:string', 'session_id_value' => 'xsd:string'),
- array('return' => 'xsd:string')
- );
- $s->register(
- 'WSReport.GetTimeSpentOnLearnpathInCourse',
- array('secret_key' => 'xsd:string', 'user_id_field_name' => 'xsd:string', 'user_id_value' => 'xsd:string', 'course_id_field_name' => 'xsd:string', 'course_id_value' => 'xsd:string', 'learnpath_id' => 'xsd:string'),
- array('return' => 'xsd:string')
- );
- $s->register(
- 'WSReport.GetLearnpathsByCourse',
- array('secret_key' => 'xsd:string', 'user_id_field_name' => 'xsd:string', 'user_id_value' => 'xsd:string', 'course_id_field_name' => 'xsd:string', 'course_id_value' => 'xsd:string'),
- array('return' => 'tns:user_result_array')
- );
- $s->register(
- 'WSReport.GetLearnpathProgress',
- array('secret_key' => 'xsd:string', 'user_id_field_name' => 'xsd:string', 'user_id_value' => 'xsd:string', 'course_id_field_name' => 'xsd:string', 'course_id_value' => 'xsd:string', 'learnpath_id' => 'xsd:string'),
- array('return' => 'tns:progress_result')
- );
- $s->register(
- 'WSReport.GetLearnpathHighestLessonLocation',
- array('secret_key' => 'xsd:string', 'user_id_field_name' => 'xsd:string', 'user_id_value' => 'xsd:string', 'course_id_field_name' => 'xsd:string', 'course_id_value' => 'xsd:string', 'learnpath_id' => 'xsd:string'),
- array('return' => 'xsd:string')
- );
- $s->register(
- 'WSReport.GetLearnpathScoreSingleItem',
- array('secret_key' => 'xsd:string', 'user_id_field_name' => 'xsd:string', 'user_id_value' => 'xsd:string', 'course_id_field_name' => 'xsd:string', 'course_id_value' => 'xsd:string', 'learnpath_id' => 'xsd:string', 'learnpath_item_id' => 'xsd:string'),
- array('return' => 'tns:score_result')
- );
- $s->register(
- 'WSReport.GetLearnpathStatusSingleItem',
- array('secret_key' => 'xsd:string', 'user_id_field_name' => 'xsd:string', 'user_id_value' => 'xsd:string', 'course_id_field_name' => 'xsd:string', 'course_id_value' => 'xsd:string', 'learnpath_id' => 'xsd:string', 'learnpath_item_id' => 'xsd:string'),
- array('return' => 'xsd:string')
- );
- $s->register(
- 'WSReport.test',
- array(),
- array('return' => 'xsd:string')
- );
|