mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
75 lines
2.2 KiB
TypeScript
75 lines
2.2 KiB
TypeScript
import { OnApplicationShutdown } from '@nestjs/common';
|
|
import { isFunction, isNil } from '@nestjs/common/utils/shared.utils';
|
|
import { iterate } from 'iterare';
|
|
import {
|
|
getNonTransientInstances,
|
|
getTransientInstances,
|
|
} from '../injector/helpers/transient-instances';
|
|
import { InstanceWrapper } from '../injector/instance-wrapper';
|
|
import { Module } from '../injector/module';
|
|
|
|
/**
|
|
* Checks if the given instance has the `onApplicationShutdown` function
|
|
*
|
|
* @param instance The instance which should be checked
|
|
*/
|
|
function hasOnAppShutdownHook(
|
|
instance: unknown,
|
|
): instance is OnApplicationShutdown {
|
|
return isFunction((instance as OnApplicationShutdown).onApplicationShutdown);
|
|
}
|
|
|
|
/**
|
|
* Calls the given instances
|
|
*/
|
|
function callOperator(
|
|
instances: InstanceWrapper[],
|
|
signal?: string,
|
|
): Promise<any>[] {
|
|
return iterate(instances)
|
|
.filter(instance => !isNil(instance))
|
|
.filter(hasOnAppShutdownHook)
|
|
.map(async instance =>
|
|
(instance as any as OnApplicationShutdown).onApplicationShutdown(signal),
|
|
)
|
|
.toArray();
|
|
}
|
|
|
|
/**
|
|
* Calls the `onApplicationShutdown` function on the module and its children
|
|
* (providers / controllers).
|
|
*
|
|
* @param module The module which will be initialized
|
|
* @param signal
|
|
*/
|
|
export async function callAppShutdownHook(
|
|
module: Module,
|
|
signal?: string,
|
|
): Promise<any> {
|
|
const providers = module.getNonAliasProviders();
|
|
// Module (class) instance is the first element of the providers array
|
|
// Lifecycle hook has to be called once all classes are properly initialized
|
|
const [_, moduleClassHost] = providers.shift();
|
|
const instances = [
|
|
...module.controllers,
|
|
...providers,
|
|
...module.injectables,
|
|
...module.middlewares,
|
|
];
|
|
|
|
const nonTransientInstances = getNonTransientInstances(instances);
|
|
await Promise.all(callOperator(nonTransientInstances, signal));
|
|
const transientInstances = getTransientInstances(instances);
|
|
await Promise.all(callOperator(transientInstances, signal));
|
|
|
|
// Call the instance itself
|
|
const moduleClassInstance = moduleClassHost.instance;
|
|
if (
|
|
moduleClassInstance &&
|
|
hasOnAppShutdownHook(moduleClassInstance) &&
|
|
moduleClassHost.isDependencyTreeStatic()
|
|
) {
|
|
await moduleClassInstance.onApplicationShutdown(signal);
|
|
}
|
|
}
|