Spaces:
Running
Running
File size: 17,279 Bytes
0b4aca6 | 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 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minecraft Server Status Checker</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Minecraft&display=swap');
.minecraft-font {
font-family: 'Minecraft', sans-serif;
}
.server-icon {
width: 64px;
height: 64px;
image-rendering: pixelated;
}
.status-indicator {
width: 12px;
height: 12px;
border-radius: 50%;
}
.online {
background-color: #55FF55;
box-shadow: 0 0 10px #55FF55;
}
.offline {
background-color: #FF5555;
box-shadow: 0 0 10px #FF5555;
}
.server-card {
background-color: #2a2a2a;
border-left: 4px solid #3a3a3a;
transition: all 0.2s ease;
}
.server-card:hover {
background-color: #3a3a3a;
border-left-color: #4a4a4a;
}
.motd {
color: #AAAAAA;
font-family: 'Minecraft', sans-serif;
white-space: pre-wrap;
}
.player-count {
color: #AAAAAA;
}
.search-input {
background-color: #2a2a2a;
border: 2px solid #3a3a3a;
}
.search-input:focus {
outline: none;
border-color: #4a4a4a;
}
.search-button {
background-color: #3a3a3a;
transition: all 0.2s ease;
}
.search-button:hover {
background-color: #4a4a4a;
}
.loading-spinner {
border-top-color: #55FF55;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.player-sample {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.player-sample.expanded {
max-height: 200px;
}
</style>
</head>
<body class="bg-gray-900 text-white min-h-screen">
<div class="container mx-auto px-4 py-8">
<h1 class="text-3xl minecraft-font text-center mb-8 text-green-400">
<i class="fas fa-server mr-2"></i> Minecraft Server Status
</h1>
<div class="max-w-2xl mx-auto mb-8">
<div class="flex">
<input
type="text"
id="serverAddress"
placeholder="Enter server address (e.g., mc.hypixel.net)"
class="search-input flex-grow px-4 py-3 rounded-l focus:border-green-500"
>
<button
id="searchButton"
class="search-button px-6 py-3 rounded-r text-white font-semibold hover:bg-green-600"
>
<i class="fas fa-search mr-2"></i> Check
</button>
</div>
</div>
<div id="errorMessage" class="hidden bg-red-900 text-white p-4 rounded mb-6 text-center"></div>
<div id="loadingSpinner" class="hidden text-center py-8">
<div class="inline-block h-12 w-12 border-4 border-gray-600 rounded-full loading-spinner"></div>
<p class="mt-2">Fetching server data...</p>
</div>
<div id="serverInfo" class="hidden max-w-4xl mx-auto">
<div class="server-card p-6 rounded mb-6 flex flex-col md:flex-row items-start md:items-center">
<div class="flex items-center mb-4 md:mb-0 md:mr-6">
<img id="serverIcon" src="https://api.mcstatus.io/v2/icon/mc.hypixel.net" alt="Server Icon" class="server-icon rounded mr-4">
<div>
<h2 id="serverName" class="text-xl font-bold"></h2>
<div class="flex items-center mt-1">
<div id="statusIndicator" class="status-indicator mr-2"></div>
<span id="serverStatus" class="text-sm"></span>
</div>
</div>
</div>
<div class="flex-grow">
<div class="flex justify-between items-center mb-2">
<div>
<span class="text-gray-400">Players:</span>
<span id="playerCount" class="ml-2 font-semibold"></span>
</div>
<div>
<span class="text-gray-400">Version:</span>
<span id="serverVersion" class="ml-2 font-semibold"></span>
</div>
</div>
<div class="bg-gray-800 p-3 rounded mt-2">
<p class="text-gray-400 mb-1">Message of the Day:</p>
<div id="serverMotd" class="motd"></div>
</div>
<button id="togglePlayersBtn" class="mt-4 text-green-400 hover:text-green-300 text-sm flex items-center">
<i class="fas fa-users mr-1"></i> Show player sample
<i id="togglePlayersIcon" class="fas fa-chevron-down ml-2 text-xs"></i>
</button>
<div id="playerSample" class="player-sample mt-2 bg-gray-800 rounded p-3">
<p class="text-gray-400 mb-2">Online Players:</p>
<div id="playerList" class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 gap-2"></div>
</div>
</div>
</div>
<div class="bg-gray-800 p-4 rounded">
<h3 class="font-bold mb-2 text-green-400"><i class="fas fa-info-circle mr-2"></i> Server Details</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<p><span class="text-gray-400">Address:</span> <span id="serverAddressDisplay" class="font-mono"></span></p>
<p class="mt-1"><span class="text-gray-400">Protocol:</span> <span id="serverProtocol" class="font-mono"></span></p>
</div>
<div>
<p><span class="text-gray-400">Latency:</span> <span id="serverLatency" class="font-mono"></span> ms</p>
<p class="mt-1"><span class="text-gray-400">Last Updated:</span> <span id="lastUpdated" class="font-mono"></span></p>
</div>
</div>
</div>
</div>
<div class="mt-12 text-center text-gray-500 text-sm">
<p>This tool uses the <a href="https://mcstatus.io/" class="text-green-400 hover:underline" target="_blank">mcstatus.io</a> API</p>
<p class="mt-1">Not affiliated with Mojang or Microsoft</p>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const serverAddressInput = document.getElementById('serverAddress');
const searchButton = document.getElementById('searchButton');
const errorMessage = document.getElementById('errorMessage');
const loadingSpinner = document.getElementById('loadingSpinner');
const serverInfo = document.getElementById('serverInfo');
const serverName = document.getElementById('serverName');
const statusIndicator = document.getElementById('statusIndicator');
const serverStatus = document.getElementById('serverStatus');
const playerCount = document.getElementById('playerCount');
const serverVersion = document.getElementById('serverVersion');
const serverMotd = document.getElementById('serverMotd');
const serverIcon = document.getElementById('serverIcon');
const serverAddressDisplay = document.getElementById('serverAddressDisplay');
const serverProtocol = document.getElementById('serverProtocol');
const serverLatency = document.getElementById('serverLatency');
const lastUpdated = document.getElementById('lastUpdated');
const playerList = document.getElementById('playerList');
const togglePlayersBtn = document.getElementById('togglePlayersBtn');
const togglePlayersIcon = document.getElementById('togglePlayersIcon');
const playerSample = document.getElementById('playerSample');
// Check server when button is clicked
searchButton.addEventListener('click', checkServerStatus);
// Also check when Enter is pressed in the input field
serverAddressInput.addEventListener('keypress', function(e) {
if (e.key === 'Enter') {
checkServerStatus();
}
});
// Toggle player sample visibility
togglePlayersBtn.addEventListener('click', function() {
playerSample.classList.toggle('expanded');
const isExpanded = playerSample.classList.contains('expanded');
togglePlayersIcon.className = isExpanded ? 'fas fa-chevron-up ml-2 text-xs' : 'fas fa-chevron-down ml-2 text-xs';
togglePlayersBtn.innerHTML = isExpanded
? '<i class="fas fa-users mr-1"></i> Hide player sample' +
'<i id="togglePlayersIcon" class="fas fa-chevron-up ml-2 text-xs"></i>'
: '<i class="fas fa-users mr-1"></i> Show player sample' +
'<i id="togglePlayersIcon" class="fas fa-chevron-down ml-2 text-xs"></i>';
});
function checkServerStatus() {
const address = serverAddressInput.value.trim();
if (!address) {
showError('Please enter a server address');
return;
}
// Show loading spinner and hide other elements
loadingSpinner.classList.remove('hidden');
errorMessage.classList.add('hidden');
serverInfo.classList.add('hidden');
// Fetch server status from mcstatus.io API
fetch(`https://api.mcstatus.io/v2/status/java/${address}`)
.then(response => {
if (!response.ok) {
throw new Error('Server not found or not responding');
}
return response.json();
})
.then(data => {
displayServerInfo(data, address);
})
.catch(error => {
showError(error.message || 'Failed to fetch server status');
})
.finally(() => {
loadingSpinner.classList.add('hidden');
});
}
function displayServerInfo(data, address) {
// Basic info
serverName.textContent = data.motd.clean || address;
serverAddressDisplay.textContent = address;
// Status
const isOnline = data.online;
if (isOnline) {
statusIndicator.className = 'status-indicator mr-2 online';
serverStatus.textContent = 'Online';
serverStatus.className = 'text-sm text-green-400';
} else {
statusIndicator.className = 'status-indicator mr-2 offline';
serverStatus.textContent = 'Offline';
serverStatus.className = 'text-sm text-red-400';
}
// Players
if (isOnline && data.players) {
playerCount.textContent = `${data.players.online}/${data.players.max}`;
// Player sample
playerList.innerHTML = '';
if (data.players.list && data.players.list.length > 0) {
data.players.list.forEach(player => {
const playerElement = document.createElement('div');
playerElement.className = 'flex items-center';
playerElement.innerHTML = `
<img src="https://mc-heads.net/avatar/${player.name_clean}/24"
alt="${player.name_clean}"
class="rounded-full mr-2"
title="${player.name_clean}">
<span class="truncate">${player.name_clean}</span>
`;
playerList.appendChild(playerElement);
});
} else {
playerList.innerHTML = '<p class="text-gray-500">No player data available</p>';
}
} else {
playerCount.textContent = '0/0';
playerList.innerHTML = '<p class="text-gray-500">No player data available</p>';
}
// Version
if (isOnline && data.version) {
serverVersion.textContent = data.version.name_clean || 'Unknown';
serverProtocol.textContent = data.version.protocol || 'Unknown';
} else {
serverVersion.textContent = 'Unknown';
serverProtocol.textContent = 'Unknown';
}
// MOTD
if (isOnline && data.motd) {
serverMotd.innerHTML = formatMotd(data.motd.html);
} else {
serverMotd.textContent = 'No MOTD available';
}
// Latency
if (isOnline && data.round_trip_latency) {
serverLatency.textContent = Math.round(data.round_trip_latency);
} else {
serverLatency.textContent = 'N/A';
}
// Last updated
const now = new Date();
lastUpdated.textContent = now.toLocaleString();
// Server icon
serverIcon.src = `https://api.mcstatus.io/v2/icon/${address}?${now.getTime()}`;
serverIcon.onerror = function() {
this.src = 'https://api.mcstatus.io/v2/icon/mc.hypixel.net'; // Fallback icon
};
// Show the server info
serverInfo.classList.remove('hidden');
}
function formatMotd(motdHtml) {
// Convert HTML MOTD to formatted text
let formatted = motdHtml
.replace(/<br\s*\/?>/gi, '\n')
.replace(/<[^>]+>/g, '')
.replace(/ /g, ' ')
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/&/g, '&');
// Trim and clean up
formatted = formatted.trim();
return formatted || 'No MOTD available';
}
function showError(message) {
errorMessage.textContent = message;
errorMessage.classList.remove('hidden');
serverInfo.classList.add('hidden');
}
// Check Hypixel by default for demo purposes
serverAddressInput.value = 'mc.hypixel.net';
// checkServerStatus();
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Candle6468/serverviewer" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |