Add reveal-secret endpoint — re-verifies admin password before returning CENTRAL_AUTH_SECRET

Used by the settings UI so operators can securely copy the shared session secret
into Hosted Tables without ever exposing it in logs or config files.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-15 15:46:39 +00:00
parent 0cd9a34cf0
commit ec0eef7de0

View file

@ -1,5 +1,5 @@
import { pool } from '../db.js'
import { hashPassword, verifyToken } from '../jwt.js'
import { hashPassword, verifyToken, verifyPassword } from '../jwt.js'
import { getAllDepartments, getLocationsByIds, getSyncConfig, findEmployeeByEmail, getEmployeeDepartments } from '../workforce.js'
import { syncAllWorkforceUsers } from '../sync.js'
@ -407,4 +407,25 @@ export async function adminRoutes(app) {
return reply.status(502).send({ error: err.message })
}
})
// Re-authenticates the calling admin then returns CENTRAL_AUTH_SECRET.
// Used by the Settings UI so operators can copy the secret into Hosted Tables.
app.post('/reveal-secret', async (request, reply) => {
const { password } = request.body || {}
if (!password) return reply.status(400).send({ error: 'Password required' })
const adminId = request.adminPayload.id
const { rows: [user] } = await pool.query(
'SELECT password_hash FROM users WHERE id = $1 AND active = true AND is_admin = true',
[adminId]
)
if (!user || !(await verifyPassword(password, user.password_hash))) {
return reply.status(401).send({ error: 'Incorrect password' })
}
const secret = process.env.CENTRAL_AUTH_SECRET
if (!secret) return reply.status(503).send({ error: 'CENTRAL_AUTH_SECRET is not set on this server' })
return { secret }
})
}