-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathuser.repository.js
666 lines (587 loc) · 23.7 KB
/
user.repository.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
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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
import { knex } from '../../../../db/knex-database-connection.js';
import { InvalidOrAlreadyUsedEmailError } from '../../../identity-access-management/domain/errors.js';
import * as legalDocumentApi from '../../../legal-documents/application/api/legal-documents-api.js';
import * as organizationFeaturesApi from '../../../organizational-entities/application/api/organization-features-api.js';
import { Organization } from '../../../organizational-entities/domain/models/Organization.js';
import { OrganizationLearnerForAdmin } from '../../../prescription/learner-management/domain/read-models/OrganizationLearnerForAdmin.js';
import * as organizationLearnerImportFormatRepository from '../../../prescription/learner-management/infrastructure/repositories/organization-learner-import-format-repository.js';
import { DomainTransaction } from '../../../shared/domain/DomainTransaction.js';
import {
AlreadyExistingEntityError,
AlreadyRegisteredUsernameError,
UserNotFoundError,
} from '../../../shared/domain/errors.js';
import { CertificationCenter } from '../../../shared/domain/models/CertificationCenter.js';
import { CertificationCenterMembership } from '../../../shared/domain/models/CertificationCenterMembership.js';
import { Membership } from '../../../shared/domain/models/Membership.js';
import { fetchPage, isUniqConstraintViolated } from '../../../shared/infrastructure/utils/knex-utils.js';
import { NON_OIDC_IDENTITY_PROVIDERS } from '../../domain/constants/identity-providers.js';
import { QUERY_TYPES } from '../../domain/constants/user-query.js';
import { LastUserApplicationConnection } from '../../domain/models/LastUserApplicationConnection.js';
import { User } from '../../domain/models/User.js';
import { UserDetailsForAdmin } from '../../domain/models/UserDetailsForAdmin.js';
import { UserLogin } from '../../domain/models/UserLogin.js';
const getByEmail = async function (email) {
const foundUser = await knex.from('users').whereRaw('LOWER("email") = ?', email.toLowerCase()).first();
if (!foundUser) {
throw new UserNotFoundError(`User not found for email ${email}`);
}
return new User(foundUser);
};
/**
* @param userId
* @return {Promise<User>}
* @throws {UserNotFoundError}
*/
const getFullById = async function (userId) {
const userDTO = await knex('users').where({ id: userId }).first();
if (!userDTO) {
throw new UserNotFoundError();
}
const membershipsDTO = await knex('memberships').where({ userId: userDTO.id, disabledAt: null });
const certificationCenterMembershipsDTO = await knex('certification-center-memberships').where({
userId: userDTO.id,
disabledAt: null,
});
const authenticationMethodsDTO = await knex('authentication-methods').where({
userId: userDTO.id,
identityProvider: 'PIX',
});
return _toDomainFromDTO({ userDTO, membershipsDTO, certificationCenterMembershipsDTO, authenticationMethodsDTO });
};
const getByUsernameOrEmailWithRolesAndPassword = async function (username) {
const userDTO = await knex('users')
.whereRaw('LOWER("email") = ?', username.toLowerCase())
.orWhere({ username: username.toLowerCase() })
.first();
if (!userDTO) {
throw new UserNotFoundError();
}
const membershipsDTO = await knex('memberships').where({ userId: userDTO.id, disabledAt: null });
const certificationCenterMembershipsDTO = await knex('certification-center-memberships').where({
userId: userDTO.id,
disabledAt: null,
});
const authenticationMethodsDTO = await knex('authentication-methods').where({
userId: userDTO.id,
identityProvider: 'PIX',
});
return _toDomainFromDTO({ userDTO, membershipsDTO, certificationCenterMembershipsDTO, authenticationMethodsDTO });
};
/**
* @param {string} userId
* @return {Promise<User>}
* @throws {UserNotFoundError}
*/
const get = async function (userId) {
const knexConn = DomainTransaction.getConnection();
const foundUser = await knexConn('users').where('id', userId).first();
if (!foundUser) throw new UserNotFoundError(`User not found for ID ${userId}`);
return new User(foundUser);
};
const getByIds = async function (userIds) {
const dbUsers = await knex('users').whereIn('id', userIds);
return dbUsers.map((dbUser) => new User(dbUser));
};
const getForObfuscation = async function (userId) {
const foundUser = await knex.select('id', 'email', 'username').from('users').where({ id: userId }).first();
if (!foundUser) {
throw new UserNotFoundError(`User not found for ID ${userId}`);
}
return new User({ id: foundUser.id, email: foundUser.email, username: foundUser.username });
};
const getUserDetailsForAdmin = async function (userId) {
const userDTO = await knex('users')
.leftJoin('user-logins', 'user-logins.userId', 'users.id')
.leftJoin('users AS anonymisedBy', 'anonymisedBy.id', 'users.hasBeenAnonymisedBy')
.select([
'users.*',
'user-logins.id AS userLoginId',
'user-logins.failureCount',
'user-logins.temporaryBlockedUntil',
'user-logins.blockedAt',
'user-logins.lastLoggedAt AS lastLoggedAt',
'anonymisedBy.firstName AS anonymisedByFirstName',
'anonymisedBy.lastName AS anonymisedByLastName',
])
.where({ 'users.id': userId })
.first();
if (!userDTO) {
throw new UserNotFoundError(`User not found for ID ${userId}`);
}
const pixOrgaLegalDocumentStatus = await legalDocumentApi.getLegalDocumentStatusByUserId({
userId,
service: 'pix-orga',
type: 'TOS',
});
const lastUserApplicationConnectionsDTO = await knex('last-user-application-connections').where({ userId });
const authenticationMethodsDTO = await knex('authentication-methods')
.select([
'authentication-methods.id',
'authentication-methods.identityProvider',
'authentication-methods.authenticationComplement',
'authentication-methods.lastLoggedAt',
])
.join('users', 'users.id', 'authentication-methods.userId')
.where({ userId });
const organizationLearnersDTO = await knex('view-active-organization-learners')
.select([
'view-active-organization-learners.*',
'organizations.name AS organizationName',
'organizations.isManagingStudents AS organizationIsManagingStudents',
])
.join('organizations', 'organizations.id', 'view-active-organization-learners.organizationId')
.where({ userId })
.orderBy('id');
for (const learner of organizationLearnersDTO) {
const features = await organizationFeaturesApi.getAllFeaturesFromOrganization(learner.organizationId);
learner.hasImportFeature = features.hasLearnersImportFeature;
if (learner.hasImportFeature) {
const importFormat = await organizationLearnerImportFormatRepository.get(learner.organizationId);
learner.additionalColumns = importFormat.extraColumns;
}
}
const pixAdminRolesDTO = await knex('pix-admin-roles').where({ userId });
return _fromKnexDTOToUserDetailsForAdmin({
userDTO,
pixOrgaLegalDocumentStatus,
organizationLearnersDTO,
authenticationMethodsDTO,
pixAdminRolesDTO,
lastUserApplicationConnectionsDTO,
});
};
const findPaginatedFiltered = async function ({ filter, page, queryType = QUERY_TYPES.CONTAINS }) {
const query = knex('users')
.where((qb) => _setSearchFiltersForQueryBuilder(filter, qb, queryType))
.orderBy([{ column: 'firstName', order: 'asc' }, { column: 'lastName', order: 'asc' }, { column: 'id' }]);
const { results, pagination } = await fetchPage(query, page);
const users = results.map((userDTO) => new User(userDTO));
return { models: users, pagination };
};
const getWithMemberships = async function (userId) {
const userDTO = await knex('users').where({ id: userId }).first();
if (!userDTO) {
throw new UserNotFoundError();
}
const membershipsDTO = await knex('memberships')
.select(
'memberships.*',
'organizations.name AS organizationName',
'organizations.type AS organizationType',
'organizations.externalId AS organizationExternalId',
'organizations.isManagingStudents AS organizationIsManagingStudents',
)
.join('organizations', 'organizations.id', 'memberships.organizationId')
.where({ userId: userDTO.id, disabledAt: null });
return _toDomainFromDTO({ userDTO, membershipsDTO });
};
const getWithCertificationCenterMemberships = async function (userId) {
const user = await knex('users').where({ id: userId }).first();
if (!user) throw new UserNotFoundError(`User not found for ID ${userId}`);
const certificationCenterMemberships = await knex('certification-center-memberships')
.where({ userId })
.whereNull('disabledAt');
const certificationCenters = await knex('certification-centers').whereIn(
'id',
certificationCenterMemberships.map(
(certificationCenterMembership) => certificationCenterMembership.certificationCenterId,
),
);
return new User({
...user,
certificationCenterMemberships: certificationCenterMemberships.map(
(certificationCenterMembership) =>
new CertificationCenterMembership({
...certificationCenterMembership,
certificationCenter: new CertificationCenter(
certificationCenters.find(
(certificationCenter) => certificationCenter.id === certificationCenterMembership.certificationCenterId,
),
),
}),
),
});
};
const getBySamlId = async function (samlId) {
const user = await knex('users')
.select('users.*')
.join('authentication-methods', function () {
this.on('users.id', 'authentication-methods.userId')
.andOnVal('authentication-methods.identityProvider', NON_OIDC_IDENTITY_PROVIDERS.GAR.code)
.andOnVal('authentication-methods.externalIdentifier', samlId);
})
.first();
return user ? _toDomainFromDTO({ userDTO: user }) : null;
};
const update = async function (properties) {
const { id: userId, ...data } = properties;
data.updatedAt = new Date();
await knex('users').where({ id: userId }).update(data);
};
const updateWithEmailConfirmed = function ({ id, userAttributes }) {
const knexConn = DomainTransaction.getConnection();
return knexConn('users')
.where({ id })
.update({ ...userAttributes, updatedAt: new Date() });
};
const checkIfEmailIsAvailable = async function (email) {
const existingUserEmail = await knex('users').whereRaw('LOWER("email") = ?', email.toLowerCase()).first();
if (existingUserEmail) throw new InvalidOrAlreadyUsedEmailError();
return email;
};
const isUserExistingByEmail = async function (email) {
const existingUser = await knex('users').whereRaw('LOWER("email") = ?', email.toLowerCase()).first();
if (!existingUser) throw new UserNotFoundError();
return true;
};
const updateEmail = async function ({ id, email }) {
const [updatedUserEmail] = await knex('users').where({ id }).update({ email, updatedAt: new Date() }).returning('*');
if (!updatedUserEmail) throw new UserNotFoundError(`User not found for ID ${id}`);
return new User(updatedUserEmail);
};
const updateEmailConfirmed = async function (userId) {
const knexConn = DomainTransaction.getConnection();
const updatedAt = new Date();
await knexConn('users').where({ id: userId }).update({ emailConfirmedAt: updatedAt, updatedAt });
};
const updateUserDetailsForAdministration = async function ({ id, userAttributes }, { preventUpdatedAt } = {}) {
const knexConn = DomainTransaction.getConnection();
try {
if (!preventUpdatedAt) {
userAttributes.updatedAt = new Date();
}
const [userDTO] = await knexConn('users').where({ id }).update(userAttributes).returning('*');
if (!userDTO) {
throw new UserNotFoundError(`User not found for ID ${id}`);
}
} catch (err) {
if (isUniqConstraintViolated(err)) {
throw new AlreadyExistingEntityError('Cette adresse e-mail ou cet identifiant est déjà utilisé(e).');
}
throw err;
}
};
const updateHasSeenAssessmentInstructionsToTrue = async function (id) {
const [user] = await knex('users')
.where({ id })
.update({ hasSeenAssessmentInstructions: true, updatedAt: new Date() })
.returning('*');
return new User(user);
};
const updateHasSeenNewDashboardInfoToTrue = async function (id) {
const [user] = await knex('users')
.where({ id })
.update({ hasSeenNewDashboardInfo: true, updatedAt: new Date() })
.returning('*');
return new User(user);
};
const updateHasSeenChallengeTooltip = async function ({ userId, challengeType }) {
let user;
if (challengeType === 'focused') {
[user] = await knex('users')
.where({ id: userId })
.update({ hasSeenFocusedChallengeTooltip: true, updatedAt: new Date() })
.returning('*');
}
if (challengeType === 'other') {
[user] = await knex('users')
.where({ id: userId })
.update({ hasSeenOtherChallengesTooltip: true, updatedAt: new Date() })
.returning('*');
}
return new User(user);
};
const acceptPixLastTermsOfService = async function (id) {
const [user] = await knex('users')
.where({ id })
.update({ lastTermsOfServiceValidatedAt: new Date(), mustValidateTermsOfService: false, updatedAt: new Date() })
.returning('*');
return new User(user);
};
const updatePixCertifTermsOfServiceAcceptedToTrue = async function (id) {
const now = new Date();
const [user] = await knex('users')
.where({ id })
.update({ pixCertifTermsOfServiceAccepted: true, lastPixCertifTermsOfServiceValidatedAt: now, updatedAt: now })
.returning('*');
return new User(user);
};
const isUsernameAvailable = async function (username) {
const foundUser = await knex('users').where({ username }).first();
if (foundUser) throw new AlreadyRegisteredUsernameError();
return username;
};
const updateUsername = async function ({ id, username }) {
const knexConn = DomainTransaction.getConnection();
const [updatedUsername] = await knexConn('users')
.where({ id })
.update({ username, updatedAt: new Date() })
.returning('*');
if (!updatedUsername) throw new UserNotFoundError(`User not found for ID ${id}`);
return new User(updatedUsername);
};
const findByExternalIdentifier = async function ({ externalIdentityId, identityProvider }) {
const user = await knex('users')
.select('users.*')
.join('authentication-methods', function () {
this.on('users.id', 'authentication-methods.userId')
.andOnVal('authentication-methods.identityProvider', identityProvider)
.andOnVal('authentication-methods.externalIdentifier', externalIdentityId);
})
.first();
return user ? _toDomainFromDTO({ userDTO: user }) : null;
};
const findAnotherUserByEmail = async function (userId, email) {
const anotherUsers = await knex('users').whereNot('id', userId).whereRaw('LOWER("email") = ?', email.toLowerCase());
return anotherUsers.map((anotherUser) => new User(anotherUser));
};
const findAnotherUserByUsername = async function (userId, username) {
const anotherUsers = await knex('users').whereNot('id', userId).where({ username });
return anotherUsers.map((anotherUser) => new User(anotherUser));
};
/**
* @param {string} userId
* @return {Promise<User>}
*/
const findById = async function (userId) {
const user = await knex('users').where({ id: userId }).first();
return user ? new User(user) : null;
};
/**
* @param {{
* userId: string
* }} params
* @return {Promise<User>}
*/
const updateLastDataProtectionPolicySeenAt = async function ({ userId }) {
const now = new Date();
const [user] = await knex('users')
.where({ id: userId })
.update({ lastDataProtectionPolicySeenAt: now, updatedAt: new Date() })
.returning('*');
return new User(user);
};
/**
* @typedef {Object} UserRepository
* @property {function} acceptPixLastTermsOfService
* @property {function} checkIfEmailIsAvailable
* @property {function} findAnotherUserByEmail
* @property {function} findAnotherUserByUsername
* @property {function} findByExternalIdentifier
* @property {function} findById
* @property {function} findPaginatedFiltered
* @property {function} get
* @property {function} getByEmail
* @property {function} getByIds
* @property {function} getBySamlId
* @property {function} getByUsernameOrEmailWithRolesAndPassword
* @property {function} getForObfuscation
* @property {function} getFullById
* @property {function} getUserDetailsForAdmin
* @property {function} getWithCertificationCenterMemberships
* @property {function} getWithMemberships
* @property {function} isUserExistingByEmail
* @property {function} isUsernameAvailable
* @property {function} update
* @property {function} updateEmail
* @property {function} updateEmailConfirmed
* @property {function} updateHasSeenAssessmentInstructionsToTrue
* @property {function} updateHasSeenChallengeTooltip
* @property {function} updateHasSeenNewDashboardInfoToTrue
* @property {function} updateLastDataProtectionPolicySeenAt
* @property {function} updatePixCertifTermsOfServiceAcceptedToTrue
* @property {function} updateUserDetailsForAdministration
* @property {function} updateUsername
* @property {function} updateWithEmailConfirmed
*/
export {
acceptPixLastTermsOfService,
checkIfEmailIsAvailable,
findAnotherUserByEmail,
findAnotherUserByUsername,
findByExternalIdentifier,
findById,
findPaginatedFiltered,
get,
getByEmail,
getByIds,
getBySamlId,
getByUsernameOrEmailWithRolesAndPassword,
getForObfuscation,
getFullById,
getUserDetailsForAdmin,
getWithCertificationCenterMemberships,
getWithMemberships,
isUserExistingByEmail,
isUsernameAvailable,
update,
updateEmail,
updateEmailConfirmed,
updateHasSeenAssessmentInstructionsToTrue,
updateHasSeenChallengeTooltip,
updateHasSeenNewDashboardInfoToTrue,
updateLastDataProtectionPolicySeenAt,
updatePixCertifTermsOfServiceAcceptedToTrue,
updateUserDetailsForAdministration,
updateUsername,
updateWithEmailConfirmed,
};
function _fromKnexDTOToUserDetailsForAdmin({
userDTO,
pixOrgaLegalDocumentStatus,
organizationLearnersDTO,
authenticationMethodsDTO,
pixAdminRolesDTO,
lastUserApplicationConnectionsDTO,
}) {
const organizationLearners = organizationLearnersDTO.map(
(organizationLearnerDTO) =>
new OrganizationLearnerForAdmin({
id: organizationLearnerDTO.id,
firstName: organizationLearnerDTO.firstName,
lastName: organizationLearnerDTO.lastName,
birthdate: organizationLearnerDTO.birthdate,
division: organizationLearnerDTO.division,
group: organizationLearnerDTO.group,
organizationId: organizationLearnerDTO.organizationId,
organizationName: organizationLearnerDTO.organizationName,
createdAt: organizationLearnerDTO.createdAt,
updatedAt: organizationLearnerDTO.updatedAt,
isDisabled: organizationLearnerDTO.isDisabled,
organizationIsManagingStudents:
organizationLearnerDTO.organizationIsManagingStudents || organizationLearnerDTO.hasImportFeature,
additionalInformations: organizationLearnerDTO.attributes,
additionalColumns: organizationLearnerDTO.additionalColumns,
}),
);
const userLogin = new UserLogin({
id: userDTO.userLoginId,
userId: userDTO.userId,
failureCount: userDTO.failureCount,
temporaryBlockedUntil: userDTO.temporaryBlockedUntil,
blockedAt: userDTO.blockedAt,
});
const lastApplicationConnections = lastUserApplicationConnectionsDTO.map(
(lastUserApplicationConnectionDTO) => new LastUserApplicationConnection(lastUserApplicationConnectionDTO),
);
const authenticationMethods = authenticationMethodsDTO.map((authenticationMethod) => {
const isPixAuthenticationMethodWithAuthenticationComplement =
authenticationMethod.identityProvider === NON_OIDC_IDENTITY_PROVIDERS.PIX.code &&
authenticationMethod.authenticationComplement;
if (isPixAuthenticationMethodWithAuthenticationComplement) {
// eslint-disable-next-line no-unused-vars
const { password, ...authenticationComplement } = authenticationMethod.authenticationComplement;
return {
...authenticationMethod,
authenticationComplement,
};
}
return authenticationMethod;
});
return new UserDetailsForAdmin({
id: userDTO.id,
firstName: userDTO.firstName,
lastName: userDTO.lastName,
username: userDTO.username,
email: userDTO.email,
cgu: userDTO.cgu,
pixOrgaTermsOfServiceAccepted: pixOrgaLegalDocumentStatus.status === 'accepted',
pixCertifTermsOfServiceAccepted: userDTO.pixCertifTermsOfServiceAccepted,
lang: userDTO.lang,
locale: userDTO.locale,
lastTermsOfServiceValidatedAt: userDTO.lastTermsOfServiceValidatedAt,
lastPixOrgaTermsOfServiceValidatedAt: pixOrgaLegalDocumentStatus.acceptedAt,
lastPixCertifTermsOfServiceValidatedAt: userDTO.lastPixCertifTermsOfServiceValidatedAt,
lastLoggedAt: userDTO.lastLoggedAt,
emailConfirmedAt: userDTO.emailConfirmedAt,
organizationLearners,
authenticationMethods,
userLogin,
hasBeenAnonymised: userDTO.hasBeenAnonymised,
hasBeenAnonymisedBy: userDTO.hasBeenAnonymisedBy,
updatedAt: userDTO.updatedAt,
createdAt: userDTO.createdAt,
anonymisedByFirstName: userDTO.anonymisedByFirstName,
anonymisedByLastName: userDTO.anonymisedByLastName,
isPixAgent: pixAdminRolesDTO.length > 0,
lastApplicationConnections,
});
}
/**
* @param userDTO
* @param membershipsDTO
* @param certificationCenterMembershipsDTO
* @param authenticationMethodsDTO
* @return {User}
* @private
*/
function _toDomainFromDTO({
userDTO,
membershipsDTO = [],
certificationCenterMembershipsDTO = [],
authenticationMethodsDTO = [],
}) {
const memberships = membershipsDTO.map((membershipDTO) => {
let organization;
if (membershipDTO.organizationName) {
organization = new Organization({
id: membershipDTO.organizationId,
name: membershipDTO.organizationName,
type: membershipDTO.organizationType,
externalId: membershipDTO.organizationExternalId,
isManagingStudents: membershipDTO.organizationIsManagingStudents,
});
}
return new Membership({ ...membershipDTO, organization });
});
const certificationCenterMemberships = certificationCenterMembershipsDTO.map(
(certificationCenterMembershipDTO) => new CertificationCenterMembership(certificationCenterMembershipDTO),
);
return new User({
id: userDTO.id,
cgu: userDTO.cgu,
pixCertifTermsOfServiceAccepted: userDTO.pixCertifTermsOfServiceAccepted,
email: userDTO.email,
emailConfirmedAt: userDTO.emailConfirmedAt,
username: userDTO.username,
firstName: userDTO.firstName,
knowledgeElements: userDTO.knowledgeElements,
lastName: userDTO.lastName,
lastTermsOfServiceValidatedAt: userDTO.lastTermsOfServiceValidatedAt,
lastPixCertifTermsOfServiceValidatedAt: userDTO.lastPixCertifTermsOfServiceValidatedAt,
hasSeenAssessmentInstructions: userDTO.hasSeenAssessmentInstructions,
hasSeenNewDashboardInfo: userDTO.hasSeenNewDashboardInfo,
hasSeenFocusedChallengeTooltip: userDTO.hasSeenFocusedChallengeTooltip,
hasSeenOtherChallengesTooltip: userDTO.hasSeenOtherChallengesTooltip,
mustValidateTermsOfService: userDTO.mustValidateTermsOfService,
lang: userDTO.lang,
locale: userDTO.locale,
isAnonymous: userDTO.isAnonymous,
pixScore: userDTO.pixScore,
scorecards: userDTO.scorecards,
campaignParticipations: userDTO.campaignParticipations,
memberships,
certificationCenterMemberships,
authenticationMethods: authenticationMethodsDTO,
});
}
function _setSearchFiltersForQueryBuilder(filter, qb, queryType) {
const id = filter.id;
const fields = ['email', 'firstName', 'lastName', 'email', 'username'];
if (id) {
qb.where({ id });
}
fields.forEach((field) => {
if (filter[field]) {
_applyQueryType(field, filter[field], qb, queryType);
}
});
}
function _applyQueryType(field, value, qb, queryType) {
if (queryType === QUERY_TYPES.EXACT_QUERY) {
qb.where(field, value);
} else {
qb.whereILike(field, `%${value}%`);
}
}