mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Disable Overwatch StatsUpdater
This commit is contained in:
parent
8a0d577a3d
commit
b3318e54e2
3 changed files with 7 additions and 36 deletions
35
db.py
35
db.py
|
@ -746,45 +746,14 @@ class Overwatch(Base, Mini):
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def create(session: Session, royal_id, battletag, discriminator=None):
|
def create(session: Session, royal_id, battletag, discriminator=None):
|
||||||
if discriminator is None:
|
raise NotImplementedError()
|
||||||
battletag, discriminator = battletag.split("#", 1)
|
|
||||||
o = session.query(Overwatch).filter_by(battletag=battletag, discriminator=discriminator).first()
|
|
||||||
if o is not None:
|
|
||||||
raise AlreadyExistingError(repr(o))
|
|
||||||
o = Overwatch(royal_id=royal_id,
|
|
||||||
battletag=battletag,
|
|
||||||
discriminator=discriminator)
|
|
||||||
o.update()
|
|
||||||
return o
|
|
||||||
|
|
||||||
def icon_url(self):
|
def icon_url(self):
|
||||||
return f"https://d1u1mce87gyfbn.cloudfront.net/game/unlocks/{self.icon}.png"
|
return f"https://d1u1mce87gyfbn.cloudfront.net/game/unlocks/{self.icon}.png"
|
||||||
|
|
||||||
# noinspection PyUnusedLocal
|
# noinspection PyUnusedLocal
|
||||||
def update(self, session=None):
|
def update(self, session=None):
|
||||||
r = requests.get(f"https://owapi.net/api/v3/u/{self.battletag}-{self.discriminator}/stats", headers={
|
raise NotImplementedError()
|
||||||
"User-Agent": "Royal-Bot/4.1",
|
|
||||||
"From": "ste.pigozzi@gmail.com"
|
|
||||||
})
|
|
||||||
r.raise_for_status()
|
|
||||||
try:
|
|
||||||
j = r.json()["eu"]["stats"].get("competitive")
|
|
||||||
if j is None:
|
|
||||||
logger.debug(f"No stats for {repr(self)}, skipping...")
|
|
||||||
return
|
|
||||||
if not j["game_stats"]:
|
|
||||||
logger.debug(f"No stats for {repr(self)}, skipping...")
|
|
||||||
return
|
|
||||||
j = j["overall_stats"]
|
|
||||||
except TypeError:
|
|
||||||
logger.debug(f"No stats for {repr(self)}, skipping...")
|
|
||||||
return
|
|
||||||
try:
|
|
||||||
self.icon = re.search(r"https://.+\.cloudfront\.net/game/unlocks/(0x[0-9A-F]+)\.png", j["avatar"]).group(1)
|
|
||||||
except AttributeError:
|
|
||||||
logger.debug(f"No icon available for {repr(self)}.")
|
|
||||||
self.level = j["prestige"] * 100 + j["level"]
|
|
||||||
self.rank = j["comprank"]
|
|
||||||
|
|
||||||
def rank_url(self):
|
def rank_url(self):
|
||||||
if self.rank < 1500:
|
if self.rank < 1500:
|
||||||
|
|
|
@ -148,9 +148,6 @@ def process():
|
||||||
logger.info("Now updating League of Legends data.")
|
logger.info("Now updating League of Legends data.")
|
||||||
update_block(session, session.query(db.LeagueOfLegends).all(), delay=5, change_callback=new_lol_rank)
|
update_block(session, session.query(db.LeagueOfLegends).all(), delay=5, change_callback=new_lol_rank)
|
||||||
session.commit()
|
session.commit()
|
||||||
logger.info("Now updating Overwatch data.")
|
|
||||||
update_block(session, session.query(db.Overwatch).all(), delay=5)
|
|
||||||
session.commit()
|
|
||||||
logger.info("Pausing for 30 minutes.")
|
logger.info("Pausing for 30 minutes.")
|
||||||
time.sleep(1800)
|
time.sleep(1800)
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,11 @@
|
||||||
<h1>
|
<h1>
|
||||||
Royal Games su {{ mini_type._mini_full_name }}
|
Royal Games su {{ mini_type._mini_full_name }}
|
||||||
</h1>
|
</h1>
|
||||||
|
{% if mini_type._mini_name == "ow" %}
|
||||||
|
<div>
|
||||||
|
Overwatch updates are currently disabled.
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
<div class="game">
|
<div class="game">
|
||||||
<div class="game-panels">
|
<div class="game-panels">
|
||||||
{% for record in mini_data %}
|
{% for record in mini_data %}
|
||||||
|
|
Loading…
Reference in a new issue