-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathexternallib.php
116 lines (100 loc) · 4.14 KB
/
externallib.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?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/>.
/**
* Web service for mod assign feedback onenote
*
* @package assignfeedback_onenote
* @since Moodle 3.9
* @copyright Enovation Solutions Ltd. {@link https://enovation.ie}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
use local_onenote\api\base;
defined('MOODLE_INTERNAL') || die;
require_once("$CFG->libdir/externallib.php");
require_once("$CFG->dirroot/mod/assign/feedback/onenote/externallib.php");
/**
* Assign functions
*
* @copyright 2012 Paul Charsley
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class assignfeedback_onenote_external extends external_api {
/**
* Utility function for validating an assign.
*
* @param int $contextid context id
* @param int $gradeid grade id
* @param int $userid user id
* @return array array containing the assign, course, context and course module objects
* @since Moodle 3.2
*/
protected static function validate_feedback_onenote_delete_foruser($contextid, $gradeid, $userid) {
global $DB;
// Request and permission validation.
$assign = $DB->get_record('assignfeedback_onenote', ['id' => $gradeid], 'id', MUST_EXIST);
$user = $DB->get_record('user', ['id' => $userid], 'id', MUST_EXIST);
return [$contextid, $gradeid, $userid];
}
/**
* Describes the parameters for view_assign.
*
* @return external_function_parameters
* @since Moodle 3.2
*/
public static function feedback_onenote_delete_foruser_parameters() {
return new external_function_parameters (['contextid' => new external_value(PARAM_INT, 'Context id'),
'gradeid' => new external_value(PARAM_INT, 'Grade id'), 'userid' => new external_value(PARAM_INT, 'User id')]);
}
/**
* Update the module completion status.
*
* @param int $contextid context id
* @param int $gradeid grade id
* @param int $userid user id
* @return array of warnings and status result
* @since Moodle 3.2
*/
public static function feedback_onenote_delete_foruser($contextid, $gradeid, $userid) {
global $DB;
$warnings = [];
self::validate_parameters(self::feedback_onenote_delete_foruser_parameters(),
['contextid' => $contextid, 'gradeid' => $gradeid, 'userid' => $userid]);
// This code removes the entry.
$fs = get_file_storage();
// Delete any previous feedbacks.
$fs->delete_area_files($contextid, 'assignfeedback_onenote', base::ASSIGNFEEDBACK_ONENOTE_FILEAREA, $gradeid);
// Remove entry from local_onenote_assign_pages.
$graderecord = $DB->get_record('assign_grades', ['id' => $gradeid], '*', MUST_EXIST);
$record = $DB->get_record('local_onenote_assign_pages', ['assign_id' => $graderecord->assignment, 'user_id' => $userid],
'*', MUST_EXIST);
$record->feedback_teacher_page_id = '';
$DB->update_record('local_onenote_assign_pages', $record);
$result = [];
$result['status'] = true;
$result['warnings'] = $warnings;
return $result;
}
/**
* Describes the view_assign return value.
*
* @return external_single_structure
* @since Moodle 3.2
*/
public static function feedback_onenote_delete_foruser_returns() {
return new external_single_structure(['status' => new external_value(PARAM_BOOL, 'status: true if success'),
'warnings' => new external_warnings()]);
}
}