1
0
Fork 0
mirror of synced 2024-06-26 10:11:19 +12:00
Rare/rare/components/tabs/shop/shop_models.py

87 lines
3.5 KiB
Python
Raw Normal View History

class _ImageUrlModel:
def __init__(self, front_tall: str = "", offer_image_tall: str = "",
thumbnail: str = "", front_wide: str = ""):
self.front_tall = front_tall
self.offer_image_tall = offer_image_tall
self.thumbnail = thumbnail
self.front_wide = front_wide
@classmethod
def from_json(cls, json_data: list):
tmp = cls()
for item in json_data:
if item["type"] == "Thumbnail":
tmp.thumbnail = item["url"]
elif item["type"] == "DieselStoreFrontTall":
tmp.front_tall = item["url"]
elif item["type"] == "DieselStoreFrontWide":
tmp.front_wide = item["url"]
elif item["type"] == "OfferImageTall":
tmp.offer_image_tall = item["url"]
return tmp
class ShopGame:
# TODO: Copyrights etc
def __init__(self, title: str = "", image_urls: _ImageUrlModel = None, social_links: dict = None,
2021-06-10 09:12:49 +12:00
langs: list = None, reqs: dict = None, publisher: str = "", developer: str = "",
2021-06-17 05:03:18 +12:00
original_price: str = "", discount_price: str = "", tags: list = None):
self.title = title
self.image_urls = image_urls
self.links = []
if social_links:
for item in social_links:
if item.startswith("link"):
self.links.append(tuple((item.replace("link", ""), social_links[item])))
else:
self.links = []
self.languages = langs
2021-06-11 05:58:35 +12:00
self.reqs = reqs
self.publisher = publisher
self.developer = developer
self.price = original_price
self.discount_price = discount_price
2021-06-17 05:03:18 +12:00
self.tags = tags
@classmethod
def from_json(cls, api_data: dict, search_data: dict):
if isinstance(api_data, list):
for product in api_data:
if product["_title"] == "home":
api_data = product
break
tmp = cls()
2021-06-09 23:25:57 +12:00
if "pages" in api_data.keys():
api_data = api_data["pages"][0]
2021-06-13 10:05:14 +12:00
tmp.title = search_data.get("title", "Fail")
tmp.image_urls = _ImageUrlModel.from_json(search_data["keyImages"])
2021-06-09 23:25:57 +12:00
links = api_data["data"]["socialLinks"]
tmp.links = []
for item in links:
if item.startswith("link"):
tmp.links.append(tuple((item.replace("link", ""), links[item])))
tmp.available_voice_langs = api_data["data"]["requirements"].get("languages", "Failed")
2021-06-10 09:12:49 +12:00
tmp.reqs = {}
2021-06-09 23:25:57 +12:00
for i, system in enumerate(api_data["data"]["requirements"]["systems"]):
2021-06-15 08:30:57 +12:00
try:
tmp.reqs[system["systemType"]] = {}
except KeyError:
continue
for req in system["details"]:
2021-06-11 05:58:35 +12:00
try:
tmp.reqs[system["systemType"]][req["title"]] = (req["minimum"], req["recommended"])
except KeyError:
pass
2021-06-13 10:05:14 +12:00
tmp.publisher = api_data["data"]["meta"].get("publisher", "")
tmp.developer = api_data["data"]["meta"].get("developer", "")
if not tmp.developer:
for i in search_data["customAttributes"]:
if i["key"] == "developerName":
tmp.developer = i["value"]
tmp.price = search_data['price']['totalPrice']['fmtPrice']['originalPrice']
tmp.discount_price = search_data['price']['totalPrice']['fmtPrice']['discountPrice']
2021-06-17 05:03:18 +12:00
tmp.tags = [i.replace("_", " ").capitalize() for i in api_data["data"]["meta"].get("tags", [])]
return tmp