2021-01-02 01:27:01 +03:00
|
|
|
import { InstanceWrapper } from '@nestjs/core/injector/instance-wrapper';
|
|
|
|
import { Module } from '@nestjs/core/injector/module';
|
2021-01-03 16:11:17 +03:00
|
|
|
import { flattenDeep, identity, isEmpty } from 'lodash';
|
2021-01-02 01:27:01 +03:00
|
|
|
|
|
|
|
export class BaseExplorerService {
|
|
|
|
getModules(
|
|
|
|
modulesContainer: Map<string, Module>,
|
|
|
|
include: Function[],
|
|
|
|
): Module[] {
|
|
|
|
if (!include || isEmpty(include)) {
|
|
|
|
return [...modulesContainer.values()];
|
|
|
|
}
|
|
|
|
const whitelisted = this.includeWhitelisted(modulesContainer, include);
|
|
|
|
return whitelisted;
|
|
|
|
}
|
|
|
|
|
|
|
|
includeWhitelisted(
|
|
|
|
modulesContainer: Map<string, Module>,
|
|
|
|
include: Function[],
|
|
|
|
): Module[] {
|
|
|
|
const modules = [...modulesContainer.values()];
|
2021-01-05 00:32:31 +03:00
|
|
|
return modules.filter(({ metatype }) => include.includes(metatype));
|
2021-01-02 01:27:01 +03:00
|
|
|
}
|
|
|
|
|
2021-01-03 16:11:17 +03:00
|
|
|
flatMap<T>(
|
2021-01-02 01:27:01 +03:00
|
|
|
modules: Module[],
|
|
|
|
callback: (instance: InstanceWrapper, moduleRef: Module) => T | T[],
|
|
|
|
): T[] {
|
|
|
|
const invokeMap = () => {
|
|
|
|
return modules.map((moduleRef) => {
|
|
|
|
const providers = [...moduleRef.providers.values()];
|
|
|
|
return providers.map((wrapper) => callback(wrapper, moduleRef));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
return flattenDeep(invokeMap()).filter(identity);
|
|
|
|
}
|
|
|
|
}
|