1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-27 13:34:28 +00:00
royalnet/database.py
2017-04-28 12:55:36 +02:00

129 lines
No EOL
3.6 KiB
Python

import datetime
import sqlalchemy.exc
from sqlalchemy import create_engine, Column, Integer, String, Boolean, DateTime, ForeignKey
from sqlalchemy.orm import sessionmaker, relationship
from sqlalchemy.ext.declarative import declarative_base
import lol
class NoUsersMatchingError(Exception):
pass
class InvalidPasswordError(Exception):
pass
# Initialize the database
engine = create_engine("sqlite:///db.sqlite")
Base = declarative_base()
Session = sessionmaker(bind=engine)
class Diario(Base):
__tablename__ = "diario"
id = Column(Integer, primary_key=True)
text = Column(String, nullable=False)
date = Column(DateTime, nullable=False)
def __repr__(self):
return f"<Diario {self.date} {self.text}>"
class Account(Base):
__tablename__ = "account"
id = Column(Integer, primary_key=True)
lol = relationship("LoL")
class LoL(Base):
__tablename__ = "lol"
id = Column(Integer, primary_key=True)
parentid = Column(Integer, ForeignKey("account.id"))
last_updated = Column(DateTime)
summoner_name = Column(String, nullable=False)
level = Column(Integer)
soloq_division = Column(Integer)
soloq_tier = Column(Integer)
flexq_division = Column(Integer)
flexq_tier = Column(Integer)
ttq_division = Column(Integer)
ttq_tier = Column(Integer)
def __repr__(self):
return f"<LoL {self.id} {self.summoner_name}>"
Base.metadata.create_all(engine)
def migrate_diario():
import datetime
session = Session()
file = open("diario.txt", encoding="utf8")
for row in file:
entry = row.split("|", 1)
new = Diario()
new.date = datetime.datetime.fromtimestamp(int(entry[0]))
new.text = entry[1]
session.add(new)
session.commit()
def new_diario_entry(dt, text):
# Create a new session
session = Session()
# Create a new diario entry
entry = Diario()
entry.date = dt
entry.text = text
# Add the entry to the database
session.add(entry)
# Commit the change
session.commit()
async def update_lol(discord_id):
# Create a new database session
session = Session()
# Find the user
user = session.query(Account).filter_by(id=discord_id).join(LoL).first()
for account in user.lol:
# Find the League of Legends ID
lid = account.id
# Poll the League API for more information
data = await lol.get_summoner_data("euw", summoner_id=lid)
# Update the user data
account.summoner_name = data["name"]
account.level = data["summonerLevel"]
# Poll the League API for ranked data
soloq, flexq, ttq = await lol.get_rank_data("euw", lid)
# Update the user data
if soloq is not None:
account.soloq_tier = lol.tiers[soloq["tier"]]
account.soloq_division = lol.divisions[soloq["entries"][0]["division"]]
else:
account.soloq_tier = None
account.soloq_division = None
if flexq is not None:
account.flexq_tier = lol.tiers[flexq["tier"]]
account.flexq_division = lol.divisions[flexq["entries"][0]["division"]]
else:
account.flexq_tier = None
account.flexq_division = None
if ttq is not None:
account.ttq_tier = lol.tiers[ttq["tier"]]
account.ttq_division = lol.divisions[ttq["entries"][0]["division"]]
else:
account.ttq_tier = None
account.ttq_division = None
# Mark the user as updated
account.last_updated = datetime.datetime.now()
# Commit the changes
session.commit()