"""Legacy Image assets constants.""" COVER = 7 LARGE_COVER = 10 COVER_2K = 17 CATEGORY_ID_TO_SIZE = {7: 110, 10: 360, 17: 2000} CATEGORY_ID_TO_CATEGORY = {7: "cover", 10: "large_cover", 16: "vendor_icon"} CATEGORY_ID_TO_PATH = { 7: "/release/cover/", 10: "/release/large_cover/", 16: "/vendor/vendor_icon/", } PROD_CDN_URL = "https://d1d42quv8tscnl.cloudfront.net/{upc}.jpg" QA_CDN_URL = "https://d14bv7mbq8je1y.cloudfront.net/{upc}.jpg" IMAGES_URL = "https://images.theorchard.com{category_path}{path}{filename}" IMAGES_QA_URL = "https://images.qaorch.com{category_path}{path}{filename}"