forked from novnc/noVNC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_default.php
More file actions
331 lines (281 loc) · 10.3 KB
/
index_default.php
File metadata and controls
331 lines (281 loc) · 10.3 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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<?php
$maxlifetime = 4 * 24 * 60 * 60;
$samesite = 'none';
$secure = true;
$httponly = true;
if(PHP_VERSION_ID < 70300) {
session_set_cookie_params($maxlifetime, '/; samesite='.$samesite, $_SERVER['HTTP_HOST'], $secure, $httponly);
} else {
session_set_cookie_params([
'lifetime' => $maxlifetime,
'path' => '/',
'domain' => $_SERVER['HTTP_HOST'],
'secure' => $secure,
'httponly' => $httponly,
'samesite' => $samesite
]);
}
session_start();
$allowed_host = 'video.conf.medvc.eu';
$host = parse_url($_SERVER['HTTP_REFERER'], PHP_URL_HOST);
if(substr($host, 0 - strlen($allowed_host)) !== $allowed_host) {
die();
}
$isSafari = false;
if (stripos( $_SERVER['HTTP_USER_AGENT'], 'Chrome') === false && stripos($_SERVER['HTTP_USER_AGENT'], 'Safari') !== false)
{
$isSafari = true;
}
if(!isset($_GET['x'])){
die();
}
$_SESSION['pass'] = $_GET['x'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>medVC remote presenter</title>
<meta charset="utf-8" />
<style>
body {
margin: 0;
background-color: transparent;
height: 100%;
display: flex;
flex-direction: column;
}
html {
height: 100%;
}
#top_bar {
background-color: #6e84a3;
color: white;
font: bold 12px Helvetica;
padding: 6px 5px 4px 5px;
border-bottom: 1px outset;
}
#status {
text-align: center;
}
#sendCtrlAltDelButton {
position: fixed;
top: 0px;
right: 0px;
border: 1px outset;
padding: 5px 5px 4px 5px;
cursor: pointer;
display: none;
}
#screen {
flex: 1; /* fill remaining space */
overflow: hidden;
}
</style>
<?php
if (!$isSafari) {
?>
<!-- actual script modules -->
<script type="module" crossorigin="anonymous">
// RFB holds the API to connect and communicate with a VNC server
import RFB from './core/rfb.js';
let rfb;
let desktopName;
// When this function is called we have
// successfully connected to a server
function connectedToServer(e) {
// status("Connected to " + desktopName);
status("PRESENTATION CONTROL WINDOW");
}
// This function is called when we are disconnected
function disconnectedFromServer(e) {
if (e.detail.clean) {
status("Disconnected");
} else {
status("Something went wrong, connection is closed");
}
}
// When this function is called, the server requires
// credentials to authenticate
function credentialsAreRequired(e) {
//const password = prompt("Password Required:");
//rfb.sendCredentials({ password: password });
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4) {
if (this.status == 200) {
var checkResponse = xhttp.responseText.replace(/\s/g,'');
rfb.sendCredentials({ password: checkResponse });
}
}
};
xhttp.open("GET", "auth.php", true);
xhttp.send();
}
// When this function is called we have received
// a desktop name from the server
function updateDesktopName(e) {
desktopName = e.detail.name;
}
// Since most operating systems will catch Ctrl+Alt+Del
// before they get a chance to be intercepted by the browser,
// we provide a way to emulate this key sequence.
function sendCtrlAltDel() {
rfb.sendCtrlAltDel();
return false;
}
// Show a status text in the top bar
function status(text) {
document.getElementById('status').textContent = text;
}
// This function extracts the value of one variable from the
// query string. If the variable isn't defined in the URL
// it returns the default value instead.
function readQueryVariable(name, defaultValue) {
// A URL with a query parameter can look like this:
// https://www.example.com?myqueryparam=myvalue
//
// Note that we use location.href instead of location.search
// because Firefox < 53 has a bug w.r.t location.search
const re = new RegExp('.*[?&]' + name + '=([^&#]*)'),
match = document.location.href.match(re);
if (match) {
// We have to decode the URL since want the cleartext value
return decodeURIComponent(match[1]);
}
return defaultValue;
}
document.getElementById('sendCtrlAltDelButton')
.onclick = sendCtrlAltDel;
function freezButtons() {
document.getElementById('send_next_button').disabled = true;
document.getElementById('send_prev_button').disabled = true;
setTimeout(function(){
document.getElementById('send_next_button').disabled = false;
document.getElementById('send_prev_button').disabled = false;
}, 3000);
}
function sendPrev() {
rfb.sendKey(0xff51, 0);
freezButtons();
}
function sendNext() {
rfb.sendKey(0xff53, 0);
freezButtons();
}
function openFullscreen() {
let elem = document.body;
if (elem.requestFullscreen) {
elem.requestFullscreen();
} else if (elem.mozRequestFullScreen) { /* Firefox */
elem.mozRequestFullScreen();
} else if (elem.webkitRequestFullscreen) { /* Chrome, Safari and Opera */
elem.webkitRequestFullscreen();
} else if (elem.msRequestFullscreen) { /* IE/Edge */
elem.msRequestFullscreen();
}
}
function closeFullscreen() {
if (document.exitFullscreen) {
document.exitFullscreen();
} else if (document.mozCancelFullScreen) { /* Firefox */
document.mozCancelFullScreen();
} else if (document.webkitExitFullscreen) { /* Chrome, Safari and Opera */
document.webkitExitFullscreen();
} else if (document.msExitFullscreen) { /* IE/Edge */
document.msExitFullscreen();
}
}
document.addEventListener('fullscreenchange', (event) => {
let fullScreenButton = document.getElementById('full_screen_button');
if (document.fullscreenElement) {
fullScreenButton.innerText = "Close full screen";
fullScreenButton.onclick = closeFullscreen;
} else {
fullScreenButton.innerText = "Full screen";
fullScreenButton.onclick = openFullscreen;
}
});
document.getElementById('send_prev_button')
.onclick = sendPrev;
document.getElementById('send_next_button')
.onclick = sendNext;
document.getElementById('full_screen_button')
.onclick = openFullscreen;
// Read parameters specified in the URL query string
// By default, use the host and port of server that served this file
const host = readQueryVariable('host', window.location.hostname);
let port = readQueryVariable('port', window.location.port);
//const password = readQueryVariable('password');
const path = readQueryVariable('path', 'websockify_novnc_medvc');
// | | | | | |
// | | | Connect | | |
// v v v v v v
status("Connecting");
// Build the websocket URL used to connect
let url;
if (window.location.protocol === "https:") {
url = 'wss';
} else {
url = 'ws';
}
url += '://' + host;
if(port) {
url += ':' + port;
}
url += '/' + path;
// Creating a new RFB object will start a new connection
//rfb = new RFB(document.getElementById('screen'), url,
// { credentials: { password: password } });
rfb = new RFB(document.getElementById('screen'), url);
//rfb.qualityLevel = 0;
//rfb.compressionLevel = 9;
// Add listeners to important events from the RFB module
rfb.addEventListener("connect", connectedToServer);
rfb.addEventListener("disconnect", disconnectedFromServer);
rfb.addEventListener("credentialsrequired", credentialsAreRequired);
rfb.addEventListener("desktopname", updateDesktopName);
// Set parameters that can be changed on an active connection
rfb.viewOnly = readQueryVariable('view_only', false);
rfb.scaleViewport = readQueryVariable('scale', true);
</script>
<?php
}
?>
</head>
<body>
<?php
if ($isSafari) {
?>
<div id="screen" style="text-align: center; background-color:white;">
<p>The presentation is opened in a new tab.</p>
<p>If the presentation did not open automatically, press the button below.</p>
<button id="open_button" onclick="openPresentation()">Open presentation</button>
<script type="text/javascript">
var newWin = window.open('<?php echo($_SERVER['REQUEST_SCHEME'] .'://'. $_SERVER['HTTP_HOST'] . substr(explode('?', $_SERVER['REQUEST_URI'], 2)[0], 0, -4).'_safari.php');?>', '_blank');
if (newWin) newWin.focus();
function openPresentation() {
if (newWin) newWin.close();
newWin = window.open('<?php echo($_SERVER['REQUEST_SCHEME'] .'://'. $_SERVER['HTTP_HOST'] . substr(explode('?', $_SERVER['REQUEST_URI'], 2)[0], 0, -4).'_safari.php');?>', '_blank');
}
document.getElementById('open_button').onclick = openPresentation;
document.body.onunload = function() {
if (newWin) newWin.close();
};
</script>
</div>
<?php
} else {
?>
<div id="top_bar">
<div id="status">Loading</div>
<div id="sendCtrlAltDelButton">Send CtrlAltDel</div>
</div>
<span style="display: block; text-align: center;" ><button style="font-size: 100%; margin-right: 10px;" id="send_prev_button">Previous slide</button><button style="font-size: 100%; margin-right: 10px;" id="send_next_button">Next slide</button><button style="font-size: 100%;" id="full_screen_button">Full screen</button></span>
<div id="screen">
<!-- This is where the remote screen will appear -->
</div>
<?php
}
?>
</body>
</html>