111f5d9df7
The mesh API (routes/mesh.js) had zero UI -- minting a join token, joining a remote gateway, or seeing what's meshed all required calling the API directly. New Mesh page (nav: Dashboard/Sessions/WireGuard/ Mesh/Audit): - This Gateway card: interface name, kernel-vs-userspace WireGuard mode (wireguard-go fallback), meshed-gateway count. - Mint a Join Token: calls POST /api/mesh/join-tokens, shows the single-use token once. - Join a Remote Gateway's Mesh: calls POST /api/mesh/join with a remote endpoint + token. - Meshed Gateways table: site, mesh index, mesh subnet, endpoint, public key, last seen -- including this gateway's own self-entry. EJS compile verified; jump-host's existing test suite (34 tests) still passes. Not yet visually driven in a browser the way sso-manager-node's modal was (jump-host's OIDC-based admin auth is a heavier lift to stand up for a one-off check) -- route registration, EJS compilation, and the API layer underneath are verified; the actual click-through is not.
54 lines
2.3 KiB
JavaScript
54 lines
2.3 KiB
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
const express = require('express');
|
|
const router = require('express').Router();
|
|
const conf = require('@simpleworkjs/conf');
|
|
const buildInfo = require('../utils/build_info');
|
|
const registry = require('../services/session_registry');
|
|
const { safeInternalPath } = require('@simpleworkjs/oidc-client');
|
|
const { mountStaticModules } = require('@simpleworkjs/app-stack');
|
|
|
|
const values = {
|
|
title: conf.environment !== 'production' ? 'dev' : '',
|
|
titleIcon: conf.environment !== 'production' ? '<i class="fa-brands fa-dev"></i>' : '',
|
|
name: conf.name,
|
|
logo: conf.logo,
|
|
// The SSH front door's port -- the dashboard's "quick jump" copy buttons
|
|
// need this to build a real, working `ssh ...` command (the web UI and
|
|
// SSH front door share a hostname but not a port).
|
|
sshPort: (conf.ssh && conf.ssh.listenPort) || 22,
|
|
...buildInfo,
|
|
};
|
|
|
|
// Serve front-end vendor libraries straight from node_modules (same convention
|
|
// as the sibling apps), and the app's own JS/CSS/img from public/.
|
|
mountStaticModules(router, {
|
|
root: path.join(__dirname, '..'),
|
|
deps: ['bootstrap', 'mustache', 'jquery', '@fortawesome', 'moment', 'jq-repeat', '@simpleworkjs/frontend'],
|
|
});
|
|
|
|
// Liveness probe — no auth.
|
|
router.get('/health', (req, res) => {
|
|
res.json({status: 'ok', activeSessions: registry.count(), buildVersion: buildInfo.buildVersion, buildHash: buildInfo.buildHash});
|
|
});
|
|
|
|
router.get('/', (req, res) => res.redirect(302, '/dashboard'));
|
|
|
|
// Page shells. The client framework (app-base.js + app.js) loads data via the
|
|
// authenticated /api/* endpoints and gates the UI on /api/user/me, so these
|
|
// render unauthenticated (like the sibling apps) and the client redirects to
|
|
// /login when there's no valid session.
|
|
router.get('/login', (req, res) => res.render('login', {
|
|
...values,
|
|
redirect: safeInternalPath(req.query.redirect || '/'),
|
|
oidcEnabled: !!(conf.oidc && conf.oidc.enabled),
|
|
}));
|
|
router.get('/dashboard', (req, res) => res.render('dashboard', {...values}));
|
|
router.get('/sessions', (req, res) => res.render('sessions', {...values}));
|
|
router.get('/audit', (req, res) => res.render('audit', {...values}));
|
|
router.get('/wireguard', (req, res) => res.render('wireguard', {...values}));
|
|
router.get('/mesh', (req, res) => res.render('mesh', {...values}));
|
|
|
|
module.exports = router;
|