Move to using hosted remote DB

This commit is contained in:
2022-06-01 16:07:46 -05:00
parent a901d21b1e
commit fcedc9b054
6 changed files with 189 additions and 5 deletions

View File

@@ -5,7 +5,7 @@ import rich
import rich.progress
import rich.table
import wordlinator.db
import wordlinator.db.pg
import wordlinator.sheets
import wordlinator.twitter
import wordlinator.utils
@@ -70,7 +70,7 @@ def print_score_table(wordle_day, scores):
def _save_db_scores(wordle_day: wordlinator.utils.WordleDay, scores: dict):
db = wordlinator.db.WordleDb()
db = wordlinator.db.pg.WordleDb()
hole_data = wordle_day.golf_hole
if not hole_data:
return

105
wordlinator/db/pg.py Normal file
View File

@@ -0,0 +1,105 @@
import os
import peewee
db = peewee.PostgresqlDatabase(
os.getenv("DB_NAME", "wordlegolf"),
user=os.getenv("DB_USER", "wordlegolf"),
host=os.environ["DB_HOST"],
port=int(os.environ["DB_PORT"]),
password=os.environ["DB_PASS"],
)
class BaseModel(peewee.Model):
class Meta:
database = db
class User(BaseModel):
user_id = peewee.AutoField()
username = peewee.CharField(unique=True)
twitter_id = peewee.CharField(unique=True)
class Meta:
table_name = "user_tbl"
class Game(BaseModel):
game_id = peewee.AutoField()
game = peewee.IntegerField(null=False)
class Hole(BaseModel):
hole_id = peewee.AutoField()
hole = peewee.IntegerField(null=False)
game_id = peewee.ForeignKeyField(Game, "game_id", null=False)
class Score(BaseModel):
score = peewee.IntegerField(null=False)
user_id = peewee.ForeignKeyField(User, "user_id", null=False)
game_id = peewee.ForeignKeyField(Game, "game_id", null=False)
hole_id = peewee.ForeignKeyField(Hole, "hole_id", null=False)
class Meta:
primary_key = peewee.CompositeKey("user_id", "game_id", "hole_id")
class WordleDb:
def get_user(self, username):
try:
return User.get(User.username == username)
except peewee.DoesNotExist:
return None
def get_user_id(self, username):
user = self.get_user(username)
return user.twitter_id if user else None
def add_user(self, username, user_id):
return User.create(username=username, twitter_id=user_id)
def get_or_create_round(self, round_no):
try:
return Game.get(Game.game == round_no)
except peewee.DoesNotExist:
return Game.create(game=round_no)
def get_or_create_hole(self, round_no, hole_no):
round = self.get_or_create_round(round_no)
try:
return Hole.get(Hole.hole == hole_no, Hole.game_id == round.game_id)
except peewee.DoesNotExist:
return Hole.create(hole=hole_no, game_id=round.game_id)
def create_round_holes(self, round_no):
for hole_no in range(1, 19):
self.get_or_create_hole(round_no, hole_no)
def add_score(self, username, game, hole, score):
if not score:
return
user = self.get_user(username)
if not user:
raise ValueError(f'No Such User "{username}"')
hole = self.get_or_create_hole(game, hole)
try:
score_obj = Score.get(
Score.user_id == user.user_id,
Score.game_id == hole.game_id,
Score.hole_id == hole.hole_id,
)
score_obj.score = score
score_obj.save()
return score_obj
except peewee.DoesNotExist:
return Score.create(
score=score,
user_id=user.user_id,
game_id=hole.game_id,
hole_id=hole.hole_id,
)

View File

@@ -10,7 +10,7 @@ import dateutil.parser
import httpx
import rich
import wordlinator.db
import wordlinator.db.pg
import wordlinator.utils
BASE_URL = "https://api.twitter.com/2"
@@ -105,7 +105,7 @@ class TwitterClient(httpx.AsyncClient):
auth = authlib.integrations.httpx_client.OAuth1Auth(**oauth_creds)
kwargs["auth"] = auth
super().__init__(base_url=BASE_URL, **kwargs)
self.db = wordlinator.db.WordleDb()
self.db = wordlinator.db.pg.WordleDb()
self.wordle_day = wordle_day
if not oauth_creds:
self.headers["Authorization"] = f"Bearer {TOKEN}"