[fix] codec can't encode character inside image_proxify

This commit is contained in:
Thomas Pointhuber 2015-02-01 10:18:32 +01:00
parent 38302ef58b
commit 14079ea2b0
1 changed files with 5 additions and 3 deletions

View File

@ -215,10 +215,12 @@ def image_proxify(url):
if url.startswith('//'):
url = 'https:' + url
url = url.encode('utf-8')
if not settings['server'].get('image_proxy') and not request.cookies.get('image_proxy'):
return url
h = hashlib.sha256(url.encode('utf-8') + settings['server']['secret_key'].encode('utf-8')).hexdigest()
h = hashlib.sha256(url + settings['server']['secret_key'].encode('utf-8')).hexdigest()
return '{0}?{1}'.format(url_for('image_proxy'),
urlencode(dict(url=url, h=h)))
@ -553,12 +555,12 @@ def preferences():
@app.route('/image_proxy', methods=['GET'])
def image_proxy():
url = request.args.get('url')
url = request.args.get('url').encode('utf-8')
if not url:
return '', 400
h = hashlib.sha256(url.encode('utf-8') + settings['server']['secret_key'].encode('utf-8')).hexdigest()
h = hashlib.sha256(url + settings['server']['secret_key'].encode('utf-8')).hexdigest()
if h != request.args.get('h'):
return '', 400