-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathview.php
More file actions
117 lines (108 loc) · 4.97 KB
/
Copy pathview.php
File metadata and controls
117 lines (108 loc) · 4.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
// This file is part of Moodle - http://moodle.org/
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Prints a particular instance of edusharing
*
* @package mod_edusharing
* @copyright metaVentis GmbH — http://metaventis.com
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
use EduSharingApiClient\EduSharingHelperBase;
use mod_edusharing\Constants;
use mod_edusharing\EduSharingService;
use mod_edusharing\UtilityFunctions;
require_once(dirname(__FILE__, 3) . '/config.php');
global $CFG, $PAGE, $DB;
require_once(dirname(__FILE__) . '/lib.php');
try {
$id = optional_param('id', 0, PARAM_INT); // Course_module ID or.
$n = optional_param('n', 0, PARAM_INT); // Edusharing instance ID - it should be named as the first character of the module.
if ($id !== 0) {
$cm = get_coursemodule_from_id('edusharing', $id, 0, false, MUST_EXIST);
$course = $DB->get_record('course', ['id' => $cm->course], '*', MUST_EXIST);
$edusharing = $DB->get_record(Constants::EDUSHARING_TABLE, ['id' => $cm->instance], '*', MUST_EXIST);
$vid = $id;
$courseid = $course->id;
} else if ($n !== 0) {
$edusharing = $DB->get_record(Constants::EDUSHARING_TABLE, ['id' => $n], '*', MUST_EXIST);
$course = $DB->get_record('course', ['id' => $edusharing->course], '*', MUST_EXIST);
$cm = get_coursemodule_from_instance('edusharing', $edusharing->id, $course->id, false, MUST_EXIST);
$vid = $edusharing->id;
$courseid = $course->id;
} else {
trigger_error(get_string('error_detect_course', 'edusharing'), E_USER_WARNING);
exit();
}
$PAGE->set_url('/mod/edusharing/view.php?id=' . $vid);
require_login($course, true, $cm);
$edusharingservice = new EduSharingService();
$utils = new UtilityFunctions();
if ($edusharingservice->has_rendering_2()) {
try {
$edusharingservice->get_ticket();
} catch (Exception $exception) {
trigger_error($exception->getMessage(), E_USER_WARNING);
exit();
}
global $edusharingwcloaded, $OUTPUT;
$context = context_module::instance($cm->id);
$contextid = $context->id;
$repourl = rtrim($utils->get_config_entry('application_cc_gui_url'), '/');
if (!$edusharingwcloaded) {
$PAGE->requires->js_call_amd('mod_edusharing/remoteloader', 'init', [$repourl]);
$edusharingwcloaded = true;
}
$useserviceworker = (bool) get_config('edusharing', 'use_service_worker');
$PAGE->requires->js_call_amd('mod_edusharing/renderer', 'init', [$repourl, $contextid, $useserviceworker]);
$templatedata = [
'nodeId' => $utils->get_object_id_from_url($edusharing->object_url),
'containerId' => $courseid,
'version' => $edusharing->object_version,
'usage' => $edusharing->usage_id,
'resourceId' => $edusharing->id,
];
$completion = new completion_info($course);
$completion->set_module_viewed($cm);
echo $OUTPUT->header();
echo $OUTPUT->render_from_template('mod_edusharing/content', $templatedata);
echo $OUTPUT->footer();
return;
}
try {
$ticket = $edusharingservice->get_ticket();
} catch (Exception $exception) {
trigger_error($exception->getMessage(), E_USER_WARNING);
exit();
}
$redirecturl = $utils->get_redirect_url($edusharing);
$ts = round(microtime(true) * 1000);
$redirecturl .= '&ts=' . $ts;
$data = get_config('edusharing', 'application_appid') . $ts . $utils->get_object_id_from_url($edusharing->object_url);
$redirecturl .= '&sig=' . urlencode($edusharingservice->sign($data));
$redirecturl .= '&signed=' . urlencode($data);
$backaction = '&closeOnBack=true';
if (empty($edusharing->popup_window)) {
$backaction = '&backLink=' . urlencode($CFG->wwwroot . '/course/view.php?id=' . $courseid);
}
$redirecturl .= $backaction;
$redirecturl .= '&ticket=' . urlencode(base64_encode($utils->encrypt_with_repo_key($ticket)));
$redirecturl .= '&signedAlg=' . $edusharingservice->get_signing_algorithm();
$completion = new completion_info($course);
$completion->set_module_viewed($cm);
redirect($redirecturl);
} catch (Exception $exception) {
debugging($exception->getMessage());
}