Merge branch 'wip-MDL-31763-master' of git://github.com/abgreeve/moodle
[moodle.git] / course / rest.php
blob8ec14e6b467c624b92bf5e69ca344ba14aac677a
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * Provide interface for topics AJAX course formats
21 * @copyright 1999 Martin Dougiamas http://dougiamas.com
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23 * @package course
26 if (!defined('AJAX_SCRIPT')) {
27 define('AJAX_SCRIPT', true);
29 require_once(dirname(__FILE__) . '/../config.php');
30 require_once($CFG->dirroot.'/course/lib.php');
32 // Initialise ALL the incoming parameters here, up front.
33 $courseid = required_param('courseId', PARAM_INT);
34 $class = required_param('class', PARAM_ALPHA);
35 $field = optional_param('field', '', PARAM_ALPHA);
36 $instanceid = optional_param('instanceId', 0, PARAM_INT);
37 $sectionid = optional_param('sectionId', 0, PARAM_INT);
38 $beforeid = optional_param('beforeId', 0, PARAM_INT);
39 $value = optional_param('value', 0, PARAM_INT);
40 $column = optional_param('column', 0, PARAM_ALPHA);
41 $id = optional_param('id', 0, PARAM_INT);
42 $summary = optional_param('summary', '', PARAM_RAW);
43 $sequence = optional_param('sequence', '', PARAM_SEQUENCE);
44 $visible = optional_param('visible', 0, PARAM_INT);
45 $pageaction = optional_param('action', '', PARAM_ALPHA); // Used to simulate a DELETE command
47 $PAGE->set_url('/course/rest.php', array('courseId'=>$courseid,'class'=>$class));
49 //NOTE: when making any changes here please make sure it is using the same access control as course/mod.php !!
51 $course = $DB->get_record('course', array('id' => $courseid), '*', MUST_EXIST);
52 // Check user is logged in and set contexts if we are dealing with resource
53 if (in_array($class, array('resource'))) {
54 $cm = get_coursemodule_from_id(null, $id, $course->id, false, MUST_EXIST);
55 require_login($course, false, $cm);
56 $modcontext = get_context_instance(CONTEXT_MODULE, $cm->id);
57 } else {
58 require_login($course);
59 $coursecontext = get_context_instance(CONTEXT_COURSE, $course->id);
61 require_sesskey();
63 echo $OUTPUT->header(); // send headers
65 // OK, now let's process the parameters and do stuff
66 // MDL-10221 the DELETE method is not allowed on some web servers, so we simulate it with the action URL param
67 $requestmethod = $_SERVER['REQUEST_METHOD'];
68 if ($pageaction == 'DELETE') {
69 $requestmethod = 'DELETE';
72 switch($requestmethod) {
73 case 'POST':
75 switch ($class) {
76 case 'section':
77 require_capability('moodle/course:update', $coursecontext);
79 if (!$DB->record_exists('course_sections', array('course'=>$course->id, 'section'=>$id))) {
80 throw new moodle_exception('AJAX commands.php: Bad Section ID '.$id);
83 switch ($field) {
84 case 'visible':
85 $resourcestotoggle = set_section_visible($course->id, $id, $value);
86 echo json_encode(array('resourcestotoggle' => $resourcestotoggle));
87 break;
89 case 'move':
90 move_section_to($course, $id, $value);
91 break;
93 rebuild_course_cache($course->id);
94 break;
96 case 'resource':
97 switch ($field) {
98 case 'visible':
99 require_capability('moodle/course:activityvisibility', $modcontext);
100 set_coursemodule_visible($cm->id, $value);
101 break;
103 case 'groupmode':
104 require_capability('moodle/course:manageactivities', $modcontext);
105 set_coursemodule_groupmode($cm->id, $value);
106 break;
108 case 'indent':
109 require_capability('moodle/course:manageactivities', $modcontext);
110 $cm->indent = $value;
111 if ($cm->indent >= 0) {
112 $DB->update_record('course_modules', $cm);
114 break;
116 case 'move':
117 require_capability('moodle/course:manageactivities', $modcontext);
118 if (!$section = $DB->get_record('course_sections', array('course'=>$course->id, 'section'=>$sectionid))) {
119 throw new moodle_exception('AJAX commands.php: Bad section ID '.$sectionid);
122 if ($beforeid > 0){
123 $beforemod = get_coursemodule_from_id('', $beforeid, $course->id);
124 $beforemod = $DB->get_record('course_modules', array('id'=>$beforeid));
125 } else {
126 $beforemod = NULL;
129 moveto_module($cm, $section, $beforemod);
130 break;
132 rebuild_course_cache($course->id);
133 break;
135 case 'course':
136 switch($field) {
137 case 'marker':
138 require_capability('moodle/course:update', $coursecontext);
139 course_set_marker($course->id, $value);
140 break;
142 break;
144 break;
146 case 'DELETE':
147 switch ($class) {
148 case 'resource':
149 require_capability('moodle/course:manageactivities', $modcontext);
150 $modlib = "$CFG->dirroot/mod/$cm->modname/lib.php";
152 if (file_exists($modlib)) {
153 include_once($modlib);
154 } else {
155 throw new moodle_exception("Ajax rest.php: This module is missing mod/$cm->modname/lib.php");
157 $deleteinstancefunction = $cm->modname."_delete_instance";
159 // Run the module's cleanup funtion.
160 if (!$deleteinstancefunction($cm->instance)) {
161 throw new moodle_exception("Ajax rest.php: Could not delete the $cm->modname $cm->name (instance)");
162 die;
165 // remove all module files in case modules forget to do that
166 $fs = get_file_storage();
167 $fs->delete_area_files($modcontext->id);
169 if (!delete_course_module($cm->id)) {
170 throw new moodle_exception("Ajax rest.php: Could not delete the $cm->modname $cm->name (coursemodule)");
172 // Remove the course_modules entry.
173 if (!delete_mod_from_section($cm->id, $cm->section)) {
174 throw new moodle_exception("Ajax rest.php: Could not delete the $cm->modname $cm->name from section");
177 // Trigger a mod_deleted event with information about this module.
178 $eventdata = new stdClass();
179 $eventdata->modulename = $cm->modname;
180 $eventdata->cmid = $cm->id;
181 $eventdata->courseid = $course->id;
182 $eventdata->userid = $USER->id;
183 events_trigger('mod_deleted', $eventdata);
185 rebuild_course_cache($course->id);
187 add_to_log($courseid, "course", "delete mod",
188 "view.php?id=$courseid",
189 "$cm->modname $cm->instance", $cm->id);
190 break;
192 break;