db996f8e5a02eb4a7a20964ac85a7fa9da91d69b
[moodle.git] / admin / webservice / forms.php
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.
14 //
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  * Web services admin UI forms
20  *
21  * @package   webservice
22  * @copyright 2009 Moodle Pty Ltd (http://moodle.com)
23  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24  */
25 require_once $CFG->libdir . '/formslib.php';
27 /**
28  * Display the authorised user settings form
29  * Including IP Restriction, Valid until and (TODO) capability
30  */
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);
51     }
53 }
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->setType('name', PARAM_TEXT);
67         $mform->addElement('advcheckbox', 'enabled', get_string('enabled', 'webservice'));
68         $mform->addElement('advcheckbox', 'restrictedusers',
69                 get_string('restrictedusers', 'webservice'));
70         $mform->addHelpButton('restrictedusers', 'restrictedusers', 'webservice');
72         //can users download files
73         $mform->addElement('advcheckbox', 'downloadfiles', get_string('downloadfiles', 'webservice'));
74         $mform->setAdvanced('downloadfiles');
75         $mform->addHelpButton('downloadfiles', 'downloadfiles', 'webservice');
77         /// needed to select automatically the 'No required capability" option
78         $currentcapabilityexist = false;
79         if (empty($service->requiredcapability)) {
80             $service->requiredcapability = "norequiredcapability";
81             $currentcapabilityexist = true;
82         }
84         // Prepare the list of capabilities to choose from
85         $systemcontext = get_context_instance(CONTEXT_SYSTEM);
86         $allcapabilities = fetch_context_capabilities($systemcontext);
87         $capabilitychoices = array();
88         $capabilitychoices['norequiredcapability'] = get_string('norequiredcapability',
89                         'webservice');
90         foreach ($allcapabilities as $cap) {
91             $capabilitychoices[$cap->name] = $cap->name . ': '
92                     . get_capability_string($cap->name);
93             if (!empty($service->requiredcapability)
94                     && $service->requiredcapability == $cap->name) {
95                 $currentcapabilityexist = true;
96             }
97         }
99         $mform->addElement('searchableselector', 'requiredcapability',
100                 get_string('requiredcapability', 'webservice'), $capabilitychoices);
101         $mform->addHelpButton('requiredcapability', 'requiredcapability', 'webservice');
102         $mform->setAdvanced('requiredcapability');
103 /// display notification error if the current requiredcapability doesn't exist anymore
104         if (empty($currentcapabilityexist)) {
105             global $OUTPUT;
106             $mform->addElement('static', 'capabilityerror', '',
107                     $OUTPUT->notification(get_string('selectedcapabilitydoesntexit',
108                                     'webservice', $service->requiredcapability)));
109             $service->requiredcapability = "norequiredcapability";
110         }
112         $mform->addElement('hidden', 'id');
113         $mform->setType('id', PARAM_INT);
115         if (!empty($service->id)) {
116             $buttonlabel = get_string('savechanges');
117         } else {
118             $buttonlabel = get_string('addaservice', 'webservice');
119         }
121         $this->add_action_buttons(true, $buttonlabel);
123         $this->set_data($service);
124     }
126     function definition_after_data() {
127         $mform = $this->_form;
128         $service = $this->_customdata;
130         if (!empty($service->component)) {
131             // built-in components must not be modified except the enabled flag!!
132             $mform->hardFreeze('name,requiredcapability,restrictedusers');
133         }
134     }
136     function validation($data, $files) {
137         $errors = parent::validation($data, $files);
138         return $errors;
139     }
143 class external_service_functions_form extends moodleform {
145     function definition() {
146         global $CFG;
148         $mform = $this->_form;
149         $data = $this->_customdata;
151         $mform->addElement('header', 'addfunction', get_string('addfunctions', 'webservice'));
153         require_once($CFG->dirroot . "/webservice/lib.php");
154         $webservicemanager = new webservice();
155         $functions = $webservicemanager->get_not_associated_external_functions($data['id']);
157         //we add the descriptions to the functions
158         foreach ($functions as $functionid => $functionname) {
159             //retrieve full function information (including the description)
160             $function = external_function_info($functionname);
161             $functions[$functionid] = $function->name . ':' . $function->description;
162         }
164         $mform->addElement('searchableselector', 'fids', get_string('name'),
165                 $functions, array('multiple'));
167         $mform->addElement('hidden', 'id');
168         $mform->setType('id', PARAM_INT);
170         $mform->addElement('hidden', 'action');
171         $mform->setType('action', PARAM_ACTION);
173         $this->add_action_buttons(true, get_string('addfunctions', 'webservice'));
175         $this->set_data($data);
176     }
180 class web_service_token_form extends moodleform {
182     function definition() {
183         global $USER, $DB, $CFG;
185         $mform = $this->_form;
186         $data = $this->_customdata;
188         $mform->addElement('header', 'token', get_string('token', 'webservice'));
190         if (empty($data->nouserselection)) {
192             //check if the number of user is reasonable to be displayed in a select box
193             $usertotal = $DB->count_records('user',
194                     array('deleted' => 0, 'suspended' => 0, 'confirmed' => 1));
196             if ($usertotal < 500) {
197                 //user searchable selector - get all users (admin and guest included)
198                 //user must be confirmed, not deleted, not suspended, not guest
199                 $sql = "SELECT u.id, u.firstname, u.lastname
200                             FROM {user} u
201                             WHERE u.deleted = 0 AND u.confirmed = 1 AND u.suspended = 0 AND u.id != ?
202                             ORDER BY u.lastname";
203                 $users = $DB->get_records_sql($sql, array($CFG->siteguest));
204                 $options = array();
205                 foreach ($users as $userid => $user) {
206                     $options[$userid] = $user->firstname . " " . $user->lastname;
207                 }
208                 $mform->addElement('searchableselector', 'user', get_string('user'), $options);
209             } else {
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'));
212             }
213             $mform->addRule('user', get_string('required'), 'required', null, 'client');
214         }
216         //service selector
217         $services = $DB->get_records('external_services');
218         $options = array();
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;
227             }
228         }
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);
244     }
246     function get_data() {
247         global $DB;
248         $data = parent::get_data();
250         if (!empty($data) && !is_numeric($data->user)) {
251             //retrieve username
252             $user = $DB->get_record('user', array('username' => $data->user), 'id');
253             $data->user = $user->id;
254         }
255         return $data;
256     }
258     function validation($data, $files) {
259         global $DB;
261         $errors = parent::validation($data, $files);
263         if (is_numeric($data['user'])) {
264             $searchtype = 'id';
265         } else {
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');
270             }
271         }
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');
281             }
282         }
284         return $errors;
285     }