All checks were successful
Docker Build and Push / build-and-push (push) Successful in 2m17s
142 lines
3.5 KiB
Python
142 lines
3.5 KiB
Python
import re
|
|
import datetime
|
|
|
|
from sass import compile as compile_sass
|
|
from flask import Flask, redirect, request, url_for, g, Response
|
|
|
|
from modules import autobuild, locales, helpers
|
|
|
|
|
|
# ---------- APP CONFIG ------------------------------------------------------
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
locales.ensure_loaded()
|
|
|
|
# CSS Compilation and minification
|
|
if app.debug:
|
|
css = compile_sass(filename="static/style.scss", output_style="compressed")
|
|
with open("static/style.css", "w", encoding="utf-8") as f:
|
|
f.write(css)
|
|
|
|
# JS minification
|
|
with open("static/script.js", encoding="utf-8") as f:
|
|
js = f.read()
|
|
js = re.sub(r"/\*.*?\*/", "", js, flags=re.S)
|
|
js = re.sub(r"//.*", "", js)
|
|
js = re.sub(r"\s+", " ", js).strip()
|
|
with open("static/script.min.js", "w", encoding="utf-8") as f:
|
|
f.write(js)
|
|
|
|
|
|
@app.before_request
|
|
def _ensure_updater_started():
|
|
autobuild.ensure_started()
|
|
|
|
|
|
@app.before_request
|
|
def before_request():
|
|
if args := request.view_args:
|
|
g.locale = args.get("lang", "en")
|
|
g.translations = locales.translations.get(g.locale, helpers.get_best_lang())
|
|
g.locales_name = locales.locales_name
|
|
|
|
|
|
@app.context_processor
|
|
def _inject_autobuild_vers():
|
|
return {"autobuild_vers": autobuild.autobuild_vers}
|
|
|
|
|
|
@app.context_processor
|
|
def _inject_autobuild_date():
|
|
return {
|
|
"autobuild_date": g.translations.get("downloads", {})
|
|
.get("date-format", "{DD}.{MM}.{YYYY}")
|
|
.format(**autobuild.autobuild_date)
|
|
}
|
|
|
|
|
|
@app.context_processor
|
|
def inject_translations():
|
|
def translate(text, **kwargs):
|
|
section, key = text.split(":", 1)
|
|
|
|
template = (
|
|
g.translations.get(section, {})
|
|
.get(key, f"${section}: {key}$")
|
|
)
|
|
|
|
try:
|
|
return template.format(**kwargs)
|
|
except Exception:
|
|
return template
|
|
|
|
return {"_": translate}
|
|
|
|
|
|
# ---------- ROUTES -------------------------------------------------------
|
|
|
|
|
|
@app.route("/")
|
|
def home():
|
|
return redirect(url_for("index", lang=helpers.get_best_lang()))
|
|
|
|
|
|
@app.route("/<lang>", strict_slashes=False)
|
|
def index(lang):
|
|
return helpers.render_localized_template(lang, "index.html")
|
|
|
|
|
|
@app.route("/<lang>/download", strict_slashes=False)
|
|
def download(lang):
|
|
return helpers.render_localized_template(lang, "download.html")
|
|
|
|
|
|
@app.route("/robots.txt")
|
|
def robots_txt():
|
|
base_url = request.url_root.rstrip("/")
|
|
content = [
|
|
"User-agent: *",
|
|
"Disallow:",
|
|
f"Sitemap: {base_url}/sitemap.xml",
|
|
]
|
|
return Response("\n".join(content), mimetype="text/plain")
|
|
|
|
|
|
@app.route("/sitemap.xml")
|
|
def sitemap_xml():
|
|
base_url = request.url_root.rstrip("/")
|
|
today = datetime.date.today().isoformat()
|
|
|
|
urls = []
|
|
for lang in locales.locales_code:
|
|
urls.append(f"{base_url}/{lang}")
|
|
urls.append(f"{base_url}/{lang}/download")
|
|
|
|
xml_lines = [
|
|
'<?xml version="1.0" encoding="UTF-8"?>',
|
|
'<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">',
|
|
]
|
|
for loc in urls:
|
|
xml_lines.extend(
|
|
[
|
|
f" <url>",
|
|
f" <loc>{loc}</loc>",
|
|
f" <lastmod>{today}</lastmod>",
|
|
f" <changefreq>monthly</changefreq>",
|
|
f" <priority>0.8</priority>",
|
|
f" </url>",
|
|
]
|
|
)
|
|
xml_lines.append("</urlset>")
|
|
|
|
return Response("\n".join(xml_lines), mimetype="application/xml")
|
|
|
|
|
|
# ---------- APP ENTRY -------------------------------------------------------
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run(host="0.0.0.0", debug=True)
|