mirror of https://github.com/pallets/flask.git
Don't overwrite Vary header when setting for cookie access #2317
This commit is contained in:
parent
4ec1fbc9f5
commit
e7cd68ba58
|
@ -405,7 +405,7 @@ class SecureCookieSessionInterface(SessionInterface):
|
||||||
|
|
||||||
# Add a "Vary: Cookie" header if the session was accessed at all.
|
# Add a "Vary: Cookie" header if the session was accessed at all.
|
||||||
if session.accessed:
|
if session.accessed:
|
||||||
response.headers.add('Vary', 'Cookie')
|
self._patch_vary_cookie_header(response)
|
||||||
|
|
||||||
if not self.should_set_cookie(app, session):
|
if not self.should_set_cookie(app, session):
|
||||||
return
|
return
|
||||||
|
@ -423,3 +423,16 @@ class SecureCookieSessionInterface(SessionInterface):
|
||||||
path=path,
|
path=path,
|
||||||
secure=secure
|
secure=secure
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def _patch_vary_cookie_header(self, response):
|
||||||
|
"""
|
||||||
|
Add a 'Cookie' value to the 'Vary' header if one is not already present.
|
||||||
|
"""
|
||||||
|
header = response.headers.get('Vary', '')
|
||||||
|
headers = [h.strip() for h in header.split(',') if h]
|
||||||
|
|
||||||
|
if not any(h.lower() == 'cookie' for h in headers):
|
||||||
|
headers.append('Cookie')
|
||||||
|
|
||||||
|
updated_header = ', '.join(headers)
|
||||||
|
response.headers['Vary'] = updated_header
|
||||||
|
|
|
@ -520,15 +520,31 @@ def test_session_vary_cookie(app, client):
|
||||||
def setdefault():
|
def setdefault():
|
||||||
return flask.session.setdefault('test', 'default')
|
return flask.session.setdefault('test', 'default')
|
||||||
|
|
||||||
|
@app.route('/vary-cookie-header-set')
|
||||||
|
def vary_cookie_header_set():
|
||||||
|
response = flask.Response()
|
||||||
|
response.headers['Vary'] = 'Cookie'
|
||||||
|
flask.session['test'] = 'test'
|
||||||
|
return response
|
||||||
|
|
||||||
|
@app.route('/vary-header-set')
|
||||||
|
def vary_header_set():
|
||||||
|
response = flask.Response()
|
||||||
|
response.headers['Vary'] = 'Accept-Encoding, Accept-Language'
|
||||||
|
flask.session['test'] = 'test'
|
||||||
|
return response
|
||||||
|
|
||||||
@app.route('/no-vary-header')
|
@app.route('/no-vary-header')
|
||||||
def no_vary_header():
|
def no_vary_header():
|
||||||
return ''
|
return ''
|
||||||
|
|
||||||
def expect(path, header=True):
|
def expect(path, header_value='Cookie'):
|
||||||
rv = client.get(path)
|
rv = client.get(path)
|
||||||
|
|
||||||
if header:
|
if header_value:
|
||||||
assert rv.headers['Vary'] == 'Cookie'
|
# The 'Vary' key should exist in the headers only once.
|
||||||
|
assert len(rv.headers.get_all('Vary')) == 1
|
||||||
|
assert rv.headers['Vary'] == header_value
|
||||||
else:
|
else:
|
||||||
assert 'Vary' not in rv.headers
|
assert 'Vary' not in rv.headers
|
||||||
|
|
||||||
|
@ -536,7 +552,9 @@ def test_session_vary_cookie(app, client):
|
||||||
expect('/get')
|
expect('/get')
|
||||||
expect('/getitem')
|
expect('/getitem')
|
||||||
expect('/setdefault')
|
expect('/setdefault')
|
||||||
expect('/no-vary-header', False)
|
expect('/vary-cookie-header-set')
|
||||||
|
expect('/vary-header-set', 'Accept-Encoding, Accept-Language, Cookie')
|
||||||
|
expect('/no-vary-header', None)
|
||||||
|
|
||||||
|
|
||||||
def test_flashes(app, req_ctx):
|
def test_flashes(app, req_ctx):
|
||||||
|
|
Loading…
Reference in New Issue