You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
170 lines
5.3 KiB
170 lines
5.3 KiB
<?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')
|
|
);
|
|
|