e482f52f10
The uid_-_target grammar-mode SSH command was documented in the README but nowhere in the UI itself -- users had to remember/reconstruct the format by hand. Adds a "Quick Jump" card with a one-click-copy command for the interactive-picker form, plus a copy button on every row of "Hosts you can reach" that copies the exact grammar-mode command for that specific host (using the logged-in user's own uid, so it's ready to paste and run as-is). conf.ssh.listenPort is now passed to the dashboard view so the command can include the right -p flag when the SSH front door isn't on the default port 22 (theta-env, for example, exposes it on 2222). Verified live: logged in as the local admin user, confirmed the Quick Jump command and a per-host command both populate correctly and copy to the clipboard (toast confirmation), and that the per-host command matches the exact uid_-_target grammar the SSH server's parseUsername expects.
52 lines
2.1 KiB
JavaScript
52 lines
2.1 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}));
|
|
|
|
module.exports = router;
|