1 Commits

Author SHA1 Message Date
ShadowNinja
ce10e802bc Add points to servers with a domain name
This also adds options for banned domain suffixes and domain suffixes
that shouldn't get the extra points.
2021-04-17 15:21:41 -04:00
12 changed files with 398 additions and 768 deletions

View File

@@ -1,8 +0,0 @@
root = true
[*]
charset = utf-8
indent_style = tab
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true

View File

@@ -1,28 +0,0 @@
name: lint
on:
push:
paths:
- '**.py'
- 'requirements.txt'
pull_request:
paths:
- '**.py'
- 'requirements.txt'
jobs:
pylint:
runs-on: ubuntu-latest
container:
image: python:3.11-slim
steps:
- uses: actions/checkout@v3
- name: Install deps
run: |
pip install -r requirements.txt
pip install pylint
- name: Lint
run: |
pylint -E --fail-on=E server.py

9
.gitignore vendored
View File

@@ -1,8 +1,7 @@
*~ *~
node_modules node_modules
__pycache__ __pycache__
/store.json static/list.json
/static/list.json static/servers.js
/static/servers.js config.py
/config.py
/*.mmdb

169
README.md
View File

@@ -1,4 +1,4 @@
Luanti server list Minetest server list
==================== ====================
Setting up the webpage Setting up the webpage
@@ -9,141 +9,124 @@ the server list webpage template.
First install node.js, e.g.: First install node.js, e.g.:
```sh # apt-get install nodejs
apt-get install nodejs # # OR:
# OR: # pacman -S nodejs
yum install nodejs
```
Then install doT.js and its dependencies: Then install doT.js and its dependencies:
```sh $ npm install dot commander mkdirp
npm install dot "commander@11.1.0" mkdirp
```
And finally compile the template: And finally compile the template:
```sh $ cd static
cd static $ ../node_modules/dot/bin/dot-packer -s .
../node_modules/dot/bin/dot-packer -s .
```
You can now serve the webpage by copying the files in `static/` to your web root, or by [starting the server list](#setting-up-the-server). You can now serve the webpage by copying the files in static/ to your web root, or by [starting the server list](#setting-up-the-server).
Embedding the server list in a page Embedding the server list in a page
----------------------------------- -----------------------------------
```html <head>
<head> ...
... <script>
<script> var master = {
var master = { root: 'http://servers.minetest.net/',
root: 'https://servers.luanti.org/', limit: 10,
limit: 10, clients_min: 1,
clients_min: 1, no_flags: 1,
no_flags: true, no_ping: 1,
no_ping: true, no_uptime: 1
no_uptime: true };
}; </script>
</script> ...
... </head>
</head> <body>
<body> ...
... <div id="server_list"></div>
<div id="server_list"></div> ...
... </body>
<script defer src="https://servers.luanti.org/list.js"></script> <script src="list.js"></script>
</body>
```
Setting up the server Setting up the server
--------------------- ---------------------
1. Install Python 3 and pip: 1. Install Python 3 and pip:
```sh pacman -S python python-pip
apt-get install python3 python3-pip # OR:
# OR: apt-get install python3 python3-pip
yum install python3 python3-pip
```
2. Install required Python packages: 2. Install required Python packages:
pip3 install -r requirements.txt # You might have to use pip3 if your system defaults to Python 2
pip install -r requirements.txt
3. If using in production, install uwsgi and its python plugin: 3. If using in production, install uwsgi and it's python plugin:
```sh pacman -S uwsgi uwsgi-plugin-python
apt-get install uwsgi-plugin-python3 # OR:
# OR: apt-get install uwsgi uwsgi-plugin-python
yum install uwsgi uwsgi-plugin-python3 # OR:
``` pip install uwsgi
4. Configure the server by adding options to `config.py`. 4. Configure the server by adding options to `config.py`.
See `config-example.py` for defaults. See `config-example.py` for defaults.
5. Start the server: 5. Start the server:
```sh $ ./server.py
./server.py $ # Or for production:
# Or for production: $ uwsgi -s /tmp/minetest-master.sock --plugin python -w server:app --enable-threads
uwsgi -s /run/serverlist.sock --plugins python3 -w server:app -T --threads 2 $ # Then configure according to http://flask.pocoo.org/docs/deploying/uwsgi/
# then configure according to https://flask.palletsprojects.com/en/stable/deploying/uwsgi/
```
7. (optional) Configure the proxy server, if any. You should make the server 7. (optional) Configure the proxy server, if any. You should make the server
load static files directly from the static directory. Also, `/list` load static files directly from the static directory. Also, `/list`
should be served from `list.json`. Example for nginx: should be served from `list.json`. Example for nginx:
```sh root /path/to/server/static;
root /path/to/server/static; rewrite ^/list$ /list.json;
try_files $uri @uwsgi;
rewrite ^/$ /index.html break; location @uwsgi {
rewrite ^/list$ /list.json break; uwsgi_pass ...;
}
location = /list.json { expires 20s; }
try_files $uri @uwsgi;
location @uwsgi {
include uwsgi_params;
uwsgi_pass unix:/run/serverlist.sock;
}
```
Setting up the server (Apache version) Setting up the server (Apache version)
-------------------------------------- ---------------------
If you wish to use Apache to host the server list, do steps 1-2, 4, above. If you wish to use Apache to host the server list, do steps 1-2, 4, above. Additionally install/enable mod_wsgi and an Apache site config like the following:
Additionally install/enable mod_wsgi and an Apache site config like the following:
```sh # This config assumes you have the server list at DocumentRoot.
# This config assumes you have the server list at DocumentRoot. # Visitors to the server list in this config would visit http://local.server/ and
# Visitors to the server list in this config would visit http://local.server/ and # apache would serve up the output from server.py. Static resources would be served
# apache would serve up the output from server.py. # from http://local.server/static.
# Where are the serverlist files located? # Where are the minetest-server files located?
DocumentRoot /var/games/luanti/serverlist DocumentRoot /var/games/minetest/serverlist
# Serve up server.py at the root of the URL. # Serve up server.py at the root of the URL.
WSGIScriptAlias / /var/games/luanti/serverlist/server.py WSGIScriptAlias / /var/games/minetest/serverlist/server.py
# The name of the function that we call when we invoke server.py # The name of the function that we call when we invoke server.py
WSGICallableObject app WSGICallableObject app
# These options are necessary to enable Daemon mode. Without this, you'll have strange behavior # These options are necessary to enable Daemon mode. Without this, you'll have strange behavior
# with servers dropping off your list! You can tweak threads as needed. See mod_wsgi documentation. # with servers dropping off your list! You can tweak threads as needed. See mod_wsgi documentation.
WSGIProcessGroup luanti-serverlist WSGIProcessGroup minetest-serverlist
WSGIDaemonProcess luanti-serverlist threads=2 WSGIDaemonProcess minetest-serverlist threads=2
<Directory /var/games/luanti/serverlist>
Require all granted <Directory /var/games/minetest/serverlist>
</Directory> Require all granted
``` </Directory>
</VirtualHost>
License License
------- -------
The Luanti server list code is licensed under the GNU Lesser General Public The Minetest server list code is licensed under the GNU Lesser General Public
License version 2.1 or later (LGPLv2.1+). A LICENSE.txt file should have been License version 2.1 or later (LGPLv2.1+). A LICENSE.txt file should have been
supplied with your copy of this software containing a copy of the license. supplied with your copy of this software containing a copy of the license.

View File

@@ -7,8 +7,8 @@ HOST = "127.0.0.1"
# Port for development server to listen on # Port for development server to listen on
PORT = 5000 PORT = 5000
# Amount of time, is seconds, after which servers are removed from the list # Amount of time, in seconds, after which servers are removed from the list
# if they haven't updated their listings. Note: By default Luanti servers # if they haven't updated their listings. Note: By default Minetest servers
# only announce once every 5 minutes, so this should be more than 300. # only announce once every 5 minutes, so this should be more than 300.
PURGE_TIME = 350 PURGE_TIME = 350
@@ -16,15 +16,18 @@ PURGE_TIME = 350
# e.g. ['2620:101::44'] # e.g. ['2620:101::44']
BANNED_IPS = [] BANNED_IPS = []
# List of banned servers as host/port pairs # List of banned servers as host/port pairs, domains must be lowercase
# e.g. ['1.2.3.4/30000', 'lowercase.hostname', 'lowercase.hostname/30001'] # e.g. ['1.2.3.4/30000', 'server.example.net', 'server.example.net/30001']
BANNED_SERVERS = [] BANNED_SERVERS = []
# List of banned domain suffixes, must be lowercase
# e.g. ['.example.net', 'server.example.com']
BANNED_DOMAINS = []
# List of domain suffixes that should not get a point bonus (e.g. free domains), must be lowercase
IRREPUTABLE_DOMAINS = ['.cf', '.ga', '.gq', '.ml', '.tk']
# Creates server entries if a server sends an 'update' and there is no entry yet. # Creates server entries if a server sends an 'update' and there is no entry yet.
# This should only be used to populate the server list after list.json was deleted. # This should only be used to populate the server list after list.json was deleted.
# This WILL cause problems such as mapgen, mods and privilege information missing from the list # This WILL cause problems such as mapgen, mods and privilege information missing from the list
ALLOW_UPDATE_WITHOUT_OLD = False ALLOW_UPDATE_WITHOUT_OLD = False
# Reject servers with private addresses and domain names.
# Enable this if you are running a list on the public internet.
REJECT_PRIVATE_ADDRESSES = False

View File

@@ -1,2 +1,2 @@
Flask>=2.0.0 Flask>=0.10
maxminddb>=2.0.0 maxminddb-geolite2>=2018.703

784
server.py
View File

@@ -1,69 +1,18 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
import os import os, re, sys, json, time, socket, ipaddress
import json
import time
import socket
from threading import Thread, RLock from threading import Thread, RLock
from glob import glob from geolite2 import geolite2
import maxminddb from flask import Flask, request, send_from_directory
from flask import Flask, request, send_from_directory, make_response
LIST_SAVE_INTERVAL = 5
app = Flask(__name__, static_url_path = "") app = Flask(__name__, static_url_path = "")
# Load configuration # Load configuration
app.config.from_pyfile("config-example.py") # Use example for defaults app.config.from_pyfile("config-example.py") # Use example for defaults
if os.path.isfile(os.path.join(app.root_path, "config.py")): if os.path.isfile(os.path.join(app.root_path, "config.py")):
app.config.from_pyfile("config.py") app.config.from_pyfile("config.py")
tmp = glob(os.path.join(app.root_path, "dbip-country-lite-*.mmdb"))
if tmp:
reader = maxminddb.open_database(tmp[0], maxminddb.MODE_AUTO)
else:
app.logger.warning(
"For working GeoIP download the database from "+
"https://db-ip.com/db/download/ip-to-country-lite and place the "+
".mmdb file in the app root folder."
)
reader = None
# Helpers
# checkRequestAddress() error codes
ADDR_IS_PRIVATE = 1
ADDR_IS_INVALID = 2
ADDR_IS_INVALID_PORT = 3
ADDR_IS_UNICODE = 4
ADDR_IS_EXAMPLE = 5
ADDR_ERROR_HELP_TEXTS = {
ADDR_IS_PRIVATE: "The server_address you provided is private or local. "
"It is only reachable in your local network.\n"
"If you meant to host a public server, adjust the setting and make sure your "
"firewall is permitting connections (e.g. port forwarding).",
ADDR_IS_INVALID: "The server_address you provided is invalid.\n"
"If you don't have a domain name, try removing the setting from your configuration.",
ADDR_IS_INVALID_PORT: "The server_address you provided is invalid.\n"
"Note that the value must not include a port number.",
ADDR_IS_UNICODE: "The server_address you provided includes Unicode characters.\n"
"For domain names you have to use the punycode notation.",
ADDR_IS_EXAMPLE: "The server_address you provided is an example value.",
}
def geoip_lookup_continent(ip):
if ip.startswith("::ffff:"):
ip = ip[7:]
if not reader:
return
geo = reader.get(ip)
if geo and "continent" in geo:
return geo["continent"]["code"]
else:
app.logger.warning("Unable to get GeoIP continent data for %s.", ip)
# Views # Views
@@ -73,26 +22,14 @@ def index():
@app.route("/list") @app.route("/list")
def list_json(): def list():
# We have to make sure that the list isn't cached for too long, # We have to make sure that the list isn't cached,
# since it isn't really static. # since the list isn't really static.
return send_from_directory(app.static_folder, "list.json", max_age=LIST_SAVE_INTERVAL) return send_from_directory(app.static_folder, "list.json",
cache_timeout=0)
@app.route("/geoip") @app.route("/announce", methods=["GET", "POST"])
def geoip():
continent = geoip_lookup_continent(request.remote_addr)
resp = make_response({
"continent": continent, # null on error
})
resp.cache_control.max_age = 7 * 86400
resp.cache_control.private = True
return resp
@app.post("/announce")
def announce(): def announce():
ip = request.remote_addr ip = request.remote_addr
if ip.startswith("::ffff:"): if ip.startswith("::ffff:"):
@@ -101,101 +38,112 @@ def announce():
if ip in app.config["BANNED_IPS"]: if ip in app.config["BANNED_IPS"]:
return "Banned (IP).", 403 return "Banned (IP).", 403
json_data = request.form["json"] data = request.values["json"]
if len(json_data) > 8192:
if len(data) > 8192:
return "JSON data is too big.", 413 return "JSON data is too big.", 413
try: try:
req = json.loads(json_data) server = json.loads(data)
except json.JSONDecodeError: except:
return "Unable to process JSON data.", 400 return "Unable to process JSON data.", 400
if not isinstance(req, dict): if type(server) != dict:
return "JSON data is not an object.", 400 return "JSON data is not an object.", 400
action = req.pop("action", "") if not "action" in server:
return "Missing action field.", 400
action = server["action"]
if action not in ("start", "update", "delete"): if action not in ("start", "update", "delete"):
return "Invalid action field.", 400 return "Invalid action field.", 400
req["ip"] = ip if action == "start":
server["uptime"] = 0
if not "port" in req: server["ip"] = ip
req["port"] = 30000
#### Compatibility code #### if not "port" in server:
server["port"] = 30000
#### Compatability code ####
# port was sent as a string instead of an integer # port was sent as a string instead of an integer
elif isinstance(req["port"], str): elif type(server["port"]) == str:
req["port"] = int(req["port"]) server["port"] = int(server["port"])
#### End compatibility code #### #### End compatability code ####
if "%s/%d" % (req["ip"], req["port"]) in app.config["BANNED_SERVERS"]: if "%s/%d" % (server["ip"], server["port"]) in app.config["BANNED_SERVERS"]:
return "Banned (Server).", 403
elif "address" in req and "%s/%d" % (req["address"].lower(), req["port"]) in app.config["BANNED_SERVERS"]:
return "Banned (Server).", 403
elif "address" in req and req["address"].lower() in app.config["BANNED_SERVERS"]:
return "Banned (Server).", 403 return "Banned (Server).", 403
elif "address" in server:
# Normalize address for ban checks
server["address"] = server["address"].lower().rstrip(".")
if f'{server["address"]}/{server["port"]}' in app.config["BANNED_SERVERS"] or \
server["address"] in app.config["BANNED_SERVERS"]:
return "Banned (Server).", 403
for domain in app.config["BANNED_DOMAINS"]:
if server["address"].endswith(domain):
return "Banned (Domain).", 403
old = serverList.get(ip, req["port"]) old = serverList.get(ip, server["port"])
if action == "delete": if action == "delete":
if not old: if not old:
return "Server not found." return "Server not found."
serverList.remove(old) serverList.remove(old)
serverList.save()
return "Removed from server list." return "Removed from server list."
elif not checkRequest(server):
if not checkRequestSchema(req): return "Invalid JSON data.", 400
return "JSON data does not conform to schema.", 400
elif not checkRequest(req):
return "Incorrect JSON data.", 400
if action == "update" and not old: if action == "update" and not old:
if app.config["ALLOW_UPDATE_WITHOUT_OLD"] and req["uptime"] > 0: if app.config["ALLOW_UPDATE_WITHOUT_OLD"]:
action = "start" action = "start"
else: else:
return "Server to update not found." return "Server to update not found."
server = Server.from_request(req) server["update_time"] = int(time.time())
# Since 'address' isn't the primary key it can change if action == "start":
if action == "start" or old.address != server.address: server["start"] = int(time.time())
err = checkRequestAddress(server) tracker.push("%s:%d" % (server["ip"], server["port"]), server["start"])
if err: else:
return ADDR_ERROR_HELP_TEXTS[err], 400 server["start"] = old["start"]
server.track_update(old, action == "update") if "clients_list" in server:
server["clients"] = len(server["clients_list"])
err = errorTracker.get(server.get_error_pk()) server["clients_top"] = max(server["clients"], old["clients_top"]) if old else server["clients"]
if "url" in server:
url = server["url"]
if not any(url.startswith(p) for p in ["http://", "https://", "//"]):
del server["url"]
# Make sure that startup options are saved
if action == "update":
for field in ("dedicated", "rollback", "mapgen", "privs",
"can_see_far_names", "mods"):
if field in old:
server[field] = old[field]
# Popularity
if old:
server["updates"] = old["updates"] + 1
# This is actually a count of all the client numbers we've received,
# it includes clients that were on in the previous update.
server["total_clients"] = old["total_clients"] + server["clients"]
else:
server["updates"] = 1
server["total_clients"] = server["clients"]
server["pop_v"] = server["total_clients"] / server["updates"]
finishRequestAsync(server) finishRequestAsync(server)
if err:
warn, text = err
if warn:
text = ("Request has been filed and the previous one was successful, "
"but take note:\n" + text)
else:
text = ("Request has been filed, "
"but the previous request encountered the following error:\n" + text)
return text, 409
return "Request has been filed.", 202 return "Request has been filed.", 202
# Utilities # Utilities
# check if something is a domain name (approximate)
def isDomain(s):
return "." in s and s.rpartition(".")[2][0].isalpha()
# Safely writes JSON data to a file
def dumpJsonToFile(filename, data):
with open(filename + "~", "w", encoding="utf-8") as fd:
json.dump(data, fd,
indent = "\t" if app.config["DEBUG"] else None,
separators = (',', ': ') if app.config["DEBUG"] else (',', ':')
)
os.replace(filename + "~", filename)
# Returns ping time in seconds (up), False (down), or None (error). # Returns ping time in seconds (up), False (down), or None (error).
def serverUp(info): def serverUp(info):
sock = None
try: try:
sock = socket.socket(info[0], info[1], info[2]) sock = socket.socket(info[0], info[1], info[2])
sock.settimeout(3) sock.settimeout(3)
@@ -208,7 +156,7 @@ def serverUp(info):
# [7] u8 type (PACKET_TYPE_ORIGINAL) # [7] u8 type (PACKET_TYPE_ORIGINAL)
buf = b"\x4f\x45\x74\x03\x00\x00\x00\x01" buf = b"\x4f\x45\x74\x03\x00\x00\x00\x01"
sock.send(buf) sock.send(buf)
start = time.monotonic() start = time.time()
# receive reliable packet of type CONTROL, subtype SET_PEER_ID, # receive reliable packet of type CONTROL, subtype SET_PEER_ID,
# with our assigned peer id as data # with our assigned peer id as data
# [0] u32 protocol_id (PROTOCOL_ID) # [0] u32 protocol_id (PROTOCOL_ID)
@@ -220,7 +168,7 @@ def serverUp(info):
# [11] u8 controltype (CONTROLTYPE_SET_PEER_ID) # [11] u8 controltype (CONTROLTYPE_SET_PEER_ID)
# [12] session_t peer_id_new # [12] session_t peer_id_new
data = sock.recv(1024) data = sock.recv(1024)
end = time.monotonic() end = time.time()
if not data: if not data:
return False return False
peer_id = data[12:14] peer_id = data[12:14]
@@ -233,61 +181,18 @@ def serverUp(info):
# [8] u8 controltype (CONTROLTYPE_DISCO) # [8] u8 controltype (CONTROLTYPE_DISCO)
buf = b"\x4f\x45\x74\x03" + peer_id + b"\x00\x00\x03" buf = b"\x4f\x45\x74\x03" + peer_id + b"\x00\x00\x03"
sock.send(buf) sock.send(buf)
sock.close()
return end - start return end - start
except (socket.timeout, socket.error): except socket.timeout:
return False return False
except Exception as e: except:
app.logger.warning("Unexpected exception during serverUp: %r", e)
return None return None
finally:
if sock:
sock.close()
def checkRequestAddress(server):
name = server.address.lower()
# example value from minetest.conf
EXAMPLE_TLDS = (".example.com", ".example.net", ".example.org")
if name == "game.minetest.net" or any(name.endswith(s) for s in EXAMPLE_TLDS):
return ADDR_IS_EXAMPLE
# length limit for good measure
if len(name) > 255:
return ADDR_IS_INVALID
# characters invalid in DNS names and IPs
if any(c in name for c in " @#/*\"'\t\v\r\n\x00") or name.startswith("-"):
return ADDR_IS_INVALID
# if not ipv6, there must be at least one dot (two components)
# Note: This is not actually true ('com' is valid domain), but we'll assume
# nobody who owns a TLD will ever host a Luanti server on the root domain.
# getaddrinfo also allows specifying IPs as integers, we don't want people
# to do that either.
if ":" not in name and "." not in name:
return ADDR_IS_INVALID
if app.config["REJECT_PRIVATE_ADDRESSES"]:
# private IPs (there are more but in practice these are 99% of cases)
PRIVATE_NETS = ("10.", "192.168.", "127.", "0.")
if any(name.startswith(s) for s in PRIVATE_NETS):
return ADDR_IS_PRIVATE
# reserved TLDs
RESERVED_TLDS = (".localhost", ".local", ".internal")
if name == "localhost" or any(name.endswith(s) for s in RESERVED_TLDS):
return ADDR_IS_PRIVATE
# ipv4/domain with port -or- ipv6 bracket notation
if ("." in name and ":" in name) or (":" in name and "[" in name):
return ADDR_IS_INVALID_PORT
# unicode in hostname
# Not sure about Python but the Luanti client definitely doesn't support it.
if any(ord(c) > 127 for c in name):
return ADDR_IS_UNICODE
# fieldName: (Required, Type, SubType) # fieldName: (Required, Type, SubType)
fields = { fields = {
"action": (True, "str"),
"address": (False, "str"), "address": (False, "str"),
"port": (False, "int"), "port": (False, "int"),
@@ -315,83 +220,38 @@ fields = {
"creative": (False, "bool"), "creative": (False, "bool"),
"dedicated": (False, "bool"), "dedicated": (False, "bool"),
"damage": (False, "bool"), "damage": (False, "bool"),
"liquid_finite": (False, "bool"),
"pvp": (False, "bool"), "pvp": (False, "bool"),
"password": (False, "bool"), "password": (False, "bool"),
"rollback": (False, "bool"), "rollback": (False, "bool"),
"can_see_far_names": (False, "bool"), "can_see_far_names": (False, "bool"),
} }
def checkRequestSchema(req): def checkRequest(server):
for name, data in fields.items(): for name, data in fields.items():
if not name in req: if not name in server:
if data[0]: if data[0]: return False
return False else: continue
continue
#### Compatibility code #### #### Compatibility code ####
if isinstance(req[name], str): # Accept strings in boolean fields but convert it to a
# Accept strings in boolean fields but convert it to a # boolean, because old servers sent some booleans as strings.
# boolean, because old servers sent some booleans as strings. if data[1] == "bool" and type(server[name]).__name__ == "str":
if data[1] == "bool": server[name] = True if server[name].lower() in ("true", "1") else False
req[name] = req[name].lower() in ("true", "1") continue
continue # Accept strings in integer fields but convert it to an
# Accept strings in integer fields but convert it to an # integer, for interoperability with e.g. minetest.write_json.
# integer, for interoperability with e.g. core.write_json(). if data[1] == "int" and type(server[name]).__name__ == "str":
if data[1] == "int": server[name] = int(server[name])
req[name] = int(req[name]) continue
continue
#### End compatibility code #### #### End compatibility code ####
if type(req[name]).__name__ != data[1]: if type(server[name]).__name__ != data[1]:
return False return False
if len(data) >= 3: if len(data) >= 3:
for item in req[name]: for item in server[name]:
if type(item).__name__ != data[2]: if type(item).__name__ != data[2]:
return False return False
return True return True
def checkRequest(req):
# check numbers
for field in ("clients", "clients_max", "uptime", "game_time", "lag", "proto_min", "proto_max"):
if field in req and req[field] < 0:
return False
if req["proto_min"] > req["proto_max"]:
return False
BAD_CHARS = " \t\v\r\n\x00\x27"
# URL must be absolute and http(s)
if "url" in req:
url = req["url"]
if not url or not any(url.startswith(p) for p in ["http://", "https://"]) or \
any(c in url for c in BAD_CHARS):
del req["url"]
# reject funny business in client or mod list
if "clients_list" in req:
req["clients"] = len(req["clients_list"])
for val in req["clients_list"]:
if not val or any(c in val for c in BAD_CHARS):
return False
if "mods" in req:
for val in req["mods"]:
if not val or any(c in val for c in BAD_CHARS):
return False
# sanitize some text
for field in ("gameid", "mapgen", "version", "privs"):
if field in req:
s = req[field]
for c in BAD_CHARS:
s = s.replace(c, "")
req[field] = s
# default value
if "address" not in req or not req["address"]:
req["address"] = req["ip"]
return True
def finishRequestAsync(server): def finishRequestAsync(server):
th = Thread(name = "ServerListThread", th = Thread(name = "ServerListThread",
@@ -400,224 +260,88 @@ def finishRequestAsync(server):
th.start() th.start()
def asyncFinishThread(server: 'Server'): def asyncFinishThread(server):
errorTracker.remove(server.get_error_pk()) checkAddress = False
if not "address" in server or not server["address"]:
server["address"] = server["ip"]
else:
checkAddress = True
try: try:
info = socket.getaddrinfo(server.address, info = socket.getaddrinfo(server["address"],
server.port, server["port"],
type=socket.SOCK_DGRAM, type=socket.SOCK_DGRAM,
proto=socket.SOL_UDP) proto=socket.SOL_UDP)
except socket.gaierror: except socket.gaierror:
err = "Unable to get address info for %s" % server.address app.logger.warning("Unable to get address info for %s." % (server["address"],))
app.logger.warning(err)
errorTracker.put(server.get_error_pk(), (False, err))
return return
if server.ip == server.address: if checkAddress:
server.verifyLevel = 3
else:
addresses = set(data[4][0] for data in info) addresses = set(data[4][0] for data in info)
have_v4 = any(d[0] == socket.AF_INET for d in info) if not server["ip"] in addresses:
have_v6 = any(d[0] == socket.AF_INET6 for d in info) app.logger.warning("Invalid IP %s for address %s (address valid for %s)."
if server.ip in addresses: % (server["ip"], server["address"], addresses))
server.verifyLevel = 3 return
elif (":" in server.ip and not have_v6) or ("." in server.ip and not have_v4):
# If the client is ipv6 and there is no ipv6 on the domain (or the inverse)
# then the check cannot possibly ever succeed.
# Because this often happens accidentally just tolerate it.
server.verifyLevel = 2
else:
err = "Requester IP %s does not match host %s" % (server.ip, server.address)
if isDomain(server.address):
err += " (valid: %s)" % " ".join(addresses)
app.logger.warning(err)
# handle as warning
errorTracker.put(server.get_error_pk(), (True, err))
server.verifyLevel = 1
# do this here since verifyLevel is now set reader = geolite2.reader()
if serverList.checkDuplicate(server): try:
err = "Server %s port %d already exists on the list" % (server.address, server.port) geo = reader.get(server["ip"])
app.logger.warning(err) except geoip2.errors.GeoIP2Error:
errorTracker.put(server.get_error_pk(), (False, err)) app.logger.warning("GeoIP lookup failure for %s." % (server["ip"],))
if geo and "continent" in geo:
server["geo_continent"] = geo["continent"]["code"]
else:
app.logger.warning("Unable to get GeoIP Continent data for %s."
% (server["ip"],))
server["ping"] = serverUp(info[0])
if not server["ping"]:
app.logger.warning("Server %s:%d has no ping."
% (server["address"], server["port"]))
return return
geo = geoip_lookup_continent(info[-1][4][0]) del server["action"]
if geo:
server.meta["geo_continent"] = geo
ping = serverUp(info[0])
if not ping:
err = "Server %s port %d did not respond to ping" % (server.address, server.port)
if isDomain(server.address):
err += " (tried %s)" % info[0][4][0]
app.logger.warning(err)
errorTracker.put(server.get_error_pk(), (False, err))
return
server.meta["ping"] = round(ping, 5)
# success!
serverList.update(server) serverList.update(server)
# represents a single server on the list class UptimeTracker:
class Server: def __init__(self):
PROPS = ("startTime", "updateCount", "updateTime", "totalClients", "verifyLevel") self.d = {}
self.cleanTime = 0
self.lock = RLock()
def push(self, id, ts):
with self.lock:
if time.time() >= self.cleanTime: # clear once in a while
self.d.clear()
self.cleanTime = time.time() + 48*60*60
def __init__(self, ip: str, port: str, address: str, meta: dict): if id in self.d:
# IP of announce requester (PRIMARY KEY) self.d[id] = self.d[id][-1:] + [ts]
self.ip = ip else:
# port of server (PRIMARY KEY) self.d[id] = [0, ts]
self.port = port # returns the before-last start time, in bulk
# connectable domain or IP def getStartTimes(self):
self.address = address ret = {}
# public metadata with self.lock:
self.meta = meta for k, v in self.d.items():
# unix time of first update ret[k] = v[0]
self.startTime = 0
# number of updates received
self.updateCount = 0
# unix time of last update received
self.updateTime = 0
# total clients counted over all updates
self.totalClients = 0
# how well the IP verification was passed (bigger is better)
self.verifyLevel = 0
# creates an instance from the data of an announce request
@classmethod
def from_request(cls, data):
ip = data["ip"]
port = data["port"]
address = data["address"]
for k in ("ip", "port", "address", "action"):
data.pop(k, 0)
return cls(ip, port, address, data)
# creates an instance from persisted data
@classmethod
def from_storage(cls, data):
p = data.pop()
obj = cls(*data)
for k in cls.PROPS:
if k in p:
setattr(obj, k, p[k])
return obj
# returns data to persist
def to_storage(self):
p = {k: getattr(self, k) for k in self.PROPS}
return (self.ip, self.port, self.address, self.meta, p)
# returns server dict intended for public list
def to_list_json(self):
ret = self.meta.copy()
ret["address"] = self.address
ret["port"] = self.port
ret["pop_v"] = self.get_average_clients()
return ret return ret
# returns a primary key suitable for saving and replaying an error unique to a
# server that was announced.
def get_error_pk(self):
# some failures depend on the client IP too
return (self.ip, self.port, self.address)
def get_average_clients(self):
if self.updateCount:
# FIXME: this is quite biased to servers that are new (or restart often)
return round(self.totalClients / self.updateCount)
return 0
# calculate score for server list ranking (higher values first)
def get_score(self):
points = 0
meta = self.meta
# 1 per client
points += meta["clients"]
# Penalize highly loaded servers to improve player distribution
cap = int(meta["clients_max"] * 0.80)
if meta["clients"] > cap:
points -= meta["clients"] - cap
# 1 per month of age, limited to 8
points += min(8, meta["game_time"] / (60*60*24*30))
# 1/2 per average client, limited to 4
points += min(4, self.get_average_clients() / 2)
# -8 for unrealistic max_clients
if meta["clients_max"] > 200:
points -= 8
# -8 per second of ping over 0.4s
if meta["ping"] > 0.4:
points -= (meta["ping"] - 0.4) * 8
# reduction to 60% for servers that support both legacy (v4) and v5 clients
if meta["proto_min"] <= 32 and meta["proto_max"] > 36:
points *= 0.6
return points
def track_update(self, old: 'Server', is_update: bool):
# this might look a bit strange, but once a `Server` object is put into
# list it becomes immutable since it's under lock. So we have to copy
# stuff we need from the old object, and then replace it later.
assert old or not is_update
self.startTime = old.startTime if old else int(time.time())
self.updateTime = int(time.time())
# Make sure that startup options are saved
if is_update:
for field in ("dedicated", "rollback", "mapgen", "privs",
"can_see_far_names", "mods"):
if field in old.meta:
self.meta[field] = old.meta[field]
else:
self.meta["uptime"] = 0
# Popularity
if old:
self.updateCount = old.updateCount + 1
self.totalClients = old.totalClients + self.meta["clients"]
self.meta["clients_top"] = max(self.meta["clients"], old.meta["clients_top"])
else:
self.updateCount = 1
self.meta["clients_top"] = self.totalClients = self.meta["clients"]
# check if *this* server is a logical duplicate of the other one
def is_duplicate(self, other: 'Server'):
if self.port == other.port and self.address.lower() == other.address.lower():
# if everything matches it's not a duplicate but literally the same
if self.ip == other.ip:
return False
# we have a duplicate but the more trusted one gets to stay
return self.verifyLevel < other.verifyLevel
return False
# Represents an ordered list of server instances as well as methods
# to persist it.
class ServerList: class ServerList:
def __init__(self): def __init__(self):
self.list = [] self.list = []
self.maxServers = 0 self.maxServers = 0
self.maxClients = 0 self.maxClients = 0
self.storagePath = os.path.join(app.root_path, "store.json")
self.publicPath = os.path.join(app.static_folder, "list.json")
self.modified = True
self.lock = RLock() self.lock = RLock()
self.load() self.load()
self.purgeOld()
def getWithIndex(self, ip, port): def getWithIndex(self, ip, port):
with self.lock: with self.lock:
for i, server in enumerate(self.list): for i, server in enumerate(self.list):
if server.ip == ip and server.port == port: if server["ip"] == ip and server["port"] == port:
return (i, server) return (i, server)
return (None, None) return (None, None)
@@ -625,35 +349,92 @@ class ServerList:
i, server = self.getWithIndex(ip, port) i, server = self.getWithIndex(ip, port)
return server return server
# returns true if the given server shouldn't be on the list
def checkDuplicate(self, other_server: Server):
with self.lock:
for server in self.list:
if other_server.is_duplicate(server):
return True
return False
def remove(self, server): def remove(self, server):
with self.lock: with self.lock:
try: try:
self.list.remove(server) self.list.remove(server)
except:
pass
def sort(self):
start_times = tracker.getStartTimes()
def server_points(server):
points = 0
# 1 per client, but only 1/8 per "guest" client
if "clients_list" in server:
for name in server["clients_list"]:
if re.match(r"[A-Z][a-z]{3,}[1-9][0-9]{2,3}", name):
points += 1/8
else:
points += 1
else:
# Old server (1/4 per client)
points = server["clients"] / 4
# Penalize highly loaded servers to improve player distribution.
# Note: This doesn't just make more than 80% of max players stop
# increasing your points, it can actually reduce your points
# if you have guests.
cap = int(server["clients_max"] * 0.80)
if server["clients"] > cap:
points -= server["clients"] - cap
# 8 for servers with a reputable domain name
try:
ipaddress.ip_address(server["address"])
except ValueError: except ValueError:
return for domain in app.config["IRREPUTABLE_DOMAINS"]:
self.modified = True if server["address"].endswith(domain):
break
else:
points += 8
# 1 per month of age, limited to 8
points += min(8, server["game_time"] / (60*60*24*30))
# 1/2 per average client, limited to 4
points += min(4, server["pop_v"] / 2)
# -8 for unrealistic max_clients
if server["clients_max"] > 200:
points -= 8
# -8 per second of ping over 0.4s
if server["ping"] > 0.4:
points -= (server["ping"] - 0.4) * 8
# Up to -8 for less than an hour of uptime (penalty linearly decreasing)
# only if the server has restarted before within the last 2 hours
HOUR_SECS = 60 * 60
uptime = server["uptime"]
if uptime < HOUR_SECS:
start_time = start_times.get("%s:%d" % (server["ip"], server["port"]), 0)
if start_time >= time.time() - 2 * HOUR_SECS:
points -= ((HOUR_SECS - uptime) / HOUR_SECS) * 8
# reduction to 40% for servers that support both legacy (v4) and v5 clients
if server["proto_min"] <= 32 and server["proto_max"] > 36:
points *= 0.4
return points
with self.lock:
self.list.sort(key=server_points, reverse=True)
def purgeOld(self): def purgeOld(self):
cutoff = int(time.time()) - app.config["PURGE_TIME"] cutoff = int(time.time()) - app.config["PURGE_TIME"]
with self.lock: with self.lock:
count = len(self.list) count = len(self.list)
self.list = [server for server in self.list if cutoff <= server.updateTime] self.list = [server for server in self.list if cutoff <= server["update_time"]]
if len(self.list) < count: if len(self.list) < count:
self.modified = True self.save()
def load(self): def load(self):
# TODO?: this is a poor man's database. maybe we should use sqlite3?
with self.lock: with self.lock:
try: try:
with open(self.storagePath, "r", encoding="utf-8") as fd: with open(os.path.join(app.static_folder, "list.json"), "r") as fd:
data = json.load(fd) data = json.load(fd)
except FileNotFoundError: except FileNotFoundError:
return return
@@ -661,117 +442,60 @@ class ServerList:
if not data: if not data:
return return
self.list = list(Server.from_storage(x) for x in data["list"]) self.list = data["list"]
self.maxServers = data["maxServers"] self.maxServers = data["total_max"]["servers"]
self.maxClients = data["maxClients"] self.maxClients = data["total_max"]["clients"]
# rewrite once in case writing format or so changed
self.modified = True
def save(self): def save(self):
with self.lock: with self.lock:
self._saveStorage() servers = len(self.list)
self._savePublic()
self.modified = False
def _saveStorage(self):
with self.lock:
if not self.modified:
return
out_list = list(server.to_storage() for server in self.list)
dumpJsonToFile(self.storagePath, {
"list": out_list,
"maxServers": self.maxServers,
"maxClients": self.maxClients
})
def _savePublic(self):
with self.lock:
if not self.modified and os.path.exists(self.publicPath):
return
# sort, but don't modify internal list
sorted_list = sorted(self.list,
key=(lambda server: server.get_score()), reverse=True)
out_list = []
servers = len(sorted_list)
clients = 0 clients = 0
for server in sorted_list: for server in self.list:
out_list.append(server.to_list_json()) clients += server["clients"]
clients += server.meta["clients"]
self.maxServers = max(servers, self.maxServers) self.maxServers = max(servers, self.maxServers)
self.maxClients = max(clients, self.maxClients) self.maxClients = max(clients, self.maxClients)
dumpJsonToFile(self.publicPath, { list_path = os.path.join(app.static_folder, "list.json")
"total": {"servers": servers, "clients": clients}, with open(list_path + "~", "w") as fd:
"total_max": {"servers": self.maxServers, "clients": self.maxClients}, json.dump({
"list": out_list "total": {"servers": servers, "clients": clients},
}) "total_max": {"servers": self.maxServers, "clients": self.maxClients},
"list": self.list
},
fd,
indent = "\t" if app.config["DEBUG"] else None,
separators = (', ', ': ') if app.config["DEBUG"] else (',', ':')
)
os.replace(list_path + "~", list_path)
def update(self, server): def update(self, server):
with self.lock: with self.lock:
i, old = self.getWithIndex(server.ip, server.port) i, old = self.getWithIndex(server["ip"], server["port"])
if i is not None: if i is not None:
self.list[i] = server self.list[i] = server
else: else:
self.list.append(server) self.list.append(server)
self.modified = True
self.sort()
self.save()
class ErrorTracker: class PurgeThread(Thread):
VALIDITY_TIME = 600
def __init__(self): def __init__(self):
self.table = {} Thread.__init__(self)
self.lock = RLock() self.daemon = True
def put(self, k, info):
with self.lock:
self.table[k] = (time.monotonic() + ErrorTracker.VALIDITY_TIME, info)
def remove(self, k):
with self.lock:
self.table.pop(k, None)
def get(self, k):
with self.lock:
e = self.table.get(k)
if e and e[0] >= time.monotonic():
return e[1]
def cleanup(self):
with self.lock:
now = time.monotonic()
table = {k: e for k, e in self.table.items() if e[0] >= now}
self.table = table
class TimerThread(Thread):
def __init__(self):
super().__init__(name="TimerThread", daemon=True)
def run(self): def run(self):
next_cleanup = 0
while True: while True:
time.sleep(max(1, LIST_SAVE_INTERVAL)) time.sleep(60)
serverList.purgeOld()
if time.monotonic() >= next_cleanup:
serverList.purgeOld()
errorTracker.cleanup()
next_cleanup = time.monotonic() + 60
serverList.save()
# Globals / Startup # Globals / Startup
tracker = UptimeTracker()
serverList = ServerList() serverList = ServerList()
errorTracker = ErrorTracker() PurgeThread().start()
TimerThread().start()
if __name__ == "__main__": if __name__ == "__main__":
app.run(host = app.config["HOST"], port = app.config["PORT"]) app.run(host = app.config["HOST"], port = app.config["PORT"])

View File

@@ -2,11 +2,10 @@
<html> <html>
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>Luanti server list</title> <title>Minetest server list</title>
<link rel="stylesheet" href="modern-normalize.min.css">
<style> <style>
body { body {
margin: .5em; font-family: Roboto, Ubuntu, "Segoe UI", sans;
} }
a { a {
color: #336B87; color: #336B87;
@@ -14,10 +13,6 @@
a:visited { a:visited {
color: #336BA1; color: #336BA1;
} }
hr {
border: 0;
border-top: 3px solid #53ac56;
}
@media only screen and (max-width: 1024px) { @media only screen and (max-width: 1024px) {
#server_list table .version, #server_list table .flags, #server_list table .uptime { #server_list table .version, #server_list table .flags, #server_list table .uptime {
display: none; display: none;
@@ -29,8 +24,6 @@
</script> </script>
</head> </head>
<body> <body>
<span class="h"><strong>Luanti server list</strong> | <a href="https://www.luanti.org/get-involved/#reporting-issues">Contact</a> | <a href="https://www.luanti.org/app-privacy-policy/">Privacy</a></span>
<hr />
<div id="server_list"></div> <div id="server_list"></div>
<script src="list.js"></script> <script src="list.js"></script>
</body> </body>

View File

@@ -1,21 +1,16 @@
var master; var master;
if (!master) if (!master) master = {};
master = {}; if (typeof(master.root) == 'undefined') master.root = window.location.href;
if (!master.root) if (!master.output) master.output = '#server_list';
master.root = window.location.href; if (!master.list) master.list = "list";
if (!master.list) if (!master.list_root) master.list_root = master.root;
master.list = "list"; if (!master.list_url) master.list_url = master.list_root + master.list;
if (!master.list_root)
master.list_root = master.root;
if (!master.list_url)
master.list_url = master.list_root + master.list;
master.cached_json = null; master.cached_json = null;
// Utility functions used by the templating code // Utility functions used by the templating code
function humanTime(seconds) { function humanTime(seconds) {
if (typeof(seconds) != "number") if (typeof(seconds) != "number") return '?';
return '?';
var conv = { var conv = {
y: 31536000, y: 31536000,
d: 86400, d: 86400,
@@ -31,25 +26,25 @@ function humanTime(seconds) {
} }
function escapeHTML(str) { function escapeHTML(str) {
if (!str) if(!str) return str;
return str;
return str.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;'); return str.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;');
} }
function addressString(server) { function addressString(server) {
var addrStr = server.address; var isIPv6 = server.address.indexOf(":") != -1;
if (addrStr.indexOf(':') != -1) var addrStr = (isIPv6 ? '[' : '') +
addrStr = '[' + addrStr + ']'; escapeHTML(server.address) +
(isIPv6 ? ']' : '');
var shortStr = addrStr; var shortStr = addrStr;
addrStr += ':' + server.port; addrStr += ':' + server.port;
var str = '<span' var str = '<span'
if (shortStr.length > 26) { if (shortStr.length > 25) {
shortStr = shortStr.substring(0, 25) + "\u2026"; shortStr = shortStr.substr(0, 23) + "&hellip;";
str += ' title="' + escapeHTML(addrStr) + '"' str += ' title="' + addrStr + '"'
} }
if (server.port != 30000) if (server.port != 30000)
shortStr += ':' + server.port; shortStr += ':' + server.port;
return str + '>' + escapeHTML(shortStr) + '</span>'; return str + '>' + shortStr + '</span>';
} }
function tooltipString(str) { function tooltipString(str) {
@@ -58,80 +53,54 @@ function tooltipString(str) {
} }
function hoverList(name, list) { function hoverList(name, list) {
if (!list || list.length == 0) if (!list || list.length == 0) return '';
return '';
var str = '<div class="mts_hover_list">' var str = '<div class="mts_hover_list">'
str += '<b>' + escapeHTML(name) + '</b> (' + list.length + ')<br />'; str += '<b>' + name + '</b> (' + list.length + ')<br />';
for (var i in list) { for (var i in list) {
str += escapeHTML(list[i]) + '<br />'; str += escapeHTML(list[i]) + '<br />';
} }
return str + '</div>'; return str + '</div>';
} }
function hoverString(name, str) { function hoverString(name, string) {
if (!str) if (!string) return '';
return '';
if (typeof(str) != 'string')
str = str.toString();
return '<div class="mts_hover_list">' return '<div class="mts_hover_list">'
+ '<b>' + escapeHTML(name) + '</b>:<br />' + '<b>' + name + '</b>:<br />'
+ escapeHTML(str) + '<br />' + escapeHTML(string) + '<br />'
+ '</div>'; + '</div>';
} }
function constantWidth(str, width) { function constantWidth(str, width) {
if (typeof(str) != 'string') return '<span class="mts_cwidth" style="width:' + width + 'em;">' + str + '</span>';
str = str.toString();
return '<span class="mts_cwidth" style="width:' + width + 'em;">' + escapeHTML(str) + '</span>';
} }
// Code that fetches & displays the actual list // Code that fetches & displays the actual list
master.draw = function(json) { function draw(json) {
if (json == null) if (json == null)
return; return;
// pre-filter by chosen protocol range
var tmp = master.proto_range ? JSON.parse(master.proto_range) : null;
if (tmp) {
json = {
list: json.list.filter(function(server) {
return !(tmp[0] > server.proto_max || tmp[1] < server.proto_min);
}),
total: {clients: 0},
total_max: {clients: "?", servers: "?"}
};
json.list.forEach(function(server) { json.total.clients += server.clients; });
json.total.servers = json.list.length;
}
var html = window.render.servers(json); var html = window.render.servers(json);
jQuery('#server_list').html(html); jQuery(master.output).html(html);
jQuery('.proto_select', master.output).on('change', function(e) {
jQuery('.proto_select', '#server_list').on('change', function(e) {
master.proto_range = e.target.value; master.proto_range = e.target.value;
master.draw(master.cached_json); // re-render draw(master.cached_json); // re-render
}); });
}; }
master.get = function() { function get() {
jQuery.getJSON(master.list_url, function(json) { jQuery.getJSON(master.list_url, function(json) {
master.cached_json = json; master.cached_json = json;
master.draw(json); draw(json);
}); });
}; }
master.loaded = function() { function loaded(){
if (!master.no_refresh) if (!master.no_refresh) {
setInterval(master.get, 60 * 1000); setInterval(get, 60 * 1000);
master.get(); }
}; get();
}
master.showAll = function() {
delete master.min_clients;
delete master.limit;
master.get();
};
// https://github.com/pyrsmk/toast // https://github.com/pyrsmk/toast
@@ -139,8 +108,8 @@ this.toast=function(){var e=document,t=e.getElementsByTagName("head")[0],n=this.
toast(master.root + 'style.css', master.root + 'servers.js', function() { toast(master.root + 'style.css', master.root + 'servers.js', function() {
if (typeof(jQuery) != 'undefined') if (typeof(jQuery) != 'undefined')
return master.loaded(); return loaded();
else else
toast('//ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js', master.loaded); toast('//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js', loaded);
}); });

View File

@@ -1,9 +0,0 @@
/**
* Minified by jsDelivr using clean-css v5.3.2.
* Original file: /npm/modern-normalize@3.0.1/modern-normalize.css
*
* Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
*/
/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
*,::after,::before{box-sizing:border-box}html{font-family:system-ui,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji';line-height:1.15;-webkit-text-size-adjust:100%;tab-size:4}body{margin:0}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,'Liberation Mono',Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:currentcolor}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}
/*# sourceMappingURL=/sm/d2d8cd206fb9f42f071e97460f3ad9c875edb5e7a4b10f900a83cdf8401c53a9.map */

View File

@@ -7,8 +7,8 @@
{{? master.show_proto_select}} {{? master.show_proto_select}}
, Protocol: <select class="proto_select"> , Protocol: <select class="proto_select">
<option value="">All</option> <option value="">All</option>
<option value="[11,32]" {{? master.proto_range=='[11,32]'}}selected{{?}}>11-32 (0.4 series)</option> <option value="[11,32]" {{? master.proto_range=='[11,32]'}}selected{{?}}>11-32 (Minetest 0.4)</option>
<option value="[37,99]" {{? master.proto_range=='[37,99]'}}selected{{?}}>37+ (5.0 or newer)</option> <option value="[37,99]" {{? master.proto_range=='[37,99]'}}selected{{?}}>37 (Minetest 5.0)</option>
</select>{{?}} </select>{{?}}
</div> </div>
{{?}} {{?}}
@@ -16,7 +16,7 @@
<thead><tr> <thead><tr>
{{? !master.no_address}}<th>Address[:Port]</th>{{?}} {{? !master.no_address}}<th>Address[:Port]</th>{{?}}
{{? !master.no_clients}}<th>Players / Max{{? !master.no_avgtop}}<br/>Average / Top{{?}}</th>{{?}} {{? !master.no_clients}}<th>Players / Max{{? !master.no_avgtop}}<br/>Average / Top{{?}}</th>{{?}}
{{? !master.no_version}}<th class="version">Version, Game, Mapgen</th>{{?}} {{? !master.no_version}}<th class="version">Version, Subgame[, Mapgen]</th>{{?}}
{{? !master.no_name}}<th>Name</th>{{?}} {{? !master.no_name}}<th>Name</th>{{?}}
{{? !master.no_description}}<th>Description</th>{{?}} {{? !master.no_description}}<th>Description</th>{{?}}
{{? !master.no_flags}}<th class="flags">Flags</th>{{?}} {{? !master.no_flags}}<th class="flags">Flags</th>{{?}}
@@ -24,9 +24,11 @@
{{? !master.no_ping}}<th>Ping, Lag</th>{{?}} {{? !master.no_ping}}<th>Ping, Lag</th>{{?}}
</tr></thead> </tr></thead>
<tbody> <tbody>
{{ var tmp = master.proto_range ? JSON.parse(master.proto_range) : null;}}
{{~it.list :server:index}} {{~it.list :server:index}}
{{ if (master.limit && index + 1 > master.limit) break;}} {{ if (master.limit && index + 1 > master.limit) break;}}
{{ if (master.min_clients && server.clients < master.min_clients) continue;}} {{ if (master.min_clients && server.clients < master.min_clients) continue;}}
{{ if (tmp && (tmp[0] > server.proto_max || tmp[1] < server.proto_min)) continue;}}
<tr> <tr>
{{? !master.no_address}} {{? !master.no_address}}
<td class="address"> <td class="address">
@@ -47,7 +49,7 @@
{{? !master.no_name}} {{? !master.no_name}}
<td class="name"> <td class="name">
{{? server.url}} {{? server.url}}
<a href="{{!server.url}}" target="_blank">{{=tooltipString(server.name)}}</a> <a href="{{!server.url}}">{{=tooltipString(server.name)}}</a>
{{??}} {{??}}
{{=tooltipString(server.name)}} {{=tooltipString(server.name)}}
{{?}} {{?}}
@@ -63,6 +65,8 @@
{{=server.damage ? 'Dmg ' : ''}} {{=server.damage ? 'Dmg ' : ''}}
{{=server.pvp ? 'PvP ' : ''}} {{=server.pvp ? 'PvP ' : ''}}
{{=server.password ? 'Pwd ' : ''}} {{=server.password ? 'Pwd ' : ''}}
{{=server.rollback ? 'Rol ' : ''}}
{{=server.can_see_far_names ? 'Far ' : ''}}
</td>{{?}} </td>{{?}}
{{? !master.no_uptime}} {{? !master.no_uptime}}
<td class="uptime"> <td class="uptime">
@@ -77,5 +81,5 @@
</tbody> </tbody>
</table> </table>
{{? master.min_clients || master.limit}} {{? master.min_clients || master.limit}}
<a href="javascript:master.showAll()">Show all...</a> <a href="javascript:delete master.min_clients; delete master.limit; get();">Show more...</a>
{{?}} {{?}}

View File

@@ -50,7 +50,7 @@
max-width: 32ch; max-width: 32ch;
} }
#server_list td.description { #server_list td.description {
max-width: 70ch; max-width: 64ch;
} }
.mts_hover_list { .mts_hover_list {