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
|
@Service @Slf4j public class FinancialDistributedIdService { @Autowired private FinancialDistributedIdProperties properties; @Autowired private FinancialSnowflakeIdGenerator financialSnowflakeIdGenerator; @Autowired private FinancialUuidGenerator financialUuidGenerator; @Autowired private FinancialDatabaseIdGenerator financialDatabaseIdGenerator; @Autowired private FinancialRedisIdGenerator financialRedisIdGenerator; @Autowired private FinancialZookeeperIdGenerator financialZookeeperIdGenerator; @Autowired private FinancialDistributedIdMonitorService financialDistributedIdMonitorService; @Autowired private FinancialDistributedIdAuditService financialDistributedIdAuditService; @Autowired private FinancialDistributedIdRiskService financialDistributedIdRiskService; @Autowired private FinancialDistributedIdRepository financialDistributedIdRepository;
public FinancialDistributedIdResult generateFinancialId(String idType, String businessType, String financialBusinessType) { return generateFinancialId(idType, businessType, financialBusinessType, properties.getDefaultGeneratorType()); }
public FinancialDistributedIdResult generateFinancialId(String idType, String businessType, String financialBusinessType, String generatorType) { log.info("生成金融分布式ID,ID类型: {}, 业务类型: {}, 金融业务类型: {}, 生成器类型: {}", idType, businessType, financialBusinessType, generatorType); FinancialDistributedIdResult result = new FinancialDistributedIdResult(); result.setIdType(idType); result.setBusinessType(businessType); result.setFinancialBusinessType(financialBusinessType); result.setGeneratorType(generatorType); result.setStartTime(System.currentTimeMillis()); try { validateParameters(idType, businessType, financialBusinessType, generatorType, result); if (!result.isSuccess()) { return result; } if (!performRiskCheck(idType, businessType, financialBusinessType, result)) { return result; } if (!performComplianceCheck(idType, businessType, financialBusinessType, result)) { return result; } String id = generateIdByType(generatorType, idType, businessType, financialBusinessType); if (id != null && !id.isEmpty()) { result.setSuccess(true); result.setId(id); result.setGenerateTime(LocalDateTime.now()); result.setEndTime(System.currentTimeMillis()); if (properties.getSnowflake().isEnableEncryption()) { id = encryptId(id, generatorType); result.setId(id); } financialDistributedIdMonitorService.recordSuccessGeneration(generatorType, result.getDuration()); performAudit(result); saveFinancialIdRecord(result); log.info("金融分布式ID生成成功,ID: {}, 类型: {}, 生成器: {}", id, idType, generatorType); } else { result.setSuccess(false); result.setError("ID生成失败"); result.setEndTime(System.currentTimeMillis()); financialDistributedIdMonitorService.recordFailureGeneration(generatorType); log.warn("金融分布式ID生成失败,类型: {}, 生成器: {}", idType, generatorType); } return result; } catch (Exception e) { log.error("金融分布式ID生成异常,类型: {}, 生成器: {}", idType, generatorType, e); result.setSuccess(false); result.setError("金融分布式ID生成异常: " + e.getMessage()); result.setEndTime(System.currentTimeMillis()); financialDistributedIdMonitorService.recordFailureGeneration(generatorType); return result; } }
private void validateParameters(String idType, String businessType, String financialBusinessType, String generatorType, FinancialDistributedIdResult result) { if (idType == null || idType.isEmpty()) { result.setSuccess(false); result.setError("ID类型不能为空"); result.setEndTime(System.currentTimeMillis()); return; } if (businessType == null || businessType.isEmpty()) { result.setSuccess(false); result.setError("业务类型不能为空"); result.setEndTime(System.currentTimeMillis()); return; } if (financialBusinessType == null || financialBusinessType.isEmpty()) { result.setSuccess(false); result.setError("金融业务类型不能为空"); result.setEndTime(System.currentTimeMillis()); return; } if (generatorType == null || generatorType.isEmpty()) { result.setSuccess(false); result.setError("生成器类型不能为空"); result.setEndTime(System.currentTimeMillis()); return; } }
private boolean performRiskCheck(String idType, String businessType, String financialBusinessType, FinancialDistributedIdResult result) { try { if (properties.getRisk().isEnableRisk()) { Map<String, Object> riskInfo = financialDistributedIdRiskService.performRiskCheck( idType, businessType, financialBusinessType); result.setRiskInfo(riskInfo); if (riskInfo.containsKey("riskLevel") && "HIGH".equals(riskInfo.get("riskLevel"))) { result.setSuccess(false); result.setError("风控检查未通过"); result.setEndTime(System.currentTimeMillis()); return false; } result.setRiskStatus("RISK_CHECKED"); } return true; } catch (Exception e) { log.error("风控检查异常", e); return false; } }
private boolean performComplianceCheck(String idType, String businessType, String financialBusinessType, FinancialDistributedIdResult result) { try { if (properties.getCompliance().isEnableCompliance()) { Map<String, Object> complianceInfo = new HashMap<>(); complianceInfo.put("idType", idType); complianceInfo.put("businessType", businessType); complianceInfo.put("financialBusinessType", financialBusinessType); complianceInfo.put("checkTime", LocalDateTime.now()); complianceInfo.put("complianceStatus", "COMPLIANT"); result.setComplianceInfo(complianceInfo); result.setComplianceStatus("COMPLIANT"); } return true; } catch (Exception e) { log.error("合规检查异常", e); return false; } }
private String generateIdByType(String generatorType, String idType, String businessType, String financialBusinessType) { switch (generatorType.toUpperCase()) { case "FINANCIAL_SNOWFLAKE": if (properties.getSnowflake().isEnableSnowflake()) { return String.valueOf(financialSnowflakeIdGenerator.nextId()); } break; case "FINANCIAL_UUID": if (properties.getUuid().isEnableUuid()) { return financialUuidGenerator.generateFinancialUuid(); } break; case "FINANCIAL_DATABASE": if (properties.getDatabase().isEnableDatabase()) { return String.valueOf(financialDatabaseIdGenerator.nextId()); } break; case "FINANCIAL_REDIS": if (properties.getRedis().isEnableRedis()) { return String.valueOf(financialRedisIdGenerator.nextId()); } break; case "FINANCIAL_ZOOKEEPER": if (properties.getZookeeper().isEnableZookeeper()) { return String.valueOf(financialZookeeperIdGenerator.nextId()); } break; default: log.warn("不支持的生成器类型: {}", generatorType); return null; } log.warn("生成器类型 {} 未启用", generatorType); return null; }
private String encryptId(String id, String generatorType) { try { String encryptionKey = getEncryptionKey(generatorType); return AESUtil.encrypt(id, encryptionKey); } catch (Exception e) { log.error("ID加密异常", e); return id; } }
private String getEncryptionKey(String generatorType) { switch (generatorType.toUpperCase()) { case "FINANCIAL_SNOWFLAKE": return properties.getSnowflake().getEncryptionKey(); case "FINANCIAL_UUID": return properties.getUuid().getEncryptionKey(); case "FINANCIAL_DATABASE": return properties.getDatabase().getEncryptionKey(); case "FINANCIAL_REDIS": return properties.getRedis().getEncryptionKey(); case "FINANCIAL_ZOOKEEPER": return properties.getZookeeper().getEncryptionKey(); default: return "default-financial-key"; } }
private void performAudit(FinancialDistributedIdResult result) { try { if (properties.getAudit().isEnableAudit()) { Map<String, Object> auditInfo = new HashMap<>(); auditInfo.put("id", result.getId()); auditInfo.put("idType", result.getIdType()); auditInfo.put("businessType", result.getBusinessType()); auditInfo.put("financialBusinessType", result.getFinancialBusinessType()); auditInfo.put("generatorType", result.getGeneratorType()); auditInfo.put("generateTime", result.getGenerateTime()); auditInfo.put("duration", result.getDuration()); auditInfo.put("auditTime", LocalDateTime.now()); result.setAuditInfo(auditInfo); result.setAuditStatus("AUDITED"); financialDistributedIdAuditService.recordAudit(auditInfo); } } catch (Exception e) { log.error("审计记录异常", e); } }
private void saveFinancialIdRecord(FinancialDistributedIdResult result) { try { FinancialDistributedIdData data = new FinancialDistributedIdData( result.getId(), result.getIdType(), result.getGeneratorType() ); data.setBusinessType(result.getBusinessType()); data.setFinancialBusinessType(result.getFinancialBusinessType()); data.setGenerateTime(result.getGenerateTime()); data.setEncryptionStatus(result.getEncryptionStatus()); data.setAuditStatus(result.getAuditStatus()); data.setRiskStatus(result.getRiskStatus()); data.setComplianceStatus(result.getComplianceStatus()); data.setExtendedPropertiesMap(result.getExtendedProperties()); data.setAuditInfo(result.getAuditInfo()); data.setRiskInfo(result.getRiskInfo()); data.setComplianceInfo(result.getComplianceInfo()); financialDistributedIdRepository.save(data); } catch (Exception e) { log.error("保存金融ID记录异常", e); } }
public List<FinancialDistributedIdResult> batchGenerateFinancialId(String idType, String businessType, String financialBusinessType, int count) { return batchGenerateFinancialId(idType, businessType, financialBusinessType, count, properties.getDefaultGeneratorType()); }
public List<FinancialDistributedIdResult> batchGenerateFinancialId(String idType, String businessType, String financialBusinessType, int count, String generatorType) { log.info("批量生成金融分布式ID,ID类型: {}, 业务类型: {}, 金融业务类型: {}, 数量: {}, 生成器类型: {}", idType, businessType, financialBusinessType, count, generatorType); List<FinancialDistributedIdResult> results = new ArrayList<>(); try { for (int i = 0; i < count; i++) { FinancialDistributedIdResult result = generateFinancialId(idType, businessType, financialBusinessType, generatorType); results.add(result); } log.info("批量生成金融分布式ID完成,成功数量: {}", results.stream().mapToInt(r -> r.isSuccess() ? 1 : 0).sum()); } catch (Exception e) { log.error("批量生成金融分布式ID异常", e); } return results; }
public FinancialDistributedIdStatus getFinancialDistributedIdStatus() { log.info("获取金融分布式ID状态"); try { return financialDistributedIdMonitorService.getStatus(); } catch (Exception e) { log.error("获取金融分布式ID状态异常", e); return null; } }
public boolean validateFinancialIdFormat(String id, String idType) { log.info("验证金融ID格式,ID: {}, 类型: {}", id, idType); try { if (id == null || id.isEmpty()) { return false; } String decryptedId = decryptId(id, idType); switch (idType.toUpperCase()) { case "FINANCIAL_SNOWFLAKE": return validateFinancialSnowflakeId(decryptedId); case "FINANCIAL_UUID": return validateFinancialUuid(decryptedId); case "FINANCIAL_DATABASE": return validateFinancialDatabaseId(decryptedId); case "FINANCIAL_REDIS": return validateFinancialRedisId(decryptedId); case "FINANCIAL_ZOOKEEPER": return validateFinancialZookeeperId(decryptedId); default: return false; } } catch (Exception e) { log.error("验证金融ID格式异常", e); return false; } }
private String decryptId(String id, String idType) { try { String encryptionKey = getEncryptionKey(idType); return AESUtil.decrypt(id, encryptionKey); } catch (Exception e) { log.error("ID解密异常", e); return id; } }
private boolean validateFinancialSnowflakeId(String id) { try { long idLong = Long.parseLong(id); return idLong > 0; } catch (NumberFormatException e) { return false; } }
private boolean validateFinancialUuid(String id) { try { UUID.fromString(id); return true; } catch (IllegalArgumentException e) { return false; } }
private boolean validateFinancialDatabaseId(String id) { try { long idLong = Long.parseLong(id); return idLong > 0; } catch (NumberFormatException e) { return false; } }
private boolean validateFinancialRedisId(String id) { try { long idLong = Long.parseLong(id); return idLong > 0; } catch (NumberFormatException e) { return false; } }
private boolean validateFinancialZookeeperId(String id) { try { long idLong = Long.parseLong(id); return idLong > 0; } catch (NumberFormatException e) { return false; } } }
|