當前位置: 首頁>>代碼示例>>Python>>正文


Python UserEntityManager.findUserEntityByAccount方法代碼示例

本文整理匯總了Python中user.userentitymanager.UserEntityManager.findUserEntityByAccount方法的典型用法代碼示例。如果您正苦於以下問題:Python UserEntityManager.findUserEntityByAccount方法的具體用法?Python UserEntityManager.findUserEntityByAccount怎麽用?Python UserEntityManager.findUserEntityByAccount使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在user.userentitymanager.UserEntityManager的用法示例。


在下文中一共展示了UserEntityManager.findUserEntityByAccount方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: login

# 需要導入模塊: from user.userentitymanager import UserEntityManager [as 別名]
# 或者: from user.userentitymanager.UserEntityManager import findUserEntityByAccount [as 別名]
    def login(self, loginInfo, _request):
        """
        :type loginInfo: message.gate.gatemsg.SLogin
        :type _request: message.gate.ilogin.ILogin_Login_Request
        """

        Logger.log("ILoginImpl.login: ", loginInfo.account)

        userEntity = UserEntityManager.findUserEntityByAccount(loginInfo.account)
        if not userEntity:
            ErrorCodeManager.raiseError("ErrorLogin_InvalidLoginInfo")

        if not userEntity.isPasswordValid(loginInfo.password):
            ErrorCodeManager.raiseError("ErrorLogin_InvalidLoginInfo")

        if not userEntity.isDataLoaded():
            userDataView = UserDbHelper.loadUserDataView(userEntity.getUserId())
            userEntity.updateUserData(userDataView)

        sessionKey = MyUuid.getUuid()
        userEntity.updateDeviceCodeAndSessionKey(loginInfo.deviceCode, sessionKey)
        UserEntityManager.onUserLogin(userEntity, _request.connId, loginInfo.deviceCode)

        loginReturn = userEntity.getLoginReturn()
        _request.response(loginReturn)

        DbSaver.saveTable(userEntity.getTUserSettings())
        DbSaver.saveTable(userEntity.getTUserBasic())
開發者ID:bropony,項目名稱:gamit,代碼行數:30,代碼來源:iloginimpl.py

示例2: signup

# 需要導入模塊: from user.userentitymanager import UserEntityManager [as 別名]
# 或者: from user.userentitymanager.UserEntityManager import findUserEntityByAccount [as 別名]
    def signup(self, signupInfo, _request):
        """
        :type signupInfo: message.gate.gatemsg.SSignup
        :type _request: message.gate.ilogin.ILogin_Signup_Request
        """

        if not signupInfo.account:
            ErrorCodeManager.raiseError("ErrorSignup_invalidAccount")

        if not signupInfo.password:
            ErrorCodeManager.raiseError("ErrorSignup_invalidPassword")

        if not ELoginType.isValueValid(signupInfo.loginType):
            ErrorCodeManager.raiseError("ErrorSignup_invalidLoginType")

        userEntity = UserEntityManager.findUserEntityByAccount(signupInfo.account)
        if userEntity:
            ErrorCodeManager.raiseError("ErrorLogin_AccountExists")

        if signupInfo.loginType == ELoginType.MobilePhoneNum:
            if ServerConfigManager.isValidationCodeEnabled:
                if not PhoneValidationManager.isValidationCodeValid(signupInfo.validationCode, signupInfo.account):
                    ErrorCodeManager.raiseError("ErrorLogin_InvalidValidationCode")
                else:
                    PhoneValidationManager.removeValidationCode(signupInfo.account)

        dataView = UserDbHelper.createAccount(signupInfo)
        userEntity = UserEntity(dataView.basicInfo)
        userEntity.updateUserData(dataView)
        UserEntityManager.addUser(userEntity)

        userEntity.updateDeviceCodeAndSessionKey(signupInfo.deviceCode, MyUuid.getUuid())
        UserEntityManager.onUserLogin(userEntity, _request.connId, signupInfo.deviceCode)

        _request.response(userEntity.getLoginReturn())

        # save changes
        DbSaver.saveTable(userEntity.getTUserSettings())

        # logging
        DbLogHepler.logSignup(userEntity.getLogUserInfo())
開發者ID:bropony,項目名稱:gamit,代碼行數:43,代碼來源:iloginimpl.py

示例3: resetPhoneUserPassword

# 需要導入模塊: from user.userentitymanager import UserEntityManager [as 別名]
# 或者: from user.userentitymanager.UserEntityManager import findUserEntityByAccount [as 別名]
    def resetPhoneUserPassword(self, phoneNum, validationCode, newPassword, _request):
        """
        :type phoneNum: str
        :type validationCode: str
        :type newPassword: str
        :type _request: message.gate.ilogin.ILogin_Resetphoneuserpassword_Request
        """

        userEntity = UserEntityManager.findUserEntityByAccount(phoneNum)
        if not userEntity:
            ErrorCodeManager.raiseError("ErrorLogin_noSuchPhoneRegistered")

        if userEntity.getTUserBasic().accountType != ELoginType.MobilePhoneNum:
            ErrorCodeManager.raiseError("ErrorLogin_noPhoneNumLoginType")

        if not PhoneValidationManager.isValidationCodeValid(validationCode, phoneNum):
            ErrorCodeManager.raiseError("ErrorLogin_InvalidValidationCode")
        else:
            PhoneValidationManager.removeValidationCode(phoneNum)

        userEntity.getTUserBasic().password = Md5Hash.encryptPassword(newPassword)
        DbSaver.saveTable(userEntity.getTUserBasic())

        _request.response()
開發者ID:bropony,項目名稱:gamit,代碼行數:26,代碼來源:iloginimpl.py


注:本文中的user.userentitymanager.UserEntityManager.findUserEntityByAccount方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。