diff --git a/src/functions.ts b/src/functions.ts index 2e81e77..103d45c 100644 --- a/src/functions.ts +++ b/src/functions.ts @@ -74,3 +74,13 @@ export default async function objectContainedLogged( return `${ocv}`; } } + +export async function getItemByPath(obj: object, path: string | string[]) { + const paths = Array.isArray(path) ? path : path.split("."); + + return Object.keys(obj).includes(paths[0]) + ? typeof obj[paths[0]] === "object" + ? getItemByPath(obj[paths[0]], paths.slice(1)) + : obj[paths[0]] + : undefined; +} diff --git a/src/logged.ts b/src/logged.ts index 55d88e6..cbd7acb 100644 --- a/src/logged.ts +++ b/src/logged.ts @@ -8,12 +8,14 @@ import { import { ScopedLogger } from "./logger"; import { LoggedParamReflectData, + ReturnsReflectData, ScopeKeyReflectData, forceScopeKey, + returns, scopeKey, } from "./reflected"; import { loggedParam, scopedLogger } from "./reflected"; -import objectContainedLogged from "./functions"; +import objectContainedLogged, { getItemByPath } from "./functions"; import { RequestMethod } from "@nestjs/common"; const RevRequestMethod = [ @@ -126,6 +128,7 @@ function overrideBuild, R>( baseLogger: Logger, metadatas: FunctionMetadata, key: string, + returnsData: ReturnsReflectData[] | true, route?: { fullRoute: string; } @@ -219,10 +222,32 @@ function overrideBuild, R>( try { const r: R = await originalFunction.call(this, ...args); + + const resultLogged = Array.isArray(returnsData) + ? typeof r === "object" + ? "WITH " + + ( + await Promise.all( + returnsData.map(async ({ name, path }) => { + const value = await getItemByPath(r, path); + + return value !== undefined ? `${name}=${value}` : ""; + }) + ) + ) + .filter((v) => v.length > 0) + .join(", ") + : "" + : returnsData + ? typeof r === "object" + ? "WITH " + JSON.stringify(r) + : "WITH " + r + : ""; + injectedLogger.log( route - ? `RETURNED RESPONSE ${route.fullRoute} (${key})` - : `RETURNED ${key}` + ? `RETURNED HTTP ${route.fullRoute} (${key}) ${resultLogged}` + : `RETURNED ${key} ${resultLogged}` ); return r; } catch (e) { @@ -277,6 +302,11 @@ export function LoggedFunction, R>( const shouldScoped: boolean = Reflect.getOwnMetadata(forceScopeKey, fn); + const returnsData: ReturnsReflectData[] | true = Reflect.getOwnMetadata( + returns, + fn + ); + const overrideFunction = overrideBuild( fn, logger, @@ -286,7 +316,8 @@ export function LoggedFunction, R>( scopeKeys, shouldScoped, }, - key + key, + returnsData ); _target[key] = overrideFunction; @@ -349,6 +380,11 @@ export function LoggedRoute, R>(route?: string) { const shouldScoped: boolean = Reflect.getOwnMetadata(forceScopeKey, fn); + const returnsData: ReturnsReflectData[] | true = Reflect.getOwnMetadata( + returns, + fn + ); + const overrideFunction = overrideBuild( fn, logger, @@ -359,6 +395,7 @@ export function LoggedRoute, R>(route?: string) { shouldScoped, }, key, + returnsData, { fullRoute, }