Files
port-ui/app/app.py

131 lines
4.0 KiB
Python
Raw Normal View History

import logging
2025-01-08 14:59:36 +01:00
import os
2025-07-05 20:08:00 +02:00
import requests
import yaml
feat(assets): probe-first resolver + SPOT for IMAGE_NAME/PORT + README screenshot Probe-first asset resolution (regression fix) --------------------------------------------- cache_manager.cache_file() returned either a relative cache path (success) or None (failure). The previous app.py fallback asset['cache'] = cached or asset['source'] mixed both types into one field, which the template wrapped in url_for('static', ...) regardless — producing broken /static/https://file.infinito.nexus/.../logo.png URLs whenever the source couldn't be downloaded. - New app/utils/asset_resolver.py: HEAD-probes the URL (3 s timeout, image/* content type). On hit, embed directly via a new external_url field — no download required. On miss, fall back to cache_manager.cache_file. If that also fails, expose the source URL via external_url so the browser shows the alt text instead of an empty src. - app.py exposes an asset_src(asset) context processor that picks external_url first, then url_for('static', cache), so the template never wraps an absolute URL in a static prefix. - Templates (base, navigation, card) switch to asset_src(...) and gate the card image branch on cache or external_url. - 16 unit tests cover every probe/cache/fallback branch; one live integration test exercises the canonical https://file.infinito.nexus/assets/img/logo.png to prove the probe-first path works end-to-end (cache dir stays empty). - config.sample.yaml: new Infinito.Nexus card driven by the same canonical asset URL. Single source of truth for IMAGE_NAME and PORT ---------------------------------------------- - env.example is now the only place the literal values live. - Makefile and docker-compose.yml reference \$(IMAGE_NAME) / \${IMAGE_NAME:?…} (same for PORT); no defaults, no silent fallbacks. - New make env / make config bootstrap .env / app/config.yaml from their checked-in templates. Idempotent. - All container-using targets depend on the two bootstrap targets so a fresh checkout runs in a single invocation. - Recipes source .env at recipe-execution time so they pick up a freshly bootstrapped .env in the same make invocation. README ------ - Screenshot added under the title. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-18 12:19:15 +02:00
from flask import Flask, current_app, render_template, url_for
from markupsafe import Markup
try:
feat(assets): probe-first resolver + SPOT for IMAGE_NAME/PORT + README screenshot Probe-first asset resolution (regression fix) --------------------------------------------- cache_manager.cache_file() returned either a relative cache path (success) or None (failure). The previous app.py fallback asset['cache'] = cached or asset['source'] mixed both types into one field, which the template wrapped in url_for('static', ...) regardless — producing broken /static/https://file.infinito.nexus/.../logo.png URLs whenever the source couldn't be downloaded. - New app/utils/asset_resolver.py: HEAD-probes the URL (3 s timeout, image/* content type). On hit, embed directly via a new external_url field — no download required. On miss, fall back to cache_manager.cache_file. If that also fails, expose the source URL via external_url so the browser shows the alt text instead of an empty src. - app.py exposes an asset_src(asset) context processor that picks external_url first, then url_for('static', cache), so the template never wraps an absolute URL in a static prefix. - Templates (base, navigation, card) switch to asset_src(...) and gate the card image branch on cache or external_url. - 16 unit tests cover every probe/cache/fallback branch; one live integration test exercises the canonical https://file.infinito.nexus/assets/img/logo.png to prove the probe-first path works end-to-end (cache dir stays empty). - config.sample.yaml: new Infinito.Nexus card driven by the same canonical asset URL. Single source of truth for IMAGE_NAME and PORT ---------------------------------------------- - env.example is now the only place the literal values live. - Makefile and docker-compose.yml reference \$(IMAGE_NAME) / \${IMAGE_NAME:?…} (same for PORT); no defaults, no silent fallbacks. - New make env / make config bootstrap .env / app/config.yaml from their checked-in templates. Idempotent. - All container-using targets depend on the two bootstrap targets so a fresh checkout runs in a single invocation. - Recipes source .env at recipe-execution time so they pick up a freshly bootstrapped .env in the same make invocation. README ------ - Screenshot added under the title. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-18 12:19:15 +02:00
from app.utils.asset_resolver import asset_src, resolve_asset_cache
from app.utils.cache_manager import CacheManager
from app.utils.compute_card_classes import compute_card_classes
from app.utils.configuration_resolver import ConfigurationResolver
except ImportError: # pragma: no cover - supports running from the app/ directory.
feat(assets): probe-first resolver + SPOT for IMAGE_NAME/PORT + README screenshot Probe-first asset resolution (regression fix) --------------------------------------------- cache_manager.cache_file() returned either a relative cache path (success) or None (failure). The previous app.py fallback asset['cache'] = cached or asset['source'] mixed both types into one field, which the template wrapped in url_for('static', ...) regardless — producing broken /static/https://file.infinito.nexus/.../logo.png URLs whenever the source couldn't be downloaded. - New app/utils/asset_resolver.py: HEAD-probes the URL (3 s timeout, image/* content type). On hit, embed directly via a new external_url field — no download required. On miss, fall back to cache_manager.cache_file. If that also fails, expose the source URL via external_url so the browser shows the alt text instead of an empty src. - app.py exposes an asset_src(asset) context processor that picks external_url first, then url_for('static', cache), so the template never wraps an absolute URL in a static prefix. - Templates (base, navigation, card) switch to asset_src(...) and gate the card image branch on cache or external_url. - 16 unit tests cover every probe/cache/fallback branch; one live integration test exercises the canonical https://file.infinito.nexus/assets/img/logo.png to prove the probe-first path works end-to-end (cache dir stays empty). - config.sample.yaml: new Infinito.Nexus card driven by the same canonical asset URL. Single source of truth for IMAGE_NAME and PORT ---------------------------------------------- - env.example is now the only place the literal values live. - Makefile and docker-compose.yml reference \$(IMAGE_NAME) / \${IMAGE_NAME:?…} (same for PORT); no defaults, no silent fallbacks. - New make env / make config bootstrap .env / app/config.yaml from their checked-in templates. Idempotent. - All container-using targets depend on the two bootstrap targets so a fresh checkout runs in a single invocation. - Recipes source .env at recipe-execution time so they pick up a freshly bootstrapped .env in the same make invocation. README ------ - Screenshot added under the title. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-18 12:19:15 +02:00
from utils.asset_resolver import asset_src, resolve_asset_cache
from utils.cache_manager import CacheManager
from utils.compute_card_classes import compute_card_classes
from utils.configuration_resolver import ConfigurationResolver
2025-07-05 10:55:32 +02:00
logging.basicConfig(level=logging.DEBUG)
FLASK_ENV = os.getenv("FLASK_ENV", "production")
FLASK_HOST = os.getenv("FLASK_HOST", "127.0.0.1")
FLASK_PORT = int(os.getenv("FLASK_PORT", os.getenv("PORT", 5000)))
print(f"Starting app on {FLASK_HOST}:{FLASK_PORT}, FLASK_ENV={FLASK_ENV}")
2025-01-08 14:59:36 +01:00
2025-01-09 14:27:07 +01:00
# Initialize the CacheManager
cache_manager = CacheManager()
2025-01-09 14:27:07 +01:00
# Clear cache on startup
cache_manager.clear_cache()
2025-01-08 14:59:36 +01:00
def load_config(app):
2025-07-01 23:28:25 +02:00
"""Load and resolve the configuration from config.yaml."""
with open("config.yaml", "r", encoding="utf-8") as handle:
config = yaml.safe_load(handle)
2025-07-05 20:08:00 +02:00
if config.get("nasa_api_key"):
app.config["NASA_API_KEY"] = config["nasa_api_key"]
resolver = ConfigurationResolver(config)
resolver.resolve_links()
app.config.update(resolver.get_config())
2025-01-08 14:59:36 +01:00
2025-07-01 23:28:25 +02:00
def cache_icons_and_logos(app):
feat(assets): probe-first resolver + SPOT for IMAGE_NAME/PORT + README screenshot Probe-first asset resolution (regression fix) --------------------------------------------- cache_manager.cache_file() returned either a relative cache path (success) or None (failure). The previous app.py fallback asset['cache'] = cached or asset['source'] mixed both types into one field, which the template wrapped in url_for('static', ...) regardless — producing broken /static/https://file.infinito.nexus/.../logo.png URLs whenever the source couldn't be downloaded. - New app/utils/asset_resolver.py: HEAD-probes the URL (3 s timeout, image/* content type). On hit, embed directly via a new external_url field — no download required. On miss, fall back to cache_manager.cache_file. If that also fails, expose the source URL via external_url so the browser shows the alt text instead of an empty src. - app.py exposes an asset_src(asset) context processor that picks external_url first, then url_for('static', cache), so the template never wraps an absolute URL in a static prefix. - Templates (base, navigation, card) switch to asset_src(...) and gate the card image branch on cache or external_url. - 16 unit tests cover every probe/cache/fallback branch; one live integration test exercises the canonical https://file.infinito.nexus/assets/img/logo.png to prove the probe-first path works end-to-end (cache dir stays empty). - config.sample.yaml: new Infinito.Nexus card driven by the same canonical asset URL. Single source of truth for IMAGE_NAME and PORT ---------------------------------------------- - env.example is now the only place the literal values live. - Makefile and docker-compose.yml reference \$(IMAGE_NAME) / \${IMAGE_NAME:?…} (same for PORT); no defaults, no silent fallbacks. - New make env / make config bootstrap .env / app/config.yaml from their checked-in templates. Idempotent. - All container-using targets depend on the two bootstrap targets so a fresh checkout runs in a single invocation. - Recipes source .env at recipe-execution time so they pick up a freshly bootstrapped .env in the same make invocation. README ------ - Screenshot added under the title. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-18 12:19:15 +02:00
"""Resolve every icon/logo/favicon to either a local cache path or
an external URL (see ``resolve_asset_cache``)."""
2025-07-01 23:28:25 +02:00
for card in app.config["cards"]:
feat(assets): probe-first resolver + SPOT for IMAGE_NAME/PORT + README screenshot Probe-first asset resolution (regression fix) --------------------------------------------- cache_manager.cache_file() returned either a relative cache path (success) or None (failure). The previous app.py fallback asset['cache'] = cached or asset['source'] mixed both types into one field, which the template wrapped in url_for('static', ...) regardless — producing broken /static/https://file.infinito.nexus/.../logo.png URLs whenever the source couldn't be downloaded. - New app/utils/asset_resolver.py: HEAD-probes the URL (3 s timeout, image/* content type). On hit, embed directly via a new external_url field — no download required. On miss, fall back to cache_manager.cache_file. If that also fails, expose the source URL via external_url so the browser shows the alt text instead of an empty src. - app.py exposes an asset_src(asset) context processor that picks external_url first, then url_for('static', cache), so the template never wraps an absolute URL in a static prefix. - Templates (base, navigation, card) switch to asset_src(...) and gate the card image branch on cache or external_url. - 16 unit tests cover every probe/cache/fallback branch; one live integration test exercises the canonical https://file.infinito.nexus/assets/img/logo.png to prove the probe-first path works end-to-end (cache dir stays empty). - config.sample.yaml: new Infinito.Nexus card driven by the same canonical asset URL. Single source of truth for IMAGE_NAME and PORT ---------------------------------------------- - env.example is now the only place the literal values live. - Makefile and docker-compose.yml reference \$(IMAGE_NAME) / \${IMAGE_NAME:?…} (same for PORT); no defaults, no silent fallbacks. - New make env / make config bootstrap .env / app/config.yaml from their checked-in templates. Idempotent. - All container-using targets depend on the two bootstrap targets so a fresh checkout runs in a single invocation. - Recipes source .env at recipe-execution time so they pick up a freshly bootstrapped .env in the same make invocation. README ------ - Screenshot added under the title. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-18 12:19:15 +02:00
icon = card.get("icon")
if icon:
resolve_asset_cache(icon, cache_manager)
2025-07-09 22:20:58 +02:00
feat(assets): probe-first resolver + SPOT for IMAGE_NAME/PORT + README screenshot Probe-first asset resolution (regression fix) --------------------------------------------- cache_manager.cache_file() returned either a relative cache path (success) or None (failure). The previous app.py fallback asset['cache'] = cached or asset['source'] mixed both types into one field, which the template wrapped in url_for('static', ...) regardless — producing broken /static/https://file.infinito.nexus/.../logo.png URLs whenever the source couldn't be downloaded. - New app/utils/asset_resolver.py: HEAD-probes the URL (3 s timeout, image/* content type). On hit, embed directly via a new external_url field — no download required. On miss, fall back to cache_manager.cache_file. If that also fails, expose the source URL via external_url so the browser shows the alt text instead of an empty src. - app.py exposes an asset_src(asset) context processor that picks external_url first, then url_for('static', cache), so the template never wraps an absolute URL in a static prefix. - Templates (base, navigation, card) switch to asset_src(...) and gate the card image branch on cache or external_url. - 16 unit tests cover every probe/cache/fallback branch; one live integration test exercises the canonical https://file.infinito.nexus/assets/img/logo.png to prove the probe-first path works end-to-end (cache dir stays empty). - config.sample.yaml: new Infinito.Nexus card driven by the same canonical asset URL. Single source of truth for IMAGE_NAME and PORT ---------------------------------------------- - env.example is now the only place the literal values live. - Makefile and docker-compose.yml reference \$(IMAGE_NAME) / \${IMAGE_NAME:?…} (same for PORT); no defaults, no silent fallbacks. - New make env / make config bootstrap .env / app/config.yaml from their checked-in templates. Idempotent. - All container-using targets depend on the two bootstrap targets so a fresh checkout runs in a single invocation. - Recipes source .env at recipe-execution time so they pick up a freshly bootstrapped .env in the same make invocation. README ------ - Screenshot added under the title. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-18 12:19:15 +02:00
resolve_asset_cache(app.config["company"]["logo"], cache_manager)
resolve_asset_cache(app.config["platform"]["favicon"], cache_manager)
resolve_asset_cache(app.config["platform"]["logo"], cache_manager)
2025-07-01 23:28:25 +02:00
2025-01-08 14:59:36 +01:00
2025-07-01 23:28:25 +02:00
# Initialize Flask app
app = Flask(__name__)
# Load configuration and cache assets on startup
load_config(app)
cache_icons_and_logos(app)
2025-07-07 19:14:29 +02:00
@app.context_processor
def utility_processor():
def include_svg(path):
full_path = os.path.join(current_app.root_path, "static", path)
2025-07-07 19:14:29 +02:00
try:
with open(full_path, "r", encoding="utf-8") as handle:
svg = handle.read()
# Trusted local SVG asset shipped with the application package.
return Markup(svg) # nosec B704
except OSError:
return ""
feat(assets): probe-first resolver + SPOT for IMAGE_NAME/PORT + README screenshot Probe-first asset resolution (regression fix) --------------------------------------------- cache_manager.cache_file() returned either a relative cache path (success) or None (failure). The previous app.py fallback asset['cache'] = cached or asset['source'] mixed both types into one field, which the template wrapped in url_for('static', ...) regardless — producing broken /static/https://file.infinito.nexus/.../logo.png URLs whenever the source couldn't be downloaded. - New app/utils/asset_resolver.py: HEAD-probes the URL (3 s timeout, image/* content type). On hit, embed directly via a new external_url field — no download required. On miss, fall back to cache_manager.cache_file. If that also fails, expose the source URL via external_url so the browser shows the alt text instead of an empty src. - app.py exposes an asset_src(asset) context processor that picks external_url first, then url_for('static', cache), so the template never wraps an absolute URL in a static prefix. - Templates (base, navigation, card) switch to asset_src(...) and gate the card image branch on cache or external_url. - 16 unit tests cover every probe/cache/fallback branch; one live integration test exercises the canonical https://file.infinito.nexus/assets/img/logo.png to prove the probe-first path works end-to-end (cache dir stays empty). - config.sample.yaml: new Infinito.Nexus card driven by the same canonical asset URL. Single source of truth for IMAGE_NAME and PORT ---------------------------------------------- - env.example is now the only place the literal values live. - Makefile and docker-compose.yml reference \$(IMAGE_NAME) / \${IMAGE_NAME:?…} (same for PORT); no defaults, no silent fallbacks. - New make env / make config bootstrap .env / app/config.yaml from their checked-in templates. Idempotent. - All container-using targets depend on the two bootstrap targets so a fresh checkout runs in a single invocation. - Recipes source .env at recipe-execution time so they pick up a freshly bootstrapped .env in the same make invocation. README ------ - Screenshot added under the title. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-18 12:19:15 +02:00
def template_asset_src(asset):
return asset_src(asset, lambda filename: url_for("static", filename=filename))
return dict(include_svg=include_svg, asset_src=template_asset_src)
2025-07-07 19:14:29 +02:00
2025-01-08 14:59:36 +01:00
@app.before_request
def reload_config_in_dev():
2025-07-01 23:28:25 +02:00
"""Reload config and recache icons before each request in development mode."""
2025-01-09 12:20:57 +01:00
if FLASK_ENV == "development":
load_config(app)
2025-07-01 23:28:25 +02:00
cache_icons_and_logos(app)
@app.route("/")
2025-01-08 14:59:36 +01:00
def index():
2025-07-01 23:28:25 +02:00
"""Render the main index page."""
2025-03-18 14:10:30 +01:00
cards = app.config["cards"]
lg_classes, md_classes = compute_card_classes(cards)
2025-07-05 20:08:00 +02:00
apod_bg = None
api_key = app.config.get("NASA_API_KEY")
if api_key:
resp = requests.get(
"https://api.nasa.gov/planetary/apod",
params={"api_key": api_key},
timeout=10,
2025-07-05 20:08:00 +02:00
)
if resp.ok:
data = resp.json()
if data.get("media_type") == "image":
apod_bg = data.get("url")
2025-03-18 14:10:30 +01:00
return render_template(
"pages/index.html.j2",
cards=cards,
company=app.config["company"],
navigation=app.config["navigation"],
platform=app.config["platform"],
lg_classes=lg_classes,
2025-07-05 20:08:00 +02:00
md_classes=md_classes,
apod_bg=apod_bg,
2025-03-18 14:10:30 +01:00
)
2025-01-08 14:59:36 +01:00
2025-01-08 14:59:36 +01:00
if __name__ == "__main__":
app.run(
debug=(FLASK_ENV == "development"),
host=FLASK_HOST,
port=FLASK_PORT,
use_reloader=False,
)