forked from nestjs/nest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclients.module.ts
More file actions
103 lines (97 loc) · 2.78 KB
/
Copy pathclients.module.ts
File metadata and controls
103 lines (97 loc) · 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import {
DynamicModule,
Module,
OnApplicationShutdown,
Provider,
} from '@nestjs/common';
import { ClientProxy, ClientProxyFactory } from '../client';
import { Closeable } from '../interfaces';
import {
ClientsModuleAsyncOptions,
ClientsModuleOptions,
ClientsModuleOptionsFactory,
ClientsProviderAsyncOptions,
} from './interfaces';
@Module({})
export class ClientsModule {
static register(options: ClientsModuleOptions): DynamicModule {
const clients = (options || []).map(item => ({
provide: item.name,
useValue: this.assignOnAppShutdownHook(ClientProxyFactory.create(item)),
}));
return {
module: ClientsModule,
providers: clients,
exports: clients,
};
}
static registerAsync(options: ClientsModuleAsyncOptions): DynamicModule {
const providers: Provider[] = options.reduce(
(accProviders: Provider[], item) =>
accProviders
.concat(this.createAsyncProviders(item))
.concat(item.extraProviders || []),
[],
);
const imports = options.reduce(
(accImports, option) =>
option.imports && !accImports.includes(option.imports)
? accImports.concat(option.imports)
: accImports,
[],
);
return {
module: ClientsModule,
imports,
providers: providers,
exports: providers,
};
}
private static createAsyncProviders(
options: ClientsProviderAsyncOptions,
): Provider[] {
if (options.useExisting || options.useFactory) {
return [this.createAsyncOptionsProvider(options)];
}
return [
this.createAsyncOptionsProvider(options),
{
provide: options.useClass,
useClass: options.useClass,
},
];
}
private static createAsyncOptionsProvider(
options: ClientsProviderAsyncOptions,
): Provider {
if (options.useFactory) {
return {
provide: options.name,
useFactory: this.createFactoryWrapper(options.useFactory),
inject: options.inject || [],
};
}
return {
provide: options.name,
useFactory: this.createFactoryWrapper(
(optionsFactory: ClientsModuleOptionsFactory) =>
optionsFactory.createClientOptions(),
),
inject: [options.useExisting || options.useClass],
};
}
private static createFactoryWrapper(
useFactory: ClientsProviderAsyncOptions['useFactory'],
) {
return async (...args: any[]) => {
const clientOptions = await useFactory(...args);
const clientProxyRef = ClientProxyFactory.create(clientOptions);
return this.assignOnAppShutdownHook(clientProxyRef);
};
}
private static assignOnAppShutdownHook(client: ClientProxy & Closeable) {
(client as unknown as OnApplicationShutdown).onApplicationShutdown =
client.close;
return client;
}
}