From 99957f928d44b37bf7deeaba1ecf12f428bccb1b Mon Sep 17 00:00:00 2001 From: nili Date: Mon, 12 Aug 2024 13:53:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A5=87=E8=BF=B9=E5=81=9C=E6=9C=BA=E6=96=87?= =?UTF-8?q?=E6=A1=88fx?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/awesome/group/game/service/MatrixService.java | 6 +++--- .../awesome/group/game/service/citrus/AdvRecordService.java | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/game-service/src/main/java/awesome/group/game/service/MatrixService.java b/game-service/src/main/java/awesome/group/game/service/MatrixService.java index 2202b84..275c25e 100644 --- a/game-service/src/main/java/awesome/group/game/service/MatrixService.java +++ b/game-service/src/main/java/awesome/group/game/service/MatrixService.java @@ -46,7 +46,7 @@ public class MatrixService { if (app == null) { return;//非法请求,直接忽略 } - Assert.isTrue(!app.getChannel().equals("qiji"), "服务已停机"); + Assert.isTrue(!app.getChannel().equals("qiji"), "服务异常"); MatrixAdvRecord record = new MatrixAdvRecord(); record.setDeviceId(bo.deviceId); @@ -78,7 +78,7 @@ public class MatrixService { if (app == null) { return; } - Assert.isTrue(!app.getChannel().equals("qiji"), "服务已停机"); + Assert.isTrue(!app.getChannel().equals("qiji"), "服务异常"); String secret = app.getSecret(); String str = bo.getSignStr(secret); @@ -94,7 +94,7 @@ public class MatrixService { if (app == null) { return null; } - Assert.isTrue(!app.getChannel().equals("qiji"), "服务已停机"); + Assert.isTrue(!app.getChannel().equals("qiji"), "服务异常"); LocalDate now = LocalDate.now(); YearMonth thisMonth = YearMonth.from(now); diff --git a/game-service/src/main/java/awesome/group/game/service/citrus/AdvRecordService.java b/game-service/src/main/java/awesome/group/game/service/citrus/AdvRecordService.java index 29a9a87..e6fc588 100644 --- a/game-service/src/main/java/awesome/group/game/service/citrus/AdvRecordService.java +++ b/game-service/src/main/java/awesome/group/game/service/citrus/AdvRecordService.java @@ -40,7 +40,8 @@ public class AdvRecordService { Assert.isTrue(StringUtils.hasText(bo.appCode) && StringUtils.hasText(bo.sign), "非法请求"); MatrixApp app = appMapper.queryByCode(bo.appCode); Assert.isTrue(app != null, "非法请求"); - Assert.isTrue(!app.getChannel().equals("qiji"), "服务已停机"); + Assert.isTrue(!app.getChannel().equals("qiji"), "服务异常"); + String secret = app.getSecret(); String str = bo.getSignStrV3(secret); if (!bo.sign.equalsIgnoreCase(EncryptUtil.sha1(str))) {