feat(tg-fitness-bot): /feedback command, feedback SQLite table

Users can send /feedback <text> to record feedback. Stored in a new
feedback table with user_id, text, created_at. Updated /start help text.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Danny 2026-04-17 11:22:43 +02:00
parent a529416599
commit 3703d87426
2 changed files with 46 additions and 2 deletions

27
db.py
View file

@ -60,6 +60,13 @@ def init_db():
CREATE INDEX IF NOT EXISTS idx_workouts_user
ON workouts(user_id, timestamp);
CREATE TABLE IF NOT EXISTS feedback (
id INTEGER PRIMARY KEY AUTOINCREMENT,
user_id INTEGER NOT NULL,
text TEXT NOT NULL,
created_at TEXT NOT NULL DEFAULT (datetime('now'))
);
""")
# Migrations
@ -246,3 +253,23 @@ def export_workouts(user_id: int) -> list[dict]:
""", (user_id,)).fetchall()
return [dict(r) for r in rows]
def save_feedback(user_id: int, text: str) -> int:
"""Save user feedback. Returns the feedback id."""
with get_db() as conn:
cur = conn.execute(
"INSERT INTO feedback (user_id, text) VALUES (?, ?)",
(user_id, text),
)
return cur.lastrowid
def get_feedback(limit: int = 50) -> list[dict]:
"""Get all feedback, newest first."""
with get_db() as conn:
rows = conn.execute(
"SELECT id, user_id, text, created_at FROM feedback ORDER BY created_at DESC LIMIT ?",
(limit,),
).fetchall()
return [dict(r) for r in rows]