aa3b3ed515
The web management UI was a bespoke minimal theme with LDAP-bind login.
Rebuild it to match the SSO Manager and Proxy — same stack, same look/feel,
same auth model. The SSH bridge, audit, metrics, and access logic are
unchanged; this is purely the web layer.
Frontend (mirrors proxy/sso):
- Express + EJS with the shared top.ejs/bottom.ejs shell, Bootstrap 5,
jQuery, jq-repeat, FontAwesome, Socket.IO, and the shared app-base.js /
val.js client framework (copied verbatim). Vendor libs served from
node_modules via /static-modules; app assets via /static.
- Dashboard / Sessions / Audit pages render in the common look/feel,
loading data through the authenticated /api/* endpoints.
Auth (mirrors proxy):
- OIDC against the SSO (utils/oidc.js + routes/auth.js + models/oidc_state)
plus a local anti-lockout admin (models/user_redis.js, bootstrapped from
auth.adminUsers[0] / auth.localAdminPass). AuthToken sessions carry the
group snapshot; middleware gates the data API on adminGroups or the local
admin. New config: oidc{} + auth.adminUsers/localAdminPass.
- /api/user/me drives the client login state; "Log in with SSO" hidden when
oidc.enabled is false.
Verified end to end: local admin login -> token -> /api/user/me isAdmin,
metrics/sessions/audit 200 with token / 401 without / 401 bad password;
static + page shells serve; 26 tests green.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
22 lines
933 B
JavaScript
22 lines
933 B
JavaScript
'use strict';
|
|
|
|
// Jump-host page controllers. app.api / app.auth come from app-base.js (the
|
|
// shared client framework); this adds the jump-host data calls and the small
|
|
// render helpers each page uses.
|
|
|
|
app.jump = (function(app){
|
|
function metrics(cb){ app.api.get('metrics', cb); }
|
|
function sessions(cb){ app.api.get('sessions', cb); }
|
|
function audit(query, cb){
|
|
var qs = $.param(query || {});
|
|
app.api.get('audit' + (qs ? '?' + qs : ''), cb);
|
|
}
|
|
return {metrics: metrics, sessions: sessions, audit: audit};
|
|
})(app);
|
|
|
|
// Shared render helpers.
|
|
app.jump.fmtTime = function(ts){ return ts ? moment(Number(ts)).format('YYYY-MM-DD HH:mm:ss') : '—'; };
|
|
app.jump.esc = function(s){ return $('<div>').text(s == null ? '' : String(s)).html(); };
|
|
app.jump.result = function(e){ return e.success ? '<span class="badge bg-success">ok</span>'
|
|
: '<span class="badge bg-danger">' + app.jump.esc(e.failReason || 'fail') + '</span>'; };
|