2023-04-05 16:27:49 +01:00
|
|
|
/*
|
|
|
|
Auth process: User Requests Key => Server emails key to user =>
|
2023-04-05 21:35:43 +01:00
|
|
|
user opens link to auth.html =>
|
2023-04-05 16:27:49 +01:00
|
|
|
website POSTs key to server => Server checks validity =>
|
|
|
|
Server responds with the users auth key =>
|
|
|
|
auth.js adds this to localStorage
|
|
|
|
*/
|
2023-04-30 21:55:56 +01:00
|
|
|
const cmd = document.getElementById('cmd') // Assign element to const
|
2023-05-01 21:04:19 +01:00
|
|
|
versionDisplay() // Show web version in footer
|
|
|
|
init() // Run init function
|
2023-04-04 20:31:21 +01:00
|
|
|
|
|
|
|
async function sendHome(){
|
2023-05-01 21:04:19 +01:00
|
|
|
await delay(2000)
|
|
|
|
location.replace('./')
|
2023-04-04 20:31:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
async function cmdOut(message) {
|
2023-05-01 21:04:19 +01:00
|
|
|
html = '<p>' + message + '</p>'
|
|
|
|
cmd.insertAdjacentHTML('beforeend', html)
|
2023-04-04 20:31:21 +01:00
|
|
|
}
|
|
|
|
|
2023-04-05 16:27:49 +01:00
|
|
|
async function registerKey(key) { // Posts key to server and listens for response.
|
2023-05-01 21:04:19 +01:00
|
|
|
const url = `${window.location.origin}/api/v1/register/register`
|
|
|
|
const res = await fetch(url, { // The response will contain the UUID which will be registered
|
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json'
|
|
|
|
},
|
|
|
|
redirect: 'follow',
|
|
|
|
body: JSON.stringify({uuid: key})
|
|
|
|
})
|
|
|
|
const data = await res.json()
|
|
|
|
return res.status === 201
|
|
|
|
? (localStorage.setItem('uuid', data.api_key), true)
|
|
|
|
: false
|
2023-04-04 20:31:21 +01:00
|
|
|
}
|
|
|
|
|
2023-04-07 18:59:36 +01:00
|
|
|
async function checkAuth(key) {
|
2023-05-01 21:04:19 +01:00
|
|
|
const url = `${window.location.origin}/api/v1/auth/test`
|
|
|
|
const res = await fetch(url, {
|
|
|
|
method: 'GET',
|
|
|
|
redirect: 'follow',
|
|
|
|
headers: {
|
|
|
|
'uuid': key
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return res.status === 200 ? true : false
|
2023-04-07 18:59:36 +01:00
|
|
|
}
|
|
|
|
|
2023-04-05 16:27:49 +01:00
|
|
|
async function init(){ // Reads registration key from query, and calls registerKey(key)
|
2023-05-01 21:04:19 +01:00
|
|
|
cmdOut('Reading authorisation code')
|
|
|
|
const key = await getQuery('key')
|
|
|
|
if (key === 'false') {
|
|
|
|
cmdOut('No valid key found')
|
|
|
|
cmdOut('Try clicking the link again or request a new activation link')
|
|
|
|
hideLoading()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
cmdOut('Requesting API Key from server')
|
|
|
|
if (!await registerKey(key)) {
|
|
|
|
cmdOut('Failed to register or invalid key')
|
|
|
|
cmdOut('Try again later or request a new link')
|
|
|
|
hideLoading()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
showLoading()
|
|
|
|
if (! await checkAuth(localStorage.getItem('uuid'))) {
|
|
|
|
cmdOut('Authentication Check failed')
|
|
|
|
cmdOut('Please logout and request a new link')
|
|
|
|
hideLoading()
|
|
|
|
await delay(2000)
|
|
|
|
location.replace('./')
|
|
|
|
}
|
|
|
|
hideLoading()
|
|
|
|
cmdOut('Authentication succesful')
|
|
|
|
cmdOut('Redirecting to home')
|
|
|
|
await delay(3000)
|
|
|
|
location.replace('./')
|
2023-04-04 20:31:21 +01:00
|
|
|
}
|