-
Notifications
You must be signed in to change notification settings - Fork 171
/
Copy pathAbstractDaoService.java
492 lines (411 loc) · 16 KB
/
AbstractDaoService.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
package org.ohdsi.webapi.service;
import com.odysseusinc.arachne.commons.types.DBMSType;
import com.odysseusinc.arachne.execution_engine_common.api.v1.dto.DataSourceUnsecuredDTO;
import com.odysseusinc.datasourcemanager.krblogin.KerberosService;
import com.odysseusinc.datasourcemanager.krblogin.KrbConfig;
import com.odysseusinc.datasourcemanager.krblogin.RuntimeServiceMode;
import org.apache.commons.io.FileUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.shiro.SecurityUtils;
import org.apache.shiro.authz.UnauthorizedException;
import org.ohdsi.analysis.cohortcharacterization.design.CohortCharacterization;
import org.ohdsi.analysis.pathway.design.PathwayAnalysis;
import org.ohdsi.webapi.GenerationStatus;
import org.ohdsi.webapi.IExecutionInfo;
import org.ohdsi.webapi.cohortcharacterization.domain.CohortCharacterizationEntity;
import org.ohdsi.webapi.cohortdefinition.CohortDefinition;
import org.ohdsi.webapi.common.sensitiveinfo.AbstractAdminService;
import org.ohdsi.webapi.conceptset.ConceptSet;
import org.ohdsi.webapi.conceptset.ConceptSetComparison;
import org.ohdsi.webapi.conceptset.ConceptSetItemRepository;
import org.ohdsi.webapi.conceptset.ConceptSetRepository;
import org.ohdsi.webapi.conceptset.annotation.ConceptSetAnnotationRepository;
import org.ohdsi.webapi.exception.BadRequestAtlasException;
import org.ohdsi.webapi.ircalc.IncidenceRateAnalysis;
import org.ohdsi.webapi.model.CommonEntity;
import org.ohdsi.webapi.model.CommonEntityExt;
import org.ohdsi.webapi.pathway.domain.PathwayAnalysisEntity;
import org.ohdsi.webapi.reusable.domain.Reusable;
import org.ohdsi.webapi.security.PermissionService;
import org.ohdsi.webapi.service.dto.CommonEntityDTO;
import org.ohdsi.webapi.shiro.Entities.UserEntity;
import org.ohdsi.webapi.shiro.Entities.UserRepository;
import org.ohdsi.webapi.shiro.management.DisabledSecurity;
import org.ohdsi.webapi.shiro.management.Security;
import org.ohdsi.webapi.source.Source;
import org.ohdsi.webapi.source.SourceHelper;
import org.ohdsi.webapi.source.SourceRepository;
import org.ohdsi.webapi.tag.TagSecurityUtils;
import org.ohdsi.webapi.tag.TagService;
import org.ohdsi.webapi.tag.domain.Tag;
import org.ohdsi.webapi.util.CancelableJdbcTemplate;
import org.ohdsi.webapi.util.DataSourceDTOParser;
import org.ohdsi.webapi.util.PreparedStatementRenderer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.core.convert.ConversionService;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
import org.springframework.jdbc.datasource.DriverManagerDataSource;
import org.springframework.transaction.TransactionDefinition;
import org.springframework.transaction.support.TransactionCallback;
import org.springframework.transaction.support.TransactionTemplate;
import javax.ws.rs.BadRequestException;
import javax.ws.rs.ForbiddenException;
import java.io.File;
import java.io.IOException;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.Properties;
import java.util.Set;
import java.util.function.BiFunction;
import java.util.function.Function;
import java.util.stream.Collectors;
public abstract class AbstractDaoService extends AbstractAdminService {
protected final Logger log = LoggerFactory.getLogger(getClass());
@Value("${datasource.ohdsi.schema}")
private String ohdsiSchema;
@Value("${datasource.dialect}")
private String dialect;
@Value("${datasource.dialect.source}")
private String sourceDialect;
@Value("${source.name}")
private String sourceName;
@Value("${cdm.version}")
private String cdmVersion;
@Value("${jdbc.suppressInvalidApiException}")
protected boolean suppressApiException;
@Autowired
private JdbcTemplate jdbcTemplate;
@Autowired
private SourceRepository sourceRepository;
@Autowired
private ConceptSetItemRepository conceptSetItemRepository;
@Autowired
private ConceptSetAnnotationRepository conceptSetAnnotationRepository;
@Autowired
protected Security security;
@Autowired
protected UserRepository userRepository;
public static final List<GenerationStatus> INVALIDATE_STATUSES = new ArrayList<GenerationStatus>() {{
add(GenerationStatus.PENDING);
add(GenerationStatus.RUNNING);
}};
public ConceptSetItemRepository getConceptSetItemRepository() {
return conceptSetItemRepository;
}
public ConceptSetAnnotationRepository getConceptSetAnnotationRepository() {
return conceptSetAnnotationRepository;
}
@Autowired
private ConceptSetRepository conceptSetRepository;
public ConceptSetRepository getConceptSetRepository() {
return conceptSetRepository;
}
@Autowired
private TransactionTemplate transactionTemplate;
@Autowired
private TransactionTemplate transactionTemplateRequiresNew;
@Autowired
private TransactionTemplate transactionTemplateNoTransaction;
@Autowired
private KerberosService kerberosService;
@Autowired
private SourceHelper sourceHelper;
@Autowired
private TagService tagService;
@Autowired
private PermissionService permissionService;
@Autowired
private ConversionService conversionService;
public SourceRepository getSourceRepository() {
return sourceRepository;
}
/**
* @return the dialect
*/
public String getDialect() {
return dialect;
}
/**
* @param dialect the dialect to set
*/
public void setDialect(String dialect) {
this.dialect = dialect;
}
/**
* @return the jdbcTemplate
*/
public JdbcTemplate getJdbcTemplate() {
return jdbcTemplate;
}
public CancelableJdbcTemplate getSourceJdbcTemplate(Source source) {
DriverManagerDataSource dataSource = getDriverManagerDataSource(source);
CancelableJdbcTemplate jdbcTemplate = new CancelableJdbcTemplate(dataSource);
jdbcTemplate.setSuppressApiException(suppressApiException);
return jdbcTemplate;
}
public <T> T executeInTransaction(Source source, Function<JdbcTemplate, TransactionCallback<T>> callbackFunction) {
DriverManagerDataSource dataSource = getDriverManagerDataSource(source);
CancelableJdbcTemplate jdbcTemplate = new CancelableJdbcTemplate(dataSource);
jdbcTemplate.setSuppressApiException(suppressApiException);
DataSourceTransactionManager transactionManager = new DataSourceTransactionManager(dataSource);
TransactionTemplate transactionTemplate = new TransactionTemplate(transactionManager);
transactionTemplate.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRES_NEW);
return transactionTemplate.execute(callbackFunction.apply(jdbcTemplate));
}
private DriverManagerDataSource getDriverManagerDataSource(Source source) {
DataSourceUnsecuredDTO dataSourceData = DataSourceDTOParser.parseDTO(source);
if (dataSourceData.getUseKerberos()) {
loginToKerberos(dataSourceData);
}
DriverManagerDataSource dataSource;
String connectionString = sourceHelper.getSourceConnectionString(source);
if (dataSourceData.getUsername() != null && dataSourceData.getPassword() != null) {
// NOTE: jdbc link should NOT include username and password, because they have higher priority than separate ones
dataSource = new DriverManagerDataSource(
connectionString,
dataSourceData.getUsername(),
dataSourceData.getPassword()
);
} else {
dataSource = new DriverManagerDataSource(connectionString);
}
if (DBMSType.SNOWFLAKE.getValue().equalsIgnoreCase(source.getSourceDialect())) {
if (dataSource.getConnectionProperties() == null) {
dataSource.setConnectionProperties(new Properties());
}
dataSource.getConnectionProperties().setProperty("CLIENT_RESULT_COLUMN_CASE_INSENSITIVE", "true");
}
return dataSource;
}
private void loginToKerberos(DataSourceUnsecuredDTO dataSourceData) {
File temporaryDir = com.google.common.io.Files.createTempDir();
KrbConfig krbConfig = new KrbConfig();
try {
krbConfig = kerberosService.runKinit(dataSourceData, RuntimeServiceMode.SINGLE, temporaryDir);
} catch (RuntimeException | IOException e) {
log.error("Login to kerberos failed", e);
}
try {
FileUtils.forceDelete(temporaryDir);
if (krbConfig.getComponents() != null && StringUtils.isNotBlank(krbConfig.getComponents().getKeytabPath().toString())){
FileUtils.forceDelete(krbConfig.getComponents().getKeytabPath().toFile());
}
} catch (IOException e) {
log.warn(e.getMessage(), e);
}
}
/**
* @return the sourceDialect
*/
public String getSourceDialect() {
return sourceDialect;
}
/**
* @param sourceDialect the sourceDialect to set
*/
public void setSourceDialect(String sourceDialect) {
this.sourceDialect = sourceDialect;
}
/**
* @return the sourceName
*/
public String getSourceName() {
return sourceName;
}
/**
* @param sourceName the sourceName to set
*/
public void setSourceName(String sourceName) {
this.sourceName = sourceName;
}
/**
* @return the cdmVersion
*/
public String getCdmVersion() {
return cdmVersion;
}
/**
* @param cdmVersion the cdmVersion to set
*/
public void setCdmVersion(String cdmVersion) {
this.cdmVersion = cdmVersion;
}
protected List<Map<String, String>> genericResultSetLoader(PreparedStatementRenderer psr, Source source) {
List<Map<String, String>> results = null;
try {
results = getSourceJdbcTemplate(source).query(psr.getSql(), psr.getSetter(), new RowMapper<Map<String, String>>() {
@Override
public Map<String, String> mapRow(ResultSet rs, int rowNum)
throws SQLException {
Map<String, String> result = new HashMap<String, String>();
ResultSetMetaData metaData = rs.getMetaData();
int colCount = metaData.getColumnCount();
for (int i = 1; i <= colCount; i++) {
String columnLabel = metaData.getColumnLabel(i);
String columnValue = String.valueOf(rs.getObject(i));
result.put(columnLabel, columnValue);
}
return result;
}
});
} catch (Exception e) {
log.error("Result set loading error", e);
}
return results;
}
/**
* @return the transactionTemplate
*/
public TransactionTemplate getTransactionTemplate() {
return transactionTemplate;
}
/**
* @return the transactionTemplateRequiresNew
*/
public TransactionTemplate getTransactionTemplateRequiresNew() {
return transactionTemplateRequiresNew;
}
/**
* @return the transactionTemplateNoTransaction
*/
public TransactionTemplate getTransactionTemplateNoTransaction() {
return transactionTemplateNoTransaction;
}
/**
* @return the ohdsiSchema
*/
public String getOhdsiSchema() {
return ohdsiSchema;
}
protected IExecutionInfo invalidateExecution(IExecutionInfo executionInfo) {
return executionInfo.setIsValid(false)
.setStatus(GenerationStatus.COMPLETE)
.setMessage("Invalidated by system");
}
protected void invalidateExecutions(List<? extends IExecutionInfo> executionInfoList) {
executionInfoList.forEach(this::invalidateExecution);
}
protected UserEntity getCurrentUser() {
return userRepository.findByLogin(getCurrentUserLogin());
}
protected String getCurrentUserLogin() {
return security.getSubject();
}
protected PermissionService getPermissionService() {
return this.permissionService;
}
protected void assignTag(CommonEntityExt<?> entity, int tagId) {
checkOwnerOrAdminOrGrantedOrTagManager(entity);
if (Objects.nonNull(entity)) {
Tag tag = tagService.getById(tagId);
if (Objects.nonNull(tag)) {
if (tag.isPermissionProtected() && !hasPermissionToAssignProtectedTags(entity, "post")) {
throw new UnauthorizedException(String.format("No permission to assign protected tag '%s' to %s (id=%s).",
tag.getName(), entity.getClass().getSimpleName(), entity.getId()));
}
// unassign tags from the same group if group marked as multi_selection=false
tag.getGroups().stream().findFirst().ifPresent(group -> {
if (!group.isMultiSelection()) {
entity.getTags().forEach(t -> {
if (t.getGroups().stream().anyMatch(g -> g.getId().equals(group.getId()))) {
unassignTag(entity, t.getId());
}
});
}
});
entity.getTags().add(tag);
}
}
}
protected void unassignTag(CommonEntityExt<?> entity, int tagId) {
checkOwnerOrAdminOrGrantedOrTagManager(entity);
if (Objects.nonNull(entity)) {
Tag tag = tagService.getById(tagId);
if (Objects.nonNull(tag)) {
if (tag.isPermissionProtected() && !hasPermissionToAssignProtectedTags(entity, "delete")) {
throw new UnauthorizedException(String.format("No permission to unassign protected tag '%s' from %s (id=%s).",
tag.getName(), entity.getClass().getSimpleName(), entity.getId()));
}
Set<Tag> tags = entity.getTags().stream()
.filter(t -> t.getId() != tagId)
.collect(Collectors.toSet());
entity.setTags(tags);
}
}
}
private boolean hasPermissionToAssignProtectedTags(final CommonEntityExt<?> entity, final String method) {
if (!isSecured()) {
return true;
}
return TagSecurityUtils.checkPermission(TagSecurityUtils.getAssetName(entity), method);
}
protected void checkOwnerOrAdmin(UserEntity owner) {
if (security instanceof DisabledSecurity) {
return;
}
UserEntity user = getCurrentUser();
Long ownerId = Objects.nonNull(owner) ? owner.getId() : null;
if (!(user.getId().equals(ownerId) || isAdmin())) {
throw new ForbiddenException();
}
}
protected void checkOwnerOrAdminOrModerator(UserEntity owner) {
if (security instanceof DisabledSecurity) {
return;
}
UserEntity user = getCurrentUser();
Long ownerId = Objects.nonNull(owner) ? owner.getId() : null;
if (!(user.getId().equals(ownerId) || isAdmin() || isModerator())) {
throw new ForbiddenException();
}
}
protected void checkOwnerOrAdminOrGranted(CommonEntity<?> entity) {
if (security instanceof DisabledSecurity) {
return;
}
UserEntity user = getCurrentUser();
Long ownerId = Objects.nonNull(entity.getCreatedBy()) ? entity.getCreatedBy().getId() : null;
if (!(user.getId().equals(ownerId) || isAdmin() || permissionService.hasWriteAccess(entity))) {
throw new ForbiddenException();
}
}
protected void checkOwnerOrAdminOrGrantedOrTagManager(CommonEntity<?> entity) {
if (security instanceof DisabledSecurity) {
return;
}
UserEntity user = getCurrentUser();
Long ownerId = Objects.nonNull(entity.getCreatedBy()) ? entity.getCreatedBy().getId() : null;
if (!(user.getId().equals(ownerId) || isAdmin() || permissionService.hasWriteAccess(entity) || TagSecurityUtils.canManageTags())) {
throw new ForbiddenException();
}
}
protected <T extends CommonEntityDTO> List<T> listByTags(List<? extends CommonEntityExt<? extends Number>> entities,
List<String> names,
Class<T> clazz) {
return entities.stream()
.filter(e -> e.getTags().stream()
.map(tag -> tag.getName().toLowerCase(Locale.ROOT))
.collect(Collectors.toList())
.containsAll(names))
.map(entity -> {
T dto = conversionService.convert(entity, clazz);
permissionService.fillWriteAccess(entity, dto);
return dto;
})
.collect(Collectors.toList());
}
}