2009-01-13 07:00:26 +00:00
|
|
|
<?php
|
2009-10-12 21:46:16 +00:00
|
|
|
|
|
|
|
// 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/>.
|
|
|
|
|
2009-01-13 07:00:26 +00:00
|
|
|
/**
|
2009-10-12 21:46:16 +00:00
|
|
|
* REST web service entry point. The authentication is done via tokens.
|
2009-02-11 06:57:30 +00:00
|
|
|
*
|
|
|
|
* @package webservice
|
2009-10-12 21:46:16 +00:00
|
|
|
* @copyright 2009 Moodle Pty Ltd (http://moodle.com)
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
2009-02-11 06:57:30 +00:00
|
|
|
*/
|
|
|
|
|
2009-11-01 10:13:38 +00:00
|
|
|
// disable moodle specific debug messages and any errors in output
|
|
|
|
define('NO_DEBUG_DISPLAY', true);
|
2009-10-12 21:46:16 +00:00
|
|
|
define('NO_MOODLE_COOKIES', true);
|
2009-01-13 07:00:26 +00:00
|
|
|
|
2009-10-12 21:46:16 +00:00
|
|
|
require('../../config.php');
|
|
|
|
require_once("$CFG->dirroot/webservice/rest/locallib.php");
|
2009-01-13 07:00:26 +00:00
|
|
|
|
2009-10-12 21:46:16 +00:00
|
|
|
if (!webservice_protocol_is_enabled('rest')) {
|
2009-01-15 07:53:10 +00:00
|
|
|
die;
|
|
|
|
}
|
|
|
|
|
2011-09-19 13:54:09 +08:00
|
|
|
$restformat = optional_param('moodlewsrestformat', 'xml', PARAM_ALPHA);
|
|
|
|
//remove the alt from the request
|
|
|
|
if(isset($_REQUEST['moodlewsrestformat'])) {
|
|
|
|
unset($_REQUEST['moodlewsrestformat']);
|
|
|
|
}
|
|
|
|
if(isset($_GET['moodlewsrestformat'])) {
|
|
|
|
unset($_GET['moodlewsrestformat']);
|
|
|
|
}
|
|
|
|
if(isset($_POST['moodlewsrestformat'])) {
|
|
|
|
unset($_POST['moodlewsrestformat']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$server = new webservice_rest_server(WEBSERVICE_AUTHMETHOD_PERMANENT_TOKEN, $restformat);
|
2009-10-24 15:28:01 +00:00
|
|
|
$server->run();
|
2009-10-12 21:46:16 +00:00
|
|
|
die;
|
2009-02-11 06:57:30 +00:00
|
|
|
|