mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
108 lines
3.4 KiB
PHP
108 lines
3.4 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/>.
|
|
|
|
/**
|
|
* Resource external API
|
|
*
|
|
* @package mod_resource
|
|
* @category external
|
|
* @copyright 2015 Juan Leyva <juan@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
* @since Moodle 3.0
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die;
|
|
|
|
require_once("$CFG->libdir/externallib.php");
|
|
|
|
/**
|
|
* Resource external functions
|
|
*
|
|
* @package mod_resource
|
|
* @category external
|
|
* @copyright 2015 Juan Leyva <juan@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
* @since Moodle 3.0
|
|
*/
|
|
class mod_resource_external extends external_api {
|
|
|
|
/**
|
|
* Returns description of method parameters
|
|
*
|
|
* @return external_function_parameters
|
|
* @since Moodle 3.0
|
|
*/
|
|
public static function view_resource_parameters() {
|
|
return new external_function_parameters(
|
|
array(
|
|
'resourceid' => new external_value(PARAM_INT, 'resource instance id')
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Simulate the resource/view.php web interface page: trigger events, completion, etc...
|
|
*
|
|
* @param int $resourceid the resource instance id
|
|
* @return array of warnings and status result
|
|
* @since Moodle 3.0
|
|
* @throws moodle_exception
|
|
*/
|
|
public static function view_resource($resourceid) {
|
|
global $DB, $CFG;
|
|
require_once($CFG->dirroot . "/mod/resource/lib.php");
|
|
|
|
$params = self::validate_parameters(self::view_resource_parameters(),
|
|
array(
|
|
'resourceid' => $resourceid
|
|
));
|
|
$warnings = array();
|
|
|
|
// Request and permission validation.
|
|
$resource = $DB->get_record('resource', array('id' => $params['resourceid']), '*', MUST_EXIST);
|
|
list($course, $cm) = get_course_and_cm_from_instance($resource, 'resource');
|
|
|
|
$context = context_module::instance($cm->id);
|
|
self::validate_context($context);
|
|
|
|
require_capability('mod/resource:view', $context);
|
|
|
|
// Call the resource/lib API.
|
|
resource_view($resource, $course, $cm, $context);
|
|
|
|
$result = array();
|
|
$result['status'] = true;
|
|
$result['warnings'] = $warnings;
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Returns description of method result value
|
|
*
|
|
* @return external_description
|
|
* @since Moodle 3.0
|
|
*/
|
|
public static function view_resource_returns() {
|
|
return new external_single_structure(
|
|
array(
|
|
'status' => new external_value(PARAM_BOOL, 'status: true if success'),
|
|
'warnings' => new external_warnings()
|
|
)
|
|
);
|
|
}
|
|
|
|
}
|