-
Notifications
You must be signed in to change notification settings - Fork 171
/
Copy pathPathwayController.java
610 lines (560 loc) · 20.1 KB
/
PathwayController.java
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
package org.ohdsi.webapi.pathway;
import com.odysseusinc.arachne.commons.utils.ConverterUtils;
import org.ohdsi.webapi.Constants;
import org.ohdsi.webapi.Pagination;
import org.ohdsi.webapi.check.CheckResult;
import org.ohdsi.webapi.check.checker.pathway.PathwayChecker;
import org.ohdsi.webapi.common.SourceMapKey;
import org.ohdsi.webapi.common.generation.CommonGenerationDTO;
import org.ohdsi.webapi.common.sensitiveinfo.CommonGenerationSensitiveInfoService;
import org.ohdsi.webapi.i18n.I18nService;
import org.ohdsi.webapi.job.JobExecutionResource;
import org.ohdsi.webapi.pathway.converter.SerializedPathwayAnalysisToPathwayAnalysisConverter;
import org.ohdsi.webapi.pathway.domain.PathwayAnalysisEntity;
import org.ohdsi.webapi.pathway.domain.PathwayAnalysisGenerationEntity;
import org.ohdsi.webapi.pathway.dto.*;
import org.ohdsi.webapi.pathway.dto.internal.PathwayAnalysisResult;
import org.ohdsi.webapi.security.PermissionService;
import org.ohdsi.webapi.source.SourceService;
import org.ohdsi.webapi.source.Source;
import org.ohdsi.webapi.tag.TagService;
import org.ohdsi.webapi.tag.dto.TagNameListRequestDTO;
import org.ohdsi.webapi.util.ExportUtil;
import org.ohdsi.webapi.util.ExceptionUtils;
import org.ohdsi.webapi.versioning.dto.VersionDTO;
import org.ohdsi.webapi.versioning.dto.VersionUpdateDTO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.core.convert.ConversionService;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageImpl;
import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
import javax.transaction.Transactional;
import javax.ws.rs.*;
import javax.ws.rs.core.MediaType;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.stream.Collectors;
@Path("/pathway-analysis")
@Controller
public class PathwayController {
private ConversionService conversionService;
private ConverterUtils converterUtils;
private PathwayService pathwayService;
private final SourceService sourceService;
private final CommonGenerationSensitiveInfoService<CommonGenerationDTO> sensitiveInfoService;
private final I18nService i18nService;
private PathwayChecker checker;
private PermissionService permissionService;
@Autowired
public PathwayController(ConversionService conversionService, ConverterUtils converterUtils, PathwayService pathwayService, SourceService sourceService, CommonGenerationSensitiveInfoService sensitiveInfoService, PathwayChecker checker, PermissionService permissionService, I18nService i18nService) {
this.conversionService = conversionService;
this.converterUtils = converterUtils;
this.pathwayService = pathwayService;
this.sourceService = sourceService;
this.sensitiveInfoService = sensitiveInfoService;
this.i18nService = i18nService;
this.checker = checker;
this.permissionService = permissionService;
}
/**
* Create a new pathway analysis design.
*
* A pathway analysis consists of a set of target cohorts, event cohorts, and
* analysis settings for collapsing and repeat events.
*
* By default, the new design will have the createdBy set to the authenticated
* user, and the createdDate to the current time.
*
* @summary Create Pathway Analysis
* @param dto the pathway analysis design
* @return the created pathway analysis
*/
@POST
@Path("/")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
@Transactional
public PathwayAnalysisDTO create(final PathwayAnalysisDTO dto) {
PathwayAnalysisEntity pathwayAnalysis = conversionService.convert(dto, PathwayAnalysisEntity.class);
PathwayAnalysisEntity saved = pathwayService.create(pathwayAnalysis);
return reloadAndConvert(saved.getId());
}
/**
* Creates a copy of a pathway analysis.
*
* The new pathway will be a copy of the specified pathway analysis id, but
* won't contain any tag assignments.
*
* @summary Copy Pathway Analysis
* @param id the analysis to copy
* @return The copied pathway analysis.
*/
@POST
@Path("/{id}")
@Produces(MediaType.APPLICATION_JSON)
@Transactional
public PathwayAnalysisDTO copy(@PathParam("id") final Integer id) {
PathwayAnalysisDTO dto = get(id);
dto.setId(null);
dto.setName(pathwayService.getNameForCopy(dto.getName()));
dto.setTags(null);
return create(dto);
}
/**
* Import a pathway analysis
*
* The imported analysis contains the cohort definitions referenced by the
* targets and event cohort paramaters. During import, any cohort definition
* not found (by a hash check) will be inserted into the database as a new
* cohort definition, and the cohort definition ids that are referenced will
* be updated to reflect the new cohort definition ids.
*
* @param dto
* @return
*/
@POST
@Path("/import")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
@Transactional
public PathwayAnalysisDTO importAnalysis(final PathwayAnalysisExportDTO dto) {
dto.setTags(null);
dto.setName(pathwayService.getNameWithSuffix(dto.getName()));
PathwayAnalysisEntity pathwayAnalysis = conversionService.convert(dto, PathwayAnalysisEntity.class);
PathwayAnalysisEntity imported = pathwayService.importAnalysis(pathwayAnalysis);
return reloadAndConvert(imported.getId());
}
/**
* Get a page of pathway analysis designs for list
*
* From the selected page, a list of PathwayAnalysisDTOs are returned
* containing summary information about the analysis (name, id, modified
* dates, etc) * @param pageable indicates how many elements per page to
* return, and which page to fetch
*
* @summary List Designs by Page
* @return the list of pathway analysis DTOs.
*/
@GET
@Path("/")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
@Transactional
public Page<PathwayAnalysisDTO> list(@Pagination Pageable pageable) {
return pathwayService.getPage(pageable).map(pa -> {
PathwayAnalysisDTO dto = conversionService.convert(pa, PathwayAnalysisDTO.class);
permissionService.fillWriteAccess(pa, dto);
permissionService.fillReadAccess(pa, dto);
return dto;
});
}
/**
* Check that a pathway analysis name exists.
*
* This method checks to see if a pathway analysis name exists. The id
* parameter is used to 'ignore' an analysis from checking. This is used when
* you have an existing analysis which should be ignored when checking if the
* name already exists.
*
* @Summary Check Pathway Analysis Name Name
* @param id the pathway analysis id
* @param name the name to check
* @return a count of the number of pathway analysis designs with the same
* name
*/
@GET
@Path("/{id}/exists")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public int getCountPAWithSameName(@PathParam("id") @DefaultValue("0") final int id, @QueryParam("name") String name) {
return pathwayService.getCountPAWithSameName(id, name);
}
/**
* Updates a pathway analysis design.
*
* The modifiedDate and modifiedValues will be populated automatically.
*
* @summary Update Pathway Analysis Design
* @param id the analysis to update
* @param dto the pathway analysis design
* @return the updated pathway analysis design.
*/
@PUT
@Path("/{id}")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
@Transactional
public PathwayAnalysisDTO update(@PathParam("id") final Integer id, @RequestBody final PathwayAnalysisDTO dto) {
pathwayService.saveVersion(id);
PathwayAnalysisEntity pathwayAnalysis = conversionService.convert(dto, PathwayAnalysisEntity.class);
pathwayAnalysis.setId(id);
pathwayService.update(pathwayAnalysis);
return reloadAndConvert(id);
}
/**
* Get the pathway analysis design.
*
* @summary Get Pathway Analysis Design
* @param id the design id
* @return a pathway analysis design for the given id
*/
@GET
@Path("/{id}")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
@Transactional
public PathwayAnalysisDTO get(@PathParam("id") final Integer id) {
PathwayAnalysisEntity pathwayAnalysis = pathwayService.getById(id);
ExceptionUtils.throwNotFoundExceptionIfNull(pathwayAnalysis, String.format(i18nService.translate("pathways.manager.messages.notfound", "There is no pathway analysis with id = %d."), id));
Map<Integer, Integer> eventCodes = pathwayService.getEventCohortCodes(pathwayAnalysis);
PathwayAnalysisDTO dto = conversionService.convert(pathwayAnalysis, PathwayAnalysisDTO.class);
dto.getEventCohorts().forEach(ec -> ec.setCode(eventCodes.get(ec.getId())));
return dto;
}
/**
* Export the pathway analysis deign as JSON
*
* @summary Export Pathway Analysis Design
* @param id the design id to export
* @return a String containing the pathway analysis design as JSON
*/
@GET
@Path("/{id}/export")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
@Transactional
public String export(@PathParam("id") final Integer id) {
PathwayAnalysisEntity pathwayAnalysis = pathwayService.getById(id);
ExportUtil.clearCreateAndUpdateInfo(pathwayAnalysis);
return new SerializedPathwayAnalysisToPathwayAnalysisConverter().convertToDatabaseColumn(pathwayAnalysis);
}
/**
* Generate pathway analysis sql
*
* This method generates the analysis sql for the given design id and
* specified source. This means that the pathway design must be saved to the
* database, and a valid source key is provided as the sourceKey parameter.
* The result is a fully translated and populated query containing the schema
* parameters and translation based on the specified source.
*
* @summary Generate Analysis Sql
* @param id the pathway analysis design id
* @param sourceKey the source used to find the schema and dialect
* @return a String containing the analysis sql
*/
@GET
@Path("/{id}/sql/{sourceKey}")
@Produces(MediaType.APPLICATION_OCTET_STREAM)
@Consumes(MediaType.APPLICATION_JSON)
public String getAnalysisSql(@PathParam("id") final Integer id, @PathParam("sourceKey") final String sourceKey) {
Source source = sourceService.findBySourceKey(sourceKey);
return pathwayService.buildAnalysisSql(-1L, pathwayService.getById(id), source.getSourceId());
}
/**
* Delete a pathway analysis design.
*
* @summary Delete Pathway Analysis Design
* @param id
*/
@DELETE
@Path("/{id}")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public void delete(@PathParam("id") final Integer id) {
pathwayService.delete(id);
}
/**
* Generate pathway analysis.
*
* This method will execute the analysis sql on the specified source.
*
* @summary Generate Pathway Analysis
* @param pathwayAnalysisId
* @param sourceKey
* @return a job execution reference
*/
@POST
@Path("/{id}/generation/{sourceKey}")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
@Transactional
public JobExecutionResource generatePathways(
@PathParam("id") final Integer pathwayAnalysisId,
@PathParam("sourceKey") final String sourceKey
) {
PathwayAnalysisEntity pathwayAnalysis = pathwayService.getById(pathwayAnalysisId);
ExceptionUtils.throwNotFoundExceptionIfNull(pathwayAnalysis, String.format("There is no pathway analysis with id = %d.", pathwayAnalysisId));
PathwayAnalysisDTO pathwayAnalysisDTO = conversionService.convert(pathwayAnalysis, PathwayAnalysisDTO.class);
CheckResult checkResult = runDiagnostics(pathwayAnalysisDTO);
if (checkResult.hasCriticalErrors()) {
throw new RuntimeException("Cannot be generated due to critical errors in design. Call 'check' service for further details");
}
Source source = sourceService.findBySourceKey(sourceKey);
return pathwayService.generatePathways(pathwayAnalysisId, source.getSourceId());
}
/**
* Cancel analysis execution.
*
* This method will signal the generation job to cancel on the given source
* for the specified design. This cancellation is not immediate: the analysis
* sql will stop after the current statement has finished execution.
*
* @summary Cancel Execution
* @param pathwayAnalysisId the pathway analysis id
* @param sourceKey the key of the source
*/
@DELETE
@Path("/{id}/generation/{sourceKey}")
public void cancelPathwaysGeneration(
@PathParam("id") final Integer pathwayAnalysisId,
@PathParam("sourceKey") final String sourceKey
) {
Source source = sourceService.findBySourceKey(sourceKey);
pathwayService.cancelGeneration(pathwayAnalysisId, source.getSourceId());
}
/**
* Returns a list of pathway analysis generation info objects.
*
* Pathway generation info objects refers to the information related to the
* generation on a source. This includes information about the starting time,
* duration, and execution status. This method returns the generation
* information for any source the user has access to.
*
* @summary Get pathway generation info
* @param pathwayAnalysisId the pathway analysis design id
* @return the list of generation info objects for this design
*/
@GET
@Path("/{id}/generation")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
@Transactional
public List<CommonGenerationDTO> getPathwayGenerations(
@PathParam("id") final Integer pathwayAnalysisId
) {
Map<String, Source> sourcesMap = sourceService.getSourcesMap(SourceMapKey.BY_SOURCE_KEY);
return sensitiveInfoService.filterSensitiveInfo(converterUtils.convertList(pathwayService.getPathwayGenerations(pathwayAnalysisId), CommonGenerationDTO.class),
info -> Collections.singletonMap(Constants.Variables.SOURCE, sourcesMap.get(info.getSourceKey())));
}
/**
* Return a single generation info for the given generation id.
*
* @summary Get Generation Info
* @param generationId
* @return a CommonGenerationDTO for the given generation id
*/
@GET
@Path("/generation/{generationId}")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public CommonGenerationDTO getPathwayGenerations(
@PathParam("generationId") final Long generationId
) {
PathwayAnalysisGenerationEntity generationEntity = pathwayService.getGeneration(generationId);
return sensitiveInfoService.filterSensitiveInfo(conversionService.convert(generationEntity, CommonGenerationDTO.class),
Collections.singletonMap(Constants.Variables.SOURCE, generationEntity.getSource()));
}
/**
* Get the pathway analysis design for the given generation id
*
* When a pathway analysis is generated, a snapshot of the design is stored,
* and indexed by the hash of the design. This method allows you to fetch the
* pathway design given a generation id.
*
* @summary Get Design for Generation
* @param generationId the generation to fetch the design for
* @return a JSON representation of the pathway analysis design.
*/
@GET
@Path("/generation/{generationId}/design")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public String getGenerationDesign(
@PathParam("generationId") final Long generationId
) {
return pathwayService.findDesignByGenerationId(generationId);
}
/**
* Get the results for the given generation.
*
* @summary Get Result for Generation
* @param generationId the generation id of the results
* @return the pathway analysis results
*/
@GET
@Path("/generation/{generationId}/result")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public PathwayPopulationResultsDTO getGenerationResults(
@PathParam("generationId") final Long generationId
) {
return pathwayService.getGenerationResults(generationId);
}
private PathwayAnalysisDTO reloadAndConvert(Integer id) {
// Before conversion entity must be refreshed to apply entity graphs
PathwayAnalysisEntity analysis = pathwayService.getById(id);
return conversionService.convert(analysis, PathwayAnalysisDTO.class);
}
/**
* Checks the pathway analysis for logic issues
*
* This method runs a series of logical checks on a pathway analysis and
* returns the set of warning, info and error messages.
*
* @summary Check Pathway Analysis Design
* @param pathwayAnalysisDTO the pathway analysis design to check
* @return the set of checks (warnings, info and errors)
*/
@POST
@Path("/check")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public CheckResult runDiagnostics(PathwayAnalysisDTO pathwayAnalysisDTO) {
return new CheckResult(checker.check(pathwayAnalysisDTO));
}
/**
* Assign tag to Pathway Analysis
*
* @summary Assign Tag
* @param id
* @param tagId
*/
@POST
@Produces(MediaType.APPLICATION_JSON)
@Path("/{id}/tag/")
public void assignTag(@PathParam("id") final int id, final int tagId) {
pathwayService.assignTag(id, tagId);
}
/**
* Unassign tag from Pathway Analysis
*
* @summary Unassign Tag
* @param id
* @param tagId
*/
@DELETE
@Produces(MediaType.APPLICATION_JSON)
@Path("/{id}/tag/{tagId}")
public void unassignTag(@PathParam("id") final int id, @PathParam("tagId") final int tagId) {
pathwayService.unassignTag(id, tagId);
}
/**
* Assign protected tag to Pathway Analysis
*
* @summary Assign Protected Tag
* @param id
* @param tagId
*/
@POST
@Produces(MediaType.APPLICATION_JSON)
@Path("/{id}/protectedtag/")
public void assignPermissionProtectedTag(@PathParam("id") final int id, final int tagId) {
pathwayService.assignTag(id, tagId);
}
/**
* Unassign protected tag from Pathway Analysis
*
* @summary Unassign Protected Tag
* @param id
* @param tagId
*/
@DELETE
@Produces(MediaType.APPLICATION_JSON)
@Path("/{id}/protectedtag/{tagId}")
public void unassignPermissionProtectedTag(@PathParam("id") final int id, @PathParam("tagId") final int tagId) {
pathwayService.unassignTag(id, tagId);
}
/**
* Get list of versions of Pathway Analysis
*
* @summary Get Versions
* @param id
* @return
*/
@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("/{id}/version/")
public List<VersionDTO> getVersions(@PathParam("id") final long id) {
return pathwayService.getVersions(id);
}
/**
* Get specific version of Pathway Analysis
*
* @summary Get Version
* @param id
* @param version
* @return
*/
@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("/{id}/version/{version}")
public PathwayVersionFullDTO getVersion(@PathParam("id") final int id, @PathParam("version") final int version) {
return pathwayService.getVersion(id, version);
}
/**
* Update version of Pathway Analysis
*
* @summary Update Version
* @param id
* @param version
* @param updateDTO
* @return
*/
@PUT
@Produces(MediaType.APPLICATION_JSON)
@Path("/{id}/version/{version}")
public VersionDTO updateVersion(@PathParam("id") final int id, @PathParam("version") final int version,
VersionUpdateDTO updateDTO) {
return pathwayService.updateVersion(id, version, updateDTO);
}
/**
* Delete version of Pathway Analysis
*
* @summary Delete Version
* @param id
* @param version
*/
@DELETE
@Produces(MediaType.APPLICATION_JSON)
@Path("/{id}/version/{version}")
public void deleteVersion(@PathParam("id") final int id, @PathParam("version") final int version) {
pathwayService.deleteVersion(id, version);
}
/**
* Create a new asset form version of Pathway Analysis
*
* @Create Asset From Version
* @param id
* @param version
* @return
*/
@PUT
@Produces(MediaType.APPLICATION_JSON)
@Path("/{id}/version/{version}/createAsset")
public PathwayAnalysisDTO copyAssetFromVersion(@PathParam("id") final int id, @PathParam("version") final int version) {
return pathwayService.copyAssetFromVersion(id, version);
}
/**
* Get list of pathways with assigned tags
*
* @summary List By Tags
* @param requestDTO
* @return
*/
@POST
@Path("/byTags")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public List<PathwayAnalysisDTO> listByTags(TagNameListRequestDTO requestDTO) {
if (requestDTO == null || requestDTO.getNames() == null || requestDTO.getNames().isEmpty()) {
return Collections.emptyList();
}
return pathwayService.listByTags(requestDTO);
}
}