summaryrefslogtreecommitdiff
path: root/Biz/PodcastItLater/Core.py
blob: 3a88f227526394a0e5b9a3d802b592a6fab9a5c9 (plain)
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
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
"""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 hashlib
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
import urllib.parse
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", "admin@example.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
    ]


def normalize_url(url: str) -> str:
    """Normalize URL for comparison and hashing.

    Normalizes:
    - Protocol (http/https)
    - Domain case (lowercase)
    - www prefix (removed)
    - Trailing slash (removed)
    - Preserves query params and fragments as they may be meaningful

    Args:
        url: URL to normalize

    Returns:
        Normalized URL string
    """
    parsed = urllib.parse.urlparse(url.strip())

    # Normalize domain to lowercase, remove www prefix
    domain = parsed.netloc.lower()
    domain = domain.removeprefix("www.")

    # Normalize path - remove trailing slash unless it's the root
    path = parsed.path.rstrip("/") if parsed.path != "/" else "/"

    # Rebuild URL with normalized components
    # Use https as the canonical protocol
    return urllib.parse.urlunparse((
        "https",  # Always use https
        domain,
        path,
        parsed.params,
        parsed.query,
        parsed.fragment,
    ))


def hash_url(url: str) -> str:
    """Generate a hash of a URL for deduplication.

    Args:
        url: URL to hash

    Returns:
        SHA256 hash of the normalized URL
    """
    normalized = normalize_url(url)
    return hashlib.sha256(normalized.encode()).hexdigest()


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()

        # Run migration to add public feed features
        Database.migrate_add_public_feed()

    @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 error is not None:
                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 = ?, "
                        "error_message = ? 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,
        original_url_hash: 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, original_url_hash) "
                "VALUES (?, ?, ?, ?, ?, ?, ?, ?)",
                (
                    title,
                    audio_url,
                    duration,
                    content_length,
                    user_id,
                    author,
                    original_url,
                    original_url_hash,
                ),
            )
            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', 'extracting',
                    'synthesizing', 'uploading', 'error'
                )
                ORDER BY created_at DESC
                LIMIT 20
            """)
            rows = cursor.fetchall()
            return [dict(row) for row in rows]

    @staticmethod
    def get_episode_by_id(episode_id: int) -> dict[str, Any] | None:
        """Fetch single episode by ID."""
        with Database.get_connection() as conn:
            cursor = conn.cursor()
            cursor.execute(
                """
                SELECT id, title, audio_url, duration, created_at,
                       content_length, author, original_url, user_id, is_public
                FROM episodes
                WHERE id = ?
            """,
                (episode_id,),
            )
            row = cursor.fetchone()
            return dict(row) if row is not None else None

    @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_public_feed() -> None:
        """Add is_public column and related tables for public feed feature."""
        with Database.get_connection() as conn:
            cursor = conn.cursor()

            # Add is_public column to episodes
            cursor.execute("PRAGMA table_info(episodes)")
            episodes_info = cursor.fetchall()
            episodes_columns = [col[1] for col in episodes_info]

            if "is_public" not in episodes_columns:
                cursor.execute(
                    "ALTER TABLE episodes ADD COLUMN is_public INTEGER "
                    "NOT NULL DEFAULT 0",
                )
                logger.info("Added is_public column to episodes")

            # Create user_episodes junction table
            cursor.execute("""
                CREATE TABLE IF NOT EXISTS user_episodes (
                    user_id INTEGER NOT NULL,
                    episode_id INTEGER NOT NULL,
                    added_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
                    PRIMARY KEY (user_id, episode_id),
                    FOREIGN KEY (user_id) REFERENCES users(id),
                    FOREIGN KEY (episode_id) REFERENCES episodes(id)
                )
            """)
            logger.info("Created user_episodes junction table")

            # Create index on episode_id for reverse lookups
            cursor.execute(
                "CREATE INDEX IF NOT EXISTS idx_user_episodes_episode "
                "ON user_episodes(episode_id)",
            )

            # Add original_url_hash column to episodes
            if "original_url_hash" not in episodes_columns:
                cursor.execute(
                    "ALTER TABLE episodes ADD COLUMN original_url_hash TEXT",
                )
                cursor.execute(
                    "CREATE INDEX IF NOT EXISTS idx_episodes_url_hash "
                    "ON episodes(original_url_hash)",
                )
                logger.info("Added original_url_hash column to episodes")

            # Create episode_metrics table
            cursor.execute("""
                CREATE TABLE IF NOT EXISTS episode_metrics (
                    id INTEGER PRIMARY KEY AUTOINCREMENT,
                    episode_id INTEGER NOT NULL,
                    user_id INTEGER,
                    event_type TEXT NOT NULL,
                    created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
                    FOREIGN KEY (episode_id) REFERENCES episodes(id),
                    FOREIGN KEY (user_id) REFERENCES users(id)
                )
            """)
            logger.info("Created episode_metrics table")

            # Create indexes for metrics queries
            cursor.execute(
                "CREATE INDEX IF NOT EXISTS idx_episode_metrics_episode "
                "ON episode_metrics(episode_id)",
            )
            cursor.execute(
                "CREATE INDEX IF NOT EXISTS idx_episode_metrics_type "
                "ON episode_metrics(event_type)",
            )

            # Create index on is_public for efficient public feed queries
            cursor.execute(
                "CREATE INDEX IF NOT EXISTS idx_episodes_public "
                "ON episodes(is_public)",
            )

            conn.commit()
            logger.info("Database migrated for public feed feature")

    @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_queue_position(job_id: int) -> int | None:
        """Get position of job in pending queue."""
        with Database.get_connection() as conn:
            cursor = conn.cursor()
            # Get created_at of this job
            cursor.execute(
                "SELECT created_at FROM queue WHERE id = ?",
                (job_id,),
            )
            row = cursor.fetchone()
            if not row:
                return None
            created_at = row[0]

            # Count pending items created before or at same time
            cursor.execute(
                """
                SELECT COUNT(*) FROM queue
                WHERE status = 'pending' AND created_at <= ?
                """,
                (created_at,),
            )
            return int(cursor.fetchone()[0])

    @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', 'extracting',
                          'synthesizing', 'uploading', '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 delete_user(user_id: int) -> None:
        """Delete user and all associated data."""
        with Database.get_connection() as conn:
            cursor = conn.cursor()

            # 1. Get owned episode IDs
            cursor.execute(
                "SELECT id FROM episodes WHERE user_id = ?",
                (user_id,),
            )
            owned_episode_ids = [row[0] for row in cursor.fetchall()]

            # 2. Delete references to owned episodes
            if owned_episode_ids:
                # Construct placeholders for IN clause
                placeholders = ",".join("?" * len(owned_episode_ids))

                # Delete from user_episodes where these episodes are referenced
                query = f"DELETE FROM user_episodes WHERE episode_id IN ({placeholders})"  # noqa: S608, E501
                cursor.execute(query, tuple(owned_episode_ids))

                # Delete metrics for these episodes
                query = f"DELETE FROM episode_metrics WHERE episode_id IN ({placeholders})"  # noqa: S608, E501
                cursor.execute(query, tuple(owned_episode_ids))

            # 3. Delete owned episodes
            cursor.execute("DELETE FROM episodes WHERE user_id = ?", (user_id,))

            # 4. Delete user's data referencing others or themselves
            cursor.execute(
                "DELETE FROM user_episodes WHERE user_id = ?",
                (user_id,),
            )
            cursor.execute(
                "DELETE FROM episode_metrics WHERE user_id = ?",
                (user_id,),
            )
            cursor.execute("DELETE FROM queue WHERE user_id = ?", (user_id,))

            # 5. Delete user
            cursor.execute("DELETE FROM users WHERE id = ?", (user_id,))

            conn.commit()
            logger.info("Deleted user %s and all associated data", user_id)

    @staticmethod
    def update_user_email(user_id: int, new_email: str) -> None:
        """Update user's email address.

        Args:
            user_id: ID of the user to update
            new_email: New email address

        Raises:
            ValueError: If email is already taken by another user
        """
        with Database.get_connection() as conn:
            cursor = conn.cursor()
            try:
                cursor.execute(
                    "UPDATE users SET email = ? WHERE id = ?",
                    (new_email, user_id),
                )
                conn.commit()
                logger.info("Updated user %s email to %s", user_id, new_email)
            except sqlite3.IntegrityError:
                msg = f"Email {new_email} is already taken"
                raise ValueError(msg) from None

    @staticmethod
    def mark_episode_public(episode_id: int) -> None:
        """Mark an episode as public."""
        with Database.get_connection() as conn:
            cursor = conn.cursor()
            cursor.execute(
                "UPDATE episodes SET is_public = 1 WHERE id = ?",
                (episode_id,),
            )
            conn.commit()
            logger.info("Marked episode %s as public", episode_id)

    @staticmethod
    def unmark_episode_public(episode_id: int) -> None:
        """Mark an episode as private (not public)."""
        with Database.get_connection() as conn:
            cursor = conn.cursor()
            cursor.execute(
                "UPDATE episodes SET is_public = 0 WHERE id = ?",
                (episode_id,),
            )
            conn.commit()
            logger.info("Unmarked episode %s as public", episode_id)

    @staticmethod
    def get_public_episodes(limit: int = 50) -> list[dict[str, Any]]:
        """Get public episodes for public feed."""
        with Database.get_connection() as conn:
            cursor = conn.cursor()
            cursor.execute(
                """
                SELECT id, title, audio_url, duration, created_at,
                       content_length, author, original_url
                FROM episodes
                WHERE is_public = 1
                ORDER BY created_at DESC
                LIMIT ?
            """,
                (limit,),
            )
            rows = cursor.fetchall()
            return [dict(row) for row in rows]

    @staticmethod
    def add_episode_to_user(user_id: int, episode_id: int) -> None:
        """Add an episode to a user's feed."""
        with Database.get_connection() as conn:
            cursor = conn.cursor()
            try:
                cursor.execute(
                    "INSERT INTO user_episodes (user_id, episode_id) "
                    "VALUES (?, ?)",
                    (user_id, episode_id),
                )
                conn.commit()
                logger.info(
                    "Added episode %s to user %s feed",
                    episode_id,
                    user_id,
                )
            except sqlite3.IntegrityError:
                # Episode already in user's feed
                logger.info(
                    "Episode %s already in user %s feed",
                    episode_id,
                    user_id,
                )

    @staticmethod
    def user_has_episode(user_id: int, episode_id: int) -> bool:
        """Check if a user has an episode in their feed."""
        with Database.get_connection() as conn:
            cursor = conn.cursor()
            cursor.execute(
                "SELECT 1 FROM user_episodes "
                "WHERE user_id = ? AND episode_id = ?",
                (user_id, episode_id),
            )
            return cursor.fetchone() is not None

    @staticmethod
    def track_episode_metric(
        episode_id: int,
        event_type: str,
        user_id: int | None = None,
    ) -> None:
        """Track an episode metric event.

        Args:
            episode_id: ID of the episode
            event_type: Type of event ('added', 'played', 'downloaded')
            user_id: Optional user ID (None for anonymous events)
        """
        with Database.get_connection() as conn:
            cursor = conn.cursor()
            cursor.execute(
                "INSERT INTO episode_metrics (episode_id, user_id, event_type) "
                "VALUES (?, ?, ?)",
                (episode_id, user_id, event_type),
            )
            conn.commit()
            logger.info(
                "Tracked %s event for episode %s (user: %s)",
                event_type,
                episode_id,
                user_id or "anonymous",
            )

    @staticmethod
    def get_user_episodes(user_id: int) -> list[dict[str, Any]]:
        """Get all episodes in a user's feed."""
        with Database.get_connection() as conn:
            cursor = conn.cursor()
            cursor.execute(
                """
                SELECT e.id, e.title, e.audio_url, e.duration, e.created_at,
                       e.content_length, e.author, e.original_url, e.is_public,
                       ue.added_at
                FROM episodes e
                JOIN user_episodes ue ON e.id = ue.episode_id
                WHERE ue.user_id = ?
                ORDER BY ue.added_at DESC
            """,
                (user_id,),
            )
            rows = cursor.fetchall()
            return [dict(row) for row in rows]

    @staticmethod
    def get_episode_by_url_hash(url_hash: str) -> dict[str, Any] | None:
        """Get episode by original URL hash."""
        with Database.get_connection() as conn:
            cursor = conn.cursor()
            cursor.execute(
                "SELECT * FROM episodes WHERE original_url_hash = ?",
                (url_hash,),
            )
            row = cursor.fetchone()
            return dict(row) if row is not None else None

    @staticmethod
    def get_metrics_summary() -> dict[str, Any]:
        """Get aggregate metrics summary for admin dashboard.

        Returns:
            dict with keys:
            - total_episodes: Total number of episodes
            - total_plays: Total play events
            - total_downloads: Total download events
            - total_adds: Total add events
            - most_played: List of top 10 most played episodes
            - most_downloaded: List of top 10 most downloaded episodes
            - most_added: List of top 10 most added episodes
            - total_users: Total number of users
            - active_subscriptions: Number of active subscriptions
            - submissions_24h: Submissions in last 24 hours
            - submissions_7d: Submissions in last 7 days
        """
        with Database.get_connection() as conn:
            cursor = conn.cursor()

            # Get total episodes
            cursor.execute("SELECT COUNT(*) as count FROM episodes")
            total_episodes = cursor.fetchone()["count"]

            # Get event counts
            cursor.execute(
                "SELECT COUNT(*) as count FROM episode_metrics "
                "WHERE event_type = 'played'",
            )
            total_plays = cursor.fetchone()["count"]

            cursor.execute(
                "SELECT COUNT(*) as count FROM episode_metrics "
                "WHERE event_type = 'downloaded'",
            )
            total_downloads = cursor.fetchone()["count"]

            cursor.execute(
                "SELECT COUNT(*) as count FROM episode_metrics "
                "WHERE event_type = 'added'",
            )
            total_adds = cursor.fetchone()["count"]

            # Get most played episodes
            cursor.execute(
                """
                SELECT e.id, e.title, e.author, COUNT(*) as play_count
                FROM episode_metrics em
                JOIN episodes e ON em.episode_id = e.id
                WHERE em.event_type = 'played'
                GROUP BY em.episode_id
                ORDER BY play_count DESC
                LIMIT 10
            """,
            )
            most_played = [dict(row) for row in cursor.fetchall()]

            # Get most downloaded episodes
            cursor.execute(
                """
                SELECT e.id, e.title, e.author, COUNT(*) as download_count
                FROM episode_metrics em
                JOIN episodes e ON em.episode_id = e.id
                WHERE em.event_type = 'downloaded'
                GROUP BY em.episode_id
                ORDER BY download_count DESC
                LIMIT 10
            """,
            )
            most_downloaded = [dict(row) for row in cursor.fetchall()]

            # Get most added episodes
            cursor.execute(
                """
                SELECT e.id, e.title, e.author, COUNT(*) as add_count
                FROM episode_metrics em
                JOIN episodes e ON em.episode_id = e.id
                WHERE em.event_type = 'added'
                GROUP BY em.episode_id
                ORDER BY add_count DESC
                LIMIT 10
            """,
            )
            most_added = [dict(row) for row in cursor.fetchall()]

            # Get user metrics
            cursor.execute("SELECT COUNT(*) as count FROM users")
            total_users = cursor.fetchone()["count"]

            cursor.execute(
                "SELECT COUNT(*) as count FROM users "
                "WHERE subscription_status = 'active'",
            )
            active_subscriptions = cursor.fetchone()["count"]

            # Get recent submission metrics
            cursor.execute(
                "SELECT COUNT(*) as count FROM queue "
                "WHERE created_at >= datetime('now', '-1 day')",
            )
            submissions_24h = cursor.fetchone()["count"]

            cursor.execute(
                "SELECT COUNT(*) as count FROM queue "
                "WHERE created_at >= datetime('now', '-7 days')",
            )
            submissions_7d = cursor.fetchone()["count"]

            return {
                "total_episodes": total_episodes,
                "total_plays": total_plays,
                "total_downloads": total_downloads,
                "total_adds": total_adds,
                "most_played": most_played,
                "most_downloaded": most_downloaded,
                "most_added": most_added,
                "total_users": total_users,
                "active_subscriptions": active_subscriptions,
                "submissions_24h": submissions_24h,
                "submissions_7d": submissions_7d,
            }

    @staticmethod
    def track_episode_event(
        episode_id: int,
        event_type: str,
        user_id: int | None = None,
    ) -> None:
        """Track an episode event (added, played, downloaded)."""
        if event_type not in {"added", "played", "downloaded"}:
            msg = f"Invalid event type: {event_type}"
            raise ValueError(msg)

        with Database.get_connection() as conn:
            cursor = conn.cursor()
            cursor.execute(
                "INSERT INTO episode_metrics "
                "(episode_id, user_id, event_type) VALUES (?, ?, ?)",
                (episode_id, user_id, event_type),
            )
            conn.commit()
            logger.info(
                "Tracked %s event for episode %s",
                event_type,
                episode_id,
            )

    @staticmethod
    def get_episode_metrics(episode_id: int) -> dict[str, int]:
        """Get aggregated metrics for an episode."""
        with Database.get_connection() as conn:
            cursor = conn.cursor()
            cursor.execute(
                """
                SELECT event_type, COUNT(*) as count
                FROM episode_metrics
                WHERE episode_id = ?
                GROUP BY event_type
            """,
                (episode_id,),
            )
            rows = cursor.fetchall()
            return {row["event_type"]: row["count"] for row in rows}

    @staticmethod
    def get_episode_metric_events(episode_id: int) -> list[dict[str, Any]]:
        """Get raw metric events for an episode (for testing)."""
        with Database.get_connection() as conn:
            cursor = conn.cursor()
            cursor.execute(
                """
                SELECT id, episode_id, user_id, event_type, created_at
                FROM episode_metrics
                WHERE episode_id = ?
                ORDER BY created_at DESC
            """,
                (episode_id,),
            )
            rows = cursor.fetchall()
            return [dict(row) for row in rows]

    @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.

        Counts episodes added to user's feed (via user_episodes table)
        during the billing period, regardless of who created them.

        Returns:
            dict with keys: articles (int), minutes (int)
        """
        with Database.get_connection() as conn:
            cursor = conn.cursor()

            # Count articles added to user's feed in period
            # Uses user_episodes junction table to track when episodes
            # were added, which correctly handles shared/existing episodes
            cursor.execute(
                """
                SELECT COUNT(*) as count, SUM(e.duration) as total_seconds
                FROM user_episodes ue
                JOIN episodes e ON e.id = ue.episode_id
                WHERE ue.user_id = ? AND ue.added_at >= ? AND ue.added_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)

    def test_get_metrics_summary_extended(self) -> None:
        """Verify extended metrics summary."""
        # Create some data
        user_id, _ = Database.create_user("test@example.com")
        Database.create_episode(
            "Test Article",
            "url",
            100,
            1000,
            user_id,
        )

        # Create a queue item
        Database.add_to_queue(
            "https://example.com",
            "test@example.com",
            user_id,
        )

        metrics = Database.get_metrics_summary()

        self.assertIn("total_users", metrics)
        self.assertIn("active_subscriptions", metrics)
        self.assertIn("submissions_24h", metrics)
        self.assertIn("submissions_7d", metrics)

        self.assertEqual(metrics["total_users"], 1)
        self.assertEqual(metrics["submissions_24h"], 1)
        self.assertEqual(metrics["submissions_7d"], 1)


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)

    def test_delete_user(self) -> None:
        """Test user deletion and cleanup."""
        # Create user
        user_id, _ = Database.create_user("delete_me@example.com")

        # Create some data for the user
        Database.add_to_queue(
            "https://example.com/article",
            "delete_me@example.com",
            user_id,
        )

        ep_id = Database.create_episode(
            title="Test Episode",
            audio_url="url",
            duration=100,
            content_length=1000,
            user_id=user_id,
        )
        Database.add_episode_to_user(user_id, ep_id)
        Database.track_episode_metric(ep_id, "played", user_id)

        # Delete user
        Database.delete_user(user_id)

        # Verify user is gone
        self.assertIsNone(Database.get_user_by_id(user_id))

        # Verify queue items are gone
        queue = Database.get_user_queue_status(user_id)
        self.assertEqual(len(queue), 0)

        # Verify episodes are gone (direct lookup)
        self.assertIsNone(Database.get_episode_by_id(ep_id))

    def test_update_user_email(self) -> None:
        """Update user email address."""
        user_id, _ = Database.create_user("old@example.com")

        # Update email
        Database.update_user_email(user_id, "new@example.com")

        # Verify update
        user = Database.get_user_by_id(user_id)
        self.assertIsNotNone(user)
        if user:
            self.assertEqual(user["email"], "new@example.com")

        # Old email should not exist
        self.assertIsNone(Database.get_user_by_email("old@example.com"))

    @staticmethod
    def test_update_user_email_duplicate() -> None:
        """Cannot update to an existing email."""
        user_id1, _ = Database.create_user("user1@example.com")
        Database.create_user("user2@example.com")

        # Try to update user1 to user2's email
        with pytest.raises(ValueError, match="already taken"):
            Database.update_user_email(user_id1, "user2@example.com")


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)

    def test_queue_position(self) -> None:
        """Verify queue position calculation."""
        # Add multiple pending jobs
        job1 = Database.add_to_queue(
            "https://example.com/1",
            "test@example.com",
            self.user_id,
        )
        time.sleep(0.01)
        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,
        )

        # Check positions
        self.assertEqual(Database.get_queue_position(job1), 1)
        self.assertEqual(Database.get_queue_position(job2), 2)
        self.assertEqual(Database.get_queue_position(job3), 3)

        # Move job 2 to processing
        Database.update_job_status(job2, "processing")

        # Check positions (job 3 should now be 2nd pending job)
        self.assertEqual(Database.get_queue_position(job1), 1)
        self.assertIsNone(Database.get_queue_position(job2))
        self.assertEqual(Database.get_queue_position(job3), 2)


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()