2016-04-28 05:40:58 +02:00
|
|
|
from django.conf import settings
|
|
|
|
import codecs
|
|
|
|
import hashlib
|
|
|
|
import hmac
|
|
|
|
|
|
|
|
# Encodes the provided URL using the same algorithm used by the camo
|
|
|
|
# caching https image proxy
|
|
|
|
def get_camo_url(url):
|
2016-06-04 19:52:48 +02:00
|
|
|
# type: (str) -> str
|
2016-04-28 05:40:58 +02:00
|
|
|
# Only encode the url if Camo is enabled
|
|
|
|
if settings.CAMO_URI == '':
|
|
|
|
return url
|
|
|
|
encoded_url = url.encode("utf-8")
|
|
|
|
encoded_camo_key = settings.CAMO_KEY.encode("utf-8")
|
|
|
|
digest = hmac.new(encoded_camo_key, encoded_url, hashlib.sha1).hexdigest()
|
|
|
|
hex_encoded_url = codecs.encode(encoded_url, "hex")
|
|
|
|
return "%s%s/%s" % (settings.CAMO_URI, digest, hex_encoded_url.decode("utf-8"))
|