1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// This program 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 |
// This program 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.
|
|
|
13 |
//
|
|
|
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/>.
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* Prints a particular instance of edusharing
|
|
|
19 |
*
|
|
|
20 |
* @package mod_edusharing
|
|
|
21 |
* @copyright metaVentis GmbH — http://metaventis.com
|
|
|
22 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
23 |
*/
|
|
|
24 |
|
|
|
25 |
use EduSharingApiClient\EduSharingHelperBase;
|
|
|
26 |
use mod_edusharing\Constants;
|
|
|
27 |
use mod_edusharing\EduSharingService;
|
|
|
28 |
use mod_edusharing\UtilityFunctions;
|
|
|
29 |
|
|
|
30 |
require_once(dirname(__FILE__, 3) . '/config.php');
|
|
|
31 |
require_once(dirname(__FILE__) . '/lib.php');
|
|
|
32 |
|
|
|
33 |
global $CFG, $PAGE, $DB;
|
|
|
34 |
|
|
|
35 |
try {
|
|
|
36 |
$id = optional_param('id', 0, PARAM_INT); // Course_module ID or.
|
|
|
37 |
$n = optional_param('n', 0, PARAM_INT); // Edusharing instance ID - it should be named as the first character of the module.
|
|
|
38 |
if ($id !== 0) {
|
|
|
39 |
$cm = get_coursemodule_from_id('edusharing', $id, 0, false, MUST_EXIST);
|
|
|
40 |
$course = $DB->get_record('course', ['id' => $cm->course], '*', MUST_EXIST);
|
|
|
41 |
$edusharing = $DB->get_record(Constants::EDUSHARING_TABLE, ['id' => $cm->instance], '*', MUST_EXIST);
|
|
|
42 |
$vid = $id;
|
|
|
43 |
$courseid = $course->id;
|
|
|
44 |
} else if ($n !== 0) {
|
|
|
45 |
$edusharing = $DB->get_record(Constants::EDUSHARING_TABLE, ['id' => $n], '*', MUST_EXIST);
|
|
|
46 |
$course = $DB->get_record('course', ['id' => $edusharing->course], '*', MUST_EXIST);
|
|
|
47 |
$cm = get_coursemodule_from_instance('edusharing', $edusharing->id, $course->id, false, MUST_EXIST);
|
|
|
48 |
$vid = $edusharing->id;
|
|
|
49 |
$courseid = $course->id;
|
|
|
50 |
} else {
|
|
|
51 |
trigger_error(get_string('error_detect_course', 'edusharing'), E_USER_WARNING);
|
|
|
52 |
exit();
|
|
|
53 |
}
|
|
|
54 |
$PAGE->set_url('/mod/edusharing/view.php?id=' . $vid);
|
|
|
55 |
require_login($course, true, $cm);
|
|
|
56 |
try {
|
|
|
57 |
$edusharingservice = new EduSharingService();
|
|
|
58 |
$ticket = $edusharingservice->get_ticket();
|
|
|
59 |
} catch (Exception $exception) {
|
|
|
60 |
trigger_error($exception->getMessage(), E_USER_WARNING);
|
|
|
61 |
exit();
|
|
|
62 |
}
|
|
|
63 |
$utils = new UtilityFunctions();
|
|
|
64 |
$redirecturl = $utils->get_redirect_url($edusharing);
|
|
|
65 |
$ts = round(microtime(true) * 1000);
|
|
|
66 |
$redirecturl .= '&ts=' . $ts;
|
|
|
67 |
$data = get_config('edusharing', 'application_appid') . $ts . $utils->get_object_id_from_url($edusharing->object_url);
|
|
|
68 |
$basehelper = new EduSharingHelperBase(get_config('edusharing', 'application_cc_gui_url'),
|
|
|
69 |
get_config('edusharing', 'application_private_key'),
|
|
|
70 |
get_config('edusharing', 'application_appid'));
|
|
|
71 |
$redirecturl .= '&sig=' . urlencode($basehelper->sign($data));
|
|
|
72 |
$redirecturl .= '&signed=' . urlencode($data);
|
|
|
73 |
$backaction = '&closeOnBack=true';
|
|
|
74 |
if (empty($edusharing->popup_window)) {
|
|
|
75 |
$backaction = '&backLink=' . urlencode($CFG->wwwroot . '/course/view.php?id=' . $courseid);
|
|
|
76 |
}
|
|
|
77 |
if (!empty($_SERVER['HTTP_REFERER']) && str_contains($_SERVER['HTTP_REFERER'], 'modedit.php')) {
|
|
|
78 |
$backaction = '&backLink=' . urlencode($_SERVER['HTTP_REFERER']);
|
|
|
79 |
}
|
|
|
80 |
$redirecturl .= $backaction;
|
|
|
81 |
$redirecturl .= '&ticket=' . urlencode(base64_encode($utils->encrypt_with_repo_key($ticket)));
|
|
|
82 |
redirect($redirecturl);
|
|
|
83 |
} catch (Exception $exception) {
|
|
|
84 |
debugging($exception->getMessage());
|
|
|
85 |
}
|