bool NFCAccountRedisModule::GetRoleInfo(const std::string & strAccount, std::string & strRoleName, NFGUID & id) { std::string strAccountKey = m_pCommonRedisModule->GetAccountCacheKey(strAccount); NF_SHARE_PTR<NFINoSqlDriver> xNoSqlDriver = m_pNoSqlModule->GetDriverBySuit(strAccount); if (xNoSqlDriver) { if (xNoSqlDriver->Exists(strAccountKey)) { std::string strID; bool bRoleNameRet = xNoSqlDriver->HGet(strAccountKey, NFrame::Player::Name(), strRoleName); bool bRoleIDRet = xNoSqlDriver->HGet(strAccountKey, NFrame::Player::ID(), strID); if (bRoleNameRet && bRoleIDRet && !strRoleName .empty() && !strID.empty()) { return id.FromString(strID); } return false; } } return false; }
int NFCAccountRedisModule::VerifyAccount(const std::string& strAccount, const std::string& strPwd) { std::string strAccountKey = m_pCommonRedisModule->GetAccountCacheKey(strAccount); NF_SHARE_PTR<NFINoSqlDriver> xNoSqlDriver = m_pNoSqlModule->GetDriverBySuit(strAccount); if (xNoSqlDriver) { std::string strPassword; if (xNoSqlDriver->HGet(strAccountKey, "Password", strPassword) && strPassword == strPwd) { return 0; } } return 1; }
bool NFCPVPMatchRedisModule::GetPlayerRoomID(const NFGUID& self, NFGUID& xRoomID) { NF_SHARE_PTR<NFINoSqlDriver> pNoSqlDriver = m_pNoSqlModule->GetDriverBySuitConsistent(); if (pNoSqlDriver) { std::string strKey = MakePlayerRoomKey(); std::string strData; if (pNoSqlDriver->HGet(strKey, self.ToString(), strData)) { if (xRoomID.FromString(strData)) { return true; } } } return false; }
bool NFCPVPMatchRedisModule::GetRoomInfo(const NFGUID& xRoomID, NFMsg::PVPRoomInfo& xRoomInfo) { NF_SHARE_PTR<NFINoSqlDriver> pNoSqlDriver = m_pNoSqlModule->GetDriverBySuitConsistent(); if (pNoSqlDriver) { std::string strKey = MakePvpRoomRedisKey(); std::string strData; if (pNoSqlDriver->HGet(strKey, xRoomID.ToString(), strData)) { if (xRoomInfo.ParseFromString(strData)) { return true; } } } return false; }