-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLegacyMapper.ts
485 lines (442 loc) · 18.3 KB
/
LegacyMapper.ts
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
import _ from "lodash";
import {
ChallengeStatuses,
LegacyChallengeStatusesMap,
PhaseCriteriaIdToName,
PhaseNames,
PhaseNameToTypeId,
PrizeSetTypes,
TGBillingAccounts,
} from "../common/Constants";
import { V4_SUBTRACKS, V5_TO_V4 } from "../common/ConversionMap";
import {
Challenge_Phase,
Challenge_PrizeSet,
CreateChallengeInput,
UpdateChallengeInput_UpdateInput,
} from "../models/domain-layer/challenge/challenge";
import {
CreateChallengeInput as LegacyChallengeCreateInput,
UpdateChallengeInput as LegacyChallengeUpdateInput,
Phase as LegacyPhase,
Prize,
} from "@topcoder-framework/domain-acl";
import { getRequest } from "../api/v5Api";
import m2mToken from "../helpers/MachineToMachineToken";
import DateUtil from "./DateUtil";
class LegacyMapper {
// To be used on challenge:update calls that change state from New -> Draft
public mapChallengeDraftUpdateInput = async (
input: CreateChallengeInput,
id: string
): Promise<LegacyChallengeCreateInput> => {
const prizeType = input.prizeSets[0]?.prizes[0]?.type;
const prizeSets = prizeType === "USD" ? this.mapPrizeSets(input.prizeSets) : null;
const projectInfo = this.mapProjectInfo(input, prizeSets, input.legacy?.subTrack!);
return {
name: input.name,
projectStatusId: LegacyChallengeStatusesMap.Draft,
...this.mapTrackAndTypeToCategoryStudioSpecAndMmSpec(
input.legacy!.track!,
input.legacy!.subTrack!
),
groups: await this.mapGroupIds(input.groups),
tcDirectProjectId: input.legacy?.directProjectId!,
winnerPrizes: prizeSets == null ? [] : this.mapWinnerPrizes(prizeSets),
phases: this.mapPhases(
input.legacy!.subTrack!,
input.billing?.billingAccountId,
input.phases
),
reviewType: input.legacy?.reviewType ?? "INTERNAL",
confidentialityType: input.legacy?.confidentialityType ?? "public",
projectInfo,
id,
};
};
public mapChallengeUpdateInput = async (
legacyId: number,
subTrack: string,
billingAccount: number | undefined,
input: UpdateChallengeInput_UpdateInput
): Promise<LegacyChallengeUpdateInput> => {
const prizeType = input.prizeSetUpdate?.prizeSets[0]?.prizes[0]?.type;
// prettier-ignore
const prizeSets = input.prizeSetUpdate != null && prizeType === 'USD' ? this.mapPrizeSets(input.prizeSetUpdate.prizeSets) : null;
const projectInfo = this.mapProjectInfoForUpdate(input, prizeSets);
return {
projectId: legacyId,
name: input.name,
projectStatusId: this.mapProjectStatus(input.status),
prizeUpdate:
prizeSets == null
? undefined
: {
winnerPrizes: this.mapWinnerPrizes(prizeSets),
},
// prettier-ignore
phaseUpdate: input.phaseUpdate != null ? { phases: this.mapPhases(subTrack,billingAccount, input.phaseUpdate.phases) } : undefined,
// prettier-ignore
groupUpdate: input.groupUpdate != null ? { groups: await this.mapGroupIds(input.groupUpdate.groups) } : undefined,
termUpdate: input.termUpdate != null ? { terms: input.termUpdate.terms } : undefined,
projectInfo,
};
};
public mapTrackAndType(trackId: string, typeId: string, tags: string[]) {
try {
return V5_TO_V4[trackId][typeId](tags);
} catch (e) {
console.log(
`Could not map trackId: ${trackId} and typeId: ${typeId}. Not a legacy challenge`
);
return null;
}
}
private mapTrackAndTypeToCategoryStudioSpecAndMmSpec(
track: string, // TODO: Properly map studio challenges
subTrack: string
): {
projectCategoryId: number;
projectStudioSpecId: number | undefined;
projectMmSpecId: number | undefined;
} {
let projectCategoryId = 39; // V4_SUBTRACKS.CODE
if (subTrack === V4_SUBTRACKS.FIRST_2_FINISH) projectCategoryId = 38;
if (subTrack === V4_SUBTRACKS.MARATHON_MATCH) projectCategoryId = 37;
// prettier-ignore
if (subTrack === V4_SUBTRACKS.DEVELOP_MARATHON_MATCH) projectCategoryId = 37;
if (subTrack === V4_SUBTRACKS.BUG_HUNT) projectCategoryId = 9;
if (subTrack === V4_SUBTRACKS.DESIGN_FIRST_2_FINISH) projectCategoryId = 40;
if (subTrack === V4_SUBTRACKS.WEB_DESIGNS) projectCategoryId = 17;
return {
projectCategoryId,
projectStudioSpecId: undefined, // TODO: Handle design challenges
projectMmSpecId: undefined, // TODO: Handle mMM challenges
};
}
private mapPrizeSets(prizeSets: Challenge_PrizeSet[]) {
return prizeSets.reduce((acc: { [key: string]: number[] }, prize) => {
acc[prize.type] = (acc[prize.type] ?? [])
.concat(prize.prizes.map((p) => p.amountInCents!))
.sort((a, b) => b - a);
return acc;
}, {});
}
private mapWinnerPrizes(prizeSets: { [key: string]: number[] }): Prize[] {
// prettier-ignore
const prizeSetTypes = [PrizeSetTypes.ChallengePrizes, PrizeSetTypes.CheckPoint, PrizeSetTypes.CopilotPayment, PrizeSetTypes.ReviewerPayment];
return prizeSetTypes.reduce((acc: Prize[], type: string) => {
if (prizeSets[type] != null) {
acc.push(
...prizeSets[type].map((amountInCents: number, index: number) => ({
amountInCents,
place: index + 1,
numSubmissions: 1,
type,
}))
);
}
return acc;
}, []);
}
private mapProjectInfo(
input: CreateChallengeInput,
prizeSets: any,
subTrack: string
): { [key: number]: string } {
const prizeType = input.prizeSets[0]?.prizes[0]?.type;
const isMemberPaymentEligible = prizeType === "USD";
const firstPlacePrize =
isMemberPaymentEligible && prizeSets[PrizeSetTypes.ChallengePrizes]?.length >= 1
? prizeSets[PrizeSetTypes.ChallengePrizes][0]?.toString()
: undefined;
const map = {
3: "1", // Component Version
4: "0",
7: "1.0",
9: [V4_SUBTRACKS.FIRST_2_FINISH].indexOf(subTrack) !== -1 ? "Off" : "On", // Turn Auto Pilot Off for F2F. Next in line: V4_SUBTRACKS.DEVELOPMENT, V4_SUBTRACKS.CODE
78: "Development", // Forum Type - value doesn't matter
10: "On", // Turn status notification on
11: "On", // Turn timeline notification on
12: "Yes", // Public -> Yes (make it dynamic)
13: "Yes", // Rated -> Yes (make it dynamic)
14: "Open", // Eligibility -> Open (value doesn't matter)
16:
isMemberPaymentEligible && firstPlacePrize != null
? (firstPlacePrize / 100).toString()
: undefined,
26: "Off", // No Digital Run
28:
[
V4_SUBTRACKS.FIRST_2_FINISH,
V4_SUBTRACKS.DESIGN_FIRST_2_FINISH,
V4_SUBTRACKS.MARATHON_MATCH,
].indexOf(subTrack) != -1
? "true"
: "false", // Allow multiple submissions
30: "0", // No DR Points
6: input.name,
31: "0", // Admin Fee
32: input.billing?.billingAccountId!.toString(),
// Review Cost
33:
isMemberPaymentEligible && prizeSets[PrizeSetTypes.ReviewerPayment]?.length == 1
? (prizeSets[PrizeSetTypes.ReviewerPayment][0] / 100).toString()
: undefined,
// Confidentiality Type
34: input.legacy?.confidentialityType ?? "public",
// Review Type
79: input.legacy?.reviewType ?? "COMMUNITY",
// Spec Review Cost
35: undefined,
// First Place Prize
36:
isMemberPaymentEligible && firstPlacePrize != null
? (firstPlacePrize / 100).toString()
: undefined,
// Second Place Prize
37:
isMemberPaymentEligible && prizeSets[PrizeSetTypes.ChallengePrizes]?.length >= 2
? (prizeSets[PrizeSetTypes.ChallengePrizes][1] / 100).toString()
: undefined,
// Reliability Bonus Cost
38: undefined,
// Checkpoint Bonus Cost
39: undefined,
41: "false", // Approval Required
43: "true", // Send Winner Emails
44:
input.metadata.find((m) => m.name == "postMortemRequired")?.value == "false"
? "false"
: "true", // Post-mortem required (set to false - new Autopilot will handle this)
45: "false", // Reliability bonus eligible
46: isMemberPaymentEligible ? "true" : "false", // Member Payments Eligible
48: "false", // Track Late Deliverables
52: "false", // Allow Stock Art
57: input.billing?.markup!.toString(), // Contest Fee Percentage
59: "false", // Review Feedback Flag
88: input.metadata.find((m) => m.name == "effortHoursEstimate")?.value ?? undefined, // Effort Hours Estimate
89: input.metadata.find((m) => m.name == "offshoreEfforts")?.value ?? undefined, // Estimate Efforts Days Offshore (extract from metadata)
90: input.metadata.find((m) => m.name == "onsiteEfforts")?.value ?? undefined, // Estimate Efforts Days Onsite (extract from metadata)
};
return Object.fromEntries(Object.entries(map).filter(([_, v]) => v !== undefined)) as {
[key: number]: string;
};
}
private mapProjectInfoForUpdate(
input: UpdateChallengeInput_UpdateInput,
prizeSets: any
): { [key: number]: string } {
let effortsEstimate = {};
const metadata = input.metadataUpdate != null ? input.metadataUpdate.metadata : undefined;
if (metadata != null) {
effortsEstimate = {
88: metadata.find((m) => m.name == "effortHoursEstimate")?.value.toString() ?? undefined, // Effort Hours Estimate
89: metadata.find((m) => m.name == "offshoreEfforts")?.value.toString() ?? undefined, // Estimate Efforts Days Offshore (extract from metadata)
90: metadata.find((m) => m.name == "onsiteEfforts")?.value.toString() ?? undefined, // Estimate Efforts Days Onsite (extract from metadata)
};
}
let projectInfo: { [key: number]: string } = {};
if (input.name != null) {
projectInfo = {
6: input.name,
};
}
if (input.billing?.billingAccountId != null) {
projectInfo[32] = input.billing?.billingAccountId.toString();
}
if (input.billing?.markup != null) {
projectInfo[5] = input.billing?.markup.toString();
}
if (input.status === ChallengeStatuses.Completed) {
console.log("Legacy Mapper --> Challenge completed");
console.log(JSON.stringify(input));
projectInfo[21] = DateUtil.formatDateForIfx(new Date().toISOString(), "MM.DD.YYYY HH:mm z")!; // project_info 21 is Completion Timestamp; and it has a different date format
if(input.winnerUpdate?.winners[0]!=null) {
projectInfo[23] = input.winnerUpdate!.winners[0]!.userId!.toString();
}
}
const map = {
...projectInfo,
...effortsEstimate,
};
return Object.fromEntries(Object.entries(map).filter(([_, v]) => v !== undefined)) as {
[key: number]: string;
};
}
// prettier-ignore
public mapPhases(subTrack: string, billingAccount: number | undefined, phases: Challenge_Phase[]) {
return phases.map((phase: Challenge_Phase, index: number) => {
return LegacyPhase.fromJSON({
phaseTypeId: PhaseNameToTypeId[phase.name as keyof typeof PhaseNameToTypeId],
phaseStatusId: phase.isOpen ? 2 : phase.actualEndDate ? 3 : 1,
fixedStartTime: _.isUndefined(phase.predecessor) ? phase.scheduledStartDate : undefined,
scheduledStartTime: phase.scheduledStartDate,
scheduledEndTime: phase.scheduledEndDate,
actualStartTime: phase.actualStartDate,
actualEndTime: phase.actualEndDate,
duration: phase.duration * 1000,
phaseCriteria: this.mapPhaseCriteria(subTrack, billingAccount, phase),
});
});
}
public backFillPhaseCriteria(input: CreateChallengeInput, phases: LegacyPhase[]) {
const reviewScorecardId = phases.find((p) =>
_.includes([PhaseNameToTypeId.Review, PhaseNameToTypeId["Iterative Review"]], p.phaseTypeId)
)?.phaseCriteria[1];
const screeningScorecardId = phases.find((p) => p.phaseTypeId === PhaseNameToTypeId.Screening)
?.phaseCriteria[1];
if (!_.isUndefined(reviewScorecardId)) {
input.legacy!.reviewScorecardId = _.toNumber(reviewScorecardId);
}
if (!_.isUndefined(screeningScorecardId)) {
input.legacy!.screeningScorecardId = _.toNumber(screeningScorecardId);
}
for (const phase of input.phases) {
const legacyPhase = _.find(
phases,
(p) => p.phaseTypeId === PhaseNameToTypeId[phase.name as keyof typeof PhaseNameToTypeId]
);
phase.constraints = _.map(_.entries(legacyPhase?.phaseCriteria), ([k, v]) => {
return {
name: PhaseCriteriaIdToName[_.toNumber(k) as keyof typeof PhaseCriteriaIdToName],
value: _.toNumber(k) === 4 ? (v.toLowerCase() === "yes" ? 1 : 0) : _.toNumber(v),
};
});
}
}
// prettier-ignore
private mapPhaseCriteria(subTrack: string, billingAccount:number | undefined, phase: Challenge_Phase): { [key: number]: string | undefined } {
const scorecardConstraint = phase.constraints?.find(
(constraint: { name: string; value: number }) =>
constraint.name === "Scorecard"
);
const reviewPhaseConstraint = phase.constraints?.find(
(constraint: { name: string; value: number }) =>
constraint.name === "Number of Reviewers"
);
const submissionPhaseConstraint = phase.constraints?.find(
(constraint: { name: string; value: number }) => constraint.name === "Number of Submissions"
);
const registrationPhaseConstraint = phase.constraints?.find(
(constraint: { name: string; value: number }) =>
constraint.name === "Number of Registrants"
);
const viewResponseDuringAppealsConstraint = phase.constraints?.find(
(constraint: { name: string; value: number }) =>
constraint.name === "View Response During Appeals"
);
const map = {
1:
scorecardConstraint?.value.toString() ??
this.mapScorecard(
subTrack,
billingAccount,
PhaseNameToTypeId[phase.name as keyof typeof PhaseNameToTypeId]
), // Scorecard ID
2:
phase.name === PhaseNames.Registration
? (registrationPhaseConstraint?.value.toString() ?? "1")
: undefined, // Registration Number
3:
phase.name === PhaseNames.Submission
? (submissionPhaseConstraint?.value.toString() ?? // if we have a submission phase constraint use it
(reviewPhaseConstraint?.value != null
? "1"
: undefined)) // otherwise if we have a review phase constraint use 1
: undefined,
4:
phase.name === PhaseNames.Appeals
? viewResponseDuringAppealsConstraint?.value.toString() === "1"
? "Yes"
: "No"
: undefined, // View Response During Appeals
6:
reviewPhaseConstraint?.value.toString() ?? (phase.name === PhaseNames.Review
? "2"
: phase.name === PhaseNames.IterativeReview
? "1"
: phase.name === PhaseNames.Approval
? "1"
: phase.name === PhaseNames.PostMortem
? "1"
: phase.name === PhaseNames.SpecificationReview
? "1"
: undefined), // Reviewer Number
};
return Object.fromEntries(Object.entries(map).filter(([_, v]) => v !== undefined)) as { [key: number]: string };
}
// prettier-ignore
private mapScorecard(subTrack: string, billingAccount:number | undefined, phaseTypeId: number | undefined): string | undefined {
const isNonProd = process.env.ENV != "prod";
// TODO: Update scorecard ids for all subtracks and check for dev environment
let scorecard = undefined;
if (
subTrack === V4_SUBTRACKS.FIRST_2_FINISH &&
phaseTypeId === PhaseNameToTypeId["Iterative Review"]
) {
if (_.includes(TGBillingAccounts, billingAccount)) {
scorecard = isNonProd ? 30001551 : 30002212;
} else {
scorecard = isNonProd ? 30001551 : 30002160;
}
} else if (
subTrack === V4_SUBTRACKS.DESIGN_FIRST_2_FINISH &&
phaseTypeId === PhaseNameToTypeId.Review
) {
scorecard = isNonProd ? 30001610 : 30001101;
} else if (subTrack === V4_SUBTRACKS.BUG_HUNT) {
if (phaseTypeId === PhaseNameToTypeId.Review) {
scorecard = isNonProd ? 30001610 : 30001220;
} else if (phaseTypeId === PhaseNameToTypeId["Specification Review"]) {
scorecard = isNonProd ? 30001610 : 30001120;
}
} else if (
subTrack === V4_SUBTRACKS.DEVELOP_MARATHON_MATCH &&
phaseTypeId === PhaseNameToTypeId.Review
) {
scorecard = isNonProd ? 30001610 : 30002133;
} else if (
subTrack === V4_SUBTRACKS.MARATHON_MATCH &&
phaseTypeId === PhaseNameToTypeId.Review
) {
scorecard = isNonProd ? 30001610 : 30002133;
} else if (subTrack === V4_SUBTRACKS.WEB_DESIGNS) {
if (phaseTypeId === PhaseNameToTypeId["Specification Review"]) {
scorecard = isNonProd ? 30001610 : 30001040;
} else if (phaseTypeId === PhaseNameToTypeId["Checkpoint Screening"]) {
scorecard = isNonProd ? 30001610 : 30001364;
} else if (phaseTypeId === PhaseNameToTypeId["Checkpoint Review"]) {
scorecard = isNonProd ? 30001610 : 30001004;
} else if (phaseTypeId === PhaseNameToTypeId.Screening) {
scorecard = isNonProd ? 30001610 : 30001363;
} else if (phaseTypeId === PhaseNameToTypeId.Review) {
scorecard = isNonProd ? 30001610 : 30001031;
} else if (phaseTypeId === PhaseNameToTypeId.Approval) {
scorecard = isNonProd ? 30001610 : 30000720;
}
} else if (subTrack === V4_SUBTRACKS.CODE && phaseTypeId === PhaseNameToTypeId.Review) {
scorecard = isNonProd ? 30002133 : 30002133;
} else if (phaseTypeId === PhaseNameToTypeId["Post-Mortem"]) {
scorecard = isNonProd ? 30001013 : 30001013;
}
return scorecard ? scorecard.toString() : undefined;
}
private mapProjectStatus(status: string | undefined): number | undefined {
if (status == null) return undefined;
const statusKey = _.findKey(ChallengeStatuses, (s) => s === status);
return LegacyChallengeStatusesMap[statusKey as keyof typeof LegacyChallengeStatusesMap];
}
private async mapGroupIds(groups: string[]): Promise<number[]> {
const oldGroupIds: number[] = [];
const token = await m2mToken.getM2MToken();
for (const groupId of groups) {
const group = await getRequest(`${process.env.TOPCODER_API_URL}/groups/${groupId}`, token);
if (group?.oldId) {
oldGroupIds.push(group.oldId);
}
}
return oldGroupIds;
}
}
export default new LegacyMapper();