gateway: nginx-hosts the full Swagger UI dist, core drops the fallback
Extends the theme-only alias into the full shape mara asked for on the
PR thread:
1. nix/packages/swagger-ui-dist.nix — plain vendored Swagger UI 5.17.14
dist, sourced directly from the swagger-ui-dist npm package (same
release the Rust utoipa-swagger-ui-vendored crate ships, verified
via matching gitHead commit) rather than through Cargo.lock/cargo.
2. nix/packages/swagger-ui-theme.nix — overlays our 3 override files
(index.html, hyperhive-theme.css, and now swagger-initializer.js)
onto (1).
3. vhosts.nix's swaggerUiLocations now prefix-matches the whole
/api/docs/ tree (not just 2 exact-match files) straight from (2),
plus a `= /api/docs` redirect shim since hive-c0re's own redirect
is going away too. /api/openapi.json (outside this prefix) keeps
proxying to c0re unchanged — that's the one thing that stays
dynamic.
New file swagger-initializer.js needed hand-verification: the plain
vendored copy hardcodes the swagger.io petstore demo URL.
utoipa-swagger-ui normally rewrites it per-request from a {{config}}
placeholder its own build.rs injects — since hive-c0re won't be
serving this file at all once its SwaggerUi mount is removed, that
rewrite has to be baked in statically here instead. Derived by
actually running build.rs's own two transforms (strip the default
layout: line, splice the Config JSON in place of the url/deepLinking
block) against the real vendored file, not typed from scratch —
verified byte-for-byte against what format_config() would produce for
hive-c0re's actual single-URL config, and checked with node --check.
Coordinated with damocles: he's taking the corresponding hive-c0re
side (drop the utoipa-swagger-ui dependency + SwaggerUi::new(...)
mount, keep only the plain /api/openapi.json route) once this lands.
Verified: nix fmt clean; nix build .#swagger-ui-theme succeeds, output
byte-matches the checked-in override files and node --check passes on
swagger-initializer.js; a full nixosSystem eval of nixosModules.default
resolves both new locations (/api/docs/ aliased to the right store
path, = /api/docs redirecting) with auth threaded through.
This commit is contained in:
parent
de1659d10e
commit
1bc9c18504
8 changed files with 166 additions and 76 deletions
|
|
@ -18,6 +18,13 @@ let
|
|||
inherit (nixpkgs.lib) nixosSystem;
|
||||
};
|
||||
|
||||
# Plain vendored Swagger UI dist (./swagger-ui-dist.nix) + the
|
||||
# hyperhive-themed overlay on top (./swagger-ui-theme.nix) — bound
|
||||
# here (not just inline in the attrset below) so the theme
|
||||
# derivation can take the dist derivation as an explicit input.
|
||||
swagger-ui-dist = pkgs.callPackage ./swagger-ui-dist.nix { };
|
||||
swagger-ui-theme = pkgs.callPackage ./swagger-ui-theme.nix { inherit swagger-ui-dist; };
|
||||
|
||||
# Every per-binary package: name → description. The single source of
|
||||
# truth for the bin list — it drives the per-bin extractor packages
|
||||
# and the `default` bundle, so adding a binary is one entry here.
|
||||
|
|
@ -158,11 +165,13 @@ in
|
|||
xdg-icons = pkgs.callPackage ./hive-xdg-icons.nix {
|
||||
hyperhiveSvg = ../../branding/hyperhive.svg;
|
||||
};
|
||||
# Swagger UI re-theme static override files — see
|
||||
# ./swagger-ui-theme.nix. The gateway `alias`es these straight from
|
||||
# the store; a theme tweak is a gateway config change, not a
|
||||
# hive-c0re rebuild.
|
||||
swagger-ui-theme = pkgs.callPackage ./swagger-ui-theme.nix { };
|
||||
# Swagger UI: plain vendored dist + the hyperhive-themed overlay —
|
||||
# see ./swagger-ui-dist.nix / ./swagger-ui-theme.nix (both computed
|
||||
# above, in `let`). The gateway serves `swagger-ui-theme`'s full
|
||||
# tree straight from the store at /api/docs/; a theme tweak is a
|
||||
# gateway config change, not a hive-c0re rebuild. `swagger-ui-dist`
|
||||
# is exposed too since it's independently useful/inspectable.
|
||||
inherit swagger-ui-dist swagger-ui-theme;
|
||||
|
||||
# Pre-built per-container system closures. Exposed as packages
|
||||
# so operators can `nix build .#agent-base-toplevel` (or wire
|
||||
|
|
|
|||
47
nix/packages/swagger-ui-dist.nix
Normal file
47
nix/packages/swagger-ui-dist.nix
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
stdenv,
|
||||
fetchurl,
|
||||
}:
|
||||
|
||||
# Pure vendored Swagger UI 5.17.14 static dist — no hyperhive theming
|
||||
# (see ./swagger-ui-theme.nix for that layer). Deliberately NOT sourced
|
||||
# via the Rust `utoipa-swagger-ui-vendored` crate / Cargo.lock (per the
|
||||
# operator's ask: a nix package that just contains the plain static
|
||||
# dist, not fetched via cargo) — hive-c0re no longer needs to know this
|
||||
# exists at all once the gateway hosts it directly.
|
||||
#
|
||||
# Sourced straight from the `swagger-ui-dist` npm package, which ships
|
||||
# exactly the built `dist/` files (no source, no build step needed) at
|
||||
# the same release as the Rust ecosystem's vendored copy — verified by
|
||||
# comparing this tarball's recorded `gitHead` (in its `package.json`,
|
||||
# `74ed0adebfc9c8dd0de2bf8e81495b022a66c083`) against the commit the
|
||||
# `utoipa-swagger-ui-vendored` crate's own pinned zip was built from
|
||||
# (same hash, printed by `unzip -l` on that zip's first entry).
|
||||
stdenv.mkDerivation {
|
||||
pname = "swagger-ui-dist";
|
||||
version = "5.17.14";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-5.17.14.tgz";
|
||||
hash = "sha512-CVbSfaLpstV65OnSjbXfVd6Sta3q3F7Cj/yYuvHMp1P90LztOLs6PfUnKEVAeiIVQt9u2SaPwv0LiH/OyMjHRw==";
|
||||
};
|
||||
|
||||
sourceRoot = "package";
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out
|
||||
# The npm package also carries a few node-consumption conveniences
|
||||
# (package.json, index.js, absolute-path.js, README/LICENSE/NOTICE)
|
||||
# alongside the actual browser dist — only copy what a web server
|
||||
# should ever expose.
|
||||
cp *.html *.css *.css.map *.js *.js.map *.png $out/
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Vendored Swagger UI 5.17.14 static dist (unthemed), from the swagger-ui-dist npm package";
|
||||
homepage = "https://forge.darkest.space/hyperhive/hyperhive";
|
||||
};
|
||||
}
|
||||
|
|
@ -1,49 +1,58 @@
|
|||
{
|
||||
stdenv,
|
||||
swagger-ui-dist,
|
||||
}:
|
||||
|
||||
# The hand-authored Swagger UI re-theme files (`hive-c0re/swagger-ui-
|
||||
# theme/`), shipped as a standalone derivation so the gateway can
|
||||
# `alias` them straight from the nix store instead of hive-c0re's own
|
||||
# build serving them — see nix/host-modules/hive-gateway/vhosts.nix's
|
||||
# `swaggerThemeLocations`. This is what lets a CSS tweak ship as a
|
||||
# gateway config change (activate the gateway container) rather than a
|
||||
# hive-c0re rebuild+restart: the two files nginx exact-matches
|
||||
# (`/api/docs/` and `/api/docs/hyperhive-theme.css`) come from here;
|
||||
# every other Swagger UI asset (bundle.js, openapi.json, favicons, …)
|
||||
# still falls through the existing `/api/` prefix proxy to hive-c0re's
|
||||
# own vendored (unthemed) `utoipa-swagger-ui` embed, unchanged.
|
||||
# hyperhive's Catppuccin Mocha re-theme of Swagger UI: overlays our 3
|
||||
# hand-authored override files (`hive-c0re/swagger-ui-theme/`) onto
|
||||
# the plain vendored dist (./swagger-ui-dist.nix). This is the FULL
|
||||
# tree hive-gateway's nginx serves at `/api/docs/` — hive-c0re hosts
|
||||
# none of it, only the dynamic `/api/openapi.json` (see
|
||||
# nix/host-modules/hive-gateway/vhosts.nix).
|
||||
#
|
||||
# Pure data: copied verbatim, no build step.
|
||||
#
|
||||
# Output layout:
|
||||
# $out/index.html — themed index.html Swagger UI page
|
||||
# $out/hyperhive-theme.css — the re-theme, consumes --baseNN vars
|
||||
# from the dashboard's own colors.css
|
||||
# (loaded via an absolute /static/
|
||||
# colors.css <link>, same origin)
|
||||
|
||||
# Output layout: every file from `swagger-ui-dist`, with 3 replaced:
|
||||
# index.html — adds <link>s for colors.css (live stylix
|
||||
# theme, same origin) + hyperhive-theme.css
|
||||
# hyperhive-theme.css — new; the re-theme itself, consumes
|
||||
# --baseNN vars from colors.css
|
||||
# swagger-initializer.js — hardcodes `url: "/api/openapi.json"`. The
|
||||
# plain vendored copy points at the
|
||||
# swagger.io petstore demo; normally
|
||||
# `utoipa-swagger-ui`'s `serve()` rewrites
|
||||
# this file per-request from a `{{config}}`
|
||||
# placeholder it injects at its OWN build
|
||||
# time (see that crate's `build.rs`'s
|
||||
# `replace_default_url_with_config` +
|
||||
# `format_config`). hive-c0re no longer
|
||||
# serves this file at all, so that rewrite
|
||||
# has to happen here instead — this copy is
|
||||
# hand-verified to byte-match what
|
||||
# `format_config` would produce for
|
||||
# hive-c0re's actual config (single unnamed
|
||||
# url, otherwise all `Config` defaults): the
|
||||
# same transform applied to the real
|
||||
# vendored file, not hand-typed from
|
||||
# scratch.
|
||||
stdenv.mkDerivation {
|
||||
pname = "hyperhive-swagger-ui-theme";
|
||||
version = "0.1.0";
|
||||
# Narrow src keeps this derivation's input hash decoupled from the
|
||||
# rest of the tree — a theme tweak only re-hashes this.
|
||||
src = ../../hive-c0re/swagger-ui-theme;
|
||||
|
||||
dontUnpack = true;
|
||||
dontBuild = true;
|
||||
dontConfigure = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out
|
||||
cp -r ./* $out/
|
||||
cp -r ${swagger-ui-dist}/. $out/
|
||||
chmod -R u+w $out
|
||||
install -m644 ${../../hive-c0re/swagger-ui-theme/index.html} $out/index.html
|
||||
install -m644 ${../../hive-c0re/swagger-ui-theme/hyperhive-theme.css} $out/hyperhive-theme.css
|
||||
install -m644 ${../../hive-c0re/swagger-ui-theme/swagger-initializer.js} $out/swagger-initializer.js
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
dontFixup = true;
|
||||
|
||||
meta = {
|
||||
description = "hyperhive Swagger UI Catppuccin Mocha re-theme (static override files)";
|
||||
description = "hyperhive Swagger UI Catppuccin Mocha re-theme — full static dist, nginx-served at /api/docs/";
|
||||
homepage = "https://forge.darkest.space/hyperhive/hyperhive";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue