1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
|
"""Core, shared logic for PodcastItalater.
Includes:
- Database models
- Data access layer
- Shared types
"""
# : out podcastitlater-core
# : dep pytest
# : dep pytest-asyncio
# : dep pytest-mock
import logging
import Omni.App as App
import Omni.Test as Test
import os
import pathlib
import pytest
import secrets
import sqlite3
import sys
import time
import typing
from collections.abc import Iterator
from contextlib import contextmanager
from typing import Any
logger = logging.getLogger(__name__)
CODEROOT = pathlib.Path(os.getenv("CODEROOT", "."))
DATA_DIR = pathlib.Path(
os.environ.get("DATA_DIR", CODEROOT / "_/var/podcastitlater/"),
)
# Constants for UI display
URL_TRUNCATE_LENGTH = 80
TITLE_TRUNCATE_LENGTH = 50
ERROR_TRUNCATE_LENGTH = 50
# Admin whitelist
ADMIN_EMAILS = ["ben@bensima.com"]
def is_admin(user: dict[str, typing.Any] | None) -> bool:
"""Check if user is an admin based on email whitelist."""
if not user:
return False
return user.get("email", "").lower() in [
email.lower() for email in ADMIN_EMAILS
]
class Database: # noqa: PLR0904
"""Data access layer for PodcastItLater database operations."""
@staticmethod
def teardown() -> None:
"""Delete the existing database, for cleanup after tests."""
db_path = DATA_DIR / "podcast.db"
if db_path.exists():
db_path.unlink()
@staticmethod
@contextmanager
def get_connection() -> Iterator[sqlite3.Connection]:
"""Context manager for database connections.
Yields:
sqlite3.Connection: Database connection with row factory set.
"""
db_path = DATA_DIR / "podcast.db"
conn = sqlite3.connect(db_path)
conn.row_factory = sqlite3.Row
try:
yield conn
finally:
conn.close()
@staticmethod
def init_db() -> None:
"""Initialize database with required tables."""
with Database.get_connection() as conn:
cursor = conn.cursor()
# Queue table for job processing
cursor.execute("""
CREATE TABLE IF NOT EXISTS queue (
id INTEGER PRIMARY KEY AUTOINCREMENT,
url TEXT,
email TEXT,
status TEXT DEFAULT 'pending',
retry_count INTEGER DEFAULT 0,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
error_message TEXT,
title TEXT,
author TEXT
)
""")
# Episodes table for completed podcasts
cursor.execute("""
CREATE TABLE IF NOT EXISTS episodes (
id INTEGER PRIMARY KEY AUTOINCREMENT,
title TEXT NOT NULL,
content_length INTEGER,
audio_url TEXT NOT NULL,
duration INTEGER,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
""")
# Create indexes for performance
cursor.execute(
"CREATE INDEX IF NOT EXISTS idx_queue_status ON queue(status)",
)
cursor.execute(
"CREATE INDEX IF NOT EXISTS idx_queue_created "
"ON queue(created_at)",
)
cursor.execute(
"CREATE INDEX IF NOT EXISTS idx_episodes_created "
"ON episodes(created_at)",
)
conn.commit()
logger.info("Database initialized successfully")
# Run migration to add user support
Database.migrate_to_multi_user()
# Run migration to add metadata fields
Database.migrate_add_metadata_fields()
# Run migration to add episode metadata fields
Database.migrate_add_episode_metadata()
# Run migration to add user status field
Database.migrate_add_user_status()
# Run migration to add default titles
Database.migrate_add_default_titles()
# Run migration to add billing fields
Database.migrate_add_billing_fields()
# Run migration to add stripe events table
Database.migrate_add_stripe_events_table()
@staticmethod
def add_to_queue(
url: str,
email: str,
user_id: int,
title: str | None = None,
author: str | None = None,
) -> int:
"""Insert new job into queue with metadata, return job ID.
Raises:
ValueError: If job ID cannot be retrieved after insert.
"""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"INSERT INTO queue (url, email, user_id, title, author) "
"VALUES (?, ?, ?, ?, ?)",
(url, email, user_id, title, author),
)
conn.commit()
job_id = cursor.lastrowid
if job_id is None:
msg = "Failed to get job ID after insert"
raise ValueError(msg)
logger.info("Added job %s to queue: %s", job_id, url)
return job_id
@staticmethod
def get_pending_jobs(
limit: int = 10,
) -> list[dict[str, Any]]:
"""Fetch jobs with status='pending' ordered by creation time."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"SELECT * FROM queue WHERE status = 'pending' "
"ORDER BY created_at ASC LIMIT ?",
(limit,),
)
rows = cursor.fetchall()
return [dict(row) for row in rows]
@staticmethod
def update_job_status(
job_id: int,
status: str,
error: str | None = None,
) -> None:
"""Update job status and error message."""
with Database.get_connection() as conn:
cursor = conn.cursor()
if status == "error":
cursor.execute(
"UPDATE queue SET status = ?, error_message = ?, "
"retry_count = retry_count + 1 WHERE id = ?",
(status, error, job_id),
)
else:
cursor.execute(
"UPDATE queue SET status = ? WHERE id = ?",
(status, job_id),
)
conn.commit()
logger.info("Updated job %s status to %s", job_id, status)
@staticmethod
def get_job_by_id(
job_id: int,
) -> dict[str, Any] | None:
"""Fetch single job by ID."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute("SELECT * FROM queue WHERE id = ?", (job_id,))
row = cursor.fetchone()
return dict(row) if row is not None else None
@staticmethod
def create_episode( # noqa: PLR0913, PLR0917
title: str,
audio_url: str,
duration: int,
content_length: int,
user_id: int | None = None,
author: str | None = None,
original_url: str | None = None,
) -> int:
"""Insert episode record, return episode ID.
Raises:
ValueError: If episode ID cannot be retrieved after insert.
"""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"INSERT INTO episodes "
"(title, audio_url, duration, content_length, user_id, author, "
"original_url) VALUES (?, ?, ?, ?, ?, ?, ?)",
(
title,
audio_url,
duration,
content_length,
user_id,
author,
original_url,
),
)
conn.commit()
episode_id = cursor.lastrowid
if episode_id is None:
msg = "Failed to get episode ID after insert"
raise ValueError(msg)
logger.info("Created episode %s: %s", episode_id, title)
return episode_id
@staticmethod
def get_recent_episodes(
limit: int = 20,
) -> list[dict[str, Any]]:
"""Get recent episodes for RSS feed generation."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"SELECT * FROM episodes ORDER BY created_at DESC LIMIT ?",
(limit,),
)
rows = cursor.fetchall()
return [dict(row) for row in rows]
@staticmethod
def get_queue_status_summary() -> dict[str, Any]:
"""Get queue status summary for web interface."""
with Database.get_connection() as conn:
cursor = conn.cursor()
# Count jobs by status
cursor.execute(
"SELECT status, COUNT(*) as count FROM queue GROUP BY status",
)
rows = cursor.fetchall()
status_counts = {row["status"]: row["count"] for row in rows}
# Get recent jobs
cursor.execute(
"SELECT * FROM queue ORDER BY created_at DESC LIMIT 10",
)
rows = cursor.fetchall()
recent_jobs = [dict(row) for row in rows]
return {"status_counts": status_counts, "recent_jobs": recent_jobs}
@staticmethod
def get_queue_status() -> list[dict[str, Any]]:
"""Return pending/processing/error items for web interface."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute("""
SELECT id, url, email, status, created_at, error_message,
title, author
FROM queue
WHERE status IN ('pending', 'processing', 'error')
ORDER BY created_at DESC
LIMIT 20
""")
rows = cursor.fetchall()
return [dict(row) for row in rows]
@staticmethod
def get_all_episodes(
user_id: int | None = None,
) -> list[dict[str, Any]]:
"""Return all episodes for RSS feed."""
with Database.get_connection() as conn:
cursor = conn.cursor()
if user_id:
cursor.execute(
"""
SELECT id, title, audio_url, duration, created_at,
content_length, author, original_url
FROM episodes
WHERE user_id = ?
ORDER BY created_at DESC
""",
(user_id,),
)
else:
cursor.execute("""
SELECT id, title, audio_url, duration, created_at,
content_length, author, original_url
FROM episodes
ORDER BY created_at DESC
""")
rows = cursor.fetchall()
return [dict(row) for row in rows]
@staticmethod
def get_retryable_jobs(
max_retries: int = 3,
) -> list[dict[str, Any]]:
"""Get failed jobs that can be retried."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"SELECT * FROM queue WHERE status = 'error' "
"AND retry_count < ? ORDER BY created_at ASC",
(max_retries,),
)
rows = cursor.fetchall()
return [dict(row) for row in rows]
@staticmethod
def retry_job(job_id: int) -> None:
"""Reset a job to pending status for retry."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"UPDATE queue SET status = 'pending', "
"error_message = NULL WHERE id = ?",
(job_id,),
)
conn.commit()
logger.info("Reset job %s to pending for retry", job_id)
@staticmethod
def delete_job(job_id: int) -> None:
"""Delete a job from the queue."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute("DELETE FROM queue WHERE id = ?", (job_id,))
conn.commit()
logger.info("Deleted job %s from queue", job_id)
@staticmethod
def get_all_queue_items(
user_id: int | None = None,
) -> list[dict[str, Any]]:
"""Return all queue items for admin view."""
with Database.get_connection() as conn:
cursor = conn.cursor()
if user_id:
cursor.execute(
"""
SELECT id, url, email, status, retry_count, created_at,
error_message, title, author
FROM queue
WHERE user_id = ?
ORDER BY created_at DESC
""",
(user_id,),
)
else:
cursor.execute("""
SELECT id, url, email, status, retry_count, created_at,
error_message, title, author
FROM queue
ORDER BY created_at DESC
""")
rows = cursor.fetchall()
return [dict(row) for row in rows]
@staticmethod
def get_status_counts() -> dict[str, int]:
"""Get count of queue items by status."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute("""
SELECT status, COUNT(*) as count
FROM queue
GROUP BY status
""")
rows = cursor.fetchall()
return {row["status"]: row["count"] for row in rows}
@staticmethod
def get_user_status_counts(
user_id: int,
) -> dict[str, int]:
"""Get count of queue items by status for a specific user."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"""
SELECT status, COUNT(*) as count
FROM queue
WHERE user_id = ?
GROUP BY status
""",
(user_id,),
)
rows = cursor.fetchall()
return {row["status"]: row["count"] for row in rows}
@staticmethod
def migrate_to_multi_user() -> None:
"""Migrate database to support multiple users."""
with Database.get_connection() as conn:
cursor = conn.cursor()
# Create users table
cursor.execute("""
CREATE TABLE IF NOT EXISTS users (
id INTEGER PRIMARY KEY AUTOINCREMENT,
email TEXT UNIQUE NOT NULL,
token TEXT UNIQUE NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
""")
# Add user_id columns to existing tables
# Check if columns already exist to make migration idempotent
cursor.execute("PRAGMA table_info(queue)")
queue_info = cursor.fetchall()
queue_columns = [col[1] for col in queue_info]
if "user_id" not in queue_columns:
cursor.execute(
"ALTER TABLE queue ADD COLUMN user_id INTEGER "
"REFERENCES users(id)",
)
cursor.execute("PRAGMA table_info(episodes)")
episodes_info = cursor.fetchall()
episodes_columns = [col[1] for col in episodes_info]
if "user_id" not in episodes_columns:
cursor.execute(
"ALTER TABLE episodes ADD COLUMN user_id INTEGER "
"REFERENCES users(id)",
)
# Create indexes
cursor.execute(
"CREATE INDEX IF NOT EXISTS idx_queue_user_id "
"ON queue(user_id)",
)
cursor.execute(
"CREATE INDEX IF NOT EXISTS idx_episodes_user_id "
"ON episodes(user_id)",
)
conn.commit()
logger.info("Database migrated to support multiple users")
@staticmethod
def migrate_add_metadata_fields() -> None:
"""Add title and author fields to queue table."""
with Database.get_connection() as conn:
cursor = conn.cursor()
# Check if columns already exist
cursor.execute("PRAGMA table_info(queue)")
queue_info = cursor.fetchall()
queue_columns = [col[1] for col in queue_info]
if "title" not in queue_columns:
cursor.execute("ALTER TABLE queue ADD COLUMN title TEXT")
if "author" not in queue_columns:
cursor.execute("ALTER TABLE queue ADD COLUMN author TEXT")
conn.commit()
logger.info("Database migrated to support metadata fields")
@staticmethod
def migrate_add_episode_metadata() -> None:
"""Add author and original_url fields to episodes table."""
with Database.get_connection() as conn:
cursor = conn.cursor()
# Check if columns already exist
cursor.execute("PRAGMA table_info(episodes)")
episodes_info = cursor.fetchall()
episodes_columns = [col[1] for col in episodes_info]
if "author" not in episodes_columns:
cursor.execute("ALTER TABLE episodes ADD COLUMN author TEXT")
if "original_url" not in episodes_columns:
cursor.execute(
"ALTER TABLE episodes ADD COLUMN original_url TEXT",
)
conn.commit()
logger.info("Database migrated to support episode metadata fields")
@staticmethod
def migrate_add_user_status() -> None:
"""Add status field to users table."""
with Database.get_connection() as conn:
cursor = conn.cursor()
# Check if column already exists
cursor.execute("PRAGMA table_info(users)")
users_info = cursor.fetchall()
users_columns = [col[1] for col in users_info]
if "status" not in users_columns:
# Add status column with default 'active'
cursor.execute(
"ALTER TABLE users ADD COLUMN status TEXT DEFAULT 'active'",
)
conn.commit()
logger.info("Database migrated to support user status")
@staticmethod
def migrate_add_billing_fields() -> None:
"""Add billing-related fields to users table."""
with Database.get_connection() as conn:
cursor = conn.cursor()
# Add columns one by one (SQLite limitation)
# Note: SQLite ALTER TABLE doesn't support adding UNIQUE constraints
# We add them without UNIQUE and rely on application logic
columns_to_add = [
("plan_tier", "TEXT NOT NULL DEFAULT 'free'"),
("stripe_customer_id", "TEXT"),
("stripe_subscription_id", "TEXT"),
("subscription_status", "TEXT"),
("current_period_start", "TIMESTAMP"),
("current_period_end", "TIMESTAMP"),
("cancel_at_period_end", "INTEGER NOT NULL DEFAULT 0"),
]
for column_name, column_def in columns_to_add:
try:
query = f"ALTER TABLE users ADD COLUMN {column_name} "
cursor.execute(query + column_def)
logger.info("Added column users.%s", column_name)
except sqlite3.OperationalError as e: # noqa: PERF203
# Column already exists, skip
logger.debug(
"Column users.%s already exists: %s",
column_name,
e,
)
conn.commit()
@staticmethod
def migrate_add_stripe_events_table() -> None:
"""Create stripe_events table for webhook idempotency."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute("""
CREATE TABLE IF NOT EXISTS stripe_events (
id TEXT PRIMARY KEY,
type TEXT NOT NULL,
payload TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
""")
cursor.execute(
"CREATE INDEX IF NOT EXISTS idx_stripe_events_created "
"ON stripe_events(created_at)",
)
conn.commit()
logger.info("Created stripe_events table")
@staticmethod
def migrate_add_default_titles() -> None:
"""Add default titles to queue items that have None titles."""
with Database.get_connection() as conn:
cursor = conn.cursor()
# Update queue items with NULL titles to have a default
cursor.execute("""
UPDATE queue
SET title = 'Untitled Article'
WHERE title IS NULL
""")
# Get count of updated rows
updated_count = cursor.rowcount
conn.commit()
logger.info(
"Updated %s queue items with default titles",
updated_count,
)
@staticmethod
def create_user(email: str, status: str = "active") -> tuple[int, str]:
"""Create a new user and return (user_id, token).
Args:
email: User email address
status: Initial status (active or disabled)
Raises:
ValueError: If user ID cannot be retrieved after insert or if user
not found, or if status is invalid.
"""
if status not in {"pending", "active", "disabled"}:
msg = f"Invalid status: {status}"
raise ValueError(msg)
# Generate a secure token for RSS feed access
token = secrets.token_urlsafe(32)
with Database.get_connection() as conn:
cursor = conn.cursor()
try:
cursor.execute(
"INSERT INTO users (email, token, status) VALUES (?, ?, ?)",
(email, token, status),
)
conn.commit()
user_id = cursor.lastrowid
if user_id is None:
msg = "Failed to get user ID after insert"
raise ValueError(msg)
logger.info(
"Created user %s with email %s (status: %s)",
user_id,
email,
status,
)
except sqlite3.IntegrityError:
# User already exists
cursor.execute(
"SELECT id, token FROM users WHERE email = ?",
(email,),
)
row = cursor.fetchone()
if row is None:
msg = f"User with email {email} not found"
raise ValueError(msg) from None
return int(row["id"]), str(row["token"])
else:
return int(user_id), str(token)
@staticmethod
def get_user_by_email(
email: str,
) -> dict[str, Any] | None:
"""Get user by email address."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute("SELECT * FROM users WHERE email = ?", (email,))
row = cursor.fetchone()
return dict(row) if row is not None else None
@staticmethod
def get_user_by_token(
token: str,
) -> dict[str, Any] | None:
"""Get user by RSS token."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute("SELECT * FROM users WHERE token = ?", (token,))
row = cursor.fetchone()
return dict(row) if row is not None else None
@staticmethod
def get_user_by_id(
user_id: int,
) -> dict[str, Any] | None:
"""Get user by ID."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute("SELECT * FROM users WHERE id = ?", (user_id,))
row = cursor.fetchone()
return dict(row) if row is not None else None
@staticmethod
def get_user_queue_status(
user_id: int,
) -> list[dict[str, Any]]:
"""Return pending/processing/error items for a specific user."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"""
SELECT id, url, email, status, created_at, error_message,
title, author
FROM queue
WHERE user_id = ? AND
status IN ('pending', 'processing', 'error')
ORDER BY created_at DESC
LIMIT 20
""",
(user_id,),
)
rows = cursor.fetchall()
return [dict(row) for row in rows]
@staticmethod
def get_user_recent_episodes(
user_id: int,
limit: int = 20,
) -> list[dict[str, Any]]:
"""Get recent episodes for a specific user."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"SELECT * FROM episodes WHERE user_id = ? "
"ORDER BY created_at DESC LIMIT ?",
(user_id, limit),
)
rows = cursor.fetchall()
return [dict(row) for row in rows]
@staticmethod
def get_user_all_episodes(
user_id: int,
) -> list[dict[str, Any]]:
"""Get all episodes for a specific user for RSS feed."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"SELECT * FROM episodes WHERE user_id = ? "
"ORDER BY created_at DESC",
(user_id,),
)
rows = cursor.fetchall()
return [dict(row) for row in rows]
@staticmethod
def update_user_status(
user_id: int,
status: str,
) -> None:
"""Update user account status."""
if status not in {"pending", "active", "disabled"}:
msg = f"Invalid status: {status}"
raise ValueError(msg)
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"UPDATE users SET status = ? WHERE id = ?",
(status, user_id),
)
conn.commit()
logger.info("Updated user %s status to %s", user_id, status)
@staticmethod
def set_user_stripe_customer(user_id: int, customer_id: str) -> None:
"""Link Stripe customer ID to user."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"UPDATE users SET stripe_customer_id = ? WHERE id = ?",
(customer_id, user_id),
)
conn.commit()
logger.info(
"Linked user %s to Stripe customer %s",
user_id,
customer_id,
)
@staticmethod
def update_user_subscription( # noqa: PLR0913, PLR0917
user_id: int,
subscription_id: str,
status: str,
period_start: Any,
period_end: Any,
tier: str,
cancel_at_period_end: bool, # noqa: FBT001
) -> None:
"""Update user subscription details."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"""
UPDATE users SET
stripe_subscription_id = ?,
subscription_status = ?,
current_period_start = ?,
current_period_end = ?,
plan_tier = ?,
cancel_at_period_end = ?
WHERE id = ?
""",
(
subscription_id,
status,
period_start.isoformat(),
period_end.isoformat(),
tier,
1 if cancel_at_period_end else 0,
user_id,
),
)
conn.commit()
logger.info(
"Updated user %s subscription: tier=%s, status=%s",
user_id,
tier,
status,
)
@staticmethod
def update_subscription_status(user_id: int, status: str) -> None:
"""Update only the subscription status (e.g., past_due)."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"UPDATE users SET subscription_status = ? WHERE id = ?",
(status, user_id),
)
conn.commit()
logger.info(
"Updated user %s subscription status to %s",
user_id,
status,
)
@staticmethod
def downgrade_to_free(user_id: int) -> None:
"""Downgrade user to free tier and clear subscription data."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"""
UPDATE users SET
plan_tier = 'free',
subscription_status = 'canceled',
stripe_subscription_id = NULL,
current_period_start = NULL,
current_period_end = NULL,
cancel_at_period_end = 0
WHERE id = ?
""",
(user_id,),
)
conn.commit()
logger.info("Downgraded user %s to free tier", user_id)
@staticmethod
def get_user_by_stripe_customer_id(
customer_id: str,
) -> dict[str, Any] | None:
"""Get user by Stripe customer ID."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"SELECT * FROM users WHERE stripe_customer_id = ?",
(customer_id,),
)
row = cursor.fetchone()
return dict(row) if row is not None else None
@staticmethod
def has_processed_stripe_event(event_id: str) -> bool:
"""Check if Stripe event has already been processed."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"SELECT id FROM stripe_events WHERE id = ?",
(event_id,),
)
return cursor.fetchone() is not None
@staticmethod
def mark_stripe_event_processed(
event_id: str,
event_type: str,
payload: bytes,
) -> None:
"""Mark Stripe event as processed for idempotency."""
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute(
"INSERT OR IGNORE INTO stripe_events (id, type, payload) "
"VALUES (?, ?, ?)",
(event_id, event_type, payload.decode("utf-8")),
)
conn.commit()
@staticmethod
def get_usage(
user_id: int,
period_start: Any,
period_end: Any,
) -> dict[str, int]:
"""Get usage stats for user in period.
Returns:
dict with keys: articles (int), minutes (int)
"""
with Database.get_connection() as conn:
cursor = conn.cursor()
# Count articles created in period
cursor.execute(
"""
SELECT COUNT(*) as count, SUM(duration) as total_seconds
FROM episodes
WHERE user_id = ? AND created_at >= ? AND created_at < ?
""",
(user_id, period_start.isoformat(), period_end.isoformat()),
)
row = cursor.fetchone()
articles = row["count"] if row else 0
total_seconds = (
row["total_seconds"] if row and row["total_seconds"] else 0
)
minutes = total_seconds // 60
return {"articles": articles, "minutes": minutes}
class TestDatabase(Test.TestCase):
"""Test the Database class."""
@staticmethod
def setUp() -> None:
"""Set up test database."""
Database.init_db()
def tearDown(self) -> None:
"""Clean up test database."""
Database.teardown()
# Clear user ID
self.user_id = None
def test_init_db(self) -> None:
"""Verify all tables and indexes are created correctly."""
with Database.get_connection() as conn:
cursor = conn.cursor()
# Check tables exist
cursor.execute("SELECT name FROM sqlite_master WHERE type='table'")
tables = {row[0] for row in cursor.fetchall()}
self.assertIn("queue", tables)
self.assertIn("episodes", tables)
self.assertIn("users", tables)
# Check indexes exist
cursor.execute("SELECT name FROM sqlite_master WHERE type='index'")
indexes = {row[0] for row in cursor.fetchall()}
self.assertIn("idx_queue_status", indexes)
self.assertIn("idx_queue_created", indexes)
self.assertIn("idx_episodes_created", indexes)
self.assertIn("idx_queue_user_id", indexes)
self.assertIn("idx_episodes_user_id", indexes)
def test_connection_context_manager(self) -> None:
"""Ensure connections are properly closed."""
# Get a connection and verify it works
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute("SELECT 1")
result = cursor.fetchone()
self.assertEqual(result[0], 1)
# Connection should be closed after context manager
with pytest.raises(sqlite3.ProgrammingError):
cursor.execute("SELECT 1")
def test_migration_idempotency(self) -> None:
"""Verify migrations can run multiple times safely."""
# Run migration multiple times
Database.migrate_to_multi_user()
Database.migrate_to_multi_user()
Database.migrate_to_multi_user()
# Should still work fine
with Database.get_connection() as conn:
cursor = conn.cursor()
cursor.execute("SELECT * FROM users")
# Should not raise an error
# Test completed successfully - migration worked
self.assertIsNotNone(conn)
class TestUserManagement(Test.TestCase):
"""Test user management functionality."""
@staticmethod
def setUp() -> None:
"""Set up test database."""
Database.init_db()
@staticmethod
def tearDown() -> None:
"""Clean up test database."""
Database.teardown()
def test_create_user(self) -> None:
"""Create user with unique email and token."""
user_id, token = Database.create_user("test@example.com")
self.assertIsInstance(user_id, int)
self.assertIsInstance(token, str)
self.assertGreater(len(token), 20) # Should be a secure token
def test_create_duplicate_user(self) -> None:
"""Verify duplicate emails return existing user."""
# Create first user
user_id1, token1 = Database.create_user(
"test@example.com",
)
# Try to create duplicate
user_id2, token2 = Database.create_user(
"test@example.com",
)
# Should return same user
self.assertIsNotNone(user_id1)
self.assertIsNotNone(user_id2)
self.assertEqual(user_id1, user_id2)
self.assertEqual(token1, token2)
def test_get_user_by_email(self) -> None:
"""Retrieve user by email."""
user_id, token = Database.create_user("test@example.com")
user = Database.get_user_by_email("test@example.com")
self.assertIsNotNone(user)
if user is None:
self.fail("User should not be None")
self.assertEqual(user["id"], user_id)
self.assertEqual(user["email"], "test@example.com")
self.assertEqual(user["token"], token)
def test_get_user_by_token(self) -> None:
"""Retrieve user by RSS token."""
user_id, token = Database.create_user("test@example.com")
user = Database.get_user_by_token(token)
self.assertIsNotNone(user)
if user is None:
self.fail("User should not be None")
self.assertEqual(user["id"], user_id)
self.assertEqual(user["email"], "test@example.com")
def test_get_user_by_id(self) -> None:
"""Retrieve user by ID."""
user_id, token = Database.create_user("test@example.com")
user = Database.get_user_by_id(user_id)
self.assertIsNotNone(user)
if user is None:
self.fail("User should not be None")
self.assertEqual(user["email"], "test@example.com")
self.assertEqual(user["token"], token)
def test_invalid_user_lookups(self) -> None:
"""Verify None returned for non-existent users."""
self.assertIsNone(
Database.get_user_by_email("nobody@example.com"),
)
self.assertIsNone(
Database.get_user_by_token("invalid-token"),
)
self.assertIsNone(Database.get_user_by_id(9999))
def test_token_uniqueness(self) -> None:
"""Ensure tokens are cryptographically unique."""
tokens = set()
for i in range(10):
_, token = Database.create_user(
f"user{i}@example.com",
)
tokens.add(token)
# All tokens should be unique
self.assertEqual(len(tokens), 10)
class TestQueueOperations(Test.TestCase):
"""Test queue operations."""
def setUp(self) -> None:
"""Set up test database with a user."""
Database.init_db()
self.user_id, _ = Database.create_user("test@example.com")
@staticmethod
def tearDown() -> None:
"""Clean up test database."""
Database.teardown()
def test_add_to_queue(self) -> None:
"""Add job with user association."""
job_id = Database.add_to_queue(
"https://example.com/article",
"test@example.com",
self.user_id,
)
self.assertIsInstance(job_id, int)
self.assertGreater(job_id, 0)
def test_get_pending_jobs(self) -> None:
"""Retrieve jobs in correct order."""
# Add multiple jobs
job1 = Database.add_to_queue(
"https://example.com/1",
"test@example.com",
self.user_id,
)
time.sleep(0.01) # Ensure different timestamps
job2 = Database.add_to_queue(
"https://example.com/2",
"test@example.com",
self.user_id,
)
time.sleep(0.01)
job3 = Database.add_to_queue(
"https://example.com/3",
"test@example.com",
self.user_id,
)
# Get pending jobs
jobs = Database.get_pending_jobs(limit=10)
self.assertEqual(len(jobs), 3)
# Should be in order of creation (oldest first)
self.assertEqual(jobs[0]["id"], job1)
self.assertEqual(jobs[1]["id"], job2)
self.assertEqual(jobs[2]["id"], job3)
def test_update_job_status(self) -> None:
"""Update status and error messages."""
job_id = Database.add_to_queue(
"https://example.com",
"test@example.com",
self.user_id,
)
# Update to processing
Database.update_job_status(job_id, "processing")
job = Database.get_job_by_id(job_id)
self.assertIsNotNone(job)
if job is None:
self.fail("Job should not be None")
self.assertEqual(job["status"], "processing")
# Update to error with message
Database.update_job_status(
job_id,
"error",
"Network timeout",
)
job = Database.get_job_by_id(job_id)
self.assertIsNotNone(job)
if job is None:
self.fail("Job should not be None")
self.assertEqual(job["status"], "error")
self.assertEqual(job["error_message"], "Network timeout")
self.assertEqual(job["retry_count"], 1)
def test_retry_job(self) -> None:
"""Reset failed jobs for retry."""
job_id = Database.add_to_queue(
"https://example.com",
"test@example.com",
self.user_id,
)
# Set to error
Database.update_job_status(job_id, "error", "Failed")
# Retry
Database.retry_job(job_id)
job = Database.get_job_by_id(job_id)
self.assertIsNotNone(job)
if job is None:
self.fail("Job should not be None")
self.assertEqual(job["status"], "pending")
self.assertIsNone(job["error_message"])
def test_delete_job(self) -> None:
"""Remove jobs from queue."""
job_id = Database.add_to_queue(
"https://example.com",
"test@example.com",
self.user_id,
)
# Delete job
Database.delete_job(job_id)
# Should not exist
job = Database.get_job_by_id(job_id)
self.assertIsNone(job)
def test_get_retryable_jobs(self) -> None:
"""Find jobs eligible for retry."""
# Add job and mark as error
job_id = Database.add_to_queue(
"https://example.com",
"test@example.com",
self.user_id,
)
Database.update_job_status(job_id, "error", "Failed")
# Should be retryable
retryable = Database.get_retryable_jobs(
max_retries=3,
)
self.assertEqual(len(retryable), 1)
self.assertEqual(retryable[0]["id"], job_id)
# Exceed retry limit
Database.update_job_status(
job_id,
"error",
"Failed again",
)
Database.update_job_status(
job_id,
"error",
"Failed yet again",
)
# Should not be retryable anymore
retryable = Database.get_retryable_jobs(
max_retries=3,
)
self.assertEqual(len(retryable), 0)
def test_user_queue_isolation(self) -> None:
"""Ensure users only see their own jobs."""
# Create second user
user2_id, _ = Database.create_user("user2@example.com")
# Add jobs for both users
job1 = Database.add_to_queue(
"https://example.com/1",
"test@example.com",
self.user_id,
)
job2 = Database.add_to_queue(
"https://example.com/2",
"user2@example.com",
user2_id,
)
# Get user-specific queue status
user1_jobs = Database.get_user_queue_status(self.user_id)
user2_jobs = Database.get_user_queue_status(user2_id)
self.assertEqual(len(user1_jobs), 1)
self.assertEqual(user1_jobs[0]["id"], job1)
self.assertEqual(len(user2_jobs), 1)
self.assertEqual(user2_jobs[0]["id"], job2)
def test_status_counts(self) -> None:
"""Verify status aggregation queries."""
# Add jobs with different statuses
Database.add_to_queue(
"https://example.com/1",
"test@example.com",
self.user_id,
)
job2 = Database.add_to_queue(
"https://example.com/2",
"test@example.com",
self.user_id,
)
job3 = Database.add_to_queue(
"https://example.com/3",
"test@example.com",
self.user_id,
)
Database.update_job_status(job2, "processing")
Database.update_job_status(job3, "error", "Failed")
# Get status counts
counts = Database.get_user_status_counts(self.user_id)
self.assertEqual(counts.get("pending", 0), 1)
self.assertEqual(counts.get("processing", 0), 1)
self.assertEqual(counts.get("error", 0), 1)
class TestEpisodeManagement(Test.TestCase):
"""Test episode management functionality."""
def setUp(self) -> None:
"""Set up test database with a user."""
Database.init_db()
self.user_id, _ = Database.create_user("test@example.com")
@staticmethod
def tearDown() -> None:
"""Clean up test database."""
Database.teardown()
def test_create_episode(self) -> None:
"""Create episode with user association."""
episode_id = Database.create_episode(
title="Test Article",
audio_url="https://example.com/audio.mp3",
duration=300,
content_length=5000,
user_id=self.user_id,
)
self.assertIsInstance(episode_id, int)
self.assertGreater(episode_id, 0)
def test_get_recent_episodes(self) -> None:
"""Retrieve episodes in reverse chronological order."""
# Create multiple episodes
ep1 = Database.create_episode(
"Article 1",
"url1",
100,
1000,
self.user_id,
)
time.sleep(0.01)
ep2 = Database.create_episode(
"Article 2",
"url2",
200,
2000,
self.user_id,
)
time.sleep(0.01)
ep3 = Database.create_episode(
"Article 3",
"url3",
300,
3000,
self.user_id,
)
# Get recent episodes
episodes = Database.get_recent_episodes(limit=10)
self.assertEqual(len(episodes), 3)
# Should be in reverse chronological order
self.assertEqual(episodes[0]["id"], ep3)
self.assertEqual(episodes[1]["id"], ep2)
self.assertEqual(episodes[2]["id"], ep1)
def test_get_user_episodes(self) -> None:
"""Ensure user isolation for episodes."""
# Create second user
user2_id, _ = Database.create_user("user2@example.com")
# Create episodes for both users
ep1 = Database.create_episode(
"User1 Article",
"url1",
100,
1000,
self.user_id,
)
ep2 = Database.create_episode(
"User2 Article",
"url2",
200,
2000,
user2_id,
)
# Get user-specific episodes
user1_episodes = Database.get_user_all_episodes(
self.user_id,
)
user2_episodes = Database.get_user_all_episodes(user2_id)
self.assertEqual(len(user1_episodes), 1)
self.assertEqual(user1_episodes[0]["id"], ep1)
self.assertEqual(len(user2_episodes), 1)
self.assertEqual(user2_episodes[0]["id"], ep2)
def test_episode_metadata(self) -> None:
"""Verify duration and content_length storage."""
Database.create_episode(
title="Test Article",
audio_url="https://example.com/audio.mp3",
duration=12345,
content_length=98765,
user_id=self.user_id,
)
episodes = Database.get_user_all_episodes(self.user_id)
episode = episodes[0]
self.assertEqual(episode["duration"], 12345)
self.assertEqual(episode["content_length"], 98765)
def test() -> None:
"""Run the tests."""
Test.run(
App.Area.Test,
[
TestDatabase,
TestUserManagement,
TestQueueOperations,
TestEpisodeManagement,
],
)
def main() -> None:
"""Run all PodcastItLater.Core tests."""
if "test" in sys.argv:
test()
|