Compare commits
13 Commits
ae035a3721
...
pug
| Author | SHA1 | Date | |
|---|---|---|---|
| 3f67d21fc9 | |||
| 297648d4a2 | |||
| ceffe633fd | |||
| afb13b6a03 | |||
| a0cfa765bd | |||
| 62b8f056fa | |||
| 0edf6e35d7 | |||
| db11fabe1a | |||
| 0f5d1b5221 | |||
| 9935bc7f1f | |||
| 42ffd887d2 | |||
| 96b73e4751 | |||
| 0aa2477f35 |
@@ -11,6 +11,12 @@ jobs:
|
|||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: 'Docker Tags'
|
||||||
|
id: tags
|
||||||
|
uses: cssnr/docker-tags-action@v2
|
||||||
|
with:
|
||||||
|
images: 'g.lair.moe/${{ vars.DOCKER_USERNAME }}/lair.moe'
|
||||||
|
|
||||||
- name: Login to Docker Registry
|
- name: Login to Docker Registry
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
@@ -27,5 +33,6 @@ jobs:
|
|||||||
context: .
|
context: .
|
||||||
push: ${{ github.event_name == 'push' }}
|
push: ${{ github.event_name == 'push' }}
|
||||||
tags: g.lair.moe/${{ vars.DOCKER_USERNAME }}/lair.moe:latest
|
tags: g.lair.moe/${{ vars.DOCKER_USERNAME }}/lair.moe:latest
|
||||||
|
labels: ${{ steps.tags.outputs.labels }}
|
||||||
cache-from: type=gha
|
cache-from: type=gha
|
||||||
cache-to: type=gha,mode=max
|
cache-to: type=gha,mode=max
|
||||||
|
|||||||
+33
-12
@@ -1,25 +1,46 @@
|
|||||||
FROM node:18-alpine as sass
|
FROM node:18-alpine AS sass-builder
|
||||||
|
|
||||||
RUN NODE_OPTIONS=--dns-result-order=ipv4first npm install -g sass
|
RUN NODE_OPTIONS=--dns-result-order=ipv4first npm install -g sass@latest --omit=dev --no-fund --no-audit
|
||||||
WORKDIR /build
|
WORKDIR /build
|
||||||
COPY ./blueprints ./blueprints
|
COPY ./blueprints ./blueprints
|
||||||
|
|
||||||
RUN sass ./blueprints:./blueprints \
|
RUN sass ./blueprints:./blueprints \
|
||||||
--no-source-map \
|
--no-source-map \
|
||||||
--style=compressed
|
--style=compressed \
|
||||||
|
--quiet
|
||||||
|
|
||||||
FROM python:3.11-slim
|
FROM python:3.11-slim
|
||||||
|
|
||||||
|
RUN apt-get update && \
|
||||||
|
apt-get install --no-install-recommends -y \
|
||||||
|
libmagic1 \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY . .
|
COPY requirements.txt .
|
||||||
COPY --from=sass /build/blueprints/ ./blueprints/
|
|
||||||
|
|
||||||
RUN apt update && apt upgrade
|
|
||||||
RUN apt install libmagic1 -y
|
|
||||||
RUN pip install --no-cache-dir -r requirements.txt
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
|
|
||||||
ENV FLASK_ENV=production
|
COPY . .
|
||||||
ENV PYTHONUNBUFFERED=1
|
|
||||||
|
|
||||||
CMD ["gunicorn", "app:app", "-b", "0.0.0.0:80", "--workers", "4"]
|
COPY --from=sass-builder /build/blueprints/ ./blueprints/
|
||||||
|
|
||||||
|
RUN useradd -m -u 1001 appuser && \
|
||||||
|
chown -R appuser:appuser /app
|
||||||
|
|
||||||
|
USER appuser
|
||||||
|
|
||||||
|
ENV FLASK_ENV=production \
|
||||||
|
PYTHONUNBUFFERED=1 \
|
||||||
|
PYTHONDONTWRITEBYTECODE=1 \
|
||||||
|
PIP_NO_CACHE_DIR=1 \
|
||||||
|
PIP_DISABLE_PIP_VERSION_CHECK=1
|
||||||
|
|
||||||
|
CMD ["gunicorn", "app:app", \
|
||||||
|
"-b", "0.0.0.0:80", \
|
||||||
|
"--workers", "4", \
|
||||||
|
"--worker-class", "sync", \
|
||||||
|
"--worker-tmp-dir", "/dev/shm", \
|
||||||
|
"--access-logfile", "-", \
|
||||||
|
"--error-logfile", "-", \
|
||||||
|
"--log-level", "info"]
|
||||||
|
|||||||
@@ -9,7 +9,14 @@ import blueprints.risdeveau.modules.style
|
|||||||
from flask import Flask
|
from flask import Flask
|
||||||
|
|
||||||
|
|
||||||
app = Flask(__name__, static_folder=None, subdomain_matching=True)
|
app = Flask(
|
||||||
|
__name__,
|
||||||
|
static_folder=None,
|
||||||
|
subdomain_matching=True,
|
||||||
|
template_folder="blueprints"
|
||||||
|
)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|||||||
@@ -1,19 +1,45 @@
|
|||||||
import os
|
import os
|
||||||
import magic
|
|
||||||
from pathlib import Path
|
|
||||||
from htmlmin import minify
|
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta
|
||||||
from musicbrainzngs import get_image_front
|
from pathlib import Path
|
||||||
|
from time import time
|
||||||
|
|
||||||
from flask import (
|
from flask import (
|
||||||
Blueprint,
|
Blueprint,
|
||||||
render_template,
|
|
||||||
send_file,
|
|
||||||
send_from_directory,
|
|
||||||
make_response,
|
|
||||||
abort,
|
abort,
|
||||||
|
make_response,
|
||||||
|
render_template,
|
||||||
|
request,
|
||||||
|
send_file,
|
||||||
)
|
)
|
||||||
|
import magic
|
||||||
|
from htmlmin import minify
|
||||||
|
from musicbrainzngs import get_image_front
|
||||||
|
|
||||||
from .modules.api.lb import listens, listening
|
from .modules.api.lb import data as lb_data
|
||||||
|
from .modules.api.steam import data as steam_data
|
||||||
|
|
||||||
|
def tmsmp(sec: int) -> str:
|
||||||
|
if sec == 0:
|
||||||
|
return 0
|
||||||
|
elif sec < 60:
|
||||||
|
return f"{sec} s"
|
||||||
|
elif sec < 60*60:
|
||||||
|
minutes = round(sec / 60, 1)
|
||||||
|
return f"{minutes:.0f} m" if minutes.is_integer() else f"{minutes:.1f} m"
|
||||||
|
elif sec < 60*60*24:
|
||||||
|
hours = round(sec / 3600, 1)
|
||||||
|
return f"{hours:.0f} h" if hours.is_integer() else f"{hours:.1f} h"
|
||||||
|
else:
|
||||||
|
days = round(sec / 86400, 1)
|
||||||
|
return f"{days:.0f} d" if days.is_integer() else f"{days:.1f} d"
|
||||||
|
|
||||||
|
def utmsmp(unix: int) -> str:
|
||||||
|
return datetime \
|
||||||
|
.utcfromtimestamp(unix) \
|
||||||
|
.strftime('%Y-%m-%d %H:%M:%S')
|
||||||
|
|
||||||
|
def rtmsmp(unix: int) -> str:
|
||||||
|
return tmsmp(int(time() - unix))
|
||||||
|
|
||||||
bp = Blueprint(
|
bp = Blueprint(
|
||||||
"risdeveau",
|
"risdeveau",
|
||||||
@@ -47,6 +73,28 @@ def mb_cover(mbid):
|
|||||||
.strftime('%a, %d %b %Y %H:%M:%S GMT')
|
.strftime('%a, %d %b %Y %H:%M:%S GMT')
|
||||||
return r
|
return r
|
||||||
|
|
||||||
|
args = {
|
||||||
|
"lb": lb_data,
|
||||||
|
"steam": steam_data,
|
||||||
|
"tmsmp": tmsmp,
|
||||||
|
"utmsmp": utmsmp,
|
||||||
|
"rtmsmp": rtmsmp
|
||||||
|
}
|
||||||
|
|
||||||
@bp.route("/")
|
@bp.route("/")
|
||||||
def index():
|
def index():
|
||||||
return render_tmpl('index.html', lb=listens, lb_now=listening)
|
return render_tmpl('index.pug', **args)
|
||||||
|
|
||||||
|
@bp.route("/m/<module>")
|
||||||
|
def module(module):
|
||||||
|
if none_match := request.headers.get('if-none-match'):
|
||||||
|
match module:
|
||||||
|
case "listenbrainz":
|
||||||
|
if none_match == lb_data['etag']:
|
||||||
|
return '', 304
|
||||||
|
|
||||||
|
case "steam":
|
||||||
|
if none_match == steam_data['etag']:
|
||||||
|
return '', 304
|
||||||
|
|
||||||
|
return render_tmpl(f'{module}.pug', **args)
|
||||||
|
|||||||
@@ -1,14 +1,31 @@
|
|||||||
from flask import Flask, jsonify
|
import atexit
|
||||||
|
import re
|
||||||
|
from dataclasses import dataclass
|
||||||
|
from hashlib import md5
|
||||||
|
from json import dumps
|
||||||
|
from time import time
|
||||||
|
from urllib.parse import parse_qs, urlparse
|
||||||
|
|
||||||
from apscheduler.schedulers.background import BackgroundScheduler
|
from apscheduler.schedulers.background import BackgroundScheduler
|
||||||
from apscheduler.triggers.interval import IntervalTrigger
|
from apscheduler.triggers.interval import IntervalTrigger
|
||||||
import requests
|
import requests
|
||||||
from datetime import datetime
|
from flask import Flask, jsonify
|
||||||
import atexit
|
|
||||||
import re
|
|
||||||
from urllib.parse import urlparse, parse_qs
|
|
||||||
|
|
||||||
listens = {}
|
|
||||||
listening = {}
|
@dataclass
|
||||||
|
class Cache:
|
||||||
|
data = {}
|
||||||
|
last_updated = time()
|
||||||
|
status = None
|
||||||
|
|
||||||
|
data = {
|
||||||
|
"caches": {
|
||||||
|
"now": Cache(),
|
||||||
|
"listens": Cache()
|
||||||
|
},
|
||||||
|
"last_updated": time(),
|
||||||
|
"etag": ""
|
||||||
|
}
|
||||||
|
|
||||||
def yt_cover(youtube_url):
|
def yt_cover(youtube_url):
|
||||||
parsed_url = urlparse(youtube_url)
|
parsed_url = urlparse(youtube_url)
|
||||||
@@ -23,24 +40,36 @@ def yt_cover(youtube_url):
|
|||||||
if not video_id:
|
if not video_id:
|
||||||
return
|
return
|
||||||
|
|
||||||
return f"http://img.youtube.com/vi/{video_id}/sddefault.jpg"
|
return f"https://img.youtube.com/vi/{video_id}/2.jpg"
|
||||||
|
|
||||||
def parse_listens(data: dict) -> dict:
|
def parse_listens(json: dict) -> dict:
|
||||||
new_data = {
|
cover_replacing = {
|
||||||
"count": data["count"],
|
"1e699948-c7c8-4bb2-9f8b-62e14b882a5d": "ca464c1d-5848-45bb-b92d-b1e4b00f9d65",
|
||||||
|
"0d516a93-061e-4a27-9cf7-f36e3a96f888": "5cc0c0c7-22f9-4a4b-a24c-f1a6732f813b",
|
||||||
|
"92ea5cc8-80e0-4da0-a10b-1bc2f8e8781e": "e8f3e14a-4794-4bab-b403-d562cdad4c2f",
|
||||||
|
}
|
||||||
|
|
||||||
|
new_json = {
|
||||||
|
"count": json["count"],
|
||||||
"listens": []
|
"listens": []
|
||||||
}
|
}
|
||||||
|
|
||||||
for track in data["listens"]:
|
for track in json["listens"]:
|
||||||
|
listened_at = track.get("listened_at", 0)
|
||||||
track = track["track_metadata"]
|
track = track["track_metadata"]
|
||||||
|
|
||||||
new_track = {
|
new_track = {
|
||||||
"artist_name": track["artist_name"],
|
"artist_name": track["artist_name"],
|
||||||
"track_name": track["track_name"]
|
"track_name": track["track_name"],
|
||||||
|
"listened_at": listened_at
|
||||||
}
|
}
|
||||||
|
|
||||||
if mb := track.get("mbid_mapping"):
|
if mb := track.get("mbid_mapping"):
|
||||||
new_track["id"] = mb.get("caa_release_mbid", mb["release_mbid"])
|
new_track["id"] = \
|
||||||
|
cover_replacing.get(mb["release_mbid"],
|
||||||
|
mb.get("caa_release_mbid",
|
||||||
|
mb["release_mbid"]
|
||||||
|
))
|
||||||
new_track["artist_name"] = mb["artists"][0]["artist_credit_name"]
|
new_track["artist_name"] = mb["artists"][0]["artist_credit_name"]
|
||||||
new_track["track_name"] = mb["recording_name"]
|
new_track["track_name"] = mb["recording_name"]
|
||||||
elif info := track.get("additional_info"):
|
elif info := track.get("additional_info"):
|
||||||
@@ -53,33 +82,38 @@ def parse_listens(data: dict) -> dict:
|
|||||||
if "cover_url" not in new_track.keys() and "id" in new_track.keys():
|
if "cover_url" not in new_track.keys() and "id" in new_track.keys():
|
||||||
new_track["cover_url"] = "/asset/mb/" + new_track["id"]
|
new_track["cover_url"] = "/asset/mb/" + new_track["id"]
|
||||||
|
|
||||||
new_data["listens"].append(new_track)
|
new_json["listens"].append(new_track)
|
||||||
|
|
||||||
return new_data
|
return new_json
|
||||||
|
|
||||||
def api_request(url: str, cache):
|
def api_request(url: str, cache: Cache):
|
||||||
try:
|
try:
|
||||||
response = requests.get(url, timeout=10)
|
response = requests.get(url, timeout=10)
|
||||||
if response.status_code == 200:
|
if response.status_code == 200:
|
||||||
cache.update({
|
json = parse_listens(response.json().get("payload"))
|
||||||
'data': parse_listens(response.json().get("payload")),
|
cache.status = 'success'
|
||||||
'last_updated': datetime.now().isoformat(),
|
|
||||||
'status': 'success'
|
if cache.data != json:
|
||||||
})
|
cache.data = json
|
||||||
|
cache.last_updated = time()
|
||||||
|
data['last_updated'] = time()
|
||||||
|
data['etag'] = md5(''.join(
|
||||||
|
( dumps(data['caches'][x].data) for x in data['caches'] )
|
||||||
|
).encode()).hexdigest()
|
||||||
else:
|
else:
|
||||||
cache['status'] = f'error: {response.status_code}'
|
cache.status = f'error: {response.status_code}'
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
cache['status'] = f'error: {str(e)}'
|
cache.status = f'error: {str(e)}'
|
||||||
|
|
||||||
scheduler = BackgroundScheduler()
|
scheduler = BackgroundScheduler()
|
||||||
scheduler.add_job(
|
scheduler.add_job(
|
||||||
func=lambda: api_request("https://api.listenbrainz.org/1/user/risdeveau/listens?count=5", listens),
|
func=lambda: api_request("https://api.listenbrainz.org/1/user/risdeveau/listens?count=5", data['caches']['listens']),
|
||||||
trigger=IntervalTrigger(minutes=1),
|
trigger=IntervalTrigger(minutes=1),
|
||||||
id='risdeveau.listenbrainz.listens',
|
id='risdeveau.listenbrainz.listens',
|
||||||
replace_existing=True
|
replace_existing=True
|
||||||
)
|
)
|
||||||
scheduler.add_job(
|
scheduler.add_job(
|
||||||
func=lambda: api_request("https://api.listenbrainz.org/1/user/risdeveau/playing-now", listening),
|
func=lambda: api_request("https://api.listenbrainz.org/1/user/risdeveau/playing-now", data['caches']['now']),
|
||||||
trigger=IntervalTrigger(seconds=15),
|
trigger=IntervalTrigger(seconds=15),
|
||||||
id='risdeveau.listenbrainz.playing-now',
|
id='risdeveau.listenbrainz.playing-now',
|
||||||
replace_existing=True
|
replace_existing=True
|
||||||
|
|||||||
@@ -0,0 +1,94 @@
|
|||||||
|
import atexit
|
||||||
|
import re
|
||||||
|
from dataclasses import dataclass
|
||||||
|
from hashlib import md5
|
||||||
|
from json import dumps
|
||||||
|
from os import environ
|
||||||
|
from time import time
|
||||||
|
from urllib.parse import parse_qs, urlparse
|
||||||
|
|
||||||
|
from apscheduler.schedulers.background import BackgroundScheduler
|
||||||
|
from apscheduler.triggers.interval import IntervalTrigger
|
||||||
|
import requests
|
||||||
|
from flask import Flask
|
||||||
|
|
||||||
|
|
||||||
|
TOKEN = environ.get("STEAM_TOKEN")
|
||||||
|
MY_ID = 76561198826355942
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class Cache:
|
||||||
|
data = {}
|
||||||
|
last_updated = time()
|
||||||
|
status = None
|
||||||
|
|
||||||
|
data = {
|
||||||
|
"caches": {
|
||||||
|
"recent": Cache(),
|
||||||
|
"owned": Cache()
|
||||||
|
},
|
||||||
|
"last_updated": time(),
|
||||||
|
"etag": ""
|
||||||
|
}
|
||||||
|
|
||||||
|
def modify_game_list(json: dict) -> dict:
|
||||||
|
if 'games' in json.keys():
|
||||||
|
apps = (3301060, 404790, 1281930, 1920960, 1325960, 431960)
|
||||||
|
new_games = []
|
||||||
|
for i, g in enumerate(json['games']):
|
||||||
|
if g['appid'] not in apps:
|
||||||
|
json['games'][i]['h_cover'] = f"https://shared.fastly.steamstatic.com/store_item_assets//steam/apps/{g['appid']}/header.jpg"
|
||||||
|
json['games'][i]['v_cover'] = f"https://shared.fastly.steamstatic.com/store_item_assets//steam/apps/{g['appid']}/library_600x900.jpg"
|
||||||
|
new_games.append(json['games'][i])
|
||||||
|
json['games'] = new_games
|
||||||
|
return json
|
||||||
|
|
||||||
|
def steam_request(interface: str, method: str, v: int = 1, **kwargs) -> requests.Response:
|
||||||
|
return requests.get(
|
||||||
|
f"https://api.steampowered.com/{interface}/{method}/v{v:04}/",
|
||||||
|
params=dict({"key": TOKEN}, **kwargs),
|
||||||
|
timeout=10
|
||||||
|
)
|
||||||
|
|
||||||
|
def api_request(cache, *args, **kwargs):
|
||||||
|
try:
|
||||||
|
response = steam_request(*args, **kwargs)
|
||||||
|
if response.status_code == 200:
|
||||||
|
json = modify_game_list(response.json().get("response"))
|
||||||
|
cache.status = 'success'
|
||||||
|
|
||||||
|
if cache.data != json:
|
||||||
|
cache.data = json
|
||||||
|
cache.last_updated = time()
|
||||||
|
data['last_updated'] = time()
|
||||||
|
data['etag'] = md5(''.join(
|
||||||
|
( dumps(data['caches'][x].data) for x in data['caches'] )
|
||||||
|
).encode()).hexdigest()
|
||||||
|
else:
|
||||||
|
cache.status = f'error: {response.status_code}'
|
||||||
|
print("x")
|
||||||
|
except Exception as e:
|
||||||
|
cache.status = f'error: {str(e)}'
|
||||||
|
|
||||||
|
if TOKEN:
|
||||||
|
scheduler = BackgroundScheduler()
|
||||||
|
scheduler.add_job(
|
||||||
|
func=lambda: api_request(data['caches']['recent'], "IPlayerService", "GetRecentlyPlayedGames", steamid=76561198826355942),
|
||||||
|
trigger=IntervalTrigger(minutes=15),
|
||||||
|
id='risdeveau.steam.recent',
|
||||||
|
replace_existing=True
|
||||||
|
)
|
||||||
|
scheduler.add_job(
|
||||||
|
func=lambda: api_request(data['caches']['owned'], "IPlayerService", "GetOwnedGames", steamid=76561198826355942, include_appinfo=1, include_played_free_games=1),
|
||||||
|
trigger=IntervalTrigger(minutes=60),
|
||||||
|
id='risdeveau.steam.owned',
|
||||||
|
replace_existing=True
|
||||||
|
)
|
||||||
|
scheduler.start()
|
||||||
|
|
||||||
|
api_request(data['caches']['recent'], "IPlayerService", "GetRecentlyPlayedGames", steamid=76561198826355942)
|
||||||
|
api_request(data['caches']['owned'], "IPlayerService", "GetOwnedGames", steamid=76561198826355942, include_appinfo=1, include_played_free_games=1)
|
||||||
|
|
||||||
|
atexit.register(lambda: scheduler.shutdown())
|
||||||
|
else:
|
||||||
|
print("STEAM_TOKEN is not defined")
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
document.addEventListener('alpine:init', () => {
|
||||||
|
Alpine.data('rtime', (unixTimestamp) => ({
|
||||||
|
targetDate: new Date(unixTimestamp * 1000),
|
||||||
|
timeString: '',
|
||||||
|
timer: null,
|
||||||
|
interval: 1000,
|
||||||
|
|
||||||
|
colorClasses: {
|
||||||
|
green: 't-green',
|
||||||
|
yellow: 't-yellow',
|
||||||
|
orange: 't-orange',
|
||||||
|
red: 't-red'
|
||||||
|
},
|
||||||
|
|
||||||
|
currentColor: 'green',
|
||||||
|
|
||||||
|
get textColorClass() {
|
||||||
|
return this.colorClasses[this.currentColor];
|
||||||
|
},
|
||||||
|
|
||||||
|
init() {
|
||||||
|
this.updateTime();
|
||||||
|
this.timer = setInterval(() => this.updateTime(), this.interval);
|
||||||
|
|
||||||
|
this.$el.addEventListener('alpine:removing', () => {
|
||||||
|
if (this.interval) clearInterval(this.interval);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
updateTime() {
|
||||||
|
const now = new Date();
|
||||||
|
const diffInSeconds = Math.floor((now - this.targetDate) / 1000);
|
||||||
|
const diffInMinutes = Math.floor(diffInSeconds / 60);
|
||||||
|
const diffInHours = Math.floor(diffInSeconds / 3600);
|
||||||
|
const diffInDays = Math.floor(diffInSeconds / 86400);
|
||||||
|
|
||||||
|
let newInterval = this.interval;
|
||||||
|
|
||||||
|
if (diffInSeconds < 60) {
|
||||||
|
this.timeString = 'a moment ago';
|
||||||
|
} else if (diffInMinutes < 60) {
|
||||||
|
this.timeString = `${diffInMinutes} m ago`;
|
||||||
|
newInterval = 10000;
|
||||||
|
} else if (diffInHours < 24) {
|
||||||
|
this.timeString = `${diffInHours} h ago`;
|
||||||
|
newInterval = 60000;
|
||||||
|
} else {
|
||||||
|
this.timeString = `${diffInDays} d ago`;
|
||||||
|
clearInterval(this.timer);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (diffInMinutes <= 15) {
|
||||||
|
this.currentColor = 'green';
|
||||||
|
} else if (diffInHours < 1) {
|
||||||
|
this.currentColor = 'yellow';
|
||||||
|
} else if (diffInDays < 1) {
|
||||||
|
this.currentColor = 'orange';
|
||||||
|
} else {
|
||||||
|
this.currentColor = 'red';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.interval != newInterval) {
|
||||||
|
clearInterval(this.timer)
|
||||||
|
this.timer = setInterval(() => this.updateTime(), newInterval);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
});
|
||||||
@@ -44,10 +44,26 @@ h3 {
|
|||||||
img {
|
img {
|
||||||
width: 5rem;
|
width: 5rem;
|
||||||
height: 5rem;
|
height: 5rem;
|
||||||
|
object-fit: cover;
|
||||||
border-radius: .5rem;
|
border-radius: .5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.steam {
|
||||||
|
.block {
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
img {
|
||||||
|
height: 7rem;
|
||||||
|
margin-right: .5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: .5rem 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
table, tbody {
|
table, tbody {
|
||||||
vertical-align: baseline;
|
vertical-align: baseline;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
|
|||||||
@@ -1,16 +0,0 @@
|
|||||||
<div>
|
|
||||||
<div class="88-31">
|
|
||||||
<a href="https://chest.lair.moe" class="disabled">
|
|
||||||
<img src="/static/img/88x31/gf.png"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://preview.about.akarpov.ru" id="pie">
|
|
||||||
<img src="/static/img/88x31/withpie.gif"/>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<div class="88-31">
|
|
||||||
<a href="https://g.lair.moe/Sweetbread/nixos-config">
|
|
||||||
<img src="/static/img/88x31/nixos.webp"/>
|
|
||||||
</a>
|
|
||||||
<img src="/static/img/88x31/teto.webp"/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
div
|
||||||
|
.88-31
|
||||||
|
a.disabled(href="https://chest.lair.moe")
|
||||||
|
img(src="/static/img/88x31/gf.png")
|
||||||
|
|
||||||
|
a#pie(href="https://preview.about.akarpov.ru")
|
||||||
|
img(src="/static/img/88x31/withpie.gif")
|
||||||
|
|
||||||
|
.88-31
|
||||||
|
a(href="https://g.lair.moe/Sweetbread/nixos-config")
|
||||||
|
img(src="/static/img/88x31/nixos.webp")
|
||||||
|
|
||||||
|
img(src="/static/img/88x31/teto.webp")
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
<div class="block">
|
|
||||||
<h3>Development</h3>
|
|
||||||
<div class="blocks badges">
|
|
||||||
<a class="block" href="//g.lair.moe/Sweetbread">
|
|
||||||
<img class="icon" src="/static/icon/service/gitea.webp" />
|
|
||||||
Gitea
|
|
||||||
</a>
|
|
||||||
<a class="block" href="https://github.com/VerySweetBread">
|
|
||||||
<img class="icon" src="https://github.githubassets.com/assets/GitHub-Mark-ea2971cee799.png" />
|
|
||||||
GitHub
|
|
||||||
</a>
|
|
||||||
<a class="block" href="https://git.kolibrios.org/Sweetbread">
|
|
||||||
<img class="icon" src="https://git.kolibrios.org/assets/img/logo.svg" />
|
|
||||||
KolibriOS Git
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h3>Contacts</h3>
|
|
||||||
<div class="blocks badges">
|
|
||||||
<a class="block" href="https://matrix.to/#/@risdeveau:codrs.ru">
|
|
||||||
<img class="icon" src="https://matrix.org/assets/favicon.ico" />
|
|
||||||
Matrix
|
|
||||||
</a>
|
|
||||||
<a class="block" href="//b.lair.moe/@risdeveau">
|
|
||||||
<img class="icon" src="/static/icon/service/sharkey.webp" />
|
|
||||||
Fediverse
|
|
||||||
</a>
|
|
||||||
<a class="block" href="https://discord.com/users/459823895256498186">
|
|
||||||
<img class="icon" src="https://cdn.prod.website-files.com/6257adef93867e50d84d30e2/66e3d80db9971f10a9757c99_Symbol.svg" />
|
|
||||||
Discord
|
|
||||||
</a>
|
|
||||||
<a class="block" href="mailto:risdeveau@lair.moe">
|
|
||||||
Mail
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h3>Game accounts</h3>
|
|
||||||
<div class="blocks badges">
|
|
||||||
<a class="block" href="https://steamcommunity.com/id/risdeveau">
|
|
||||||
<img class="icon" src="https://store.steampowered.com/favicon.ico" />
|
|
||||||
Steam
|
|
||||||
</a>
|
|
||||||
<a class="block" href="https://gamebanana.com/members/3899828">
|
|
||||||
<img class="icon" src="https://images.gamebanana.com/static/img/favicon/favicon.ico" />
|
|
||||||
GameBanana
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
.block
|
||||||
|
h3 Development
|
||||||
|
.blocks.badges
|
||||||
|
a.block(href="//g.lair.moe/Sweetbread")
|
||||||
|
img.icon(src="/static/icon/service/gitea.webp")
|
||||||
|
| Gitea
|
||||||
|
|
||||||
|
a.block(href="https://github.com/VerySweetBread")
|
||||||
|
img.icon(src="https://github.githubassets.com/assets/GitHub-Mark-ea2971cee799.png")
|
||||||
|
| GitHub
|
||||||
|
|
||||||
|
a.block(href="https://git.kolibrios.org/Sweetbread")
|
||||||
|
img.icon(src="https://git.kolibrios.org/assets/img/logo.svg")
|
||||||
|
| KolibriOS Git
|
||||||
|
|
||||||
|
h3 Contacts
|
||||||
|
.blocks.badges
|
||||||
|
a.block(href="https://matrix.to/#/@risdeveau:lair.moe")
|
||||||
|
img.icon(src="https://matrix.org/assets/favicon.ico")
|
||||||
|
| Matrix
|
||||||
|
|
||||||
|
a.block(href="//b.lair.moe/@risdeveau")
|
||||||
|
img.icon(src="/static/icon/service/sharkey.webp")
|
||||||
|
| Fediverse
|
||||||
|
|
||||||
|
a.block(href="https://discord.com/users/459823895256498186")
|
||||||
|
img.icon(src="https://cdn.prod.website-files.com/6257adef93867e50d84d30e2/66e3d80db9971f10a9757c99_Symbol.svg")
|
||||||
|
| Discord
|
||||||
|
|
||||||
|
a.block(href="mailto:risdeveau@lair.moe") Mail
|
||||||
|
|
||||||
|
h3 Game accounts
|
||||||
|
.blocks.badges
|
||||||
|
a.block(href="https://steamcommunity.com/id/risdeveau")
|
||||||
|
img.icon(src="https://store.steampowered.com/favicon.ico")
|
||||||
|
| Steam
|
||||||
|
|
||||||
|
a.block(href="https://gamebanana.com/members/3899828")
|
||||||
|
img.icon(src="https://images.gamebanana.com/static/img/favicon/favicon.ico")
|
||||||
|
| GameBanana
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
<div>
|
|
||||||
<h3>Wallets</h3>
|
|
||||||
<div class="blocks qr">
|
|
||||||
<div class="block qr">
|
|
||||||
<p>POL, BNB</p>
|
|
||||||
<img src="/static/img/wallets/evm.webp">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="block qr">
|
|
||||||
<p>TON</p>
|
|
||||||
<img src="/static/img/wallets/ton.webp">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="block qr">
|
|
||||||
<p>XMR</p>
|
|
||||||
<img src="/static/img/wallets/xmr.webp">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
div
|
||||||
|
h3 Wallets
|
||||||
|
.blocks.qr
|
||||||
|
.block.qr
|
||||||
|
p POL, BNB
|
||||||
|
img(src="/static/img/wallets/evm.webp")
|
||||||
|
|
||||||
|
.block.qr
|
||||||
|
p TON
|
||||||
|
img(src="/static/img/wallets/ton.webp")
|
||||||
|
|
||||||
|
.block.qr
|
||||||
|
p XMR
|
||||||
|
img(src="/static/img/wallets/xmr.webp")
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Sweet Bread</title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="/static/style/main.css">
|
|
||||||
<link rel="stylesheet" href="/static/style/risdeveau.css">
|
|
||||||
<link rel="icon" type="image/webp" href="/static/icon/us/risdeveau.webp" />
|
|
||||||
<script
|
|
||||||
src="https://track.lair.moe/api/script.js"
|
|
||||||
data-site-id="1"
|
|
||||||
defer
|
|
||||||
></script>
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<header>
|
|
||||||
<a href="{{ url_for('root.index') }}">Lair</a>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<main>
|
|
||||||
{% for m in (
|
|
||||||
'info',
|
|
||||||
'contacts',
|
|
||||||
'listenbrainz',
|
|
||||||
'donate',
|
|
||||||
'88x31'
|
|
||||||
) %}
|
|
||||||
{% include 'risdeveau/templates/%s.htm' % m %}
|
|
||||||
{% endfor %}
|
|
||||||
</main>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
doctype html
|
||||||
|
|
||||||
|
html(lang="en")
|
||||||
|
head
|
||||||
|
title Sweet Bread
|
||||||
|
|
||||||
|
each f in ('tw', 'main', 'risdeveau')
|
||||||
|
link(rel="stylesheet", href="/static/style/#{f}.css")
|
||||||
|
|
||||||
|
link(rel="icon" type="image/webp" href="/static/icon/us/risdeveau.webp")
|
||||||
|
|
||||||
|
script(src="/static/script/rtime.js")
|
||||||
|
script(
|
||||||
|
src="https://track.lair.moe/api/script.js"
|
||||||
|
data-site-id="1"
|
||||||
|
defer
|
||||||
|
)
|
||||||
|
script(
|
||||||
|
src="https://cdn.jsdelivr.net/npm/htmx.org@2.0.8/dist/htmx.min.js"
|
||||||
|
integrity="sha384-/TgkGk7p307TH7EXJDuUlgG3Ce1UVolAOFopFekQkkXihi5u/6OCvVKyz1W+idaz"
|
||||||
|
crossorigin="anonymous"
|
||||||
|
)
|
||||||
|
script(defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js")
|
||||||
|
|
||||||
|
meta(name="viewport" content="width=device-width, initial-scale=1.0")
|
||||||
|
meta(
|
||||||
|
name="htmx-config"
|
||||||
|
content='{
|
||||||
|
"responseHandling":[
|
||||||
|
{"code":"204", "swap": false},
|
||||||
|
{"code":"304", "swap": false},
|
||||||
|
{"code":"[23]..", "swap": true},
|
||||||
|
{"code":"422", "swap": true},
|
||||||
|
{"code":"[45]..", "swap": false, "error":true},
|
||||||
|
{"code":"...", "swap": true}
|
||||||
|
]
|
||||||
|
}'
|
||||||
|
)
|
||||||
|
|
||||||
|
body
|
||||||
|
header
|
||||||
|
a(href=url_for('root.index')) Lair
|
||||||
|
|
||||||
|
main
|
||||||
|
include risdeveau/templates/info.pug
|
||||||
|
include risdeveau/templates/contacts.pug
|
||||||
|
include risdeveau/templates/listenbrainz.pug
|
||||||
|
include risdeveau/templates/steam.pug
|
||||||
|
include risdeveau/templates/donate.pug
|
||||||
|
include risdeveau/templates/88x31.pug
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
<div class="block">
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<th>DoB</th>
|
|
||||||
<td>2005-01-13</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Languages</th>
|
|
||||||
<td>
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<td>Russian</td>
|
|
||||||
<td>Native</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>English</td>
|
|
||||||
<td>B2</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>French</td>
|
|
||||||
<td>A1?</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>German</td>
|
|
||||||
<td>A2?</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Japanese</td>
|
|
||||||
<td>Beginner</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Student</th>
|
|
||||||
<td>
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<td>Programmer</td>
|
|
||||||
<td>2/4yr.</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Translator</td>
|
|
||||||
<td>2/3yr.</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
.block
|
||||||
|
table
|
||||||
|
tr
|
||||||
|
th DoB
|
||||||
|
td 2005-01-13
|
||||||
|
tr
|
||||||
|
th Languages
|
||||||
|
td
|
||||||
|
table
|
||||||
|
tr
|
||||||
|
td Russian
|
||||||
|
td Native
|
||||||
|
tr
|
||||||
|
td English
|
||||||
|
td B2
|
||||||
|
tr
|
||||||
|
td French
|
||||||
|
td A1?
|
||||||
|
tr
|
||||||
|
td German
|
||||||
|
td A2?
|
||||||
|
tr
|
||||||
|
td Japanese
|
||||||
|
td Beginner
|
||||||
|
|
||||||
|
tr
|
||||||
|
th Student
|
||||||
|
td
|
||||||
|
table
|
||||||
|
tr
|
||||||
|
td Programmer
|
||||||
|
td 2.5/4yr.
|
||||||
|
tr
|
||||||
|
td Translator
|
||||||
|
td 2.5/3yr.
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
{% macro track_block(track, is_active=false) %}
|
|
||||||
<div class="block track{% if is_active %} active{% endif %}">
|
|
||||||
{% if track.cover_url %}
|
|
||||||
<img src="{{ track.cover_url }}"/>
|
|
||||||
{% endif %}
|
|
||||||
<div>
|
|
||||||
<p><b>{{ track.artist_name }}</b></p>
|
|
||||||
<p>{{ track.track_name }}</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% endmacro %}
|
|
||||||
|
|
||||||
<div class="block">
|
|
||||||
<h2><a href="https://listenbrainz.org/user/risdeveau/">Listenbrainz</a></h2>
|
|
||||||
{% if lb_now.data and lb_now.data.listens.0 %}
|
|
||||||
{{ track_block(lb_now.data.listens.0, is_active=true) }}
|
|
||||||
{% endif %}
|
|
||||||
{% if lb.data and lb.data.listens %}
|
|
||||||
{% for track in lb.data.listens %}
|
|
||||||
{{ track_block(track) }}
|
|
||||||
{% endfor %}
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
mixin track_block(track, is_active=false)
|
||||||
|
- set act_cls = "active" if is_active else ""
|
||||||
|
.block.track(class=act_cls)
|
||||||
|
if track.cover_url
|
||||||
|
img(src=track.cover_url)
|
||||||
|
div
|
||||||
|
p
|
||||||
|
b= track.artist_name
|
||||||
|
p= track.track_name
|
||||||
|
|
||||||
|
if not is_active
|
||||||
|
p(
|
||||||
|
x-data="rtime(#{track.listened_at})",
|
||||||
|
x-text="`Listened ${timeString}`",
|
||||||
|
:class="textColorClass"
|
||||||
|
)
|
||||||
|
|
||||||
|
.block(
|
||||||
|
hx-get="/m/listenbrainz",
|
||||||
|
hx-trigger="every 15s",
|
||||||
|
hx-swap="outerHTML",
|
||||||
|
hx-headers='{"If-None-Match": "#{lb.etag}"}'
|
||||||
|
)
|
||||||
|
h2
|
||||||
|
a(href="https://listenbrainz.org/user/risdeveau/") Listenbrainz
|
||||||
|
|
||||||
|
if lb.caches.now.data and lb.caches.now.data.listens[0]
|
||||||
|
+track_block(lb.caches.now.data.listens[0], true)
|
||||||
|
|
||||||
|
if lb.caches.listens.data and lb.caches.listens.data.listens
|
||||||
|
each track in lb.caches.listens.data.listens
|
||||||
|
+track_block(track)
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
mixin game_block(g, show_last_played=false)
|
||||||
|
a.block(href="https://store.steampowered.com/app/#{g.appid}", target="_blank")
|
||||||
|
picture
|
||||||
|
source(media="(max-width: 45rem)", srcset=g.v_cover)
|
||||||
|
img(src=g.h_cover)
|
||||||
|
div
|
||||||
|
strong= g.name
|
||||||
|
if g.playtime_2weeks
|
||||||
|
p Played last 2 weeks: #{tmsmp(g.playtime_2weeks * 60)}
|
||||||
|
p
|
||||||
|
- var lin = g.playtime_linux_forever > 0;
|
||||||
|
- var win = g.playtime_windows_forever > 0;
|
||||||
|
| Total played:
|
||||||
|
if lin
|
||||||
|
= tmsmp(g.playtime_linux_forever * 60)
|
||||||
|
| (
|
||||||
|
abbr(title="On Linux") L
|
||||||
|
| )
|
||||||
|
if lin and win
|
||||||
|
= " + "
|
||||||
|
if win
|
||||||
|
= tmsmp(g.playtime_windows_forever * 60)
|
||||||
|
| (
|
||||||
|
abbr(title="On Windows") W
|
||||||
|
| )
|
||||||
|
if lin and win
|
||||||
|
= " = "
|
||||||
|
= tmsmp(g.playtime_forever * 60)
|
||||||
|
if show_last_played and g.rtime_last_played != 0
|
||||||
|
p Last played: #{utmsmp(g.rtime_last_played)}
|
||||||
|
|
||||||
|
.block.steam(
|
||||||
|
hx-get="/m/steam",
|
||||||
|
hx-trigger="every 1m",
|
||||||
|
hx-swap="outerHTML",
|
||||||
|
hx-headers='{ "If-None-Match": "#{steam.etag}" }'
|
||||||
|
)
|
||||||
|
h2
|
||||||
|
a(href="https://steamcommunity.com/id/risdeveau") Steam
|
||||||
|
|
||||||
|
if steam.caches.recent.data.games
|
||||||
|
h3 Recently played:
|
||||||
|
each g in steam.caches.recent.data.games
|
||||||
|
+game_block(g)
|
||||||
|
p(x-data="rtime(#{steam.caches.recent.last_updated})", x-text="`Last updated: ${timeString}`")
|
||||||
|
|
||||||
|
if steam.caches.owned.data.games
|
||||||
|
h3 Top played games:
|
||||||
|
- var owned_games = steam.caches.owned.data.games | sort(attribute="playtime_forever", reverse=true)
|
||||||
|
each g in owned_games[:5]
|
||||||
|
+game_block(g, true)
|
||||||
|
p(x-data="rtime(#{steam.caches.owned.last_updated})", x-text="`Last updated: ${timeString}`")
|
||||||
@@ -17,12 +17,12 @@ def render_tmpl(filename: str) -> str:
|
|||||||
|
|
||||||
@bp.route("/")
|
@bp.route("/")
|
||||||
def index():
|
def index():
|
||||||
return render_tmpl('index.html')
|
return render_tmpl('index.pug')
|
||||||
|
|
||||||
@bp.route("/host")
|
@bp.route("/host")
|
||||||
def host():
|
def host():
|
||||||
return render_tmpl('host.html')
|
return render_tmpl('host.pug')
|
||||||
|
|
||||||
@bp.route("/us")
|
@bp.route("/us")
|
||||||
def us():
|
def us():
|
||||||
return render_tmpl('us.html')
|
return render_tmpl('us.pug')
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ from os.path import join
|
|||||||
|
|
||||||
def compile_styles():
|
def compile_styles():
|
||||||
dir = "blueprints/root/static/style"
|
dir = "blueprints/root/static/style"
|
||||||
files = ("main",)
|
files = ("main", "tw")
|
||||||
|
|
||||||
for file in files:
|
for file in files:
|
||||||
console(f"sass {join(dir, file+'.scss')} {join(dir, file+'.css')}")
|
console(f"sass {join(dir, file+'.scss')} {join(dir, file+'.css')}")
|
||||||
@@ -18,6 +18,7 @@ $subtext0: #a6adc8;
|
|||||||
$subtext1: #bac2de;
|
$subtext1: #bac2de;
|
||||||
|
|
||||||
$red: #f38ba8;
|
$red: #f38ba8;
|
||||||
|
$yellow: #f9e2af;
|
||||||
$green: #a6e3a1;
|
$green: #a6e3a1;
|
||||||
$peach: #fab387;
|
$peach: #fab387;
|
||||||
$blue: #89b4fa;
|
$blue: #89b4fa;
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
@use "catppuccin" as theme;
|
||||||
|
|
||||||
|
.t {
|
||||||
|
&-red { color: theme.$red; }
|
||||||
|
&-orange { color: theme.$peach; }
|
||||||
|
&-yellow { color: theme.$yellow; }
|
||||||
|
&-green { color: theme.$green; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
doctype html
|
||||||
|
html(lang=g.locale)
|
||||||
|
head
|
||||||
|
title Lair
|
||||||
|
|
||||||
|
link(rel="stylesheet" href="/static/style/main.css")
|
||||||
|
link(rel="icon" type="image/webp" href="/static/icon/lair.webp")
|
||||||
|
|
||||||
|
script(src="/static/script/copy-mono.js")
|
||||||
|
script(
|
||||||
|
src="https://track.lair.moe/api/script.js"
|
||||||
|
data-site-id="1"
|
||||||
|
defer
|
||||||
|
)
|
||||||
|
meta(name="viewport" content="width=device-width, initial-scale=1.0")
|
||||||
|
meta(name="mock-email" content="admin@example.com")
|
||||||
|
|
||||||
|
meta(property="og:type" value="website")
|
||||||
|
meta(property="og:url" value="https://lair.moe")
|
||||||
|
meta(property="og:title" value="Lair.moe")
|
||||||
|
meta(property="og:image" value="https://lair.moe/static/icon/lair.webp")
|
||||||
|
meta(property="og:description" value=_("description"))
|
||||||
|
|
||||||
|
body
|
||||||
|
include root/templates/header.pug
|
||||||
|
|
||||||
|
h1
|
||||||
|
block title
|
||||||
|
|
||||||
|
main
|
||||||
|
block content
|
||||||
|
|
||||||
|
include root/templates/footer.pug
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Lair</title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="/static/style/main.css">
|
|
||||||
<link rel="icon" type="image/webp" href="/static/icon/lair.webp" />
|
|
||||||
<script src="/static/script/copy-mono.js"> </script>
|
|
||||||
<script
|
|
||||||
src="https://track.lair.moe/api/script.js"
|
|
||||||
data-site-id="1"
|
|
||||||
defer
|
|
||||||
></script>
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="mock-email" content="admin@example.com">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
{% include 'header.tmpl' %}
|
|
||||||
|
|
||||||
<h1>{% block title %}{% endblock %}</h1>
|
|
||||||
|
|
||||||
<main>
|
|
||||||
{% block content %}{% endblock %}
|
|
||||||
</main>
|
|
||||||
|
|
||||||
{% include 'footer.tmpl' %}
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
footer
|
||||||
|
div
|
||||||
|
| lair.moe 🄯 2025 - 2026</div>
|
||||||
|
div
|
||||||
|
a(href="https://g.lair.moe/Sweetbread/lair.moe")= _('site source')
|
||||||
|
div
|
||||||
|
= _('contact us')
|
||||||
|
= ": "
|
||||||
|
a(href="mailto:admin@lair.moe") admin@lair.moe
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
<footer>
|
|
||||||
<div>lair.moe 🄯 2025 - 2026</div>
|
|
||||||
<div><a href="https://g.lair.moe/Sweetbread/lair.moe">{{ _('site source') }}</a></div>
|
|
||||||
<div>{{ _('contact us') }}: <a href="mailto:admin@lair.moe">admin@lair.moe</a></div>
|
|
||||||
</footer>
|
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
header
|
||||||
|
if request.path != url_for('.index')
|
||||||
|
a(href=url_for('.index')) Lair
|
||||||
|
else
|
||||||
|
div
|
||||||
|
|
||||||
|
.header-links
|
||||||
|
-
|
||||||
|
var links = (
|
||||||
|
('.us', _('about us')),
|
||||||
|
('.host', _('about host')),
|
||||||
|
)
|
||||||
|
each l, t in links
|
||||||
|
if url_for(l) == request.path
|
||||||
|
strong= t
|
||||||
|
else
|
||||||
|
a(href=url_for(l))= t
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
<header>
|
|
||||||
{%- if request.path != url_for('.index') %}
|
|
||||||
<a href="{{ url_for('.index') }}">Lair</a>
|
|
||||||
{%- else %}
|
|
||||||
<div></div>
|
|
||||||
{%- endif %}
|
|
||||||
|
|
||||||
<div class="header-links">
|
|
||||||
{%- for (l, t) in (
|
|
||||||
('.us', _('about us')),
|
|
||||||
('.host', _('about host'))
|
|
||||||
) %}
|
|
||||||
{%- if url_for(l) == request.path %}
|
|
||||||
<strong>{{ t }}</strong>
|
|
||||||
{%- else %}
|
|
||||||
<a href="{{ url_for(l) }}">{{ t }}</a>
|
|
||||||
{%- endif %}
|
|
||||||
{%- endfor %}
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
{% extends 'base.tmpl' %}
|
|
||||||
|
|
||||||
{% block title %}{{ _('about host') }}{% endblock %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
<a href="https://play2go.cloud/?ref_id=4baFoOIp5QE" target="_blank" class="block">
|
|
||||||
<strong>{{ _("host:hoster") }}</strong>: play2go
|
|
||||||
<p>{{ _('host:hoster_descr') }}</p>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<div class="block">
|
|
||||||
<strong>{{ _("host:specifications") }}</strong>:
|
|
||||||
<ul>
|
|
||||||
<li>CPU: Ryzen 9@3.4GHz (4 cores)</li>
|
|
||||||
<li>RAM: 8 GB</li>
|
|
||||||
<li>SSD: 150 GB</li>
|
|
||||||
<li>ETH: 500Mb/s</li>
|
|
||||||
<li>Loc: Deutschland, Frankfurt am Main</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
{% endblock %}
|
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
extends root/templates/base.pug
|
||||||
|
|
||||||
|
block title
|
||||||
|
= _('about host')
|
||||||
|
|
||||||
|
block content
|
||||||
|
a.block(href="https://play2go.cloud/?ref_id=4baFoOIp5QE" target="_blank")
|
||||||
|
strong= _("host:hoster")
|
||||||
|
| : play2go
|
||||||
|
p= _('host:hoster_descr')
|
||||||
|
|
||||||
|
.block
|
||||||
|
strong= _("host:specifications")
|
||||||
|
| :
|
||||||
|
ul
|
||||||
|
li CPU: Ryzen 9@3.4GHz (4 cores)
|
||||||
|
li RAM: 8 GB
|
||||||
|
li SSD: 150 GB
|
||||||
|
li ETH: 500Mb/s
|
||||||
|
li Loc: Deutschland, Frankfurt am Main
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
{% extends 'base.tmpl' %}
|
|
||||||
|
|
||||||
{% block title %}
|
|
||||||
<img src="/static/icon/lair.webp" class="icon" />
|
|
||||||
Lair
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
<a href="https://b.lair.moe" target="_blank" class="block">
|
|
||||||
<div class="header">
|
|
||||||
<img src="/static/icon/service/sharkey.webp" class="icon"/>
|
|
||||||
<strong>Sharkey</strong>
|
|
||||||
</div>
|
|
||||||
<p>{{ _('index.descr:sharkey') }}</p>
|
|
||||||
</a>
|
|
||||||
<a href="https://g.lair.moe" target="_blank" class="block">
|
|
||||||
<div class="header">
|
|
||||||
<img src="/static/icon/service/gitea.webp" class="icon"/>
|
|
||||||
<strong>Gitea</strong>
|
|
||||||
</div>
|
|
||||||
<p>{{ _('index.descr:gitea') }}</p>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<div class="block">
|
|
||||||
<p><a href="https://m.codrs.ru" target="_blank"><strong>Matrix</strong></a> — {{ _('index.descr:matrix') }}</p>
|
|
||||||
<p><a href="https://c.lair.moe" target="_blank"><strong>Copyparty</strong></a> — {{ _('index.descr:copyparty') }}</p>
|
|
||||||
<p><a href="https://tools.lair.moe" target="_blank"><strong>IT-tools</strong></a> — {{ _('index.descr:tools') }}</p>
|
|
||||||
<p><a href="https://vert.lair.moe" target="_blank"><strong>Vert</strong></a> — {{ _('index.descr:vert') }}</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="block">
|
|
||||||
<strong>{{ _('index:altfronts') }}</strong>
|
|
||||||
<p><a href="https://s.lair.moe" target="_blank"><strong>4get</strong></a> — {{ _('index.descr:4get') }}</p>
|
|
||||||
<p><a href="https://tl.lair.moe" target="_blank"><strong>TransLite</strong></a> — {{ _('index.descr:tl') }}</p>
|
|
||||||
<p><a href="https://lyr.lair.moe" target="_blank"><strong>Intellectual</strong></a> — {{ _('index.descr:lyr') }}</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="block">
|
|
||||||
<div>
|
|
||||||
<strong>DNS</strong>:
|
|
||||||
<ul>
|
|
||||||
<li><span class="mono">64.188.64.176</span></li>
|
|
||||||
<li>DoT: <span class="mono">lair.moe:853</span></li>
|
|
||||||
<li>DoH: <span class="mono">dns.lair.moe</span></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<p>
|
|
||||||
<strong>Yggdrasil</strong>:
|
|
||||||
<span class="mono">200:ee1:bad2:1732:4b91:c3e3:2f08:29b3</span>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
{% endblock %}
|
|
||||||
@@ -0,0 +1,70 @@
|
|||||||
|
extends root/templates/base.pug
|
||||||
|
|
||||||
|
block title
|
||||||
|
img.icon(src="/static/icon/lair.webp")
|
||||||
|
| Lair
|
||||||
|
|
||||||
|
block content
|
||||||
|
a.block(href="https://b.lair.moe" target="_blank")
|
||||||
|
.header
|
||||||
|
img.icon(src="/static/icon/service/sharkey.webp")
|
||||||
|
strong Sharkey
|
||||||
|
p= _('index.descr:sharkey')
|
||||||
|
|
||||||
|
a.block(href="https://g.lair.moe" target="_blank")
|
||||||
|
.header
|
||||||
|
img.icon(src="/static/icon/service/gitea.webp")
|
||||||
|
strong Gitea
|
||||||
|
p= _('index.descr:gitea')
|
||||||
|
|
||||||
|
.block
|
||||||
|
p
|
||||||
|
a(href="https://m.lair.moe" target="_blank")
|
||||||
|
strong Matrix
|
||||||
|
| — {{ _('index.descr:matrix') }}
|
||||||
|
p
|
||||||
|
a(href="//c.lair.moe" target="_blank")
|
||||||
|
strong Copyparty
|
||||||
|
| — {{ _('index.descr:copyparty') }}
|
||||||
|
p
|
||||||
|
a(href="https://tools.lair.moe" target="_blank")
|
||||||
|
strong IT-tools
|
||||||
|
| — {{ _('index.descr:tools') }}
|
||||||
|
p
|
||||||
|
a(href="https://vert.lair.moe" target="_blank")
|
||||||
|
strong Vert
|
||||||
|
| — {{ _('index.descr:vert') }}
|
||||||
|
|
||||||
|
.block
|
||||||
|
strong= _('index:altfronts')
|
||||||
|
p
|
||||||
|
a(href="https://s.lair.moe" target="_blank")
|
||||||
|
strong 4get
|
||||||
|
| — {{ _('index.descr:4get') }}
|
||||||
|
p
|
||||||
|
a(href="https://tl.lair.moe" target="_blank")
|
||||||
|
strong TransLite
|
||||||
|
| — {{ _('index.descr:tl') }}
|
||||||
|
p
|
||||||
|
a(href="https://lyr.lair.moe" target="_blank")
|
||||||
|
strong Intellectual
|
||||||
|
| — {{ _('index.descr:lyr') }}
|
||||||
|
|
||||||
|
.block
|
||||||
|
div
|
||||||
|
strong DNS
|
||||||
|
| :
|
||||||
|
ul
|
||||||
|
li
|
||||||
|
span.mono 64.188.64.176
|
||||||
|
li
|
||||||
|
| DoT:
|
||||||
|
span.mono lair.moe:853
|
||||||
|
li
|
||||||
|
| DoH:
|
||||||
|
span.mono dns.lair.moe
|
||||||
|
|
||||||
|
p
|
||||||
|
strong Yggdrasil
|
||||||
|
| :
|
||||||
|
span.mono 200:ee1:bad2:1732:4b91:c3e3:2f08:29b3
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
{% extends 'base.tmpl' %}
|
|
||||||
|
|
||||||
{% block title %}О нас{% endblock %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
<a href="{{ url_for('risdeveau.index') }}" class="block green">
|
|
||||||
<div class="header">
|
|
||||||
<img src="/static/icon/us/risdeveau.webp" class="icon"/>
|
|
||||||
Sweetbread
|
|
||||||
</div>
|
|
||||||
Главный админ, занимается почти всеми сервисами. Создал этот сайт
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<div class="block orange disabled">
|
|
||||||
<div class="header">
|
|
||||||
<img src="/static/icon/us/chest.webp" class="icon"/>
|
|
||||||
Chest
|
|
||||||
</div>
|
|
||||||
Должна была помогать делать этот сайт
|
|
||||||
</div>
|
|
||||||
{% endblock %}
|
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
extends root/templates/base.pug
|
||||||
|
|
||||||
|
block title
|
||||||
|
| О нас
|
||||||
|
|
||||||
|
block content
|
||||||
|
a.block.green(href=url_for('risdeveau.index'))
|
||||||
|
.header
|
||||||
|
img.icon(src="/static/icon/us/risdeveau.webp")
|
||||||
|
| Sweetbread
|
||||||
|
| Главный админ, занимается почти всеми сервисами. Создал этот сайт
|
||||||
|
|
||||||
|
.block.orange.disabled
|
||||||
|
.header
|
||||||
|
img.icon(src="/static/icon/us/chest.webp")
|
||||||
|
| Chest
|
||||||
|
| Должна была помогать делать этот сайт
|
||||||
@@ -8,6 +8,8 @@ about host = About host
|
|||||||
contacts = Contacts
|
contacts = Contacts
|
||||||
donate = Donate
|
donate = Donate
|
||||||
|
|
||||||
|
description = Small personal site
|
||||||
|
|
||||||
|
|
||||||
[index]
|
[index]
|
||||||
altfronts = Altfronts
|
altfronts = Altfronts
|
||||||
|
|||||||
@@ -8,6 +8,8 @@ about host = О хосте
|
|||||||
contacts = Контакты
|
contacts = Контакты
|
||||||
donate = Донат
|
donate = Донат
|
||||||
|
|
||||||
|
description = Небольшой личный сайт
|
||||||
|
|
||||||
|
|
||||||
[index]
|
[index]
|
||||||
altfronts = Альтфронты
|
altfronts = Альтфронты
|
||||||
|
|||||||
@@ -5,3 +5,4 @@ requests
|
|||||||
APScheduler
|
APScheduler
|
||||||
musicbrainzngs
|
musicbrainzngs
|
||||||
python-magic
|
python-magic
|
||||||
|
git+https://github.com/VerySweetBread/pypugjs
|
||||||
|
|||||||
Reference in New Issue
Block a user