mirror of
https://github.com/moodle/moodle.git
synced 2025-04-28 03:44:24 +02:00
dirname() is a slow function compared with __DIR__ and using '/../'. Moodle has a large number of legacy files that are included each time a page loads and is not able to use an autoloader as it is functional code. This allows those required includes to perform as best as possible in this situation.
66 lines
2.2 KiB
PHP
66 lines
2.2 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(__DIR__ . '/../../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();
|
|
|
|
// Defines the external settings required for Ajax processing.
|
|
$settings = external_settings::get_instance();
|
|
$settings->set_file('pluginfile.php');
|
|
$settings->set_fileurl(true);
|
|
$settings->set_filter(true);
|
|
$settings->set_raw(false);
|
|
|
|
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);
|