refactor(Activity): 移除贪玩聊天上报功能

- 删除了 Activitys.txt 中的 TanWanChatReport 引用
- 删除了 TanWanChatReport.lua 文件
This commit is contained in:
2025-02-23 15:17:47 +08:00
parent 1de28b64a0
commit 46dd4221a1
2 changed files with 0 additions and 80 deletions

View File

@@ -54,4 +54,3 @@ require("Activity.ActivityType10024") --鲁大师
require("Activity.ActivityType10027") --ku25
require("Activity.ActivityType10033") --区服冠名
require("Activity.ActivityType10038") --神秘福袋
require("Activity.TanWanChatReport") --贪玩聊天上报

View File

@@ -1,79 +0,0 @@
module("TanWanChatReport", package.seeall)
Host = "yyhunfuht.bigrnet.com"
Api = "/tanwan/api/wechat"
Port = "80"
local HttpStatus = {
Success = "10001", -- 访问成功
Send = "10009", -- 可以发送
}
function AfterCheckTanWanChatReport(paramPack,content,result)
print("TanWanChatReport AfterCheckTanWanChatReport")
local nActorId = paramPack[1]
local pActor = Actor.getActorById(nActorId)
if not pActor then
print("[Tip] TanWanChatReport AfterCheckTanWanChatReport [" .. nActorId .. "] 已离线")
return
end
print("[Tip] TanWanChatReport AfterCheckTanWanChatReport [" .. Actor.getName(pActor) .. "] content:"..content)
print("[Tip] TanWanChatReport AfterCheckTanWanChatReport [" .. Actor.getName(pActor) .. "] result:"..result)
if 0 == result then
local status = string.match(content,"\"status\":(%d+)")
local code = string.match(content,"\"code\":(%d+)")
if HttpStatus.Success == status then
print("TanWanChatReport OnReqTanWanChatReport visit Success!")
else
print("TanWanChatReport OnReqTanWanChatReport visit Fail! status : "..status)
end
if HttpStatus.Send == code then
print("TanWanChatReport OnReqTanWanChatReport can Send!")
else
print("TanWanChatReport OnReqTanWanChatReport can't Send! code : "..code)
end
end
end
-- --------------------------------------------------------------------
-- -- CPP回调
-- --------------------------------------------------------------------
function OnReqTanWanChatReport(nServerId, szServerName, szAccount, nActorId, szActorName, nTanWanChannleId, szMsg, szSendToActorName)
print("TanWanChatReport OnReqTanWanChatReport nServerId "..nServerId.." szServerName : "..szServerName.." Account: "..szAccount.." nActorId : "..nActorId.." ActorName : "..szActorName.." nTanWanChannleId : "..nTanWanChannleId.." SendToActorName : "..szSendToActorName)
print("TanWanChatReport OnReqTanWanChatReport ".." msg: "..szMsg)
local game_server_id = nServerId
local game_server_name = szServerName
local uid = szAccount
local username = szAccount
local role_id = nActorId
local role_name = szActorName
local content_type = nTanWanChannleId
local content = szMsg
local to_role_name = szSendToActorName
local send_time = os.time()
local req = Api..'?game_server_id='..game_server_id..'&game_server_name='..game_server_name..'&uid='..uid..'&username='..username..'&role_id='..role_id
req = req..'&role_name='..role_name..'&content_type='..content_type..'&content='..content..'&to_role_name='..to_role_name..'&send_time='..send_time
-- print("TanWanChatReport OnReqTanWanChatReport [" .. Actor.getName(pActor) .. "] Host : ".. Host)
-- print("TanWanChatReport OnReqTanWanChatReport [" .. Actor.getName(pActor) .. "] Port : ".. Port)
-- print("TanWanChatReport OnReqTanWanChatReport [" .. Actor.getName(pActor) .. "] req : ".. req)
AsyncWorkDispatcher.Add(
{'GetHttpContent',Host,Port,req},
AfterCheckTanWanChatReport,
{nActorId}
)
end