mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
160 lines
5.8 KiB
TypeScript
160 lines
5.8 KiB
TypeScript
|
import { Db, IUnleashConfig } from 'lib/server-impl';
|
||
|
import EventStore from '../../db/event-store';
|
||
|
import GroupStore from '../../db/group-store';
|
||
|
import { AccountStore } from '../../db/account-store';
|
||
|
import EnvironmentStore from '../../db/environment-store';
|
||
|
import {
|
||
|
AccessService,
|
||
|
FavoritesService,
|
||
|
GroupService,
|
||
|
ProjectService,
|
||
|
} from '../../services';
|
||
|
import FakeGroupStore from '../../../test/fixtures/fake-group-store';
|
||
|
import FakeEventStore from '../../../test/fixtures/fake-event-store';
|
||
|
import ProjectStore from '../../db/project-store';
|
||
|
import FeatureToggleStore from '../../db/feature-toggle-store';
|
||
|
import FeatureTypeStore from '../../db/feature-type-store';
|
||
|
import { FeatureEnvironmentStore } from '../../db/feature-environment-store';
|
||
|
import FeatureTagStore from '../../db/feature-tag-store';
|
||
|
import ProjectStatsStore from '../../db/project-stats-store';
|
||
|
import {
|
||
|
createAccessService,
|
||
|
createFakeAccessService,
|
||
|
} from '../access/createAccessService';
|
||
|
import {
|
||
|
createFakeFeatureToggleService,
|
||
|
createFeatureToggleService,
|
||
|
} from '../feature-toggle/createFeatureToggleService';
|
||
|
import { FavoriteFeaturesStore } from '../../db/favorite-features-store';
|
||
|
import { FavoriteProjectsStore } from '../../db/favorite-projects-store';
|
||
|
import FakeProjectStore from '../../../test/fixtures/fake-project-store';
|
||
|
import FakeFeatureToggleStore from '../../../test/fixtures/fake-feature-toggle-store';
|
||
|
import FakeFeatureTypeStore from '../../../test/fixtures/fake-feature-type-store';
|
||
|
import FakeEnvironmentStore from '../../../test/fixtures/fake-environment-store';
|
||
|
import FakeFeatureEnvironmentStore from '../../../test/fixtures/fake-feature-environment-store';
|
||
|
import FakeFeatureTagStore from '../../../test/fixtures/fake-feature-tag-store';
|
||
|
import FakeProjectStatsStore from '../../../test/fixtures/fake-project-stats-store';
|
||
|
import FakeFavoriteFeaturesStore from '../../../test/fixtures/fake-favorite-features-store';
|
||
|
import FakeFavoriteProjectsStore from '../../../test/fixtures/fake-favorite-projects-store';
|
||
|
import { FakeAccountStore } from '../../../test/fixtures/fake-account-store';
|
||
|
|
||
|
export const createProjectService = (
|
||
|
db: Db,
|
||
|
config: IUnleashConfig,
|
||
|
): ProjectService => {
|
||
|
const { eventBus, getLogger, flagResolver } = config;
|
||
|
const eventStore = new EventStore(db, getLogger);
|
||
|
const projectStore = new ProjectStore(
|
||
|
db,
|
||
|
eventBus,
|
||
|
getLogger,
|
||
|
flagResolver,
|
||
|
);
|
||
|
const groupStore = new GroupStore(db);
|
||
|
const featureToggleStore = new FeatureToggleStore(db, eventBus, getLogger);
|
||
|
const featureTypeStore = new FeatureTypeStore(db, getLogger);
|
||
|
const accountStore = new AccountStore(db, getLogger);
|
||
|
const environmentStore = new EnvironmentStore(db, eventBus, getLogger);
|
||
|
const featureEnvironmentStore = new FeatureEnvironmentStore(
|
||
|
db,
|
||
|
eventBus,
|
||
|
getLogger,
|
||
|
);
|
||
|
const featureTagStore = new FeatureTagStore(db, eventBus, getLogger);
|
||
|
const projectStatsStore = new ProjectStatsStore(db, eventBus, getLogger);
|
||
|
const accessService: AccessService = createAccessService(db, config);
|
||
|
const featureToggleService = createFeatureToggleService(db, config);
|
||
|
const favoriteFeaturesStore = new FavoriteFeaturesStore(
|
||
|
db,
|
||
|
eventBus,
|
||
|
getLogger,
|
||
|
);
|
||
|
const favoriteProjectsStore = new FavoriteProjectsStore(
|
||
|
db,
|
||
|
eventBus,
|
||
|
getLogger,
|
||
|
);
|
||
|
const favoriteService = new FavoritesService(
|
||
|
{
|
||
|
favoriteFeaturesStore,
|
||
|
favoriteProjectsStore,
|
||
|
eventStore,
|
||
|
},
|
||
|
config,
|
||
|
);
|
||
|
const groupService = new GroupService(
|
||
|
{ groupStore, eventStore, accountStore },
|
||
|
{ getLogger },
|
||
|
);
|
||
|
|
||
|
return new ProjectService(
|
||
|
{
|
||
|
projectStore,
|
||
|
eventStore,
|
||
|
featureToggleStore,
|
||
|
featureTypeStore,
|
||
|
environmentStore,
|
||
|
featureEnvironmentStore,
|
||
|
featureTagStore,
|
||
|
accountStore,
|
||
|
projectStatsStore,
|
||
|
},
|
||
|
config,
|
||
|
accessService,
|
||
|
featureToggleService,
|
||
|
groupService,
|
||
|
favoriteService,
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export const createFakeProjectService = (
|
||
|
config: IUnleashConfig,
|
||
|
): ProjectService => {
|
||
|
const { getLogger } = config;
|
||
|
const eventStore = new FakeEventStore();
|
||
|
const projectStore = new FakeProjectStore();
|
||
|
const groupStore = new FakeGroupStore();
|
||
|
const featureToggleStore = new FakeFeatureToggleStore();
|
||
|
const featureTypeStore = new FakeFeatureTypeStore();
|
||
|
const accountStore = new FakeAccountStore();
|
||
|
const environmentStore = new FakeEnvironmentStore();
|
||
|
const featureEnvironmentStore = new FakeFeatureEnvironmentStore();
|
||
|
const featureTagStore = new FakeFeatureTagStore();
|
||
|
const projectStatsStore = new FakeProjectStatsStore();
|
||
|
const accessService = createFakeAccessService(config);
|
||
|
const featureToggleService = createFakeFeatureToggleService(config);
|
||
|
const favoriteFeaturesStore = new FakeFavoriteFeaturesStore();
|
||
|
const favoriteProjectsStore = new FakeFavoriteProjectsStore();
|
||
|
const favoriteService = new FavoritesService(
|
||
|
{
|
||
|
favoriteFeaturesStore,
|
||
|
favoriteProjectsStore,
|
||
|
eventStore,
|
||
|
},
|
||
|
config,
|
||
|
);
|
||
|
const groupService = new GroupService(
|
||
|
{ groupStore, eventStore, accountStore },
|
||
|
{ getLogger },
|
||
|
);
|
||
|
|
||
|
return new ProjectService(
|
||
|
{
|
||
|
projectStore,
|
||
|
eventStore,
|
||
|
featureToggleStore,
|
||
|
featureTypeStore,
|
||
|
environmentStore,
|
||
|
featureEnvironmentStore,
|
||
|
featureTagStore,
|
||
|
accountStore,
|
||
|
projectStatsStore,
|
||
|
},
|
||
|
config,
|
||
|
accessService,
|
||
|
featureToggleService,
|
||
|
groupService,
|
||
|
favoriteService,
|
||
|
);
|
||
|
};
|