* feat: 🎸 Expose extension config to modules Currently, only the preRegistration hook receives the extension's configuration as a parameter. Providing getModuleFn's with the extension's configuration, and all lifecycle/modules with the application's configuration as rootConfig should open the doors to more configurable extensions. Closes: #1268 * CR Update: Pass extension and service config through extension manager preinit/getmodule * CR Update: Remove appConfig from servicesManager * CR Update: Remove appconfig variable
67 lines
1.6 KiB
JavaScript
67 lines
1.6 KiB
JavaScript
import log from './../log.js';
|
|
|
|
export default class ServicesManager {
|
|
constructor() {
|
|
this.services = {};
|
|
this.registeredServiceNames = [];
|
|
}
|
|
|
|
/**
|
|
* Registers a new service.
|
|
*
|
|
* @param {Object} service
|
|
* @param {Object} configuration
|
|
*/
|
|
registerService(service, configuration = {}) {
|
|
if (!service) {
|
|
log.warn(
|
|
'Attempting to register a null/undefined service. Exiting early.'
|
|
);
|
|
return;
|
|
}
|
|
|
|
if (!service.name) {
|
|
log.warn(`Service name not set. Exiting early.`);
|
|
return;
|
|
}
|
|
|
|
if (this.registeredServiceNames.includes(service.name)) {
|
|
log.warn(
|
|
`Service name ${service.name} has already been registered. Exiting before duplicating services.`
|
|
);
|
|
return;
|
|
}
|
|
|
|
if (service.create) {
|
|
this.services[service.name] = service.create({
|
|
configuration,
|
|
});
|
|
} else {
|
|
log.warn(`Service create factory function not defined. Exiting early.`);
|
|
return;
|
|
}
|
|
|
|
/* Track service registration */
|
|
this.registeredServiceNames.push(service.name);
|
|
}
|
|
|
|
/**
|
|
* An array of services, or an array of arrays that contains service
|
|
* configuration pairs.
|
|
*
|
|
* @param {Object[]} services - Array of services
|
|
*/
|
|
registerServices(services) {
|
|
services.forEach(service => {
|
|
const hasConfiguration = Array.isArray(service);
|
|
|
|
if (hasConfiguration) {
|
|
const [ohifService, configuration] = service;
|
|
this.registerService(ohifService, configuration);
|
|
} else {
|
|
this.registerService(service);
|
|
}
|
|
});
|
|
}
|
|
}
|