fix: new loggedroute

This commit is contained in:
Shinwoo PARK 2023-12-03 21:18:39 +09:00
parent 13b858c547
commit 85d538111d
4 changed files with 57 additions and 47 deletions

View File

@ -1 +1 @@
{"version":3,"file":"logged.d.ts","sourceRoot":"","sources":["../../src/logged.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,iBAAiB,EACjB,YAAY,EACb,MAAM,gBAAgB,CAAC;AAmBxB,wBAAgB,gBAAgB,CAAC,OAAO,CAAC,EAAE,YAAY,YACrC,GAAG,UAqBpB;AAED,wBAAgB,gBAAgB,IAAI,CAAC,MAAM,EAAE,GAAG,KAAK,IAAI,CAAC;AAC1D,wBAAgB,gBAAgB,CAC9B,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,GACxB,CAAC,MAAM,EAAE,GAAG,KAAK,IAAI,CAAC;AACzB,wBAAgB,gBAAgB,CAC9B,OAAO,EAAE,iBAAiB,GACzB,CAAC,MAAM,EAAE,GAAG,KAAK,IAAI,CAAC;AA0BzB,wBAAgB,cAAc,CAAC,CAAC,SAAS,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,EACpD,OAAO,EAAE,GAAG,EACZ,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,uBAAuB,CAAC,CAAC,GAAG,IAAI,EAAE,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,QA4EhE;AAED,wBAAgB,WAAW,CAAC,CAAC,SAAS,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,MAAM,aAEtD,GAAG,OACP,MAAM,gDACmC,CAAC,KAAK,QAAQ,CAAC,CAAC,WAsEjE"} {"version":3,"file":"logged.d.ts","sourceRoot":"","sources":["../../src/logged.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,iBAAiB,EACjB,YAAY,EACb,MAAM,gBAAgB,CAAC;AAmBxB,wBAAgB,gBAAgB,CAAC,OAAO,CAAC,EAAE,YAAY,YACrC,GAAG,UAqBpB;AAED,wBAAgB,gBAAgB,IAAI,CAAC,MAAM,EAAE,GAAG,KAAK,IAAI,CAAC;AAC1D,wBAAgB,gBAAgB,CAC9B,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,GACxB,CAAC,MAAM,EAAE,GAAG,KAAK,IAAI,CAAC;AACzB,wBAAgB,gBAAgB,CAC9B,OAAO,EAAE,iBAAiB,GACzB,CAAC,MAAM,EAAE,GAAG,KAAK,IAAI,CAAC;AA6BzB,wBAAgB,cAAc,CAAC,CAAC,SAAS,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,EACpD,OAAO,EAAE,GAAG,EACZ,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,uBAAuB,CAAC,CAAC,GAAG,IAAI,EAAE,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,QA2EhE;AAED,wBAAgB,WAAW,CAAC,CAAC,SAAS,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,MAAM,aAEtD,GAAG,OACP,MAAM,gDACmC,CAAC,KAAK,QAAQ,CAAC,CAAC,WA0EjE"}

12
dist/lib/logged.js vendored
View File

@ -19,7 +19,6 @@ function loggerInit(_target) {
} }
function LoggedInjectable(options) { function LoggedInjectable(options) {
return (target) => { return (target) => {
target = (0, common_1.Injectable)(options)(target);
loggerInit(target.prototype); loggerInit(target.prototype);
const logger = target.prototype.logger; const logger = target.prototype.logger;
const methods = Object.getOwnPropertyNames(target.prototype); const methods = Object.getOwnPropertyNames(target.prototype);
@ -32,16 +31,18 @@ function LoggedInjectable(options) {
}); });
} }
}); });
(0, common_1.Injectable)(options)(target);
}; };
} }
exports.LoggedInjectable = LoggedInjectable; exports.LoggedInjectable = LoggedInjectable;
function LoggedController(param) { function LoggedController(param) {
return (target) => { return (target) => {
target = (0, common_1.Controller)(param)(target);
loggerInit(target.prototype); loggerInit(target.prototype);
const logger = target.prototype.logger; const logger = target.prototype.logger;
const methods = Object.getOwnPropertyNames(target.prototype); const methods = Object.getOwnPropertyNames(target.prototype);
logger.log(JSON.stringify(methods));
methods.forEach((method) => { methods.forEach((method) => {
logger.log(method);
if (method !== "constructor" && if (method !== "constructor" &&
typeof target.prototype[method] === "function") { typeof target.prototype[method] === "function") {
logger.log(`LoggedRoute applied to ${method}`); logger.log(`LoggedRoute applied to ${method}`);
@ -50,6 +51,7 @@ function LoggedController(param) {
}); });
} }
}); });
(0, common_1.Controller)(param)(target);
}; };
} }
exports.LoggedController = LoggedController; exports.LoggedController = LoggedController;
@ -102,9 +104,11 @@ function LoggedRoute(route) {
const logger = _target.logger; const logger = _target.logger;
let fullRoute = `${_target.constructor.name}/`; let fullRoute = `${_target.constructor.name}/`;
const fn = descriptor.value; const fn = descriptor.value;
if (!fn) if (!fn || typeof fn !== "function") {
logger.warn(`LoggedRoute decorator applied to non-function property: ${key}`);
return; return;
descriptor.value = async function (...args) { }
_target[key] = async function (...args) {
const scopedLoggerInjectableParam = Reflect.getOwnMetadata(reflected_1.scopedLogger, _target, key); const scopedLoggerInjectableParam = Reflect.getOwnMetadata(reflected_1.scopedLogger, _target, key);
fullRoute += route || Reflect.getMetadata("path", fn); fullRoute += route || Reflect.getMetadata("path", fn);
if (typeof scopedLoggerInjectableParam !== "undefined" && if (typeof scopedLoggerInjectableParam !== "undefined" &&

File diff suppressed because one or more lines are too long

View File

@ -25,8 +25,6 @@ function loggerInit(_target: any) {
export function LoggedInjectable(options?: ScopeOptions) { export function LoggedInjectable(options?: ScopeOptions) {
return (target: any) => { return (target: any) => {
target = Injectable(options)(target);
loggerInit(target.prototype); loggerInit(target.prototype);
const logger = target.prototype.logger; const logger = target.prototype.logger;
@ -44,6 +42,8 @@ export function LoggedInjectable(options?: ScopeOptions) {
}); });
} }
}); });
Injectable(options)(target);
}; };
} }
@ -57,15 +57,16 @@ export function LoggedController(
export function LoggedController(param?: any): (target: any) => void { export function LoggedController(param?: any): (target: any) => void {
return (target: any) => { return (target: any) => {
target = Controller(param)(target);
loggerInit(target.prototype); loggerInit(target.prototype);
const logger = target.prototype.logger; const logger = target.prototype.logger;
const methods = Object.getOwnPropertyNames(target.prototype); const methods = Object.getOwnPropertyNames(target.prototype);
logger.log(JSON.stringify(methods))
methods.forEach((method) => { methods.forEach((method) => {
logger.log(method)
if ( if (
method !== "constructor" && method !== "constructor" &&
typeof target.prototype[method] === "function" typeof target.prototype[method] === "function"
@ -76,6 +77,8 @@ export function LoggedController(param?: any): (target: any) => void {
}); });
} }
}); });
Controller(param)(target);
}; };
} }
@ -97,7 +100,7 @@ export function LoggedFunction<F extends Array<any>, R>(
return; return;
} }
_target[key] = async function (...args: F) { _target[key] = async function(...args: F) {
const scopedLoggerInjectableParam: number = Reflect.getOwnMetadata( const scopedLoggerInjectableParam: number = Reflect.getOwnMetadata(
scopedLogger, scopedLogger,
_target, _target,
@ -129,23 +132,22 @@ export function LoggedFunction<F extends Array<any>, R>(
); );
injectedLogger.log( injectedLogger.log(
`CALL ${key} ${ `CALL ${key} ${loggedParams && loggedParams.length > 0
loggedParams && loggedParams.length > 0 ? "WITH " +
? "WITH " + (
( await Promise.all(
await Promise.all( loggedParams.map(
loggedParams.map( async ({ name, index, include, exclude }) =>
async ({ name, index, include, exclude }) => name +
name + "=" +
"=" + (await objectContainedLogged(args[index], {
(await objectContainedLogged(args[index], { include,
include, exclude,
exclude, }))
})) )
) )
) ).join(", ")
).join(", ") : ""
: ""
}` }`
); );
@ -173,9 +175,14 @@ export function LoggedRoute<F extends Array<any>, R>(route?: string) {
let fullRoute = `${_target.constructor.name}/`; let fullRoute = `${_target.constructor.name}/`;
const fn = descriptor.value; const fn = descriptor.value;
if (!fn) return; if (!fn || typeof fn !== "function") {
logger.warn(
`LoggedRoute decorator applied to non-function property: ${key}`
);
return;
}
descriptor.value = async function (...args: F) { _target[key] = async function(...args: F) {
const scopedLoggerInjectableParam: number = Reflect.getOwnMetadata( const scopedLoggerInjectableParam: number = Reflect.getOwnMetadata(
scopedLogger, scopedLogger,
_target, _target,
@ -204,23 +211,22 @@ export function LoggedRoute<F extends Array<any>, R>(route?: string) {
); );
injectedLogger.log( injectedLogger.log(
`HIT HTTP ${fullRoute} (${key}) ${ `HIT HTTP ${fullRoute} (${key}) ${loggedParams && loggedParams.length > 0
loggedParams && loggedParams.length > 0 ? "WITH " +
? "WITH " + (
( await Promise.all(
await Promise.all( loggedParams.map(
loggedParams.map( async ({ name, index, include, exclude }) =>
async ({ name, index, include, exclude }) => name +
name + "=" +
"=" + (await objectContainedLogged(args[index], {
(await objectContainedLogged(args[index], { include,
include, exclude,
exclude, }))
})) )
) )
) ).join(", ")
).join(", ") : ""
: ""
}` }`
); );