Merge branch 'MDL-51969-master' of https://github.com/dmitriim/moodle
[moodle.git] / badges / external.php
blobd05dbacd13dff9664dd2c719b40b427a5ddd70f4
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/>.
17 /**
18 * Display details of an issued badge with criteria and evidence
20 * @package core
21 * @subpackage badges
22 * @copyright 2012 onwards Totara Learning Solutions Ltd {@link http://www.totaralms.com/}
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24 * @author Yuliya Bozhko <yuliya.bozhko@totaralms.com>
27 require_once(__DIR__ . '/../config.php');
28 require_once($CFG->libdir . '/badgeslib.php');
30 $json = optional_param('badge', null, PARAM_RAW);
31 // Redirect to homepage if users are trying to access external badge through old url.
32 if ($json) {
33 redirect($CFG->wwwroot, get_string('invalidrequest', 'error'), 3);
36 $hash = required_param('hash', PARAM_ALPHANUM);
37 $userid = required_param('user', PARAM_INT);
39 $PAGE->set_url(new moodle_url('/badges/external.php', array('hash' => $hash, 'user' => $userid)));
41 // Using the same setting as user profile page.
42 if (!empty($CFG->forceloginforprofiles)) {
43 require_login();
44 if (isguestuser()) {
45 $SESSION->wantsurl = $PAGE->url->out(false);
46 redirect(get_login_url());
48 } else if (!empty($CFG->forcelogin)) {
49 require_login();
52 // Get all external badges of a user.
53 $out = get_backpack_settings($userid);
55 // If we didn't find any badges then print an error.
56 if (is_null($out)) {
57 print_error('error:externalbadgedoesntexist', 'badges');
60 $badges = $out->badges;
62 // The variable to store the badge we want.
63 $badge = '';
65 // Loop through the badges and check if supplied badge hash exists in user external badges.
66 foreach ($badges as $b) {
67 if ($hash == hash("md5", $b->hostedUrl)) {
68 $badge = $b;
69 break;
73 // If we didn't find the badge a user might be trying to replace the userid parameter.
74 if (empty($badge)) {
75 print_error('error:externalbadgedoesntexist', 'badges');
78 $PAGE->set_context(context_system::instance());
79 $output = $PAGE->get_renderer('core', 'badges');
81 $badge = new external_badge($badge, $userid);
83 $PAGE->set_pagelayout('base');
84 $PAGE->set_title(get_string('issuedbadge', 'badges'));
85 $PAGE->set_heading(s($badge->issued->assertion->badge->name));
86 $PAGE->navbar->add(s($badge->issued->assertion->badge->name));
87 if (isloggedin() && $USER->id == $userid) {
88 $url = new moodle_url('/badges/mybadges.php');
89 } else {
90 $url = new moodle_url($CFG->wwwroot);
92 navigation_node::override_active_url($url);
94 echo $OUTPUT->header();
96 echo $output->render($badge);
98 echo $OUTPUT->footer();