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


Python exceptions.DisallowedRedirect方法代码示例

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


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

示例1: __init__

# 需要导入模块: from django.core import exceptions [as 别名]
# 或者: from django.core.exceptions import DisallowedRedirect [as 别名]
def __init__(self, redirect_to, *args, **kwargs):
        parsed = urlparse(force_text(redirect_to))
        if parsed.scheme and parsed.scheme not in self.allowed_schemes:
            raise DisallowedRedirect("Unsafe redirect to URL with protocol '%s'" % parsed.scheme)
        super(HttpResponseRedirectBase, self).__init__(*args, **kwargs)
        self['Location'] = iri_to_uri(redirect_to) 
开发者ID:lanbing510,项目名称:GTDWeb,代码行数:8,代码来源:response.py

示例2: __init__

# 需要导入模块: from django.core import exceptions [as 别名]
# 或者: from django.core.exceptions import DisallowedRedirect [as 别名]
def __init__(self, redirect_to, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self['Location'] = iri_to_uri(redirect_to)
        parsed = urlparse(str(redirect_to))
        if parsed.scheme and parsed.scheme not in self.allowed_schemes:
            raise DisallowedRedirect("Unsafe redirect to URL with protocol '%s'" % parsed.scheme) 
开发者ID:reBiocoder,项目名称:bioforum,代码行数:8,代码来源:response.py

示例3: __init__

# 需要导入模块: from django.core import exceptions [as 别名]
# 或者: from django.core.exceptions import DisallowedRedirect [as 别名]
def __init__(self, redirect_to, *args, **kwargs):
        super(HttpResponseRedirectBase, self).__init__(*args, **kwargs)
        self['Location'] = iri_to_uri(redirect_to)
        parsed = urlparse(force_text(redirect_to))
        if parsed.scheme and parsed.scheme not in self.allowed_schemes:
            raise DisallowedRedirect("Unsafe redirect to URL with protocol '%s'" % parsed.scheme) 
开发者ID:Yeah-Kun,项目名称:python,代码行数:8,代码来源:response.py

示例4: test_unsafe_redirect

# 需要导入模块: from django.core import exceptions [as 别名]
# 或者: from django.core.exceptions import DisallowedRedirect [as 别名]
def test_unsafe_redirect(self):
        bad_urls = [
            'data:text/html,<script>window.alert("xss")</script>',
            'mailto:test@example.com',
            'file:///etc/passwd',
        ]
        for url in bad_urls:
            with self.assertRaises(DisallowedRedirect):
                HttpResponseRedirect(url)
            with self.assertRaises(DisallowedRedirect):
                HttpResponsePermanentRedirect(url) 
开发者ID:nesdis,项目名称:djongo,代码行数:13,代码来源:tests.py

示例5: test_invalid_redirect_repr

# 需要导入模块: from django.core import exceptions [as 别名]
# 或者: from django.core.exceptions import DisallowedRedirect [as 别名]
def test_invalid_redirect_repr(self):
        """
        If HttpResponseRedirect raises DisallowedRedirect, its __repr__()
        should work (in the debug view, for example).
        """
        response = HttpResponseRedirect.__new__(HttpResponseRedirect)
        with self.assertRaisesMessage(DisallowedRedirect, "Unsafe redirect to URL with protocol 'ssh'"):
            HttpResponseRedirect.__init__(response, 'ssh://foo')
        expected = '<HttpResponseRedirect status_code=302, "text/html; charset=utf-8", url="ssh://foo">'
        self.assertEqual(repr(response), expected) 
开发者ID:nesdis,项目名称:djongo,代码行数:12,代码来源:tests.py


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