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


Python http.parse_cookie方法代码示例

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


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

示例1: check_pin_trust

# 需要导入模块: from werkzeug import http [as 别名]
# 或者: from werkzeug.http import parse_cookie [as 别名]
def check_pin_trust(self, environ):
        """Checks if the request passed the pin test.  This returns `True` if the
        request is trusted on a pin/cookie basis and returns `False` if not.
        Additionally if the cookie's stored pin hash is wrong it will return
        `None` so that appropriate action can be taken.
        """
        if self.pin is None:
            return True
        val = parse_cookie(environ).get(self.pin_cookie_name)
        if not val or '|' not in val:
            return False
        ts, pin_hash = val.split('|', 1)
        if not ts.isdigit():
            return False
        if pin_hash != hash_pin(self.pin):
            return None
        return (time.time() - PIN_TIME) < int(ts) 
开发者ID:jpush,项目名称:jbox,代码行数:19,代码来源:__init__.py

示例2: get_session

# 需要导入模块: from werkzeug import http [as 别名]
# 或者: from werkzeug.http import parse_cookie [as 别名]
def get_session(response):
    """ Return session cookie contents.
    This a base64 encoded json.
    Returns a dict
    """

    # Alas seems like if there are multiple set-cookie headers - we are on our own
    for index, h in enumerate(response.headers):
        if h[0] == "Set-Cookie":
            cookie = parse_cookie(response.headers[index][1])
            encoded_cookie = cookie.get("session", None)
            if encoded_cookie:
                serializer = URLSafeTimedSerializer(
                    "secret", serializer=TaggedJSONSerializer()
                )
                val = serializer.loads_unsafe(encoded_cookie)
                return val[1] 
开发者ID:Flask-Middleware,项目名称:flask-security,代码行数:19,代码来源:test_utils.py

示例3: _get_auth_cookies

# 需要导入模块: from werkzeug import http [as 别名]
# 或者: from werkzeug.http import parse_cookie [as 别名]
def _get_auth_cookies() -> List["TypeConversionDict[Any, Any]"]:
    # Login with the user specified to get the reports
    with app.test_request_context():
        user = security_manager.find_user(config["EMAIL_REPORTS_USER"])
        login_user(user)

        # A mock response object to get the cookie information from
        response = Response()
        app.session_interface.save_session(app, session, response)

    cookies = []

    # Set the cookies in the driver
    for name, value in response.headers:
        if name.lower() == "set-cookie":
            cookie = parse_cookie(value)
            cookies.append(cookie["session"])

    return cookies 
开发者ID:apache,项目名称:incubator-superset,代码行数:21,代码来源:schedules.py

示例4: get_auth_cookies

# 需要导入模块: from werkzeug import http [as 别名]
# 或者: from werkzeug.http import parse_cookie [as 别名]
def get_auth_cookies(user: "User") -> List[Dict[Any, Any]]:
    # Login with the user specified to get the reports
    with current_app.test_request_context("/login"):
        login_user(user)
        # A mock response object to get the cookie information from
        response = Response()
        current_app.session_interface.save_session(current_app, session, response)

    cookies = []

    # Set the cookies in the driver
    for name, value in response.headers:
        if name.lower() == "set-cookie":
            cookie = parse_cookie(value)
            cookies.append(cookie["session"])
    return cookies 
开发者ID:apache,项目名称:incubator-superset,代码行数:18,代码来源:screenshots.py

示例5: test_cookies

# 需要导入模块: from werkzeug import http [as 别名]
# 或者: from werkzeug.http import parse_cookie [as 别名]
def test_cookies(self):
        self.assert_strict_equal(
            dict(http.parse_cookie('dismiss-top=6; CP=null*; PHPSESSID=0a539d42abc001cd'
                              'c762809248d4beed; a=42; b="\\\";"')),
            {
                'CP':           u'null*',
                'PHPSESSID':    u'0a539d42abc001cdc762809248d4beed',
                'a':            u'42',
                'dismiss-top':  u'6',
                'b':            u'\";'
            }
        )
        self.assert_strict_equal(
            set(http.dump_cookie('foo', 'bar baz blub', 360, httponly=True,
                                 sync_expires=False).split(u'; ')),
            set([u'HttpOnly', u'Max-Age=360', u'Path=/', u'foo="bar baz blub"'])
        )
        self.assert_strict_equal(dict(http.parse_cookie('fo234{=bar; blub=Blah')),
                                 {'fo234{': u'bar', 'blub': u'Blah'}) 
