Skip to content

Commit

Permalink
游客登录使用pathea渠道
Browse files Browse the repository at this point in the history
  • Loading branch information
wangpeng committed Oct 8, 2023
1 parent f7be5d0 commit c538ca5
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions server/login/login_servlet.lua
Original file line number Diff line number Diff line change
Expand Up @@ -62,20 +62,18 @@ function LoginServlet:on_account_login_req(session, cmd_id, body, session_id)
end
local device_id = body.device_id
local account_params = {}
if platform >= PLATFORM_PASSWORD then
body.ip = session.ip
--登录验证
local result = event_mgr:notify_listener("on_platform_login", platform, open_id, access_token, body, account_params)
local ok, code, sdk_open_id, sdk_device_id = tunpack(result)
local login_failed, login_code = qfailed(code, ok)
if login_failed then
log_err("[LoginServlet][on_account_login_req] verify failed! open_id: {} token:{} code:{}", open_id, access_token, login_code)
client_mgr:callback_errcode(session, cmd_id, login_code, session_id)
return false
end
-- 三方信息
open_id, device_id = sdk_open_id, sdk_device_id
body.ip = session.ip
--登录验证
local result = event_mgr:notify_listener("on_platform_login", platform, open_id, access_token, body, account_params)
local ok, code, sdk_open_id, sdk_device_id = tunpack(result)
local login_failed, login_code = qfailed(code, ok)
if login_failed then
log_err("[LoginServlet][on_account_login_req] verify failed! open_id: {} token:{} code:{}", open_id, access_token, login_code)
client_mgr:callback_errcode(session, cmd_id, login_code, session_id)
return false
end
-- 三方信息
open_id, device_id = sdk_open_id, sdk_device_id
--加载账号信息
local account = login_dao:load_account(open_id)
if not account then
Expand Down

0 comments on commit c538ca5

Please sign in to comment.