down-message/script.js

61 lines
1.6 KiB
JavaScript
Raw Normal View History

2023-08-04 01:29:43 +02:00
async function websiteUp(url) {
// TODO Fix CORS
try {
2023-08-04 15:12:24 +02:00
const response = await fetch(url, { method: 'options' });
return response.ok;
2023-08-04 01:29:43 +02:00
} catch (error) {
console.error(`An error occurred while checking the URL '${url}': ${error.message}`);
}
}
async function check(destination, container, dot, message, button) {
2023-08-04 15:12:24 +02:00
dot.className = 'dot orange';
message.textContent = 'Checking availability...';
button.style.visibility = 'hidden';
2023-08-04 01:29:43 +02:00
const destinationUp = await websiteUp(destination);
if (destinationUp) {
console.log('Destination is back up');
dot.className = 'dot green';
message.textContent = 'URL is back online.';
button.textContent = "Go to URL.";
button.onclick = function () {
window.location.href = destination;
};
} else {
dot.className = 'dot red';
message.textContent = 'URL is still down.';
button.textContent = "Check again.";
button.onclick = function () {
check(destination, container, dot, message, button);
};
}
button.style.visibility = 'visible';
}
function createCheckButton(destination) {
const dot = document.createElement('span');
const message = document.createElement('span');
const button = document.createElement('button');
const container = document.getElementById('checkContainer');
container.appendChild(dot);
container.appendChild(message);
container.appendChild(button);
check(destination, container, dot, message, button);
}
function checkDestination() {
const url = window.location.search;
const searchParams = new URLSearchParams(url);
const destination = searchParams.get('destination');
if (destination) {
createCheckButton(destination);
}
}
checkDestination();