|
| 1 | +import * as fs from 'fs'; |
| 2 | +import { KubeFastifyInstance, OauthFastifyRequest } from '../types'; |
| 3 | +import { LOG_DIR } from './constants'; |
| 4 | +import { getUserName } from './userUtils'; |
| 5 | +import { getNamespaces } from './notebookUtils'; |
| 6 | +import { isUserAdmin } from './adminUtils'; |
| 7 | + |
| 8 | +export type AdminLogRecord = { |
| 9 | + user: string; |
| 10 | + namespace: string; |
| 11 | + action: string; |
| 12 | + endpoint: string; |
| 13 | + isAdmin: boolean; |
| 14 | + needsAdmin: boolean; |
| 15 | +}; |
| 16 | + |
| 17 | +export const logRequestDetails = ( |
| 18 | + fastify: KubeFastifyInstance, |
| 19 | + request: OauthFastifyRequest, |
| 20 | + routeNeedsAdmin?: boolean, |
| 21 | +): void => { |
| 22 | + const data: Omit<AdminLogRecord, 'user' | 'isAdmin'> = { |
| 23 | + namespace: fastify.kube.namespace, |
| 24 | + action: request.method.toUpperCase(), |
| 25 | + endpoint: request.url.replace(request.headers.origin, ''), |
| 26 | + needsAdmin: routeNeedsAdmin ?? false, |
| 27 | + }; |
| 28 | + |
| 29 | + const writeLogAsync = async () => { |
| 30 | + const username = await getUserName(fastify, request); |
| 31 | + const { dashboardNamespace } = getNamespaces(fastify); |
| 32 | + const isAdmin = await isUserAdmin(fastify, username, dashboardNamespace); |
| 33 | + |
| 34 | + writeAdminLog(fastify, { |
| 35 | + ...data, |
| 36 | + user: username, |
| 37 | + isAdmin: isAdmin, |
| 38 | + }); |
| 39 | + }; |
| 40 | + // break the thread so the request is not held up logging / determing permissions of the user |
| 41 | + setTimeout( |
| 42 | + () => writeLogAsync().catch((e) => fastify.log.error(`Error writing log. ${e.message}`)), |
| 43 | + 0, |
| 44 | + ); |
| 45 | +}; |
| 46 | + |
| 47 | +export const writeAdminLog = (fastify: KubeFastifyInstance, data: AdminLogRecord): void => { |
| 48 | + try { |
| 49 | + fs.appendFile( |
| 50 | + `${LOG_DIR}/adminActivity.log`, |
| 51 | + `${new Date().toISOString()}: ${JSON.stringify(data)}\n`, |
| 52 | + function (err) { |
| 53 | + if (err) { |
| 54 | + fastify.log.error(`ERROR: Unable to write to admin log - ${err}`); |
| 55 | + } |
| 56 | + }, |
| 57 | + ); |
| 58 | + } catch (e) { |
| 59 | + fastify.log.error('Failed to log admin activity!'); |
| 60 | + } |
| 61 | +}; |
0 commit comments