mirror of
https://github.com/moodle/moodle.git
synced 2025-07-23 07:11:28 +02:00
Fix: $PAGE->context must be reset when calling validate_context Improve: Provide wrapper for calling an external function The wrapper correctly checks the function parameters and return type against the description of the external function, and stores the PAGE and COURSE global state variables, restoring them before the function returns. Fix: buggy unit tests. These tests are expecting debugging from a bug that was fixed, and calling web service functions with no user or session.
59 lines
1.9 KiB
PHP
59 lines
1.9 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* This file is used to call any registered externallib function in Moodle.
|
|
*
|
|
* It will process more than one request and return more than one response if required.
|
|
* It is recommended to add webservice functions and re-use this script instead of
|
|
* writing any new custom ajax scripts.
|
|
*
|
|
* @since Moodle 2.9
|
|
* @package core
|
|
* @copyright 2015 Damyon Wiese
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
define('AJAX_SCRIPT', true);
|
|
|
|
require_once(dirname(__FILE__) . '/../../config.php');
|
|
require_once($CFG->libdir . '/externallib.php');
|
|
|
|
$rawjson = file_get_contents('php://input');
|
|
|
|
$requests = json_decode($rawjson, true);
|
|
if ($requests === null) {
|
|
$lasterror = json_last_error_msg();
|
|
throw new coding_exception('Invalid json in request: ' . $lasterror);
|
|
}
|
|
$responses = array();
|
|
|
|
foreach ($requests as $request) {
|
|
$response = array();
|
|
$methodname = clean_param($request['methodname'], PARAM_ALPHANUMEXT);
|
|
$index = clean_param($request['index'], PARAM_INT);
|
|
$args = $request['args'];
|
|
|
|
$response = external_api::call_external_function($methodname, $args, true);
|
|
$responses[$index] = $response;
|
|
if ($response['error']) {
|
|
// Do not process the remaining requests.
|
|
break;
|
|
}
|
|
}
|
|
|
|
echo json_encode($responses);
|