""" Script to update all Cashify products with genuine Cashify CDN PNG product photos (s3ng.cashify.in). """ import re import app.models.db_base from app.core.database.db_session import SessionLocal from app.models.ProductModel import Product, ProductImage db = SessionLocal() CASHIFY_EXACT_IMAGES = { "refurbished-apple-iphone-15-pro-max": "https://s3ng.cashify.in/cashify/store/product/f133e9311ac34fe2b7737dde73c41206.png", "refurbished-apple-iphone-15-pro": "https://s3ng.cashify.in/cashify/store/product/1e6b0a079b59479fa308605df283452e.png", "refurbished-apple-iphone-15": "https://s3ng.cashify.in/cashify/store/product/239e2f931f594864ba546e5e454acf75.png", "refurbished-apple-iphone-14-pro-max": "https://s3ng.cashify.in/cashify/store/product/297159945dd241bc9d39037a5c5c2c81.png", "refurbished-apple-iphone-14-pro": "https://s3ng.cashify.in/cashify/store/product/a10fa87c0c7b414cb286a84896db2739.png", "refurbished-apple-iphone-14": "https://s3ng.cashify.in/cashify/store/product/8bbf11e143eb4cbaa7df09eafabc8dfe.png", "refurbished-apple-iphone-13-pro-max": "https://s3ng.cashify.in/cashify/store/product/3916901a6acf4e0d8e71a539f5ca9980.png", "refurbished-apple-iphone-13": "https://s3ng.cashify.in/cashify/store/product/dbe46c15496745a3b53fc5982839f6ec.png", "refurbished-apple-iphone-12-pro-max": "https://s3ng.cashify.in/cashify/store/product/1ec04242fcca475982971ab673db0994.png", "refurbished-apple-iphone-12": "https://s3ng.cashify.in/cashify/store/product/07861d0404d9404f9ba8678d90934eb4.png", "refurbished-apple-iphone-11": "https://s3ng.cashify.in/cashify/store/product/cf73bcbd1a084711b40776bfe103bf3d.png", "refurbished-apple-iphone-se-2022": "https://s3ng.cashify.in/cashify/store/product/d81ecaefa5c3455a8e5df055b9584ce3.png", "refurbished-samsung-galaxy-s24-ultra-5g": "https://s3ng.cashify.in/cashify/store/product/359aa372e8d4493a82e98d62a0d28421.png", "refurbished-samsung-galaxy-s23-ultra-5g": "https://s3ng.cashify.in/cashify/store/product/835713059280445cbe2927e9faf90e5c.png", "refurbished-samsung-galaxy-s23-5g": "https://s3ng.cashify.in/cashify/store/product/7d2a3d64c4e148f0b70b1fdc18c1066f.png", "refurbished-samsung-galaxy-s22-ultra-5g": "https://s3ng.cashify.in/cashify/store/product/3b2ec89f01614ac08140946b76964c0c.png", "refurbished-samsung-galaxy-z-fold-5-5g": "https://s3ng.cashify.in/cashify/store/product/c1ee1cdbb76b417f9ab1a03e7adb6fc7.png", "refurbished-samsung-galaxy-z-flip-5-5g": "https://s3ng.cashify.in/cashify/store/product/24ac575a9be4466f9440d3de3812ddf8.png", "refurbished-oneplus-12-5g": "https://s3ng.cashify.in/cashify/store/product/f0b4c119a4a640d781d3e6f589da955d.png", "refurbished-oneplus-11-5g": "https://s3ng.cashify.in/cashify/store/product/808058fcb6ba440caa964ab3cdaba1a1.png", "refurbished-oneplus-11r-5g": "https://s3ng.cashify.in/cashify/store/product/ecaf132162cf4ca9b115b5885cc32694.png", "refurbished-oneplus-nord-3-5g": "https://s3ng.cashify.in/cashify/store/product/82394a3e032c4560a5c1eadef44ba639.png", "refurbished-google-pixel-8-pro": "https://s3ng.cashify.in/cashify/store/product/0fe59d304de144ee8eec5229464d10b3.png", "refurbished-google-pixel-8": "https://s3ng.cashify.in/cashify/store/product/4a4539029beb4c0a826a53a6455864a5.png", "refurbished-google-pixel-7a": "https://s3ng.cashify.in/cashify/store/product/a5eea7555b2343bdbeb09dadde22063d.png", "refurbished-xiaomi-13-pro-5g": "https://s3ng.cashify.in/cashify/store/product/5d5b324478c646a0abf724fe0d3ca00b.png", "refurbished-redmi-note-13-pro-5g": "https://s3ng.cashify.in/cashify/store/product/3334c8539d4b42e592b1406b8a76a45f.png", "refurbished-poco-f5-5g": "https://s3ng.cashify.in/cashify/store/product/5ec904e350904e27aeec2685b26ae9a0.png", "refurbished-apple-ipad-pro-12-9-m2-6th-gen": "https://s3ng.cashify.in/cashify/store/product/e1d4a81f41384007b9cf19150db50358.png", "refurbished-apple-ipad-air-m1-5th-gen": "https://s3ng.cashify.in/cashify/store/product/14c8228b80c24fd894a6f26831b3013d.png", "refurbished-apple-ipad-10th-gen-10-9": "https://s3ng.cashify.in/cashify/store/product/fd8a3454f2594ebfa6b420172a2bb882.webp", } import ulid updated_count = 0 for slug, img_url in CASHIFY_EXACT_IMAGES.items(): prod = db.query(Product).filter(Product.slug == slug).first() if prod: prod_imgs = db.query(ProductImage).filter(ProductImage.product_id == prod.product_id).all() if prod_imgs: for pimg in prod_imgs: pimg.image_url = img_url else: pimg = ProductImage( image_id=str(ulid.ULID()), product_id=prod.product_id, image_url=img_url, alt_text=prod.name, sort_order=1, is_banner=True ) db.add(pimg) db.commit() updated_count += 1 # Also assign default high-res fallback photos for any remaining products missing images all_prods = db.query(Product).all() for prod in all_prods: imgs = db.query(ProductImage).filter(ProductImage.product_id == prod.product_id).all() if not imgs: fallback_img = "https://s3ng.cashify.in/cashify/store/product/f133e9311ac34fe2b7737dde73c41206.png" if "samsung" in prod.slug or "galaxy" in prod.slug: fallback_img = "https://s3ng.cashify.in/cashify/store/product/359aa372e8d4493a82e98d62a0d28421.png" elif "oneplus" in prod.slug: fallback_img = "https://s3ng.cashify.in/cashify/store/product/f0b4c119a4a640d781d3e6f589da955d.png" elif "pixel" in prod.slug: fallback_img = "https://s3ng.cashify.in/cashify/store/product/0fe59d304de144ee8eec5229464d10b3.png" elif "ipad" in prod.slug or "tablet" in prod.slug: fallback_img = "https://s3ng.cashify.in/cashify/store/product/e1d4a81f41384007b9cf19150db50358.png" pimg = ProductImage( image_id=str(ulid.ULID()), product_id=prod.product_id, image_url=fallback_img, alt_text=prod.name, sort_order=1, is_banner=True ) db.add(pimg) db.commit() print(f"Successfully updated {updated_count} products and ensured all 151 products have active images!") db.close()