2020-12-09 21:55:31 +01:00
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
2021-07-30 12:19:27 +02:00
|
|
|
<!-- This is an example of how to create a front-end using the Gonito
|
|
|
|
backend.
|
|
|
|
The code is ugly, but it is as simple as possible, no front-end
|
|
|
|
framework was assumed!
|
|
|
|
-->
|
|
|
|
|
|
|
|
<style type="text/css" media="screen">
|
|
|
|
#outwindow {
|
|
|
|
border: 2px solid black;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
color: white;
|
|
|
|
background-color: black;
|
|
|
|
padding: 10pt;
|
|
|
|
}
|
|
|
|
#outwindow pre {
|
|
|
|
color: white;
|
|
|
|
background-color: black;
|
|
|
|
}
|
|
|
|
#wait {
|
|
|
|
animation: blink 1s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes blink {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
</style>
|
2020-12-09 21:55:31 +01:00
|
|
|
<script src="/static/js/keycloak.js"></script>
|
|
|
|
<script>
|
|
|
|
var keycloak;
|
|
|
|
function initKeycloak() {
|
|
|
|
keycloak = new Keycloak({
|
|
|
|
url: 'http://127.0.0.1:8080/auth',
|
|
|
|
realm: 'master',
|
2021-04-27 11:49:22 +02:00
|
|
|
clientId: 'gonito',
|
2020-12-09 21:55:31 +01:00
|
|
|
"enable-cors": true
|
|
|
|
})
|
|
|
|
keycloak.init({
|
|
|
|
onLoad: 'login-required'
|
|
|
|
}).then(function(authenticated) {
|
|
|
|
// alert(authenticated ? 'authenticated' : 'not authenticated');
|
|
|
|
}).catch(function() {
|
|
|
|
alert('failed to initialize');
|
|
|
|
});
|
|
|
|
|
2021-07-30 12:19:27 +02:00
|
|
|
}
|
2020-12-09 21:55:31 +01:00
|
|
|
|
2020-12-10 23:24:10 +01:00
|
|
|
var loadData = function (target) {
|
2020-12-09 21:55:31 +01:00
|
|
|
|
2021-04-27 11:49:22 +02:00
|
|
|
var url = '/api/' + target;
|
2020-12-09 21:55:31 +01:00
|
|
|
|
|
|
|
var req = new XMLHttpRequest();
|
|
|
|
req.open('GET', url, true);
|
|
|
|
req.setRequestHeader('Accept', 'application/json');
|
|
|
|
req.setRequestHeader('Authorization', 'Bearer ' + keycloak.token);
|
|
|
|
|
|
|
|
req.onreadystatechange = function () {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
if (req.status == 200) {
|
|
|
|
alert(req.response);
|
|
|
|
} else if (req.status == 403) {
|
|
|
|
alert('Forbidden');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
req.send();
|
|
|
|
};
|
|
|
|
|
2021-06-28 18:34:43 +02:00
|
|
|
function showToken() {
|
|
|
|
alert(keycloak.token);
|
|
|
|
}
|
|
|
|
|
2020-12-22 12:31:30 +01:00
|
|
|
function testCors() {
|
2020-12-09 21:55:31 +01:00
|
|
|
|
2020-12-22 12:31:30 +01:00
|
|
|
var createCORSRequest = function(method, url) {
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
if ("withCredentials" in xhr) {
|
|
|
|
// Most browsers.
|
|
|
|
xhr.open(method, url, true);
|
|
|
|
} else if (typeof XDomainRequest != "undefined") {
|
|
|
|
// IE8 & IE9
|
|
|
|
xhr = new XDomainRequest();
|
|
|
|
xhr.open(method, url);
|
|
|
|
} else {
|
|
|
|
// CORS not supported.
|
|
|
|
xhr = null;
|
|
|
|
}
|
|
|
|
xhr.setRequestHeader('Authorization', 'Bearer ' +
|
|
|
|
keycloak.token);
|
|
|
|
xhr.setRequestHeader('Accept', 'application/json');
|
|
|
|
return xhr;
|
|
|
|
};
|
|
|
|
|
2021-04-27 11:49:22 +02:00
|
|
|
var url = '/api/list-challenges';
|
2020-12-22 12:31:30 +01:00
|
|
|
var method = 'GET';
|
|
|
|
var xhr = createCORSRequest(method, url);
|
|
|
|
|
|
|
|
xhr.onload = function() {
|
|
|
|
alert("OK");
|
|
|
|
};
|
|
|
|
|
|
|
|
xhr.onerror = function() {
|
|
|
|
alert("NOT OK")
|
|
|
|
};
|
|
|
|
|
|
|
|
xhr.send();
|
|
|
|
}
|
2021-07-30 12:19:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
var getJSON = function(url, callback) {
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
xhr.open('GET', '/api/' + url, true);
|
|
|
|
xhr.setRequestHeader('Accept', 'application/json');
|
|
|
|
xhr.setRequestHeader('Authorization', 'Bearer ' + keycloak.token);
|
|
|
|
xhr.responseType = 'json';
|
|
|
|
xhr.onload = function() {
|
|
|
|
callback(xhr.response);
|
|
|
|
};
|
|
|
|
xhr.send();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// This is an example of how to handle logs obtained by an
|
|
|
|
// asynchronous process.
|
|
|
|
// As an example, "/api/test-progress/10/2" end-point was used
|
|
|
|
// (which just counts up to 10 with 2-second delays), it a
|
|
|
|
// similar way logs from, for example,
|
|
|
|
// "/api/challenge-submission/..." end-point could be handled
|
|
|
|
function testLogs() {
|
|
|
|
getJSON('test-progress/10/2', function(data) {
|
|
|
|
// the end-point just returns a job id, then we invoke
|
|
|
|
// the '/api/view-progress-with-web-sockets/' with this
|
|
|
|
// job Id
|
|
|
|
url = 'view-progress-with-web-sockets/' + data;
|
|
|
|
getJSON('view-progress-with-web-sockets/' + data, function(data) {
|
|
|
|
var output = document.getElementById("output");
|
|
|
|
var wait = document.getElementById("wait");
|
|
|
|
var seealso = document.getElementById("seealso");
|
|
|
|
|
|
|
|
wait.appendChild(document.createTextNode('... PLEASE WAIT ...'));
|
|
|
|
|
|
|
|
var parsed_url = new URL(document.URL);
|
|
|
|
var ws_protocol = 'wss://';
|
|
|
|
if (parsed_url.protocol == 'http:') {
|
|
|
|
ws_protocol = 'ws://';
|
|
|
|
}
|
|
|
|
|
|
|
|
msg = "The logs will be also available at "
|
|
|
|
+ parsed_url.protocol
|
|
|
|
+ "//"
|
|
|
|
+ parsed_url.host
|
|
|
|
+ '/api/view-progress-log/' + data;
|
|
|
|
seealso.appendChild(document.createTextNode(msg));
|
|
|
|
|
|
|
|
conn = new WebSocket(ws_protocol + parsed_url.host + '/api/' + url);
|
|
|
|
|
|
|
|
conn.onmessage = function(e) {
|
|
|
|
var p = document.createElement("pre");
|
|
|
|
p.appendChild(document.createTextNode(e.data));
|
|
|
|
output.appendChild(p);
|
|
|
|
};
|
|
|
|
|
|
|
|
conn.onclose = function(e) {
|
|
|
|
wait.parentNode.removeChild(wait);
|
|
|
|
};
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-12-09 21:55:31 +01:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body onload="initKeycloak()">
|
|
|
|
<h1>This is a simple web page to test Gonito as a backend with authorization by JWT tokens.</h1>
|
|
|
|
|
2021-06-28 18:34:43 +02:00
|
|
|
<p><button onclick="showToken()">Show token</button></p>
|
|
|
|
|
2020-12-10 23:24:10 +01:00
|
|
|
<p><button onclick="loadData('add-user')">Add user</button></p>
|
|
|
|
|
2021-04-27 11:49:22 +02:00
|
|
|
<p><button onclick="loadData('user-info')">Check user info</button></p>
|
2020-12-10 23:24:10 +01:00
|
|
|
|
2021-04-27 11:49:22 +02:00
|
|
|
<p><input type="text" id="challengeId" value="specify challenge ID here"/><button onclick="loadData('challenge-my-submissions/' + document.getElementById('challengeId').value)">Test
|
|
|
|
showing user's submissions</button></p>
|
2020-12-10 23:24:10 +01:00
|
|
|
|
2021-09-25 15:12:51 +02:00
|
|
|
<p><input type="text" id="submissionId" value="specify submission ID here"/><button onclick="loadData('make-public/' + document.getElementById('submissionId').value)">Test
|
|
|
|
opening submissions</button></p>
|
|
|
|
|
2020-12-22 12:31:30 +01:00
|
|
|
<p><button onclick="loadData('list-challenges')">Yet another
|
|
|
|
test</button></p>
|
|
|
|
|
|
|
|
<p><button onclick="testCors()">CORS</button></p>
|
|
|
|
|
2021-07-30 12:19:27 +02:00
|
|
|
<p><button onclick="testLogs()">Logs</button></p>
|
|
|
|
|
|
|
|
<p id="seealso"></p>
|
|
|
|
|
|
|
|
<div id="outwindow">
|
|
|
|
<div id="output">
|
|
|
|
</div>
|
|
|
|
<div id="wait">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2020-12-09 21:55:31 +01:00
|
|
|
</body>
|
|
|
|
</html>
|