| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This is a loopback 4 extension to connect dynamic datasources runtime. In todays world there can be a use case of multi tenant system in which we need the physical seperation of the databses so in loopback we need to connect to those datasources runtime and maintain and reuse those connection.
npm install loopback4-dynamic-datasourceIn order to use this component into your LoopBack application, please follow below steps.
this.component(Loopback4DynamicDatasourceComponent);export class MySequence implements SequenceHandler {
constructor(
...
@inject(DynamicDatasourceBindings.DYNAMIC_DATASOURCE_ACTION)
private readonly setupDatasource: SetupDatasourceFn,
...
) {}
async handle(context: RequestContext) {
const requestTime = Date.now();
try {
...
await this.setupDatasource(context);
...
} catch (err) {
this.reject(context, err);
}
}
}import {DatasourceIdentifierFn} from 'loopback4-dynamic-datasouce';
export class CustomDatasourceIdentifierProvider implements Provider<DatasourceIdentifierFn> {
constructor() {
}
value(): DatasourceIdentifierFn {
return async (requestCtx) => {
const tenantId = requestCtx.request.query['tenantId'] as string;
return tenantId == null ? null : {id: tenantId};
};
}
}Now bind that provider in application.ts
this.bind(DynamicDatasourceBindings.DATASOURCE_IDENTIFIER_PROVIDER).toProvider(CustomDatasourceIdentifierProvider); export class CustomDatasourceProvider implements Provider<DatasourceProviderFn> {
constructor(
@repository(TenantRepository)
private tenantRepo: TenantRepository,
) {
}
value(): DatasourceProviderFn {
return async (datasourceIdentifier) => {
return {
pgdb: async () => {
const tenantData = await this.tenantRepo.findById(datasourceIdentifier.id);
return new juggler.DataSource({
...tenantData.dbConfig,
});
}
}
}
}
}Now bind that provider in application.ts
this.bind(DynamicDatasourceBindings.DATASOURCE_PROVIDER).toProvider(CustomDatasourceProvider);Note:- connector of following datasource should be present in package.json like in this example we are using loopback-connector-postgresql
Now return of this provider is an object where you can give as many keys you want but that should return juggler.Datasource This is used as the intention of connecting multiple datasource for tenant. pgdb this key is custom and it can be used as per your choice but your repository must use specified key in injection
export class UserRepository extends DefaultCrudRepository<User,
typeof User.prototype.id,
UserRelations> {
constructor(
@inject('datasources.pgdb') dataSource: JugglerDataSource,
) {
super(User, dataSource);
}
}That's all.
If you've noticed a bug or have a question or have a feature request, search the issue tracker to see if someone else in the community has already created a ticket. If not, go ahead and make one! All feature requests are welcome. Implementation time may vary. Feel free to contribute the same, if you can. If you think this extension is useful, please star it. Appreciation really helps in keeping this project alive.
Please read CONTRIBUTING.md for details on the process for submitting pull requests to us.
Code of conduct guidelines here.
| Back | FazBrowse Home | New Git URL |