v2.2.3
This commit is contained in:
parent
56dff1cf69
commit
f232300aed
6
dist/lib/functions.d.ts
vendored
6
dist/lib/functions.d.ts
vendored
@ -1,7 +1,13 @@
|
|||||||
export declare const notIncludedSymbol: unique symbol;
|
export declare const notIncludedSymbol: unique symbol;
|
||||||
export declare function includeOrExcludeObject(ocv: any, paths: string[], currentPath: string[], include: boolean): any;
|
export declare function includeOrExcludeObject(ocv: any, paths: string[], currentPath: string[], include: boolean): any;
|
||||||
|
export declare function includeOrExcludeObjectSync(ocv: any, paths: string[], currentPath: string[], include: boolean): any;
|
||||||
export default function objectContainedLogged(ocv: any, options?: {
|
export default function objectContainedLogged(ocv: any, options?: {
|
||||||
include?: string[];
|
include?: string[];
|
||||||
exclude: string[];
|
exclude: string[];
|
||||||
}): Promise<string>;
|
}): Promise<string>;
|
||||||
|
export declare function objectContainedLoggedSync(ocv: any, options?: {
|
||||||
|
include?: string[];
|
||||||
|
exclude: string[];
|
||||||
|
}): string;
|
||||||
export declare function getItemByPath(obj: object, path: string | string[]): any;
|
export declare function getItemByPath(obj: object, path: string | string[]): any;
|
||||||
|
export declare function getItemByPathSync(obj: object, path: string | string[]): any;
|
||||||
|
51
dist/lib/functions.js
vendored
51
dist/lib/functions.js
vendored
@ -1,6 +1,6 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
exports.getItemByPath = exports.includeOrExcludeObject = exports.notIncludedSymbol = void 0;
|
exports.getItemByPathSync = exports.getItemByPath = exports.objectContainedLoggedSync = exports.includeOrExcludeObjectSync = exports.includeOrExcludeObject = exports.notIncludedSymbol = void 0;
|
||||||
exports.notIncludedSymbol = Symbol("notIncluded");
|
exports.notIncludedSymbol = Symbol("notIncluded");
|
||||||
async function includeOrExcludeObject(ocv, paths, currentPath = [], include // or exclude
|
async function includeOrExcludeObject(ocv, paths, currentPath = [], include // or exclude
|
||||||
) {
|
) {
|
||||||
@ -23,6 +23,27 @@ async function includeOrExcludeObject(ocv, paths, currentPath = [], include // o
|
|||||||
: ocv;
|
: ocv;
|
||||||
}
|
}
|
||||||
exports.includeOrExcludeObject = includeOrExcludeObject;
|
exports.includeOrExcludeObject = includeOrExcludeObject;
|
||||||
|
function includeOrExcludeObjectSync(ocv, paths, currentPath = [], include // or exclude
|
||||||
|
) {
|
||||||
|
if (Array.isArray(ocv)) {
|
||||||
|
return (ocv.map((v, i) => includeOrExcludeObjectSync(v, paths, [...currentPath, i.toString()], include))).filter((e) => e !== exports.notIncludedSymbol);
|
||||||
|
}
|
||||||
|
if (typeof ocv === "object") {
|
||||||
|
return Object.fromEntries(Object.entries(ocv).map(([key, value]) => [
|
||||||
|
key,
|
||||||
|
includeOrExcludeObject(value, paths, [...currentPath, key], include),
|
||||||
|
]).filter((e) => e[1] !== exports.notIncludedSymbol));
|
||||||
|
}
|
||||||
|
const isIncluded = paths.includes(currentPath.join("."));
|
||||||
|
return include
|
||||||
|
? isIncluded // include mode, path is in list
|
||||||
|
? ocv
|
||||||
|
: exports.notIncludedSymbol
|
||||||
|
: isIncluded // exclude mode, path is in list
|
||||||
|
? exports.notIncludedSymbol
|
||||||
|
: ocv;
|
||||||
|
}
|
||||||
|
exports.includeOrExcludeObjectSync = includeOrExcludeObjectSync;
|
||||||
async function objectContainedLogged(ocv, options) {
|
async function objectContainedLogged(ocv, options) {
|
||||||
if (options && typeof ocv === "object") {
|
if (options && typeof ocv === "object") {
|
||||||
if (options.include && options.include.length > 0) {
|
if (options.include && options.include.length > 0) {
|
||||||
@ -40,7 +61,33 @@ async function objectContainedLogged(ocv, options) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.default = objectContainedLogged;
|
exports.default = objectContainedLogged;
|
||||||
|
function objectContainedLoggedSync(ocv, options) {
|
||||||
|
if (options && typeof ocv === "object") {
|
||||||
|
if (options.include && options.include.length > 0) {
|
||||||
|
return JSON.stringify(includeOrExcludeObjectSync(ocv, options.include, [], true));
|
||||||
|
}
|
||||||
|
if (options.exclude && options.exclude.length > 0) {
|
||||||
|
return JSON.stringify(includeOrExcludeObjectSync(ocv, options.exclude, [], false));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (typeof ocv === "object") {
|
||||||
|
return JSON.stringify(ocv);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return `${ocv}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
exports.objectContainedLoggedSync = objectContainedLoggedSync;
|
||||||
async function getItemByPath(obj, path) {
|
async function getItemByPath(obj, path) {
|
||||||
|
const paths = Array.isArray(path) ? path : path.split(".");
|
||||||
|
return Object.keys(obj).includes(paths[0])
|
||||||
|
? typeof obj[paths[0]] === "object"
|
||||||
|
? await getItemByPath(obj[paths[0]], paths.slice(1))
|
||||||
|
: obj[paths[0]]
|
||||||
|
: undefined;
|
||||||
|
}
|
||||||
|
exports.getItemByPath = getItemByPath;
|
||||||
|
function getItemByPathSync(obj, path) {
|
||||||
const paths = Array.isArray(path) ? path : path.split(".");
|
const paths = Array.isArray(path) ? path : path.split(".");
|
||||||
return Object.keys(obj).includes(paths[0])
|
return Object.keys(obj).includes(paths[0])
|
||||||
? typeof obj[paths[0]] === "object"
|
? typeof obj[paths[0]] === "object"
|
||||||
@ -48,4 +95,4 @@ async function getItemByPath(obj, path) {
|
|||||||
: obj[paths[0]]
|
: obj[paths[0]]
|
||||||
: undefined;
|
: undefined;
|
||||||
}
|
}
|
||||||
exports.getItemByPath = getItemByPath;
|
exports.getItemByPathSync = getItemByPathSync;
|
||||||
|
44
dist/lib/logged.js
vendored
44
dist/lib/logged.js
vendored
@ -74,7 +74,7 @@ function LoggedController(param) {
|
|||||||
}
|
}
|
||||||
exports.LoggedController = LoggedController;
|
exports.LoggedController = LoggedController;
|
||||||
function overrideBuild(originalFunction, baseLogger, metadatas, key, returnsData, route) {
|
function overrideBuild(originalFunction, baseLogger, metadatas, key, returnsData, route) {
|
||||||
return async function (...args) {
|
return function (...args) {
|
||||||
let injectedLogger = baseLogger;
|
let injectedLogger = baseLogger;
|
||||||
if (typeof metadatas.scopedLoggerInjectableParam !== "undefined") {
|
if (typeof metadatas.scopedLoggerInjectableParam !== "undefined") {
|
||||||
if (args.length <= metadatas.scopedLoggerInjectableParam ||
|
if (args.length <= metadatas.scopedLoggerInjectableParam ||
|
||||||
@ -88,22 +88,25 @@ function overrideBuild(originalFunction, baseLogger, metadatas, key, returnsData
|
|||||||
}
|
}
|
||||||
injectedLogger.log(`${route ? "HIT HTTP" : "CALL"} ${route ? `${route.fullRoute} (${key})` : key} ${metadatas.loggedParams && metadatas.loggedParams.length > 0
|
injectedLogger.log(`${route ? "HIT HTTP" : "CALL"} ${route ? `${route.fullRoute} (${key})` : key} ${metadatas.loggedParams && metadatas.loggedParams.length > 0
|
||||||
? "WITH " +
|
? "WITH " +
|
||||||
(await Promise.all(metadatas.loggedParams.map(async ({ name, index, include, exclude }) => name +
|
metadatas.loggedParams.map(({ name, index, include, exclude }) => name +
|
||||||
"=" +
|
"=" +
|
||||||
(await (0, functions_1.default)(args[index], {
|
(0, functions_1.objectContainedLoggedSync)(args[index], {
|
||||||
include,
|
include,
|
||||||
exclude,
|
exclude,
|
||||||
}))))).join(", ")
|
})).join(", ")
|
||||||
: ""}`);
|
: ""}`);
|
||||||
try {
|
try {
|
||||||
const r = await originalFunction.call(this, ...args);
|
const r = originalFunction.call(this, ...args);
|
||||||
|
if (originalFunction.constructor.name === 'AsyncFunction' ||
|
||||||
|
(typeof r === 'object' && typeof r['then'] === 'function')) {
|
||||||
|
return r['then']((r) => {
|
||||||
const resultLogged = Array.isArray(returnsData)
|
const resultLogged = Array.isArray(returnsData)
|
||||||
? typeof r === "object"
|
? typeof r === "object"
|
||||||
? "WITH " +
|
? "WITH " +
|
||||||
(await Promise.all(returnsData.map(async ({ name, path }) => {
|
returnsData.map(({ name, path }) => {
|
||||||
const value = await (0, functions_1.getItemByPath)(r, path);
|
const value = (0, functions_1.getItemByPathSync)(r, path);
|
||||||
return value !== undefined ? `${name}=${value}` : "";
|
return value !== undefined ? `${name}=${value}` : "";
|
||||||
})))
|
})
|
||||||
.filter((v) => v.length > 0)
|
.filter((v) => v.length > 0)
|
||||||
.join(", ")
|
.join(", ")
|
||||||
: ""
|
: ""
|
||||||
@ -118,6 +121,31 @@ function overrideBuild(originalFunction, baseLogger, metadatas, key, returnsData
|
|||||||
? `RETURNED HTTP ${route.fullRoute} (${key}) ${resultLogged}`
|
? `RETURNED HTTP ${route.fullRoute} (${key}) ${resultLogged}`
|
||||||
: `RETURNED ${key} ${resultLogged}`);
|
: `RETURNED ${key} ${resultLogged}`);
|
||||||
return r;
|
return r;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
const resultLogged = Array.isArray(returnsData)
|
||||||
|
? typeof r === "object"
|
||||||
|
? "WITH " +
|
||||||
|
returnsData.map(({ name, path }) => {
|
||||||
|
const value = (0, functions_1.getItemByPathSync)(r, path);
|
||||||
|
return value !== undefined ? `${name}=${value}` : "";
|
||||||
|
})
|
||||||
|
.filter((v) => v.length > 0)
|
||||||
|
.join(", ")
|
||||||
|
: ""
|
||||||
|
: typeof returnsData === 'string'
|
||||||
|
? "WITH " + returnsData + "=" + typeof r === "object" ? JSON.stringify(r) : r
|
||||||
|
: returnsData
|
||||||
|
? typeof r === "object"
|
||||||
|
? "WITH " + JSON.stringify(r)
|
||||||
|
: "WITH " + r
|
||||||
|
: "";
|
||||||
|
injectedLogger.log(route
|
||||||
|
? `RETURNED HTTP ${route.fullRoute} (${key}) ${resultLogged}`
|
||||||
|
: `RETURNED ${key} ${resultLogged}`);
|
||||||
|
return r;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
catch (e) {
|
catch (e) {
|
||||||
injectedLogger.error(`WHILE ${route ? `HTTP ${route.fullRoute} (${key})` : key} ERROR ${e}`);
|
injectedLogger.error(`WHILE ${route ? `HTTP ${route.fullRoute} (${key})` : key} ERROR ${e}`);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user