Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 16s
Defpages are now declared with absolute paths in .sx files and auto-mounted directly on the Quart app, removing ~850 lines of blueprint mount_pages calls, before_request hooks, and g.* wrapper boilerplate. A new page = one defpage declaration, nothing else. Infrastructure: - async_eval awaits coroutine results from callable dispatch - auto_mount_pages() mounts all registered defpages on the app - g._defpage_ctx pattern passes helper data to layout context Migrated: sx, account, orders, federation, cart, market, events, blog Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
40 lines
1.0 KiB
Python
40 lines
1.0 KiB
Python
from __future__ import annotations
|
|
|
|
#from quart import Blueprint, g
|
|
|
|
from quart import (
|
|
Blueprint,
|
|
redirect,
|
|
url_for,
|
|
)
|
|
from shared.browser.app.redis_cacher import clear_all_cache
|
|
from shared.browser.app.authz import require_admin
|
|
from shared.browser.app.utils.htmx import is_htmx_request
|
|
from shared.sx.helpers import sx_response
|
|
from shared.config import config
|
|
from datetime import datetime
|
|
|
|
def register(url_prefix):
|
|
bp = Blueprint("settings", __name__, url_prefix = url_prefix)
|
|
|
|
@bp.context_processor
|
|
async def inject_root():
|
|
return {
|
|
"base_title": f"{config()['title']} settings",
|
|
}
|
|
|
|
@bp.post("/cache_clear/")
|
|
@require_admin
|
|
async def cache_clear():
|
|
await clear_all_cache()
|
|
if is_htmx_request():
|
|
now = datetime.now()
|
|
from shared.sx.jinja_bridge import render as render_comp
|
|
html = render_comp("cache-cleared", time_str=now.strftime("%H:%M:%S"))
|
|
return sx_response(html)
|
|
|
|
return redirect(url_for("defpage_cache_page"))
|
|
return bp
|
|
|
|
|