2 // This file is part of Moodle - http://moodle.org/
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.
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 * Web service test client.
20 * @package core_webservice
21 * @copyright 2009 Moodle Pty Ltd (http://moodle.com)
22 * @author Jerome Mouneyrac
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 require('../config.php');
30 $usercontext = context_user
::instance($USER->id
);
32 $PAGE->set_context($usercontext);
33 $PAGE->set_url('/user/managetoken.php');
34 $PAGE->set_title(get_string('securitykeys', 'webservice'));
35 $PAGE->set_heading(get_string('securitykeys', 'webservice'));
36 $PAGE->set_pagelayout('admin');
38 $rsstokenboxhtml = $webservicetokenboxhtml = '';
39 // Manage user web service tokens.
40 if ( !is_siteadmin($USER->id
)
41 && !empty($CFG->enablewebservices
)
42 && has_capability('moodle/webservice:createtoken', $usercontext )) {
43 require_once($CFG->dirroot
.'/webservice/lib.php');
45 $action = optional_param('action', '', PARAM_ALPHANUMEXT
);
46 $tokenid = optional_param('tokenid', '', PARAM_SAFEDIR
);
47 $confirm = optional_param('confirm', 0, PARAM_BOOL
);
49 $webservice = new webservice(); // Load the webservice library.
50 $wsrenderer = $PAGE->get_renderer('core', 'webservice');
52 if ($action == 'resetwstoken') {
53 $token = $webservice->get_created_by_user_ws_token($USER->id
, $tokenid);
54 // Display confirmation page to Reset the token.
56 $resetconfirmation = $wsrenderer->user_reset_token_confirmation($token);
58 // Delete the token that need to be regenerated.
60 $webservice->delete_user_ws_token($tokenid);
61 redirect($PAGE->url
, get_string('resettokencomplete', 'core_webservice'));
65 // No point creating the table is we're just displaying a confirmation screen.
66 if (empty($resetconfirmation)) {
67 $webservice->generate_user_ws_tokens($USER->id
); // Generate all token that need to be generated.
68 $tokens = $webservice->get_user_ws_tokens($USER->id
);
69 foreach ($tokens as $token) {
70 if ($token->restrictedusers
) {
71 $authlist = $webservice->get_ws_authorised_user($token->wsid
, $USER->id
);
72 if (empty($authlist)) {
73 $token->enabled
= false;
77 $webservicetokenboxhtml = $wsrenderer->user_webservice_tokens_box($tokens, $USER->id
,
78 $CFG->enablewsdocumentation
); // Display the box for web service token.
83 if (!empty($CFG->enablerssfeeds
)) {
84 require_once($CFG->dirroot
.'/lib/rsslib.php');
86 $action = optional_param('action', '', PARAM_ALPHANUMEXT
);
87 $confirm = optional_param('confirm', 0, PARAM_BOOL
);
89 $rssrenderer = $PAGE->get_renderer('core', 'rss');
91 if ($action == 'resetrsstoken') {
92 // Display confirmation page to Reset the token.
94 $resetconfirmation = $rssrenderer->user_reset_rss_token_confirmation();
97 rss_delete_token($USER->id
);
98 redirect($PAGE->url
, get_string('resettokencomplete', 'core_webservice'));
101 if (empty($resetconfirmation)) {
102 $token = rss_get_token($USER->id
);
103 $rsstokenboxhtml = $rssrenderer->user_rss_token_box($token); // Display the box for the user's RSS token.
108 echo $OUTPUT->header();
109 if (!empty($resetconfirmation)) {
110 echo $resetconfirmation;
112 echo $webservicetokenboxhtml;
113 echo $rsstokenboxhtml;
115 echo $OUTPUT->footer();