#!/usr/bin/python  
 | 
# -*- coding: GBK -*-  
 | 
#---------------------------------------------------------------------  
 | 
#  
 | 
#---------------------------------------------------------------------  
 | 
##@package GMT_GetPlayerForbid.py  
 | 
# GMÃüÁî»ñµÃÍæ¼Ò´¦·£  
 | 
#  
 | 
# @author wdb  
 | 
# @date 2012-6-14  
 | 
# @version 1.2  
 | 
#  
 | 
# @note  
 | 
# @change: "2012-06-21 15:30" wdb intÐ޸ĵ½GMCommon¿ª½Ó¿Ú  
 | 
# @change: "2012-07-12 18:00" wdb Ôö¼Ó±àÂëÊôÐÔ  
 | 
#---------------------------------------------------------------------  
 | 
"""Version = 2012-07-12 18:00"""  
 | 
#---------------------------------------------------------------------  
 | 
#µ¼Èë  
 | 
from MangoDBCommon import fix_incomingText  
 | 
from Collections.CollectionDefine import *  
 | 
from Common import (CommFuncEx, mylog)  
 | 
from Collections import DataServerPlayerData  
 | 
import GMCommon  
 | 
#---------------------------------------------------------------------  
 | 
#È«¾Ö±äÁ¿  
 | 
  
 | 
#---------------------------------------------------------------------  
 | 
  
 | 
## ÊÕµ½gmÃüÁîÖ´ÐÐ  
 | 
# @param gmCmdDict:gmÃüÁî×Öµä  
 | 
# @return None   
 | 
def OnExec(gmCmdDict):  
 | 
    playerAccID = gmCmdDict.get(GMCommon.Def_GMKey_PlayerAccID, '')  
 | 
    playerName = gmCmdDict.get(GMCommon.Def_GMKey_PlayerName, '')  
 | 
      
 | 
    if playerAccID != '':  
 | 
        return GMCommon.Def_DoQueryLogDB, ''  
 | 
    
 | 
    elif playerName != '':          
 | 
        return GMCommon.Def_DoQueryUserDB, '%s'%GMCommon.Def_GMKey_PlayerName  
 | 
    # »Ø¸´  
 | 
    return GMCommon.Def_ParamErr, ''  
 | 
      
 | 
      
 | 
## ²éѯlogdb·µ»Ø  
 | 
# @param logdb:logdb  
 | 
# @param data:´«ÈëµÄÐÅÏ¢  
 | 
# @param gmCmdDict:gmÃüÁî×Öµä  
 | 
# @return None   
 | 
def LogDBResponse(logdb, data, gmCmdDict):  
 | 
    playerAccID = gmCmdDict.get(GMCommon.Def_GMKey_PlayerAccID, '')  
 | 
      
 | 
    # Íæ¼ÒÔÚÏß  
 | 
    if playerAccID != '' and GMCommon.GetPlayerOnLineByAccID(logdb, playerAccID):  
 | 
        return GMCommon.Def_SendToGameServer, ''  
 | 
  
 | 
    # ×ª»»×Ö·û´®  
 | 
    if data != '' and GMCommon.GetPlayerOnLineByAccID(logdb, data):          
 | 
        return GMCommon.Def_SendToGameServer, ''  
 | 
      
 | 
    return GMCommon.Def_DoQueryUserDB, ''  
 | 
  
 | 
  
 | 
## ²éѯuserdb·µ»Ø  
 | 
# @param userdb:userdb  
 | 
# @param data:´«ÈëµÄÐÅÏ¢  
 | 
# @param gmCmdDict:gmÃüÁî×Öµä  
 | 
# @return None   
 | 
def UserDBResponse(userdb, data, gmCmdDict):  
 | 
    playerAccID = gmCmdDict.get(GMCommon.Def_GMKey_PlayerAccID, '')  
 | 
    playerName = gmCmdDict.get(GMCommon.Def_GMKey_PlayerName, '')  
 | 
    #  È¡µÃÍæ¼Òaccid  
 | 
    if  playerName != '':  
 | 
        playerAccID = GMCommon.GetPlayerAccID(userdb, {'PlayerName':fix_incomingText(playerName), 'IsDeleted':0})  
 | 
          
 | 
        if playerAccID == '':  
 | 
            return GMCommon.Def_NoTag, ''  
 | 
      
 | 
    # ·µ»Øplayerid£¬ÅжÏÊÇ·ñÔÚÏß  
 | 
    if data == '%s'%GMCommon.Def_GMKey_PlayerName:          
 | 
        return GMCommon.Def_DoQueryLogDB, playerAccID  
 | 
  
 | 
    collection = userdb[UCN_DBPlayer]         
 | 
    findPlayer = collection.find({'AccID':fix_incomingText(playerAccID)})   
 | 
          
 | 
    if findPlayer.count() <= 0:  
 | 
        return GMCommon.Def_NoTag, ''  
 | 
      
 | 
    accState = findPlayer[0].get('AccState', 0)  
 | 
    forbidInfo = {  
 | 
                  'forbidLogin':(accState & pow(2, GMCommon.Def_PysForbidByPy)) > 0,  #ÊÇ·ñËø¶¨  
 | 
                  'forbidTalk': (accState & pow(2, GMCommon.Def_PysForbidTalk)) > 0,  #ÊÇ·ñ½ûÑÔ  
 | 
                  }  
 | 
    return GMCommon.Def_Success, forbidInfo  
 | 
  
 | 
  
 | 
  
 | 
  
 | 
  
 |