当前位置: 首页>>代码示例>>Python>>正文


Python UserAuthnMethod.__setattr__方法代码示例

本文整理汇总了Python中oic.utils.authn.user.UserAuthnMethod.__setattr__方法的典型用法代码示例。如果您正苦于以下问题:Python UserAuthnMethod.__setattr__方法的具体用法?Python UserAuthnMethod.__setattr__怎么用?Python UserAuthnMethod.__setattr__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在oic.utils.authn.user.UserAuthnMethod的用法示例。


在下文中一共展示了UserAuthnMethod.__setattr__方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _UserAuthnMethod

# 需要导入模块: from oic.utils.authn.user import UserAuthnMethod [as 别名]
# 或者: from oic.utils.authn.user.UserAuthnMethod import __setattr__ [as 别名]
class _UserAuthnMethod(UserAuthnMethod):
    def __init__(self, srv, ttl=5, authn_helper=None):
        UserAuthnMethod.__init__(self, srv, ttl)
        self.query_param = "upm_answer"
        self.authn_helper = authn_helper
        self.userauthnmethod = UserAuthnMethod(srv, ttl)

    def __call__(self, *args, **kwargs):
        raise NotImplemented

    def __setattr__(self, name, value):
        if name == "srv":
            try:
                self.authn_helper.__setattr__(name, value)
            except Exception:
                pass
            try:
                self.userauthnmethod.__setattr__(name, value)
            except Exception:
                pass
        super(_UserAuthnMethod, self).__setattr__(name, value)

    def set_srv(self, srv):
        self.srv = srv
        if self.authn_helper is not None:
            self.authn_helper.srv = srv

    def authenticated_as(self, cookie=None, **kwargs):
        if self.authn_helper is not None:
            return self.authn_helper.authenticated_as(cookie, **kwargs)
        return self.userauthnmethod.authenticated_as(cookie, **kwargs)

    def generateReturnUrl(self, return_to, uid):
        return create_return_url(return_to, uid, **{self.query_param: "true"})
开发者ID:its-dirg,项目名称:dirg-util,代码行数:36,代码来源:user.py


注:本文中的oic.utils.authn.user.UserAuthnMethod.__setattr__方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。