-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hitler winner and spectator poll options #7
Changes from all commits
b67a410
b3161f9
bfbd3f7
a89509d
e2881f6
09998fb
b7b3903
5a1b87b
88608cc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,6 +1,12 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import logging | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import sqlite3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from src.data_models.Playroom import Playroom | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import logging | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import sqlite3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from src.data_models.Game import Game | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from src.data_models.Player import Player | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from src.data_models.Game import Game | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from src.data_models.Player import Player | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from src.data_models.Playroom import Playroom | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -9,17 +15,33 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
async def save_record(record: Record) -> None: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
await execute( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"""INSERT INTO records (creator_id, player_id, playroom_id, game_id, role) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
VALUES (?, ?, ?, ?, ?)""", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
record.creator_id, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
record.player_id, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
record.playroom_id, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
record.game_id, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
record.role, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
try: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
await execute( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"""INSERT INTO records (creator_id, player_id, playroom_id, game_id, role) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
VALUES (?, ?, ?, ?, ?)""", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
record.creator_id, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
record.player_id, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
record.playroom_id, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
record.game_id, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
record.role, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
except sqlite3.IntegrityError: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
logging.info( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
f"Something went wrong with game: {record.game_id} in playroom {record.playroom_id}" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+18
to
+33
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The - logging.info(
+ logging.error( Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
async def save_playroom(playroom: Playroom) -> None: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"""Add a game room to the bot_data""" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
try: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
await execute( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"INSERT INTO playrooms (id, name) VALUES (?, ?)", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(playroom.telegram_chat_id, playroom.name), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
except sqlite3.IntegrityError: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
logging.info(f"Playroom {playroom.name} already exists in the database") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+36
to
+44
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The - async def save_playroom(playroom: Playroom) -> None:
- """Add a game room to the bot_data"""
- try:
- await execute(
- "INSERT INTO playrooms (id, name) VALUES (?, ?)",
- (playroom.telegram_chat_id, playroom.name),
- )
- except sqlite3.IntegrityError:
- logging.info(f"Playroom {playroom.name} already exists in the database") Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
async def save_playroom(playroom: Playroom) -> None: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate imports for
logging
,sqlite3
, and data modelsGame
,Player
, andPlayroom
. Remove the redundant lines to clean up the code.Committable suggestion