123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * This script provides the caller service with a list
- * of courses that have a certain level of visibility
- * on this chamilo portal.
- * It is set to work with the Chamilo module for Drupal:
- * http://drupal.org/project/chamilo.
- *
- * @author Yannick Warnier <yannick.warnier@beeznest.com>
- *
- * @package chamilo.webservices
- */
- require_once __DIR__.'/../inc/global.inc.php';
- // Create the server instance
- $server = new soap_server();
- // Initialize WSDL support
- $server->configureWSDL('WSCourseList', 'urn:WSCourseList');
- /* Register WSCourseList function */
- // Register the data structures used by the service
- $server->wsdl->addComplexType(
- 'courseDetails',
- 'complexType',
- 'struct',
- 'all',
- '',
- [
- 'name' => 'code',
- 'type' => 'xsd:string',
- 'name' => 'title',
- 'type' => 'xsd:string',
- 'name' => 'url',
- 'type' => 'xsd:string',
- 'name' => 'teacher',
- 'type' => 'xsd:string',
- 'name' => 'language',
- 'type' => 'xsd:string',
- ]
- );
- $server->wsdl->addComplexType(
- 'courseList',
- 'complexType',
- 'array',
- '',
- 'SOAP-ENC:Array',
- [],
- [
- ['ref' => 'SOAP-ENC:arrayType',
- 'wsdl:arrayType' => 'tns:courseDetails[]', ],
- ],
- 'tns:courseDetails'
- );
- // Register the method to expose
- $server->register(
- 'WSCourseList', // method name
- ['username' => 'xsd:string',
- 'signature' => 'xsd:string',
- 'visibilities' => 'xsd:string', ], // input parameters
- ['return' => 'xsd:Array'], // output parameters
- 'urn:WSCourseList', // namespace
- 'urn:WSCourseList#WSCourseList', // soapaction
- 'rpc', // style
- 'encoded', // use
- 'This service returns a list of courses' // documentation
- );
- /**
- * Get a list of courses (code, url, title, teacher, language) and return to caller
- * Function registered as service. Returns strings in UTF-8.
- *
- * @param string User name in Chamilo
- * @param string Signature (composed of the sha1(username+apikey)
- * @param mixed Array or string. Type of visibility of course (public, public-registered, private, closed)
- *
- * @return array Courses list (code=>[title=>'title',url='http://...',teacher=>'...',language=>''],code=>[...],...)
- */
- function WSCourseList($username, $signature, $visibilities = 'public')
- {
- if (empty($username) or empty($signature)) {
- return -1;
- }
- global $_configuration;
- $info = api_get_user_info_from_username($username);
- $user_id = $info['user_id'];
- if (!UserManager::is_admin($user_id)) {
- return -1;
- }
- $list = UserManager::get_api_keys($user_id, 'dokeos');
- $key = '';
- foreach ($list as $key) {
- break;
- }
- $local_key = $username.$key;
- if (!api_is_valid_secret_key($signature, $local_key) &&
- !api_is_valid_secret_key($signature, $username.$_configuration['security_key'])
- ) {
- return -1; // The secret key is incorrect.
- }
- //public-registered = open
- $vis = ['public' => '3', 'public-registered' => '2', 'private' => '1', 'closed' => '0'];
- $courses_list = [];
- if (!is_array($visibilities)) {
- $visibilities = split(',', $visibilities);
- }
- foreach ($visibilities as $visibility) {
- if (!in_array($visibility, array_keys($vis))) {
- return ['error_msg' => 'Security check failed'];
- }
- $courses_list_tmp = CourseManager::get_courses_list(
- null,
- null,
- null,
- null,
- $vis[$visibility]
- );
- foreach ($courses_list_tmp as $index => $course) {
- $course_info = CourseManager::get_course_information($course['code']);
- $courses_list[] = [
- 'code' => $course['code'],
- 'title' => api_utf8_encode($course_info['title']),
- 'url' => api_get_path(WEB_COURSE_PATH).$course_info['directory'].'/',
- 'teacher' => api_utf8_encode($course_info['tutor_name']),
- 'language' => $course_info['course_language'],
- ];
- }
- }
- return $courses_list;
- }
- // Use the request to (try to) invoke the service.
- $HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : '';
- $server->service($HTTP_RAW_POST_DATA);
|