Last active
September 27, 2024 21:53
-
-
Save smnbbrv/f147fceb4c29be5ce877b6275018e294 to your computer and use it in GitHub Desktop.
Promisify @grpc-js service client with typescript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Client, ServiceError, Metadata, CallOptions, ClientUnaryCall } from '@grpc/grpc-js'; | |
import { Message } from 'google-protobuf'; | |
type OriginalCall<T, U> = (request: T, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError, res: U) => void) => ClientUnaryCall; | |
type PromisifiedCall<T, U> = ((request: T, metadata?: Metadata, options?: Partial<CallOptions>) => Promise<U>); | |
export type Promisified<C> = { $: C; } & { | |
[prop in Exclude<keyof C, keyof Client>]: (C[prop] extends OriginalCall<infer T, infer U> ? PromisifiedCall<T, U> : never); | |
} | |
export function promisify<C extends Client>(client: C): Promisified<C> { | |
return new Proxy(client, { | |
get: (target, descriptor) => { | |
let stack = ''; | |
// this step is required to get the correct stack trace | |
// of course, this has some performance impact, but it's not that big in comparison with grpc calls | |
try { throw new Error(); } catch (e) { stack = e.stack; } | |
if (descriptor === '$') { | |
return target; | |
} | |
return (...args: any[]) => new Promise((resolve, reject) => target[descriptor](...[...args, (err: ServiceError, res: Message) => { | |
if (err) { | |
err.stack += stack; | |
reject(err); | |
} else { | |
resolve(res); | |
} | |
}])); | |
}, | |
}) as unknown as Promisified<C>; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class SearchService { | |
private searchServiceClient: Promisified<SearchServiceClient>; | |
constructor(private config: Config) { | |
const { host, grpcPort } = this.config.services.shopCore; | |
this.searchServiceClient = promisify(new SearchServiceClient(`${host}:${grpcPort}`, ChannelCredentials.createInsecure())); | |
} | |
async search(query: string, limit: number): Promise<SearchResult> { | |
const request = new SearchRequest().setQuery(query); | |
const response = await this.searchServiceClient.search(request); | |
return { | |
items: response.getResultsList().map(item => ({ | |
name: item.getName(), | |
url: item.getUrl(), | |
})), | |
}; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Lovely bit of code, thank for for this. :) I modified it to take non-unary calls, for metadata: