1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/src/lib/services/environment-service.ts

100 lines
3.2 KiB
TypeScript
Raw Normal View History

import { IUnleashStores } from '../types/stores';
import { IUnleashConfig } from '../types/option';
import { Logger } from '../logger';
import { IEnvironment } from '../types/model';
import { UNIQUE_CONSTRAINT_VIOLATION } from '../error/db-error';
import NameExistsError from '../error/name-exists-error';
import { environmentSchema } from './state-schema';
import NotFoundError from '../error/notfound-error';
import { IEnvironmentStore } from '../types/stores/environment-store';
import { IFeatureStrategiesStore } from '../types/stores/feature-strategies-store';
import { IFeatureEnvironmentStore } from '../types/stores/feature-environment-store';
export default class EnvironmentService {
private logger: Logger;
private environmentStore: IEnvironmentStore;
private featureStrategiesStore: IFeatureStrategiesStore;
private featureEnvironmentStore: IFeatureEnvironmentStore;
constructor(
{
environmentStore,
featureStrategiesStore,
featureEnvironmentStore,
}: Pick<
IUnleashStores,
| 'environmentStore'
| 'featureStrategiesStore'
| 'featureEnvironmentStore'
>,
{ getLogger }: Pick<IUnleashConfig, 'getLogger'>,
) {
this.logger = getLogger('services/environment-service.ts');
this.environmentStore = environmentStore;
this.featureStrategiesStore = featureStrategiesStore;
this.featureEnvironmentStore = featureEnvironmentStore;
}
async getAll(): Promise<IEnvironment[]> {
return this.environmentStore.getAll();
}
async get(name: string): Promise<IEnvironment> {
return this.environmentStore.get(name);
}
async delete(name: string): Promise<void> {
return this.environmentStore.delete(name);
}
async create(env: IEnvironment): Promise<IEnvironment> {
await environmentSchema.validateAsync(env);
return this.environmentStore.upsert(env);
}
async update(
name: string,
env: Pick<IEnvironment, 'displayName'>,
): Promise<IEnvironment> {
const exists = await this.environmentStore.exists(name);
if (exists) {
return this.environmentStore.upsert({ ...env, name });
}
throw new NotFoundError(`Could not find environment ${name}`);
}
async connectProjectToEnvironment(
environment: string,
projectId: string,
): Promise<void> {
try {
await this.environmentStore.connectProject(environment, projectId);
await this.environmentStore.connectFeatures(environment, projectId);
} catch (e) {
if (e.code === UNIQUE_CONSTRAINT_VIOLATION) {
throw new NameExistsError(
`${projectId} already has the environment ${environment} enabled`,
);
}
throw e;
}
}
async removeEnvironmentFromProject(
environment: string,
projectId: string,
): Promise<void> {
await this.featureEnvironmentStore.disconnectEnvironmentFromProject(
environment,
projectId,
);
await this.environmentStore.disconnectProjectFromEnv(
environment,
projectId,
);
}
}