-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathindex.js
141 lines (128 loc) · 8.51 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
import perf_hooks from 'node:perf_hooks';
import _ from 'lodash';
import * as flashAlgorithmService from '../../../src/certification/flash-certification/domain/services/algorithm-methods/flash.js';
import { scoringDegradationService } from '../../../src/certification/scoring/domain/services/scoring-degradation-service.js';
import * as certificationAssessmentHistoryRepository from '../../../src/certification/scoring/infrastructure/repositories/certification-assessment-history-repository.js';
import * as certificationChallengeForScoringRepository from '../../../src/certification/scoring/infrastructure/repositories/certification-challenge-for-scoring-repository.js';
import * as scoringConfigurationRepository from '../../../src/certification/scoring/infrastructure/repositories/scoring-configuration-repository.js';
import * as finalizedSessionRepository from '../../../src/certification/session-management/infrastructure/repositories/finalized-session-repository.js';
import * as juryCertificationSummaryRepository from '../../../src/certification/session-management/infrastructure/repositories/jury-certification-summary-repository.js';
import * as supervisorAccessRepository from '../../../src/certification/session-management/infrastructure/repositories/supervisor-access-repository.js';
import * as scoringCertificationService from '../../../src/certification/shared/domain/services/scoring-certification-service.js';
import * as certificationAssessmentRepository from '../../../src/certification/shared/infrastructure/repositories/certification-assessment-repository.js';
import * as certificationCenterRepository from '../../../src/certification/shared/infrastructure/repositories/certification-center-repository.js';
import * as certificationCourseRepository from '../../../src/certification/shared/infrastructure/repositories/certification-course-repository.js';
import * as certificationIssueReportRepository from '../../../src/certification/shared/infrastructure/repositories/certification-issue-report-repository.js';
import * as competenceMarkRepository from '../../../src/certification/shared/infrastructure/repositories/competence-mark-repository.js';
import * as complementaryCertificationBadgesRepository from '../../../src/certification/shared/infrastructure/repositories/complementary-certification-badge-repository.js';
import * as flashAlgorithmConfigurationRepository from '../../../src/certification/shared/infrastructure/repositories/flash-algorithm-configuration-repository.js';
import * as authenticationMethodRepository from '../../../src/identity-access-management/infrastructure/repositories/authentication-method.repository.js';
import * as userRepository from '../../../src/identity-access-management/infrastructure/repositories/user.repository.js';
import { config } from '../../../src/shared/config.js';
import { monitoringTools as MonitoringTools } from '../../../src/shared/infrastructure/monitoring-tools.js';
import * as answerRepository from '../../../src/shared/infrastructure/repositories/answer-repository.js';
import * as assessmentRepository from '../../../src/shared/infrastructure/repositories/assessment-repository.js';
import * as assessmentResultRepository from '../../../src/shared/infrastructure/repositories/assessment-result-repository.js';
import * as challengeRepository from '../../../src/shared/infrastructure/repositories/challenge-repository.js';
import * as competenceRepository from '../../../src/shared/infrastructure/repositories/competence-repository.js';
import * as organizationRepository from '../../../src/shared/infrastructure/repositories/organization-repository.js';
import * as skillRepository from '../../../src/shared/infrastructure/repositories/skill-repository.js';
import { injectDefaults } from '../../../src/shared/infrastructure/utils/dependency-injection.js';
import { logger } from '../../../src/shared/infrastructure/utils/logger.js';
import * as eventBusBuilder from '../../infrastructure/events/EventBusBuilder.js';
import { EventDispatcher } from '../../infrastructure/events/EventDispatcher.js';
import { EventDispatcherLogger } from '../../infrastructure/events/EventDispatcherLogger.js';
import * as disabledPoleEmploiNotifier from '../../infrastructure/externals/pole-emploi/disabled-pole-emploi-notifier.js';
import * as poleEmploiNotifier from '../../infrastructure/externals/pole-emploi/pole-emploi-notifier.js';
import * as badgeAcquisitionRepository from '../../infrastructure/repositories/badge-acquisition-repository.js';
import * as campaignParticipationRepository from '../../infrastructure/repositories/campaign-participation-repository.js';
import * as campaignParticipationResultRepository from '../../infrastructure/repositories/campaign-participation-result-repository.js';
import * as campaignRepository from '../../infrastructure/repositories/campaign-repository.js';
import * as complementaryCertificationCourseResultRepository from '../../infrastructure/repositories/complementary-certification-course-result-repository.js';
import * as complementaryCertificationScoringCriteriaRepository from '../../infrastructure/repositories/complementary-certification-scoring-criteria-repository.js';
import * as knowledgeElementRepository from '../../infrastructure/repositories/knowledge-element-repository.js';
import { participantResultsSharedRepository } from '../../infrastructure/repositories/participant-results-shared-repository.js';
import * as poleEmploiSendingRepository from '../../infrastructure/repositories/pole-emploi-sending-repository.js';
import * as targetProfileRepository from '../../infrastructure/repositories/target-profile-repository.js';
import { handleCertificationRescoring } from './handle-certification-rescoring.js';
import { handleComplementaryCertificationsScoring } from './handle-complementary-certifications-scoring.js';
const { performance } = perf_hooks;
function requirePoleEmploiNotifier() {
if (config.poleEmploi.pushEnabled) {
return poleEmploiNotifier;
} else {
return disabledPoleEmploiNotifier;
}
}
const dependencies = {
answerRepository,
assessmentRepository,
assessmentResultRepository,
authenticationMethodRepository,
badgeAcquisitionRepository,
campaignRepository,
campaignParticipationRepository,
campaignParticipationResultRepository,
certificationAssessmentHistoryRepository,
certificationAssessmentRepository,
certificationCenterRepository,
certificationChallengeForScoringRepository,
certificationCourseRepository,
certificationIssueReportRepository,
challengeRepository,
competenceMarkRepository,
competenceRepository,
complementaryCertificationBadgesRepository,
complementaryCertificationCourseResultRepository,
complementaryCertificationScoringCriteriaRepository,
finalizedSessionRepository,
flashAlgorithmConfigurationRepository,
flashAlgorithmService,
juryCertificationSummaryRepository,
knowledgeElementRepository,
logger,
organizationRepository,
participantResultsSharedRepository,
poleEmploiNotifier: requirePoleEmploiNotifier(),
poleEmploiSendingRepository,
scoringCertificationService,
scoringDegradationService,
skillRepository,
scoringConfigurationRepository,
supervisorAccessRepository,
targetProfileRepository,
userRepository,
};
const handlersToBeInjected = {
handleCertificationRescoring,
handleComplementaryCertificationsScoring,
};
function buildEventDispatcher(handlersStubs) {
const eventDispatcher = new EventDispatcher(new EventDispatcherLogger(MonitoringTools, config, performance));
const handlersNames = _.map(handlersToBeInjected, (handler) => handler.name);
if (_.some(handlersNames, (name) => _.isEmpty(name))) {
throw new Error('All handlers must have a name. Handlers : ' + handlersNames.join(', '));
}
if (_.uniq(handlersNames).length !== handlersNames.length) {
throw new Error('All handlers must have a unique name. Handlers : ' + handlersNames.join(', '));
}
const handlers = { ...handlersToBeInjected, ...handlersStubs };
for (const key in handlers) {
const inject = _.partial(injectDefaults, dependencies);
const injectedHandler = inject(handlers[key]);
injectedHandler.handlerName = handlers[key].name;
for (const eventType of handlersToBeInjected[key].eventTypes) {
eventDispatcher.subscribe(eventType, injectedHandler);
}
}
return eventDispatcher;
}
const eventDispatcher = buildEventDispatcher({});
const eventBus = eventBusBuilder.build();
const _forTestOnly = {
handlers: handlersToBeInjected,
buildEventDispatcher: function (stubbedHandlers) {
return buildEventDispatcher(stubbedHandlers);
},
};
export { _forTestOnly, eventBus, eventDispatcher };