summaryrefslogtreecommitdiff
path: root/util/master/list.js
diff options
context:
space:
mode:
authorproller <proller@github.com>2013-02-22 02:00:44 +0400
committerIlya Zhuravlev <zhuravlevilya@ya.ru>2013-02-22 02:04:53 +0400
commitee07c3f7cf638e854518d2cfcb9c11a64412cc72 (patch)
tree18ecc46deebf58d0a4a6ca93df6a526e2720ae69 /util/master/list.js
parentef6b8bee07b9cefe7d463fabd199548d37ff2bee (diff)
downloadminetest-ee07c3f7cf638e854518d2cfcb9c11a64412cc72.tar.gz
minetest-ee07c3f7cf638e854518d2cfcb9c11a64412cc72.tar.bz2
minetest-ee07c3f7cf638e854518d2cfcb9c11a64412cc72.zip
new auto masterserver
Diffstat (limited to 'util/master/list.js')
-rw-r--r--util/master/list.js72
1 files changed, 72 insertions, 0 deletions
diff --git a/util/master/list.js b/util/master/list.js
new file mode 100644
index 000000000..dcc30e091
--- /dev/null
+++ b/util/master/list.js
@@ -0,0 +1,72 @@
+function e(s) {
+ if (typeof s === "undefined") s = '';
+ return s.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;'); //mc"
+}
+function human_time(t) {
+ var n = 's';
+ if (!t || t < 0) t = 0;
+ var f = 0;
+ var s = parseInt((new Date().getTime() / 1000 - (t || 0)));
+ if (!s || s <= 0) s = 0;
+ if (s == 0) return 'now';
+ if (s >= 60) {
+ s /= 60;
+ n = 'm';
+ if (s >= 60) {
+ s /= 60;
+ n = 'h';
+ f = 1;
+ if (s >= 24) {
+ s /= 24;
+ n = 'd';
+ f = 1;
+ if (s >= 30) {
+ s /= 30;
+ n = 'M';
+ f = 1;
+ if (s >= 12) {
+ s /= 12;
+ n = 'y';
+ f = 1;
+ }
+ }
+ }
+ }
+ }
+ return ((f ? parseFloat(s).toFixed(1) : parseInt(s)) + n);
+}
+function success(r) {
+ if (!r || !r.list) return;
+ var h = '<table><tr><th>ip:port</th><th>clients, max</th><th>version</th><th>name</th><th>desc</th><th>flags</th><th>updated/started</th><th>ping</th></tr>';
+ for (var i = 0; i < r.list.length; ++i) {
+ var s = r.list[i];
+ if (!s) continue;
+ h += '<tr>';
+ h += '<td>' + e(s.address) + ':' + e(s.port) + '</td>';
+ h += '<td>' + e(s.clients) + (s.clients_max ? '/' + e(s.clients_max) : '') + (s.clients_top ? ', ' + s.clients_top : '') + '</td>';
+ h += '<td>' + e(s.version) + '</td>';
+ h += '<td>';
+ if (s.url) h += '<a href="' + e(s.url) + '">';
+ h += e(s.name || s.url);
+ if (s.url) h += '</a>';
+ h += '</td>';
+ h += '<td>' + e(s.description) + '</td>';
+ h += '<td>' + e(s.password ? 'Pwd ' : '') + (s.creative ? 'Cre ' : '') + (s.damage ? 'Dmg ' : '') + (s.pvp ? 'Pvp ' : '') + (s.dedicated ? 'Ded ' : '') + '</td>';
+ if (!s.time || s.time < 0) s.time = 0;
+ if (!s.start || s.start < 0) s.start = 0;
+ h += '<td>' + human_time(s.time) + (s.start ? '/' + human_time(s.start) : '') + '</td>';
+ h += '<td>' + (s.ping ? parseFloat(s.ping).toFixed(3)*1000 : '') + '</td>';
+ h += '</tr>';
+ }
+ h += '</table>'
+ jQuery('#table').html(h);
+}
+function get() {
+ jQuery.ajax({
+ url: 'list',
+ dataType: 'json',
+ success: success
+ });
+ setTimeout(get, 60000);
+}
+get(); \ No newline at end of file