MDL-18229 gradebook: missing 'use' in singleview
[moodle.git] / notes / externallib.php
blob98f9985b6df87f714e6c3e92c9b2552c1e136105
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * External notes API
21 * @package core_notes
22 * @category external
23 * @copyright 2011 Jerome Mouneyrac
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 require_once("$CFG->libdir/externallib.php");
29 /**
30 * Notes external functions
32 * @package core_notes
33 * @category external
34 * @copyright 2011 Jerome Mouneyrac
35 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
36 * @since Moodle 2.2
38 class core_notes_external extends external_api {
40 /**
41 * Returns description of method parameters
43 * @return external_function_parameters
44 * @since Moodle 2.2
46 public static function create_notes_parameters() {
47 return new external_function_parameters(
48 array(
49 'notes' => new external_multiple_structure(
50 new external_single_structure(
51 array(
52 'userid' => new external_value(PARAM_INT, 'id of the user the note is about'),
53 'publishstate' => new external_value(PARAM_ALPHA, '\'personal\', \'course\' or \'site\''),
54 'courseid' => new external_value(PARAM_INT, 'course id of the note (in Moodle a note can only be created into a course, even for site and personal notes)'),
55 'text' => new external_value(PARAM_RAW, 'the text of the message - text or HTML'),
56 'format' => new external_format_value('text', VALUE_DEFAULT),
57 'clientnoteid' => new external_value(PARAM_ALPHANUMEXT, 'your own client id for the note. If this id is provided, the fail message id will be returned to you', VALUE_OPTIONAL),
65 /**
66 * Create notes about some users
67 * Note: code should be matching the /notes/edit.php checks
68 * and the /user/addnote.php checks. (they are similar cheks)
70 * @param array $notes An array of notes to create.
71 * @return array (success infos and fail infos)
72 * @since Moodle 2.2
74 public static function create_notes($notes = array()) {
75 global $CFG, $DB;
76 require_once($CFG->dirroot . "/notes/lib.php");
78 $params = self::validate_parameters(self::create_notes_parameters(), array('notes' => $notes));
80 // Check if note system is enabled.
81 if (!$CFG->enablenotes) {
82 throw new moodle_exception('notesdisabled', 'notes');
85 // Retrieve all courses.
86 $courseids = array();
87 foreach ($params['notes'] as $note) {
88 $courseids[] = $note['courseid'];
90 $courses = $DB->get_records_list("course", "id", $courseids);
92 // Retrieve all users of the notes.
93 $userids = array();
94 foreach ($params['notes'] as $note) {
95 $userids[] = $note['userid'];
97 list($sqluserids, $sqlparams) = $DB->get_in_or_equal($userids, SQL_PARAMS_NAMED, 'userid_');
98 $users = $DB->get_records_select("user", "id " . $sqluserids . " AND deleted = 0", $sqlparams);
100 $resultnotes = array();
101 foreach ($params['notes'] as $note) {
103 $success = true;
104 $resultnote = array(); // The infos about the success of the operation.
106 // Check the course exists.
107 if (empty($courses[$note['courseid']])) {
108 $success = false;
109 $errormessage = get_string('invalidcourseid', 'error');
110 } else {
111 // Ensure the current user is allowed to run this function.
112 $context = context_course::instance($note['courseid']);
113 self::validate_context($context);
114 require_capability('moodle/notes:manage', $context);
117 // Check the user exists.
118 if (empty($users[$note['userid']])) {
119 $success = false;
120 $errormessage = get_string('invaliduserid', 'notes', $note['userid']);
123 // Build the resultnote.
124 if (isset($note['clientnoteid'])) {
125 $resultnote['clientnoteid'] = $note['clientnoteid'];
128 if ($success) {
129 // Now we can create the note.
130 $dbnote = new stdClass;
131 $dbnote->courseid = $note['courseid'];
132 $dbnote->userid = $note['userid'];
133 // Need to support 'html' and 'text' format values for backward compatibility.
134 switch (strtolower($note['format'])) {
135 case 'html':
136 $textformat = FORMAT_HTML;
137 break;
138 case 'text':
139 $textformat = FORMAT_PLAIN;
140 default:
141 $textformat = external_validate_format($note['format']);
142 break;
144 $dbnote->content = $note['text'];
145 $dbnote->format = $textformat;
147 // Get the state ('personal', 'course', 'site').
148 switch ($note['publishstate']) {
149 case 'personal':
150 $dbnote->publishstate = NOTES_STATE_DRAFT;
151 break;
152 case 'course':
153 $dbnote->publishstate = NOTES_STATE_PUBLIC;
154 break;
155 case 'site':
156 $dbnote->publishstate = NOTES_STATE_SITE;
157 $dbnote->courseid = SITEID;
158 break;
159 default:
160 break;
163 // TODO MDL-31119 performance improvement - if possible create a bulk functions for saving multiple notes at once
164 if (note_save($dbnote)) { // Note_save attribut an id in case of success.
165 $success = $dbnote->id;
168 $resultnote['noteid'] = $success;
169 } else {
170 // WARNINGS: for backward compatibility we return this errormessage.
171 // We should have thrown exceptions as these errors prevent results to be returned.
172 // See http://docs.moodle.org/dev/Errors_handling_in_web_services#When_to_send_a_warning_on_the_server_side .
173 $resultnote['noteid'] = -1;
174 $resultnote['errormessage'] = $errormessage;
177 $resultnotes[] = $resultnote;
180 return $resultnotes;
184 * Returns description of method result value
186 * @return external_description
187 * @since Moodle 2.2
189 public static function create_notes_returns() {
190 return new external_multiple_structure(
191 new external_single_structure(
192 array(
193 'clientnoteid' => new external_value(PARAM_ALPHANUMEXT, 'your own id for the note', VALUE_OPTIONAL),
194 'noteid' => new external_value(PARAM_INT, 'ID of the created note when successful, -1 when failed'),
195 'errormessage' => new external_value(PARAM_TEXT, 'error message - if failed', VALUE_OPTIONAL)
202 * Returns description of delete_notes parameters
204 * @return external_function_parameters
205 * @since Moodle 2.5
207 public static function delete_notes_parameters() {
208 return new external_function_parameters(
209 array(
210 "notes"=> new external_multiple_structure(
211 new external_value(PARAM_INT, 'ID of the note to be deleted'), 'Array of Note Ids to be deleted.'
218 * Delete notes about users.
219 * Note: code should be matching the /notes/delete.php checks.
221 * @param array $notes An array of ids for the notes to delete.
222 * @return null
223 * @since Moodle 2.5
225 public static function delete_notes($notes = array()) {
226 global $CFG;
227 require_once($CFG->dirroot . "/notes/lib.php");
229 $params = self::validate_parameters(self::delete_notes_parameters(), $notes);
231 // Check if note system is enabled.
232 if (!$CFG->enablenotes) {
233 throw new moodle_exception('notesdisabled', 'notes');
235 $warnings = array();
236 foreach ($params['notes'] as $noteid) {
237 $note = note_load($noteid);
238 if (isset($note->id)) {
239 // Ensure the current user is allowed to run this function.
240 $context = context_course::instance($note->courseid);
241 self::validate_context($context);
242 require_capability('moodle/notes:manage', $context);
243 if (!note_delete($note)) {
244 $warnings[] = array(array('item' => 'note',
245 'itemid' => $noteid,
246 'warningcode' => 'savedfailed',
247 'message' => 'Note could not be modified'));
249 } else {
250 $warnings[] = array('item'=>'note', 'itemid'=>$noteid, 'warningcode'=>'badid', 'message'=>'Note does not exist');
253 return $warnings;
257 * Returns description of delete_notes result value.
259 * @return external_description
260 * @since Moodle 2.5
262 public static function delete_notes_returns() {
263 return new external_warnings('item is always \'note\'',
264 'When errorcode is savedfailed the note could not be modified.' .
265 'When errorcode is badparam, an incorrect parameter was provided.' .
266 'When errorcode is badid, the note does not exist',
267 'errorcode can be badparam (incorrect parameter), savedfailed (could not be modified), or badid (note does not exist)');
272 * Returns description of get_notes parameters.
274 * @return external_function_parameters
275 * @since Moodle 2.5
277 public static function get_notes_parameters() {
278 return new external_function_parameters(
279 array(
280 "notes"=> new external_multiple_structure(
281 new external_value(PARAM_INT, 'ID of the note to be retrieved'), 'Array of Note Ids to be retrieved.'
288 * Get notes about users.
290 * @param array $notes An array of ids for the notes to retrieve.
291 * @return null
292 * @since Moodle 2.5
294 public static function get_notes($notes) {
295 global $CFG;
296 require_once($CFG->dirroot . "/notes/lib.php");
298 $params = self::validate_parameters(self::get_notes_parameters(), $notes);
299 // Check if note system is enabled.
300 if (!$CFG->enablenotes) {
301 throw new moodle_exception('notesdisabled', 'notes');
303 $resultnotes = array();
304 foreach ($params['notes'] as $noteid) {
305 $resultnote = array();
307 $note = note_load($noteid);
308 if (isset($note->id)) {
309 // Ensure the current user is allowed to run this function.
310 $context = context_course::instance($note->courseid);
311 self::validate_context($context);
312 require_capability('moodle/notes:view', $context);
313 list($gotnote['text'], $gotnote['format']) = external_format_text($note->content,
314 $note->format,
315 $context->id,
316 'notes',
318 '');
319 $gotnote['noteid'] = $note->id;
320 $gotnote['userid'] = $note->userid;
321 $gotnote['publishstate'] = $note->publishstate;
322 $gotnote['courseid'] = $note->courseid;
323 $resultnotes["notes"][] = $gotnote;
324 } else {
325 $resultnotes["warnings"][] = array('item' => 'note',
326 'itemid' => $noteid,
327 'warningcode' => 'badid',
328 'message' => 'Note does not exist');
331 return $resultnotes;
335 * Returns description of get_notes result value.
337 * @return external_description
338 * @since Moodle 2.5
340 public static function get_notes_returns() {
341 return new external_single_structure(
342 array(
343 'notes' => new external_multiple_structure(
344 new external_single_structure(
345 array(
346 'noteid' => new external_value(PARAM_INT, 'id of the note', VALUE_OPTIONAL),
347 'userid' => new external_value(PARAM_INT, 'id of the user the note is about', VALUE_OPTIONAL),
348 'publishstate' => new external_value(PARAM_ALPHA, '\'personal\', \'course\' or \'site\'', VALUE_OPTIONAL),
349 'courseid' => new external_value(PARAM_INT, 'course id of the note', VALUE_OPTIONAL),
350 'text' => new external_value(PARAM_RAW, 'the text of the message - text or HTML', VALUE_OPTIONAL),
351 'format' => new external_format_value('text', VALUE_OPTIONAL),
352 ), 'note'
355 'warnings' => new external_warnings('item is always \'note\'',
356 'When errorcode is savedfailed the note could not be modified.' .
357 'When errorcode is badparam, an incorrect parameter was provided.' .
358 'When errorcode is badid, the note does not exist',
359 'errorcode can be badparam (incorrect parameter), savedfailed (could not be modified), or badid (note does not exist)')
365 * Returns description of update_notes parameters.
367 * @return external_function_parameters
368 * @since Moodle 2.5
370 public static function update_notes_parameters() {
371 return new external_function_parameters(
372 array(
373 'notes' => new external_multiple_structure(
374 new external_single_structure(
375 array(
376 'id' => new external_value(PARAM_INT, 'id of the note'),
377 'publishstate' => new external_value(PARAM_ALPHA, '\'personal\', \'course\' or \'site\''),
378 'text' => new external_value(PARAM_RAW, 'the text of the message - text or HTML'),
379 'format' => new external_format_value('text', VALUE_DEFAULT),
381 ), "Array of Notes", VALUE_DEFAULT, array()
388 * Update notes about users.
390 * @param array $notes An array of ids for the notes to update.
391 * @return array fail infos.
392 * @since Moodle 2.2
394 public static function update_notes($notes = array()) {
395 global $CFG, $DB;
396 require_once($CFG->dirroot . "/notes/lib.php");
398 $params = self::validate_parameters(self::update_notes_parameters(), array('notes' => $notes));
400 // Check if note system is enabled.
401 if (!$CFG->enablenotes) {
402 throw new moodle_exception('notesdisabled', 'notes');
405 $warnings = array();
406 foreach ($params['notes'] as $note) {
407 $notedetails = note_load($note['id']);
408 if (isset($notedetails->id)) {
409 // Ensure the current user is allowed to run this function.
410 $context = context_course::instance($notedetails->courseid);
411 self::validate_context($context);
412 require_capability('moodle/notes:manage', $context);
414 $dbnote = new stdClass;
415 $dbnote->id = $note['id'];
416 $dbnote->content = $note['text'];
417 $dbnote->format = external_validate_format($note['format']);
418 // Get the state ('personal', 'course', 'site').
419 switch ($note['publishstate']) {
420 case 'personal':
421 $dbnote->publishstate = NOTES_STATE_DRAFT;
422 break;
423 case 'course':
424 $dbnote->publishstate = NOTES_STATE_PUBLIC;
425 break;
426 case 'site':
427 $dbnote->publishstate = NOTES_STATE_SITE;
428 $dbnote->courseid = SITEID;
429 break;
430 default:
431 $warnings[] = array('item' => 'note',
432 'itemid' => $note["id"],
433 'warningcode' => 'badparam',
434 'message' => 'Provided publishstate incorrect');
435 break;
437 if (!note_save($dbnote)) {
438 $warnings[] = array('item' => 'note',
439 'itemid' => $note["id"],
440 'warningcode' => 'savedfailed',
441 'message' => 'Note could not be modified');
443 } else {
444 $warnings[] = array('item' => 'note',
445 'itemid' => $note["id"],
446 'warningcode' => 'badid',
447 'message' => 'Note does not exist');
450 return $warnings;
454 * Returns description of update_notes result value.
456 * @return external_description
457 * @since Moodle 2.5
459 public static function update_notes_returns() {
460 return new external_warnings('item is always \'note\'',
461 'When errorcode is savedfailed the note could not be modified.' .
462 'When errorcode is badparam, an incorrect parameter was provided.' .
463 'When errorcode is badid, the note does not exist',
464 'errorcode can be badparam (incorrect parameter), savedfailed (could not be modified), or badid (note does not exist)');
469 * Deprecated notes external functions
471 * @package core_notes
472 * @copyright 2011 Jerome Mouneyrac
473 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
474 * @since Moodle 2.1
475 * @deprecated Moodle 2.2 MDL-29106 - Please do not use this class any more.
476 * @see core_notes_external
478 class moodle_notes_external extends external_api {
481 * Returns description of method parameters
483 * @return external_function_parameters
484 * @since Moodle 2.1
485 * @deprecated Moodle 2.2 MDL-29106 - Please do not call this function any more.
486 * @see core_notes_external::create_notes_parameters()
488 public static function create_notes_parameters() {
489 return core_notes_external::create_notes_parameters();
493 * Create notes about some users
494 * Note: code should be matching the /notes/edit.php checks
495 * and the /user/addnote.php checks. (they are similar cheks)
497 * @param array $notes An array of notes to create.
498 * @return array (success infos and fail infos)
499 * @since Moodle 2.1
500 * @deprecated Moodle 2.2 MDL-29106 - Please do not call this function any more.
501 * @see core_notes_external::create_notes()
503 public static function create_notes($notes = array()) {
504 return core_notes_external::create_notes($notes);
508 * Returns description of method result value
510 * @return external_description
511 * @since Moodle 2.1
512 * @deprecated Moodle 2.2 MDL-29106 - Please do not call this function any more.
513 * @see core_notes_external::create_notes_returns()
515 public static function create_notes_returns() {
516 return core_notes_external::create_notes_returns();