3 // This file is part of Moodle - http://moodle.org/
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.
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/>.
19 * Web services admin UI forms
22 * @copyright 2009 Moodle Pty Ltd (http://moodle.com)
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 require_once $CFG->libdir . '/formslib.php';
28 * Display the authorised user settings form
29 * Including IP Restriction, Valid until and (TODO) capability
31 class external_service_authorised_user_settings_form extends moodleform {
33 function definition() {
34 $mform = $this->_form;
35 $data = $this->_customdata;
37 $mform->addElement('header', 'serviceusersettings',
38 get_string('serviceusersettings', 'webservice'));
40 $mform->addElement('text', 'iprestriction',
41 get_string('iprestriction', 'webservice'));
42 $mform->addHelpButton('iprestriction', 'iprestriction', 'webservice');
44 $mform->addElement('date_selector', 'validuntil',
45 get_string('validuntil', 'webservice'), array('optional' => true));
46 $mform->addHelpButton('validuntil', 'validuntil', 'webservice');
48 $this->add_action_buttons(true, get_string('updateusersettings', 'webservice'));
50 $this->set_data($data);
55 class external_service_form extends moodleform {
57 function definition() {
58 $mform = $this->_form;
59 $service = $this->_customdata;
61 $mform->addElement('header', 'extservice',
62 get_string('externalservice', 'webservice'));
64 $mform->addElement('text', 'name', get_string('name'));
65 $mform->addRule('name', get_string('required'), 'required', null, 'client');
66 $mform->addElement('advcheckbox', 'enabled', get_string('enabled', 'webservice'));
67 $mform->addElement('advcheckbox', 'restrictedusers',
68 get_string('restrictedusers', 'webservice'));
69 $mform->addHelpButton('restrictedusers', 'restrictedusers', 'webservice');
71 //can users download files
72 $mform->addElement('advcheckbox', 'downloadfiles', get_string('downloadfiles', 'webservice'));
73 $mform->setAdvanced('downloadfiles');
74 $mform->addHelpButton('downloadfiles', 'downloadfiles', 'webservice');
76 /// needed to select automatically the 'No required capability" option
77 $currentcapabilityexist = false;
78 if (empty($service->requiredcapability)) {
79 $service->requiredcapability = "norequiredcapability";
80 $currentcapabilityexist = true;
83 // Prepare the list of capabilities to choose from
84 $systemcontext = get_context_instance(CONTEXT_SYSTEM);
85 $allcapabilities = fetch_context_capabilities($systemcontext);
86 $capabilitychoices = array();
87 $capabilitychoices['norequiredcapability'] = get_string('norequiredcapability',
89 foreach ($allcapabilities as $cap) {
90 $capabilitychoices[$cap->name] = $cap->name . ': '
91 . get_capability_string($cap->name);
92 if (!empty($service->requiredcapability)
93 && $service->requiredcapability == $cap->name) {
94 $currentcapabilityexist = true;
98 $mform->addElement('searchableselector', 'requiredcapability',
99 get_string('requiredcapability', 'webservice'), $capabilitychoices);
100 $mform->addHelpButton('requiredcapability', 'requiredcapability', 'webservice');
101 $mform->setAdvanced('requiredcapability');
102 /// display notification error if the current requiredcapability doesn't exist anymore
103 if (empty($currentcapabilityexist)) {
105 $mform->addElement('static', 'capabilityerror', '',
106 $OUTPUT->notification(get_string('selectedcapabilitydoesntexit',
107 'webservice', $service->requiredcapability)));
108 $service->requiredcapability = "norequiredcapability";
111 $mform->addElement('hidden', 'id');
112 $mform->setType('id', PARAM_INT);
114 if (!empty($service->id)) {
115 $buttonlabel = get_string('editaservice', 'webservice');
117 $buttonlabel = get_string('addaservice', 'webservice');
120 $this->add_action_buttons(true, $buttonlabel);
122 $this->set_data($service);
125 function definition_after_data() {
126 $mform = $this->_form;
127 $service = $this->_customdata;
129 if (!empty($service->component)) {
130 // built-in components must not be modified except the enabled flag!!
131 $mform->hardFreeze('name,requiredcapability,restrictedusers');
135 function validation($data, $files) {
136 $errors = parent::validation($data, $files);
142 class external_service_functions_form extends moodleform {
144 function definition() {
147 $mform = $this->_form;
148 $data = $this->_customdata;
150 $mform->addElement('header', 'addfunction', get_string('addfunctions', 'webservice'));
152 require_once($CFG->dirroot . "/webservice/lib.php");
153 $webservicemanager = new webservice();
154 $functions = $webservicemanager->get_not_associated_external_functions($data['id']);
156 //we add the descriptions to the functions
157 foreach ($functions as $functionid => $functionname) {
158 //retrieve full function information (including the description)
159 $function = external_function_info($functionname);
160 $functions[$functionid] = $function->name . ':' . $function->description;
163 $mform->addElement('searchableselector', 'fid', get_string('name'),
164 $functions, array('multiple'));
166 $mform->addElement('hidden', 'id');
167 $mform->setType('id', PARAM_INT);
169 $mform->addElement('hidden', 'action');
170 $mform->setType('action', PARAM_ACTION);
172 $this->add_action_buttons(true, get_string('addfunctions', 'webservice'));
174 $this->set_data($data);
179 class web_service_token_form extends moodleform {
181 function definition() {
182 global $USER, $DB, $CFG;
184 $mform = $this->_form;
185 $data = $this->_customdata;
187 $mform->addElement('header', 'token', get_string('token', 'webservice'));
189 if (empty($data->nouserselection)) {
191 //check if the number of user is reasonable to be displayed in a select box
192 $usertotal = $DB->count_records('user',
193 array('deleted' => 0, 'suspended' => 0, 'confirmed' => 1));
195 if ($usertotal < 500) {
196 //user searchable selector - get all users (admin and guest included)
197 //user must be confirmed, not deleted, not suspended, not guest
198 $sql = "SELECT u.id, u.firstname, u.lastname
200 WHERE u.deleted = 0 AND u.confirmed = 1 AND u.suspended = 0 AND u.id != ?
201 ORDER BY u.lastname";
202 $users = $DB->get_records_sql($sql, array($CFG->siteguest));
205 foreach ($users as $userid => $user) {
206 $options[$userid] = $user->firstname . " " . $user->lastname;
208 $mform->addElement('searchableselector', 'user', get_string('user'), $options);
210 //simple text box for username or user id (if two username exists, a form error is displayed)
211 $mform->addElement('text', 'user', get_string('usernameorid', 'webservice'));
213 $mform->addRule('user', get_string('required'), 'required', null, 'client');
217 $services = $DB->get_records('external_services');
219 $systemcontext = get_context_instance(CONTEXT_SYSTEM);
220 foreach ($services as $serviceid => $service) {
221 //check that the user has the required capability
222 //(only for generation by the profile page)
223 if (empty($data->nouserselection)
224 || empty($service->requiredcapability)
225 || has_capability($service->requiredcapability, $systemcontext, $USER->id)) {
226 $options[$serviceid] = $service->name;
229 $mform->addElement('select', 'service', get_string('service', 'webservice'), $options);
230 $mform->addRule('service', get_string('required'), 'required', null, 'client');
233 $mform->addElement('text', 'iprestriction', get_string('iprestriction', 'webservice'));
235 $mform->addElement('date_selector', 'validuntil',
236 get_string('validuntil', 'webservice'), array('optional' => true));
238 $mform->addElement('hidden', 'action');
239 $mform->setType('action', PARAM_ACTION);
241 $this->add_action_buttons(true);
243 $this->set_data($data);
246 function get_data() {
248 $data = parent::get_data();
250 if (!empty($data) && !is_numeric($data->user)) {
252 $user = $DB->get_record('user', array('username' => $data->user), 'id');
253 $data->user = $user->id;
258 function validation(&$data, $files) {
261 $errors = parent::validation($data, $files);
263 if (is_numeric($data['user'])) {
266 $searchtype = 'username';
267 //check the username is valid
268 if (clean_param($data['user'], PARAM_USERNAME) != $data['user']) {
269 $errors['user'] = get_string('invalidusername');
273 if (!isset($errors['user'])) {
274 $users = $DB->get_records('user', array($searchtype => $data['user']), '', 'id');
276 //check that the user exists in the database
277 if (count($users) == 0) {
278 $errors['user'] = get_string('usernameoridnousererror', 'webservice');
279 } else if (count($users) > 1) { //can only be a username search as id are unique
280 $errors['user'] = get_string('usernameoridoccurenceerror', 'webservice');