开发者ID:GeekTrainer,项目名称:Flask,代码行数:21,代码来源:http.py

示例6: post_process

# 需要导入模块: from werkzeug import http [as 别名]
# 或者: from werkzeug.http import parse_cookie [as 别名]
def post_process(self, environ, headers):
        user = User.get_current()
        if not user:
            cookies = http.parse_cookie(environ)
            if self.name in cookies:
                raw = http.dump_cookie(self.name, "", expires=1)
                headers.append((utils.to_native("Set-Cookie"), raw))
            return
        cookie = SecureCookie(
            {"uid": user.id, "session_token": user.get_session_token()}, self.secret
        )
        raw = http.dump_cookie(
            self.name, cookie.serialize(), expires=self.expires, max_age=self.max_age
        )
        headers.append((utils.to_native("Set-Cookie"), raw)) 
开发者ID:leancloud,项目名称:python-sdk,代码行数:17,代码来源:cookie_session.py

示例7: is_trusted

# 需要导入模块: from werkzeug import http [as 别名]
# 或者: from werkzeug.http import parse_cookie [as 别名]
def is_trusted(self, environ):
        """Checks if the request passed the pin test."""
        if self.pin is None:
            return True
        ts = parse_cookie(environ).get(self.pin_cookie_name, type=int)
        if ts is None:
            return False
        return (time.time() - PIN_TIME) < ts 
开发者ID:synthetichealth,项目名称:syntheticmass,代码行数:10,代码来源:__init__.py

示例8: test_cookie_quoting

# 需要导入模块: from werkzeug import http [as 别名]
# 或者: from werkzeug.http import parse_cookie [as 别名]
def test_cookie_quoting(self):
        val = http.dump_cookie("foo", "?foo")
        self.assert_strict_equal(val, 'foo="?foo"; Path=/')
        self.assert_strict_equal(dict(http.parse_cookie(val)), {'foo': u'?foo'})

        self.assert_strict_equal(dict(http.parse_cookie(r'foo="foo\054bar"')),
                                 {'foo': u'foo,bar'}) 
开发者ID:GeekTrainer,项目名称:Flask,代码行数:9,代码来源:http.py

示例9: test_cookie_unicode_dumping

# 需要导入模块: from werkzeug import http [as 别名]
# 或者: from werkzeug.http import parse_cookie [as 别名]
def test_cookie_unicode_dumping(self):
        val = http.dump_cookie('foo', u'\N{SNOWMAN}')
        h = datastructures.Headers()
        h.add('Set-Cookie', val)
        self.assert_equal(h['Set-Cookie'], 'foo="\\342\\230\\203"; Path=/')

        cookies = http.parse_cookie(h['Set-Cookie'])
        self.assert_equal(cookies['foo'], u'\N{SNOWMAN}') 
开发者ID:GeekTrainer,项目名称:Flask,代码行数:10,代码来源:http.py

示例10: test_cookie_unicode_keys

# 需要导入模块: from werkzeug import http [as 别名]
# 或者: from werkzeug.http import parse_cookie [as 别名]
def test_cookie_unicode_keys(self):
        # Yes, this is technically against the spec but happens
        val = http.dump_cookie(u'fö', u'fö')
        self.assert_equal(val, wsgi_encoding_dance(u'fö="f\\303\\266"; Path=/', 'utf-8'))
        cookies = http.parse_cookie(val)
        self.assert_equal(cookies[u'fö'], u'fö') 
开发者ID:GeekTrainer,项目名称:Flask,代码行数:8,代码来源:http.py

示例11: test_cookie_unicode_parsing

# 需要导入模块: from werkzeug import http [as 别名]
# 或者: from werkzeug.http import parse_cookie [as 别名]
def test_cookie_unicode_parsing(self):
        # This is actually a correct test.  This is what is being submitted
        # by firefox if you set an unicode cookie and we get the cookie sent
        # in on Python 3 under PEP 3333.
        cookies = http.parse_cookie(u'fö=fö')
        self.assert_equal(cookies[u'fö'], u'fö') 
开发者ID:GeekTrainer,项目名称:Flask,代码行数:8,代码来源:http.py


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