feat(实时封号):修改为默认封号功能是关闭
This commit is contained in:
@@ -558,7 +558,7 @@ export class NormalBattleHandler {
|
|||||||
* @param {number} type 查封类型(封除类型不为200)
|
* @param {number} type 查封类型(封除类型不为200)
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
async blockByRecordBattleCheat(roleId: string, type: number, sid:string) {
|
async blockByRecordBattleCheat(roleId: string, type: number, sid: string) {
|
||||||
if (roleId == undefined || type == undefined || sid == undefined) {
|
if (roleId == undefined || type == undefined || sid == undefined) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -568,25 +568,27 @@ export class NormalBattleHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 设置redis开关
|
// 设置redis开关
|
||||||
const isCheckBlock = await redisClient().getAsync(REDIS_KEY.IS_CHECT_BLOCK);
|
let isCheckBlock = await redisClient().getAsync(REDIS_KEY.IS_CHECT_BLOCK);
|
||||||
if (!isCheckBlock || isCheckBlock == undefined) {
|
if (!isCheckBlock || isCheckBlock == undefined) {
|
||||||
await redisClient().setAsync(REDIS_KEY.IS_CHECT_BLOCK, `${CHECT_BLOCK_TYPE.OPEN}`);;
|
//首次写入 默认是关
|
||||||
|
await redisClient().setAsync(REDIS_KEY.IS_CHECT_BLOCK, `${CHECT_BLOCK_TYPE.CLOSE}`);
|
||||||
|
isCheckBlock = CHECT_BLOCK_TYPE.CLOSE.toString();
|
||||||
}
|
}
|
||||||
if (isCheckBlock && parseInt(isCheckBlock) != CHECT_BLOCK_TYPE.OPEN) {
|
|
||||||
|
// 仅当为open状态才执行封号
|
||||||
|
if(isCheckBlock && parseInt(isCheckBlock) == CHECT_BLOCK_TYPE.OPEN){
|
||||||
|
const blockType: BLOCK_TYPE = BLOCK_TYPE.BLOCK;
|
||||||
|
const blockReason: string = "使用第三方软件, 封停账号, 封停时间为:" + new Date();;
|
||||||
|
let role = await RoleModel.updateRoleInfo(roleId, { blockType, blockReason });
|
||||||
|
if (!role) return resResult(STATUS.ROLE_NOT_FOUND);
|
||||||
|
|
||||||
|
await this.app.rpc.connector.connectorRemote.setOtherUserSession.toServer(sid, [{ roleId, blockType }]);
|
||||||
|
await this.app.rpc.connector.connectorRemote.remoteLogin.toServer(sid, roleId, STATUS.BLOCKED);
|
||||||
|
await roleLeave(roleId);
|
||||||
|
}else{
|
||||||
console.log("blockByRecordBattleCheat-防破解查封功能已关闭!!!");
|
console.log("blockByRecordBattleCheat-防破解查封功能已关闭!!!");
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const blockType: BLOCK_TYPE = BLOCK_TYPE.BLOCK;
|
|
||||||
const blockReason: string = "使用第三方软件, 封停账号, 封停时间为:" + new Date();;
|
|
||||||
let role = await RoleModel.updateRoleInfo(roleId, { blockType, blockReason });
|
|
||||||
if (!role) return resResult(STATUS.ROLE_NOT_FOUND);
|
|
||||||
|
|
||||||
await this.app.rpc.connector.connectorRemote.setOtherUserSession.toServer(sid, [{ roleId, blockType }]);
|
|
||||||
await this.app.rpc.connector.connectorRemote.remoteLogin.toServer(sid, roleId, STATUS.BLOCKED);
|
|
||||||
await roleLeave(roleId);
|
|
||||||
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user