-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathusagers.controller.ts
More file actions
491 lines (443 loc) · 14 KB
/
usagers.controller.ts
File metadata and controls
491 lines (443 loc) · 14 KB
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
import {
Body,
Controller,
Delete,
Get,
HttpStatus,
Param,
ParseBoolPipe,
ParseEnumPipe,
ParseIntPipe,
Patch,
Post,
Query,
Res,
UseGuards,
} from "@nestjs/common";
import { AuthGuard } from "@nestjs/passport";
import { ApiBearerAuth, ApiTags } from "@nestjs/swagger";
import { Response } from "express";
import { AllowUserStructureRoles } from "../../auth/decorators";
import { CurrentUsager } from "../../auth/decorators/current-usager.decorator";
import { CurrentUser } from "../../auth/decorators/current-user.decorator";
import { AppUserGuard } from "../../auth/guards";
import { UsagerAccessGuard } from "../../auth/guards/usager-access.guard";
import {
usagerRepository,
USAGER_LIGHT_ATTRIBUTES,
joinSelectFields,
messageSmsRepository,
usagerDocsRepository,
usagerEntretienRepository,
} from "../../database";
import { cleanPath } from "../../util";
import {
UserStructureAuthenticated,
USER_STRUCTURE_ROLE_ALL,
} from "../../_common/model";
import {
CheckDuplicateUsagerDto,
CreateUsagerDto,
EntretienDto,
ContactDetailsDto,
} from "../dto";
import { SearchUsagerDto } from "../dto/search-usager.dto";
import { UsagersService } from "../services";
import { AppLogsService } from "../../modules/app-logs/app-logs.service";
import { generateCerfaData } from "../services/cerfa";
import pdftk = require("node-pdftk");
import { join, resolve } from "path";
import { readFile } from "fs-extra";
import { ExpressResponse } from "../../util/express";
import {
Usager,
ETAPE_DOCUMENTS,
CerfaDocType,
UsagerDecision,
getUsagerDeadlines,
CriteriaSearchField,
} from "@domifa/common";
import { UsagerHistoryStateService } from "../services/usagerHistoryState.service";
import { domifaConfig } from "../../config";
import { FileManagerService } from "../../util/file-manager/file-manager.service";
import { Not } from "typeorm";
import { subMinutes } from "date-fns";
@Controller("usagers")
@ApiTags("usagers")
@UseGuards(AuthGuard("jwt"), AppUserGuard)
@ApiBearerAuth()
export class UsagersController {
constructor(
private readonly usagersService: UsagersService,
private readonly appLogsService: AppLogsService,
private readonly usagerHistoryStateService: UsagerHistoryStateService,
private readonly fileManagerService: FileManagerService
) {}
@Get()
@AllowUserStructureRoles(...USER_STRUCTURE_ROLE_ALL)
public async findAllByStructure(
@Query("chargerTousRadies", new ParseBoolPipe())
chargerTousRadies: boolean,
@CurrentUser() user: UserStructureAuthenticated
) {
const usagersNonRadies = await usagerRepository.find({
where: {
statut: Not("RADIE"),
structureId: user.structureId,
},
select: USAGER_LIGHT_ATTRIBUTES,
});
const usagersRadiesFirsts = await usagerRepository.find({
where: {
statut: "RADIE",
structureId: user.structureId,
},
select: USAGER_LIGHT_ATTRIBUTES,
take: chargerTousRadies ? undefined : 1600,
});
const usagersRadiesTotalCount = chargerTousRadies
? usagersRadiesFirsts.length
: await usagerRepository.count({
where: {
statut: "RADIE",
structureId: user.structureId,
},
});
const filterHistorique = (usager: Usager) => {
if (usager.historique && Array.isArray(usager.historique)) {
usager.historique = usager.historique.map((item: UsagerDecision) => ({
statut: item.statut,
dateDecision: item.dateDecision,
dateDebut: item.dateDebut,
dateFin: item.dateFin,
})) as UsagerDecision[];
}
return usager;
};
const usagersMerges = [...usagersNonRadies, ...usagersRadiesFirsts].map(
filterHistorique
);
return {
usagersRadiesTotalCount,
usagers: usagersMerges,
};
}
@Get("update-manage")
@AllowUserStructureRoles(...USER_STRUCTURE_ROLE_ALL)
public async updateManage(@CurrentUser() user: UserStructureAuthenticated) {
return await usagerRepository
.createQueryBuilder()
.select(joinSelectFields(USAGER_LIGHT_ATTRIBUTES))
.where(
`"structureId" = :structureId AND "updatedAt" >= :fiveMinutesAgo`,
{
structureId: user.structureId,
fiveMinutesAgo: subMinutes(new Date(), 5),
}
)
.getRawMany();
}
@Post("search-radies")
@AllowUserStructureRoles(...USER_STRUCTURE_ROLE_ALL)
public async searchInRadies(
@Body() search: SearchUsagerDto,
@CurrentUser() user: UserStructureAuthenticated
) {
const query = usagerRepository
.createQueryBuilder("usager")
.select(joinSelectFields(USAGER_LIGHT_ATTRIBUTES))
.where(`"structureId" = :structureId and statut = 'RADIE'`, {
structureId: user.structureId,
});
if (search.searchString) {
if (search.searchStringField === CriteriaSearchField.DEFAULT) {
query.andWhere("nom_prenom_surnom_ref ILIKE :str", {
str: `%${search.searchString}%`,
});
} else if (search.searchStringField === CriteriaSearchField.BIRTH_DATE) {
query.andWhere(`DATE("dateNaissance") = DATE(:date)`, {
date: search.searchString,
});
} else if (
search.searchStringField === CriteriaSearchField.PHONE_NUMBER
) {
query.andWhere(`telephone->>'numero' ILIKE :phone`, {
phone: `%${search.searchString}%`,
});
}
}
if (search?.lastInteractionDate) {
const deadlines = getUsagerDeadlines();
const date = deadlines[search.lastInteractionDate].value;
query.andWhere(
`("lastInteraction"->>'dateInteraction')::timestamp >= :date`,
{
date,
}
);
}
if (search?.echeance) {
const deadlines = getUsagerDeadlines();
const now = new Date();
const deadline = deadlines[search.echeance];
if (search.echeance === "EXCEEDED") {
query.andWhere(`(decision->>'dateDecision')::timestamp < :now`, {
now,
});
} else if (search.echeance.startsWith("NEXT_")) {
query.andWhere(
`(decision->>'dateDecision')::timestamp <= :deadline AND (decision->>'dateDecision')::timestamp > :now`,
{
deadline: deadline.value,
now,
}
);
} else if (search?.echeance.startsWith("PREVIOUS_")) {
query.andWhere(`(decision->>'dateDecision')::timestamp < :deadline`, {
deadline: deadline.value,
now,
});
}
}
if (
!search.searchString &&
!search?.echeance &&
!search?.lastInteractionDate
) {
query.take(100);
}
return await query.getRawMany();
}
@Post()
@AllowUserStructureRoles("simple", "responsable", "admin")
public createUsager(
@Body() usagerDto: CreateUsagerDto,
@CurrentUser() user: UserStructureAuthenticated
) {
return this.usagersService.create(usagerDto, user);
}
@UseGuards(UsagerAccessGuard)
@AllowUserStructureRoles("simple", "responsable", "admin")
@Patch(":usagerRef")
public async patchUsager(
@Body() usagerDto: CreateUsagerDto,
@CurrentUser() _user: UserStructureAuthenticated,
@CurrentUsager() currentUsager: Usager
) {
if (
!currentUsager.customRef &&
(!usagerDto.customRef || usagerDto.customRef === null)
) {
usagerDto.customRef = currentUsager.ref.toString();
}
await usagerRepository.update(
{ uuid: currentUsager.uuid },
{ ...usagerDto }
);
const createdAt = new Date();
const historyBeginDate = createdAt;
await this.usagerHistoryStateService.buildState({
usager: currentUsager,
createdAt,
createdEvent: "update-usager",
historyBeginDate,
});
return { ...currentUsager, ...usagerDto };
}
@UseGuards(UsagerAccessGuard)
@AllowUserStructureRoles("simple", "responsable", "admin", "facteur")
@Patch("contact-details/:usagerRef")
public async patchMailAndPhone(
@Body() contactDetails: ContactDetailsDto,
@CurrentUser() _user: UserStructureAuthenticated,
@CurrentUsager() currentUsager: Usager
) {
const elementsToUpdate = {
telephone: contactDetails.telephone,
contactByPhone: contactDetails.contactByPhone,
email: contactDetails.email,
};
await usagerRepository.update(
{ uuid: currentUsager.uuid },
{
...elementsToUpdate,
}
);
return {
...currentUsager,
...elementsToUpdate,
};
}
@UseGuards(UsagerAccessGuard)
@AllowUserStructureRoles("simple", "responsable", "admin")
@Post("entretien/:usagerRef")
public async setEntretien(
@Body() entretien: EntretienDto,
@CurrentUser() _user: UserStructureAuthenticated,
@CurrentUsager() currentUsager: Usager
) {
await usagerEntretienRepository.update(
{ usagerUUID: currentUsager.uuid },
{ ...entretien }
);
if (currentUsager.decision.statut === "INSTRUCTION") {
await usagerRepository.update(
{ uuid: currentUsager.uuid },
{
etapeDemande: ETAPE_DOCUMENTS,
}
);
}
// TODO: optimize this "get". Maybe we can do this better
const usager = await usagerRepository.getUsager(currentUsager.uuid);
const createdAt = new Date();
const historyBeginDate = createdAt;
await this.usagerHistoryStateService.buildState({
usager,
createdAt,
createdEvent: "update-entretien",
historyBeginDate,
});
return usager;
}
@UseGuards(UsagerAccessGuard)
@AllowUserStructureRoles("simple", "responsable", "admin")
@Get("next-step/:usagerRef/:etapeDemande")
public async nextStep(
@Param("etapeDemande", new ParseIntPipe()) etapeDemande: number,
@Param("usagerRef", new ParseIntPipe()) _usagerRef: number,
@CurrentUsager() currentUsager: Usager
): Promise<Usager> {
currentUsager.etapeDemande = etapeDemande;
await usagerRepository.update(
{ uuid: currentUsager.uuid },
{
etapeDemande,
}
);
return currentUsager;
}
@UseGuards(UsagerAccessGuard)
@AllowUserStructureRoles(...USER_STRUCTURE_ROLE_ALL)
@Get("stop-courrier/:usagerRef")
public async stopCourrier(
@CurrentUsager() currentUsager: Usager,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
@Param("usagerRef", new ParseIntPipe()) _usagerRef: number
): Promise<Usager> {
if (currentUsager.options.npai.actif) {
currentUsager.options.npai.actif = false;
currentUsager.options.npai.dateDebut = null;
} else {
currentUsager.options.npai.actif = true;
currentUsager.options.npai.dateDebut = new Date();
}
await usagerRepository.update(
{ uuid: currentUsager.uuid },
{
options: currentUsager.options,
}
);
return currentUsager;
}
@AllowUserStructureRoles("simple", "responsable", "admin")
@Post("check-duplicates-name")
public async checkDuplicates(
@Body() duplicateUsagerDto: CheckDuplicateUsagerDto,
@CurrentUser() user: UserStructureAuthenticated
): Promise<Usager[]> {
return await usagerRepository
.createQueryBuilder()
.select(
joinSelectFields(["nom", "prenom", "ref", "customRef", "dateNaissance"])
)
.where(
`"structureId" = :structureId and LOWER("nom") = :nom and LOWER("prenom") = :prenom`,
{
structureId: user.structureId,
nom: duplicateUsagerDto.nom,
prenom: duplicateUsagerDto.prenom,
}
)
.getRawMany();
}
@UseGuards(UsagerAccessGuard)
@AllowUserStructureRoles("responsable", "admin")
@Delete(":usagerRef")
public async delete(
@CurrentUser() user: UserStructureAuthenticated,
@CurrentUsager() usager: Usager,
@Res() res: ExpressResponse
): Promise<ExpressResponse> {
// Suppression des Documents
await usagerDocsRepository.delete({
usagerRef: usager.ref,
structureId: user.structureId,
});
// Suppression des SMS
await messageSmsRepository.delete({
usagerRef: usager.ref,
structureId: user.structureId,
});
// Suppression du domicilié
await usagerRepository.delete({
ref: usager.ref,
structureId: user.structureId,
});
// Ajout d'un log
await this.appLogsService.create({
userId: user.id,
usagerRef: usager.ref,
structureId: user.structureId,
action: "SUPPRIMER_DOMICILIE",
});
const key = `${join(
domifaConfig().upload.bucketRootDir,
"usager-documents",
cleanPath(user.structure.uuid),
cleanPath(usager.uuid)
)}/`;
try {
await this.fileManagerService.deleteAllUnderStructure(key);
} catch (e) {
console.warn(e);
}
return res.status(HttpStatus.OK).json({ message: "DELETE_SUCCESS" });
}
@UseGuards(UsagerAccessGuard)
@AllowUserStructureRoles(...USER_STRUCTURE_ROLE_ALL)
@Get("cerfa/:usagerRef/:typeCerfa")
public async getAttestation(
@Res() res: Response,
@Param("typeCerfa", new ParseEnumPipe(CerfaDocType))
typeCerfa: CerfaDocType,
@Param("usagerRef", new ParseIntPipe()) _usagerRef: number,
@CurrentUser() user: UserStructureAuthenticated,
@CurrentUsager() currentUsager: Usager
) {
const pdfForm =
typeCerfa === CerfaDocType.attestation ||
typeCerfa === CerfaDocType.attestation_future
? "../../_static/static-docs/attestation.pdf"
: "../../_static/static-docs/demande.pdf";
const pdfInfos = generateCerfaData(currentUsager, user, typeCerfa);
const filePath = await readFile(resolve(__dirname, pdfForm));
try {
const buffer = await pdftk.input(filePath).fillForm(pdfInfos).output();
return res.setHeader("content-type", "application/pdf").send(buffer);
} catch (err) {
return res
.status(HttpStatus.INTERNAL_SERVER_ERROR)
.json({ message: "CERFA_ERROR" });
}
}
@UseGuards(UsagerAccessGuard)
@AllowUserStructureRoles(...USER_STRUCTURE_ROLE_ALL)
@Get(":usagerRef")
public findOne(
@Param("usagerRef", new ParseIntPipe()) _usagerRef: number,
@CurrentUsager() currentUsager: Usager
): Usager {
return currentUsager;
}
}