1
1
import * as Redis from 'ioredis' ;
2
2
import * as uuid from 'uuid' ;
3
+ import { Provider } from '@nestjs/common' ;
3
4
4
5
import { REDIS_CLIENT , REDIS_MODULE_OPTIONS } from './redis.constants' ;
5
6
import { RedisModuleAsyncOptions , RedisModuleOptions } from './redis.interface' ;
@@ -11,33 +12,33 @@ export interface RedisClient {
11
12
size : number ;
12
13
}
13
14
14
- function getClient ( options : RedisModuleOptions , key : string ) : Redis . Redis {
15
- const { errorHandler, url, ...opt } = options ;
16
-
15
+ async function getClient ( options : RedisModuleOptions ) : Promise < Redis . Redis > {
16
+ const { onClientReady, url, ...opt } = options ;
17
17
const client = url ? new Redis ( url ) : new Redis ( opt ) ;
18
- if ( errorHandler ) {
19
- client . on ( 'error' , err => errorHandler ( err , client ) ) ;
18
+ if ( onClientReady ) {
19
+ onClientReady ( client )
20
20
}
21
-
22
21
return client ;
23
22
}
24
23
25
- export const createClient = ( ) => ( {
24
+ export const createClient = ( ) : Provider => ( {
26
25
provide : REDIS_CLIENT ,
27
- useFactory : ( options : RedisModuleOptions | RedisModuleOptions [ ] ) => {
26
+ useFactory : async ( options : RedisModuleOptions | RedisModuleOptions [ ] ) : Promise < RedisClient > => {
28
27
const clients = new Map < string , Redis . Redis > ( ) ;
29
28
const defaultKey = uuid ( ) ;
30
29
31
30
if ( Array . isArray ( options ) ) {
32
- for ( const o of options ) {
33
- const key = o . name || defaultKey ;
34
- if ( clients . has ( key ) ) {
35
- throw new RedisClientError ( `client ${ o . name } or default client is exists` ) ;
36
- }
37
- clients . set ( key , getClient ( o , key ) ) ;
38
- }
31
+ await Promise . all (
32
+ options . map ( async o => {
33
+ const key = o . name || defaultKey ;
34
+ if ( clients . has ( key ) ) {
35
+ throw new RedisClientError ( `${ o . name || 'default' } client is exists` ) ;
36
+ }
37
+ clients . set ( key , await getClient ( o ) ) ;
38
+ } ) ,
39
+ ) ;
39
40
} else {
40
- clients . set ( defaultKey , getClient ( options , defaultKey ) ) ;
41
+ clients . set ( defaultKey , await getClient ( options ) ) ;
41
42
}
42
43
43
44
return {
0 commit comments