feat: monitor retry/enqueue phase
This commit is contained in:
@@ -74,3 +74,68 @@ def discover(conn: psycopg.Connection, browser: MbBrowser, cfg: MonitorConfig) -
|
||||
cur.execute('UPDATE "WatchedArtist" SET "lastPolledAt" = now() WHERE id = %s', (artist_id,))
|
||||
conn.commit()
|
||||
return inserted
|
||||
|
||||
|
||||
def _set_state(conn: psycopg.Connection, rel_id: str, state: str) -> None:
|
||||
with conn.cursor() as cur:
|
||||
cur.execute('UPDATE "MonitoredRelease" SET state = %s WHERE id = %s', (state, rel_id))
|
||||
|
||||
|
||||
def _in_library_at_cutoff(conn: psycopg.Connection, artist: str, album: str, cutoff: int) -> bool:
|
||||
with conn.cursor() as cur:
|
||||
cur.execute(
|
||||
'SELECT 1 FROM "LibraryItem" WHERE artist = %s AND album = %s '
|
||||
'AND "qualityClass" >= %s LIMIT 1',
|
||||
(artist, album, cutoff),
|
||||
)
|
||||
return cur.fetchone() is not None
|
||||
|
||||
|
||||
def _enqueue_one(conn: psycopg.Connection, rel_id: str, artist: str, album: str) -> None:
|
||||
with conn.cursor() as cur:
|
||||
cur.execute(
|
||||
'INSERT INTO "Request" (id, artist, album, status, "monitoredReleaseId", "createdAt") '
|
||||
"VALUES (gen_random_uuid()::text, %s, %s, 'pending', %s, now()) RETURNING id",
|
||||
(artist, album, rel_id),
|
||||
)
|
||||
request_id = cur.fetchone()[0]
|
||||
cur.execute(
|
||||
'INSERT INTO "Job" (id, "requestId", state, "currentStage", attempts, "createdAt", "updatedAt") '
|
||||
"VALUES (gen_random_uuid()::text, %s, 'requested', 'intake', 0, now(), now())",
|
||||
(request_id,),
|
||||
)
|
||||
cur.execute('UPDATE "MonitoredRelease" SET "lastSearchedAt" = now() WHERE id = %s', (rel_id,))
|
||||
|
||||
|
||||
def enqueue_due(conn: psycopg.Connection, cfg: MonitorConfig) -> int:
|
||||
"""Enqueue due wanted/upgrade releases as pipeline jobs. Returns #jobs enqueued."""
|
||||
with conn.cursor() as cur:
|
||||
cur.execute(
|
||||
'SELECT mr.id, mr."artistName", mr.album, mr.state, mr."currentQualityClass", '
|
||||
' (mr."firstGrabbedAt" IS NOT NULL '
|
||||
' AND mr."firstGrabbedAt" < now() - make_interval(days => %s)) AS window_expired '
|
||||
'FROM "MonitoredRelease" mr '
|
||||
'WHERE mr.monitored = true '
|
||||
" AND mr.state <> 'fulfilled' "
|
||||
' AND (mr."lastSearchedAt" IS NULL '
|
||||
' OR mr."lastSearchedAt" < now() - make_interval(hours => %s)) '
|
||||
' AND NOT EXISTS ('
|
||||
' SELECT 1 FROM "Request" r JOIN "Job" j ON j."requestId" = r.id '
|
||||
' WHERE r."monitoredReleaseId" = mr.id '
|
||||
" AND j.state NOT IN ('imported', 'needs_attention'))",
|
||||
(cfg.upgrade_window_days, cfg.retry_interval_hours),
|
||||
)
|
||||
rows = cur.fetchall()
|
||||
|
||||
enqueued = 0
|
||||
for rel_id, artist, album, state, quality, window_expired in rows:
|
||||
if _in_library_at_cutoff(conn, artist, album, cfg.quality_cutoff):
|
||||
_set_state(conn, rel_id, "fulfilled")
|
||||
continue
|
||||
if state == "grabbed" and (window_expired or (quality is not None and quality >= cfg.quality_cutoff)):
|
||||
_set_state(conn, rel_id, "fulfilled")
|
||||
continue
|
||||
_enqueue_one(conn, rel_id, artist, album)
|
||||
enqueued += 1
|
||||
conn.commit()
|
||||
return enqueued
|
||||
|
||||
Reference in New Issue
Block a user