-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathframe.php
153 lines (138 loc) · 5.86 KB
/
frame.php
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
/*
* Copyright (C) 2016 Ryan Nutt https://classcube.com
*
* 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 2
* 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* This file is the iframe target that actually does the LTI launch */
require_once('../../config.php');
//require_once('/var/www/html/moodle/config.php');
require_once(__DIR__ . '/OAuth.php');
require_once(__DIR__ . '/functions.php');
global $USER;
$PAGE->set_url( '/filter/ccembed/frame.php', $_GET );
$PAGE->set_pagelayout( 'embedded' );
$contextmodule = context_module::instance( $_GET[ 'cid' ] );
$PAGE->set_context( $contextmodule );
require_login();
$coursecontext = $contextmodule->get_course_context();
$courseid = $coursecontext->instanceid;
/* Make sure this user is enrolled in the course id passed in $_GET. Not sure how
* to validate against the actual course it's embedded in, but this should at least
* keep users from getting to courses they don't belong to.
*/
if ( !is_enrolled( $coursecontext, $USER->id, '', true ) && !is_siteadmin() ) {
header( 'HTTP/1.1 403' );
die( 'There is a problem with this problem' );
}
$oauth_keys = \filter\ccembed\functions::get_client_keys( $_GET[ 'course' ] );
if ( empty( $oauth_keys ) ) {
die( get_string( 'err_nokeys', 'filter_ccembed' ) );
}
else if ( empty( $oauth_keys->key ) || empty( $oauth_keys->secret ) ) {
die( get_string( 'err_nokeys', 'filter_ccembed' ) );
}
/* Build the LTI form data */
$domain = parse_url( $CFG->wwwroot, PHP_URL_HOST );
$domain = preg_replace( '/^www\./', '', $domain );
$lti_data = [
'oauth_version' => '1.0',
'oauth_timestamp' => date( 'U' ),
'oauth_nonce' => md5( microtime() . mt_rand() ),
'oauth_consumer_key' => $oauth_keys->key,
'oauth_signature_method' => 'HMAC-SHA1',
'oauth_callback' => 'about:blank',
'lti_message_type' => 'basic-lti-launch-request',
'lti_version' => 'LTI-1p0',
'user_id' => $USER->id,
'lis_person_sourcedid' => $USER->idnumber,
'resource_link_id' => base64_encode( json_encode( [ 'guid' => $domain, 'cid' => $_GET[ 'cid' ], 'cmid' => $contextmodule->id, 'uid' => $USER->id ] ) ),
'custom_problem' => $_GET[ 'p' ],
'custom_assignment' => $_GET[ 'u' ],
'tool_consumer_instance_guid' => $domain,
'ext_lms' => 'moodle-2',
'tool_consumer_info_product_family_code' => 'moodle',
'tool_consumer_info_version' => strval( $CFG->version ),
'context_id' => $courseid,
'context_label' => trim( strip_tags( $PAGE->course->shortname ) ),
'context_title' => trim( strip_tags( $PAGE->course->fullname ) ),
'roles' => lti_get_ims_role( $USER, null, $courseid, false )
];
if ( !empty( $CFG->mod_lti_institution_name ) ) {
$lti_data[ 'tool_consumer_instance_name' ] = trim( strip_tags( $CFG->mod_lti_institution_name ) );
}
else {
$lti_data[ 'tool_consumer_instance_name' ] = get_site()->shortname;
}
$lti_data[ 'tool_consumer_instance_description' ] = trim( strip_tags( get_site()->fullname ) );
/* Additional fields that are dependent on settings */
if ( isset( $_REQUEST[ 'nolink' ] ) || get_config( 'filter_ccembed', 'hidelink' ) ) {
$lti_data[ 'custom_nolink' ] = 1;
}
if ( isset( $_GET[ 'hide_instructions' ] ) ) {
$lti_data[ 'custom_hide_instructions' ] = 1;
}
$privacy = get_config( 'filter_ccembed', 'privacy' );
switch ( $privacy ) {
case 'name':
$lti_data[ 'lis_person_name_given' ] = $USER->firstname;
$lti_data[ 'lis_person_name_family' ] = $USER->lastname;
$lti_data[ 'lis_person_name_full' ] = $USER->firstname . ' ' . $USER->lastname;
/* Intentionally not breaking. name includes email as well */
case 'email':
$lti_data[ 'lis_person_contact_email_primary' ] = $USER->email;
break;
}
/* Groups */
$sendgroups = get_config('filter_ccembed', 'sendgroups');
if ($sendgroups) {
$lti_data['custom_group'] = implode(",", groups_get_user_groups($courseid, $USER->id)[0]);
}
/* Custom Fields */
$custom_fields = get_config( 'filter_ccembed', 'custom_fields' );
if (!empty($custom_fields)) {
foreach (explode("\n", $custom_fields) as $field) {
$field = trim($field);
$split = explode('=', $field, 2);
if (isset($split[1])) {
$split[0] = trim($split[0]);
$split[1] = trim($split[1]);
if (!empty($split[0]) && !empty($split[1])) {
$lti_data['custom_' . $split[0]] = $split[1];
}
}
}
}
/* Generat OAuth Signature */
$request = new \filter\ccembed\OAuthRequest( 'POST', 'https://app.classcube.com/p/', $lti_data );
$consumer = new \filter\ccembed\OAuthConsumer( $oauth_keys->key, $oauth_keys->secret );
$signature = (new \filter\ccembed\OAuthSignatureMethod_HMAC_SHA1() )->build_signature( $request, $consumer, false );
$lti_data[ 'oauth_signature' ] = $signature;
?>
<!DOCTYPE html>
<html><body>
<form id="frm-launch" action="https://app.classcube.com/p/" method="POST" enctype="application/x-www-form-urlencoded">
<?php
foreach ( $lti_data as $k => $v ) {
echo '<input type="hidden" name="' . $k . '" value="' . $v . '">';
}
?>
<noscript>
<button type="submit">Launch</button>
</noscript>
</form>
<script type="text/javascript">document.getElementById('frm-launch').submit();</script>
</body>
</html>