1 Commits

Author SHA1 Message Date
Sweetbread bfd9ceb93d Use Pug template generator
Docker Build and Push / build-and-push (push) Failing after 3m6s
2026-04-08 22:57:55 +03:00
18 changed files with 22 additions and 298 deletions
-1
View File
@@ -14,7 +14,6 @@ FROM python:3.11-slim
RUN apt-get update && \ RUN apt-get update && \
apt-get install --no-install-recommends -y \ apt-get install --no-install-recommends -y \
libmagic1 \ libmagic1 \
git \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
WORKDIR /app WORKDIR /app
-2
View File
@@ -1,5 +1,4 @@
from modules import locale from modules import locale
from modules import domains
from blueprints.root import bp as root_bp from blueprints.root import bp as root_bp
from blueprints.risdeveau import bp as rdv_bp from blueprints.risdeveau import bp as rdv_bp
@@ -21,7 +20,6 @@ app.jinja_env.add_extension('pypugjs.ext.jinja.PyPugJSExtension')
app.before_request(locale.before_request) app.before_request(locale.before_request)
app.context_processor(locale.inject_translations) app.context_processor(locale.inject_translations)
app.context_processor(domain.inject_get_domain)
app.register_blueprint(root_bp) app.register_blueprint(root_bp)
app.register_blueprint(rdv_bp) app.register_blueprint(rdv_bp)
-3
View File
@@ -3,9 +3,6 @@ div
a.disabled(href="https://chest.lair.moe") a.disabled(href="https://chest.lair.moe")
img(src="/static/img/88x31/gf.png") img(src="/static/img/88x31/gf.png")
a(href="//lair.moe")
img(src="/static/img/88x31/lair.gif")
a#pie(href="https://preview.about.akarpov.ru") a#pie(href="https://preview.about.akarpov.ru")
img(src="/static/img/88x31/withpie.gif") img(src="/static/img/88x31/withpie.gif")
+2 -2
View File
@@ -2,7 +2,7 @@
h3 Development h3 Development
.blocks.badges .blocks.badges
a.block(href="//g.lair.moe/Sweetbread") a.block(href="//g.lair.moe/Sweetbread")
img.icon(src="/static/img/service/gitea.webp") img.icon(src="/static/icon/service/gitea.webp")
| Gitea | Gitea
a.block(href="https://github.com/VerySweetBread") a.block(href="https://github.com/VerySweetBread")
@@ -20,7 +20,7 @@
| Matrix | Matrix
a.block(href="//b.lair.moe/@risdeveau") a.block(href="//b.lair.moe/@risdeveau")
img.icon(src="/static/img/service/sharkey.webp") img.icon(src="/static/icon/service/sharkey.webp")
| Fediverse | Fediverse
a.block(href="https://discord.com/users/459823895256498186") a.block(href="https://discord.com/users/459823895256498186")
+1 -2
View File
@@ -7,10 +7,9 @@ html(lang="en")
each f in ('tw', 'main', 'risdeveau') each f in ('tw', 'main', 'risdeveau')
link(rel="stylesheet", href="/static/style/#{f}.css") link(rel="stylesheet", href="/static/style/#{f}.css")
link(rel="icon" type="image/webp" href="/static/img/us/risdeveau.webp") link(rel="icon" type="image/webp" href="/static/icon/us/risdeveau.webp")
script(src="/static/script/rtime.js") script(src="/static/script/rtime.js")
if request.headers.get('DNT') != "1":
script( script(
src="https://track.lair.moe/api/script.js" src="https://track.lair.moe/api/script.js"
data-site-id="1" data-site-id="1"
+1 -4
View File
@@ -1,8 +1,6 @@
from htmlmin import minify from htmlmin import minify
from flask import Blueprint, render_template, request, jsonify from flask import Blueprint, render_template, request, jsonify
from .modules.euroring import data as euroring_data, refresh_cache as euroring_refresh
bp = Blueprint( bp = Blueprint(
"root", "root",
__name__, __name__,
@@ -11,9 +9,8 @@ bp = Blueprint(
) )
def render_tmpl(filename: str) -> str: def render_tmpl(filename: str) -> str:
euroring_refresh()
return minify( return minify(
render_template(filename, euroring=euroring_data), render_template(filename),
remove_empty_space=True remove_empty_space=True
) )
-188
View File
@@ -1,188 +0,0 @@
from __future__ import annotations
import atexit
import os
import re
from time import time
from urllib.parse import urlsplit
import requests
from apscheduler.schedulers.background import BackgroundScheduler
from apscheduler.triggers.interval import IntervalTrigger
from blueprints.risdeveau.modules.api.scheduler_guard import should_start_scheduler
from blueprints.risdeveau.modules.api.shared_cache import (
atomic_write_json,
cache_file,
load_json_if_newer,
)
EURORING_SOURCE_URL = os.environ.get(
"EURORING_SOURCE_URL",
"https://euroring.neocities.org/scripts/onionring-variables.js",
)
EURORING_SITE_URL = os.environ.get("EURORING_SITE_URL", "https://lair.moe")
EURORING_TIMEOUT = float(os.environ.get("EURORING_TIMEOUT", "10"))
data = {
"enabled": bool(EURORING_SOURCE_URL and EURORING_SITE_URL),
"status": "disabled",
"source_url": EURORING_SOURCE_URL,
"site_url": EURORING_SITE_URL,
"ring_name": "",
"index_url": None,
"prev_url": None,
"next_url": None,
"count": 0,
"last_updated": 0,
}
_IS_WRITER = should_start_scheduler() if data["enabled"] else False
_CACHE_PATH = cache_file("webring")
_CACHE_MTIME = 0.0
def _site_key(url: str) -> tuple[str, int | None, str, str]:
parts = urlsplit(url.strip())
hostname = (parts.hostname or "").lower()
port = parts.port
path = re.sub(r"/+$", "", parts.path or "")
query = parts.query or ""
return hostname, port, path, query
def _parse_js_string_value(text: str, variable: str) -> str | None:
match = re.search(
rf"var\s+{re.escape(variable)}\s*=\s*(['\"])(.*?)\1\s*;",
text,
re.S,
)
if not match:
return None
return match.group(2).strip()
def _parse_sites(text: str) -> list[str]:
match = re.search(r"var\s+sites\s*=\s*\[(.*?)\]\s*;", text, re.S)
if not match:
raise ValueError("sites array not found")
sites_block = match.group(1)
sites: list[str] = []
for raw_line in sites_block.splitlines():
line = raw_line.strip()
if not line or line.startswith("//"):
continue
site_match = re.match(
r"(?P<quote>['\"])(?P<url>.*?)(?P=quote)\s*,?\s*(?://.*)?$",
line,
)
if site_match:
sites.append(site_match.group("url").strip())
if not sites:
raise ValueError("sites array is empty")
return sites
def _compute_ring_payload(text: str) -> dict:
sites = _parse_sites(text)
target_key = _site_key(EURORING_SITE_URL)
current_index = None
for i, site in enumerate(sites):
if _site_key(site) == target_key:
current_index = i
break
if current_index is None:
raise ValueError(f"site not found in ring: {EURORING_SITE_URL}")
ring_name = _parse_js_string_value(text, "ringName") or "Webring"
index_url = _parse_js_string_value(text, "indexPage")
return {
"enabled": True,
"status": "success",
"source_url": EURORING_SOURCE_URL,
"site_url": EURORING_SITE_URL,
"ring_name": ring_name,
"index_url": index_url,
"prev_url": sites[(current_index - 1) % len(sites)],
"next_url": sites[(current_index + 1) % len(sites)],
"count": len(sites),
"last_updated": time(),
}
def refresh_cache() -> None:
global _CACHE_MTIME
if _IS_WRITER:
return
payload, mtime = load_json_if_newer(_CACHE_PATH, _CACHE_MTIME)
if payload is None:
return
data.update(payload)
_CACHE_MTIME = mtime
def _persist_cache() -> None:
if not _IS_WRITER:
return
atomic_write_json(_CACHE_PATH, data)
def fetch_webring() -> None:
if not data["enabled"]:
return
previous_state = dict(data)
try:
response = requests.get(EURORING_SOURCE_URL, timeout=EURORING_TIMEOUT)
response.raise_for_status()
payload = _compute_ring_payload(response.text)
data.update(payload)
except Exception as exc:
data.update({
"enabled": True,
"status": f"error: {exc}",
"source_url": EURORING_SOURCE_URL,
"site_url": EURORING_SITE_URL,
"ring_name": data.get("ring_name") or "Webring",
"index_url": data.get("index_url"),
"prev_url": data.get("prev_url"),
"next_url": data.get("next_url"),
"count": data.get("count", 0),
"last_updated": data.get("last_updated", 0),
})
if data != previous_state:
_persist_cache()
if data["enabled"]:
scheduler = BackgroundScheduler()
if _IS_WRITER:
scheduler.add_job(
func=fetch_webring,
trigger=IntervalTrigger(days=1),
id="root.webring.refresh",
replace_existing=True,
)
_persist_cache()
scheduler.start()
fetch_webring()
atexit.register(lambda: scheduler.shutdown())
else:
refresh_cache()

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 9.2 KiB

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

-2
View File
@@ -185,8 +185,6 @@ footer {
display: flex; display: flex;
justify-content: center; justify-content: center;
& + & { margin-top: .25rem; }
a { a {
padding: .5rem 1rem; padding: .5rem 1rem;
margin: .1rem !important; margin: .1rem !important;
+2 -34
View File
@@ -4,55 +4,23 @@ html(lang=g.locale)
title Lair title Lair
link(rel="stylesheet" href="/static/style/main.css") link(rel="stylesheet" href="/static/style/main.css")
link(rel="icon" type="image/webp" href="/static/img/lair.webp") link(rel="icon" type="image/webp" href="/static/icon/lair.webp")
//- Yggdrasil links
link(rel="ygg-banner" href="/static/img/88x31/lair.gif")
link(
rel="alternate"
data-ygg-type="clearnet"
href="https://lair.moe"
title="Clearnet address")
link(
rel="alternate"
data-ygg-type="alfis"
href="http://lair.ygg"
title="Alfis domain")
link(
rel="alternate"
data-ygg-type="ygg-ipv6"
href="http://[201:96:5188::a690:7908:da7a]"
title="Direct IPv6")
script(src="/static/script/copy-mono.js") script(src="/static/script/copy-mono.js")
if request.headers.get('DNT') != "1":
script( script(
src="https://track.lair.moe/api/script.js" src="https://track.lair.moe/api/script.js"
data-site-id="1" data-site-id="1"
defer defer
) )
meta(name="viewport" content="width=device-width, initial-scale=1.0") meta(name="viewport" content="width=device-width, initial-scale=1.0")
meta(name="mock-email" content="admin@example.com") meta(name="mock-email" content="admin@example.com")
meta(property="og:type" value="website") meta(property="og:type" value="website")
meta(property="og:url" value="https://lair.moe") meta(property="og:url" value="https://lair.moe")
meta(property="og:title" value="Lair.moe") meta(property="og:title" value="Lair.moe")
meta(property="og:image" value="https://lair.moe/static/img/lair.webp") meta(property="og:image" value="https://lair.moe/static/icon/lair.webp")
meta(property="og:description" value=_("description")) meta(property="og:description" value=_("description"))
//- Yggdrasil meta
meta(name="ygg-category" content="service")
meta(name="ygg-topic" content="federation")
meta(name="ygg-topic" content="tools")
meta(name="ygg-language" content="ru")
meta(name="ygg-language" content="en")
meta(name="ygg-language" content="de")
meta(name="ygg-language" content="fr")
meta(name="ygg-language" content="jp")
body body
include root/templates/header.pug include root/templates/header.pug
+4 -28
View File
@@ -1,19 +1,19 @@
extends root/templates/base.pug extends root/templates/base.pug
block title block title
img.icon(src="/static/img/lair.webp") img.icon(src="/static/icon/lair.webp")
| Lair | Lair
block content block content
a.block(href="https://b.lair.moe" target="_blank") a.block(href="https://b.lair.moe" target="_blank")
.header .header
img.icon(src="/static/img/service/sharkey.webp") img.icon(src="/static/icon/service/sharkey.webp")
strong Sharkey strong Sharkey
p= _('index.descr:sharkey') p= _('index.descr:sharkey')
a.block(href="https://g.lair.moe" target="_blank") a.block(href="https://g.lair.moe" target="_blank")
.header .header
img.icon(src="/static/img/service/gitea.webp") img.icon(src="/static/icon/service/gitea.webp")
strong Gitea strong Gitea
p= _('index.descr:gitea') p= _('index.descr:gitea')
@@ -67,28 +67,4 @@ block content
p p
strong Yggdrasil strong Yggdrasil
| : | :
ul span.mono 200:ee1:bad2:1732:4b91:c3e3:2f08:29b3
li
= "IPv6: "
span.mono 201:96:5188::a690:7908:da7a
li
= "DNS: "
span.mono ygg.lair.moe
li
= "Alfis: "
span.mono lair.ygg
.webring
a.block(href="https://nixwebr.ing/prev/lair" rel="external prev") &larr;
a.block(href="https://nixwebr.ing/" rel="external") Nix webring
a.block(href="https://nixwebr.ing/next/lair" rel="external next") &rarr;
.webring
a.block(href="https://ctp-webr.ing/lair/previous" rel="external prev") &larr;
a.block(href="https://ctp-webr.ing/" rel="external") Catppuccin webring
a.block(href="https://ctp-webr.ing/lair/next" rel="external next") &rarr;
.webring
a.block(href=euroring.prev_url rel="external prev") &larr;
a.block(href=euroring.index_url rel="external") Euroring
a.block(href=euroring.next_url rel="external next") &rarr;
+2 -2
View File
@@ -6,12 +6,12 @@ block title
block content block content
a.block.green(href=url_for('risdeveau.index')) a.block.green(href=url_for('risdeveau.index'))
.header .header
img.icon(src="/static/img/us/risdeveau.webp") img.icon(src="/static/icon/us/risdeveau.webp")
| Sweetbread | Sweetbread
| Главный админ, занимается почти всеми сервисами. Создал этот сайт | Главный админ, занимается почти всеми сервисами. Создал этот сайт
.block.orange.disabled .block.orange.disabled
.header .header
img.icon(src="/static/img/us/chest.webp") img.icon(src="/static/icon/us/chest.webp")
| Chest | Chest
| Должна была помогать делать этот сайт | Должна была помогать делать этот сайт
-20
View File
@@ -1,20 +0,0 @@
from flask import g, request
def get_curr_mode() -> str:
match request.headers['host']:
case "lair.moe": return "clearnet"
case "ygg.lair.moe": return "ygg-dns"
case "lair.ygg": return "ygg-alfis"
case "lair.ygg.at": return "ygg-alfis-at"
else: return "ip"
def inject_get_domain():
def get_domain(domain: str, mode=get_cur_mode(): str) -> str:
match mode:
case "clearnet": return f"{domain}.lair.moe"
case "ygg-dns": return f"{domain}.ygg.lair.moe"
case "ygg-alfis": return f"{domain}.lair.ygg"
case "ygg-alfis-at": return f"{domain}.lair.ygg.at"
else: return ""
return {':': get_domain}