Files
silo-server/internal/recommendations/worker.go
T
8b70357703 feat(ebooks): first-class ebook libraries, scanner, and reader (#124)
* docs: define ebook architecture matching audiobooks

* docs: plan ebook audiobook-parity implementation

* feat: add ebook scanner parser foundation

* fix: harden ebook scanner foundation

* fix: handle ebook isbn labels

* fix: guard ebook subtree scans

* feat: scan ebook libraries in core

* fix: preserve ebook scan people credits

* fix: refresh ebook scan metadata safely

* feat: persist ebook series membership

* test: cover ebook series persistence decisions

* fix: address ebook scanner PR review

* docs: clarify ebook foundation PR scope

* feat: add ebook metadata enricher

* fix: harden ebook poster cache

* feat: wire ebook metadata sync task

* feat: expose ebook library metadata setup

* feat: add ebook catalog scope support

* feat: add ebook detail view

* feat: label ebook file versions by format

* feat: use file-size copy for downloads

* feat: use file language in download dialog

* test: cover ebook detail authors and downloads

* fix: drop narrator credits from ebook scanner merges

* fix: align ebook collection filters with book media

* fix: drop asin provider ids from ebook enrichment

* fix: force ebook people refresh for stale narrators

* chore: omit ebook planning docs from branch

* feat: add ebook detail related content

* feat: add ebook reader file entrypoint

* feat: render ebooks with foliate reader

* feat: persist ebook reader progress

* feat: add ebook reader controls

* feat: extract ebook pdf metadata

* feat: favor scanner isbn during ebook enrichment

* feat: extract fbz ebook metadata

* feat: count cbz ebook pages

* feat: show ebook file page counts

* feat: show ebook download summaries

* feat: switch ebook reader files

* feat: prefer epub for ebook read action

* feat: surface ebook reader progress

* feat: sync ebook reader progress cache

* feat: hide ebook read action for unsupported files

* feat: filter ebook reader file selector

* fix: serve fbz ebook archives with reader mime type

* fix: detect fbz ebooks from compound filename

* fix: authorize fbz ebooks from compound filename

* fix: scope ebook catalog facets

* fix: reject narrator queries for ebooks

* fix: build ebook recommendation text from authors

* fix: include ebooks in embedding eligibility

* fix: include ebooks in recommendation media mix

* fix: include ebooks in recently added recommendations

* feat: include ebook progress in recommendation signals

* feat: include ebooks in continue watching sections

* feat: include ebooks in catalog progress metrics

* fix: read ebook isbn from epub metadata

* fix: filter ebook asin provider aliases

* fix: fall back from unsupported ebook reader files

* fix: sort ebook catalogs by reader progress

* fix: filter ebook catalogs by reader progress

* fix: include ebooks in last watched catalog filters

* feat: reflect ebook reader progress in item user state

* feat: share ebook progress state across item surfaces

* feat: report ebook scan progress

* fix: include ebook activity in recommendations

* fix: expose ebook reader progress on item detail

* fix: support ebook subtree scans

* fix: honor profile header for ebook item progress

* fix: add ebook library default sections

* fix: route ebook continue cards to reader

* fix: hide watched toggle for ebooks

* fix: route ebook watch tonight cards to reader

* fix: route ebook hero actions to reader

* fix: detect archive ebook reader formats by filename

* feat: cache embedded ebook covers during scan

* fix: encode ebook hero reader links

* fix: persist non-epub ebook reader progress

* fix: scope narrator catalog badges to audiobooks

* fix: merge ebook reader progress during item repair

* fix: label ebook progress filters as read

* fix: show ebook related rails as book covers

* fix: remove txt ebook reader support

* fix: reject txt ebook reader files

* fix: label ebook advanced filters as read

* fix: label ebook personalized sorts as read

* fix: remove plain text reader loader path

* test: cover ebook unread catalog rules

* fix: preserve ebook reader library context

* fix: link ebook genres with library scope

* fix: encode related rail item links

* fix: encode catalog card item links

* fix: encode hero and continue item links

* fix: encode watch tonight item links

* fix: encode recommendation and search item links

* test: cover ebook scan format set

* fix: label ebook search results clearly

* fix: make global search prompt media neutral

* fix: encode catalog read API ids

* fix: encode item API ids

* fix: include ebook reader vendor in docker build

* fix: make ebook reader build clean

* fix: clean ebook embedded descriptions

* docs: plan ebook reader shell parity

* feat: add ebook reader shell controls

* fix: widen ebook scrolled reader flow

* fix: remove scrolled reader content width cap

* docs: plan ebook reader full parity

* feat: persist ebook reader config

* feat: add ebook annotations and bookmarks

* feat: add ebook reader tools and aids

* feat: add ebook advanced reader settings

* fix: keep ebook reader panel in viewport

* fix: use foliate sizing units for ebook scroll flow

* fix: keep ebook settings controls readable

* fix: simplify ebook reader settings controls

* feat(ebooks): extract local covers during scan (#98)

* feat(ebooks): extract local covers during scan

* fix(ebooks): read nullable poster paths during cover scan

* fix(catalog): coalesce nullable media artwork fields

* fix(ebooks): group sibling formats by book identity

* fix(ebooks): tolerate legacy ebook metadata encodings

* fix(ebooks): decode PDF hex metadata strings

* fix(ebooks): harden local cover extraction and format grouping

Address review findings on the local cover scan:

- Restrict generic sidecar covers (cover.jpg, folder.png, ...) to
  single-book directories, always accept images named after the book
  file, and apply exactly one cover per reconcile with sidecar taking
  precedence over the embedded cover.
- Replace the read-then-write poster update with an atomic conditional
  UPDATE (ItemRepository.SetLocalPoster) so provider/admin artwork is
  never clobbered by concurrent writers, and refresh locally owned
  posters when the extracted cover bytes change (thumbhash compare).
- Preserve UTF-8 PDF Info strings (including a UTF-8 BOM) instead of
  forcing everything through Windows-1252; the cp1252 fallback now only
  applies to non-UTF-8 bytes.
- Select EPUB covers by manifest media-type with properties="cover-image"
  outranking the EPUB2 meta name="cover" id, so XHTML cover pages no
  longer shadow the real image.
- Order CBZ pages naturally (2.jpg before 10.jpg, ch2/ before ch10/)
  when picking the cover page, via a single O(n) min-scan.
- Bump the ebook content group key scheme to version 2 and reprocess
  rows written under older versions so pre-existing libraries gain
  sibling-format grouping instead of accumulating duplicates.
- Group different formats only (a same-format sibling with colliding
  sparse metadata stays a separate item) and stop a joining sibling's
  embedded metadata from overwriting a provider-matched item.
- Decode any IANA-labelled OPF/FB2 XML charset (windows-1251, koi8-r,
  shift_jis, ...) via x/net/html/charset, and wire the charset reader
  into FB2 parsing which previously had none.
- Strip the full .fb2.zip double extension from filename-derived titles
  and group keys.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

---------

Co-authored-by: rxwatcher <rxwatcher@users.noreply.github.com>
Co-authored-by: Quick <31828688+Quick104@users.noreply.github.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>

* feat(ebooks): add reader profiles and ruler (#99)

* feat(ebooks): extract local covers during scan

* fix(ebooks): read nullable poster paths during cover scan

* fix(catalog): coalesce nullable media artwork fields

* fix(ebooks): group sibling formats by book identity

* fix(ebooks): tolerate legacy ebook metadata encodings

* fix(ebooks): decode PDF hex metadata strings

* feat(ebooks): add reader profiles and ruler

* fix(ebooks): address reader ruler and profile review findings

- skip renderer setStyles/render when computed styles and attributes are
  unchanged, so ruler position updates no longer re-style the book view
- drag the ruler via a local draft that commits on release, with the
  surface rect cached at pointer-down
- migrate font values persisted before the generic stacks (Inter,
  Georgia, Merriweather, legacy serif) so the font select never renders
  blank, with a Custom fallback option for unknown values
- make the ruler band click-through and move dragging to a dedicated
  keyboard-accessible slider handle so links and text selection keep
  working under the band
- share font stacks between options and profiles via READER_FONT_STACKS
- surface the active reading profile, move presets to the top of the
  settings panel, and drop the redundant profile button aria-labels

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(ebooks): resolve prefer-const lint error in readest document lib

`pnpm run lint` failed on the branch because `direction` is never
reassigned in getDirection; split the destructure so only the
reassigned `writingMode` stays mutable.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

---------

Co-authored-by: rxwatcher <rxwatcher@users.noreply.github.com>
Co-authored-by: Quick <31828688+Quick104@users.noreply.github.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>

* Merge branch 'main' into work/ebooks-reader-base

Brings the ebook integration branch up to date with main (audiobook
library redesign, continue-watching rework and card affordances,
quic-go bump, jellycompat fixes). Conflict resolutions favor main's
generalized mechanisms and register ebooks with them:

- media scope validation goes through IsValidMediaScope (now including
  "ebook" alongside main's "video" group scope), in Go and in the web
  filter/search types
- continue-watching uses main's typed rails; reading-type sections pull
  resume points from ebook_reader_progress and the ebook library default
  section is wired to ContinueTypeConfig(ContinueTypeReading)
- item_repo keeps main's derived select-list machinery (itemColumnExpr)
  and both poster accessors (GetPoster/SetLocalPoster for ebook covers,
  GetPosterPath for audiobook covers)
- web cards/hero/watch-tonight adopt main's buildMediaPlayHref helpers,
  which now route ebooks to /reader/ebook and encode content ids;
  ebook affordances (BookOpen icon, Read verb, percent-read subtitle)
  carry over onto main's reworked components
- LibraryForm ebook support ported into main's refactored
  useLibraryForm/libraryTypes modules

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(docker): copy foliate-js vendor into Dockerfile.dev frontend stage

foliate-js is a file:vendor/foliate-js dependency, so pnpm install needs
the vendor directory before the lockfile install layer. The production
Dockerfile already copies it; the dev image was missed, breaking
make dev-deploy with ENOENT on /app/web/vendor/foliate-js.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* feat(ebooks): render Continue Reading sections as upright poster cards

All-ebook continue sections previously fell through to the horizontal
16:9 wide card; include ebooks in the poster-variant check so book
covers render in their natural 2:3 framing.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(ui): stop related-rail highlight ring clipping on detail pages

Move the current-item ring onto the cover artwork with a themed
ring-offset color (matching the sidebar profile highlight) and give
the scroll container top headroom so the ring is not cut off by
overflow-x-auto. Applies to both ebook and audiobook detail rails.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(scanner): harden ebook scanning against data loss and bad metadata

- Reconcile missing ebook files like video/audio, with real per-root walk
  failure tracking (failed/unmounted roots are excluded from deletion),
  symlinked-root support via the shared logical walker, and the empty-root
  cleanup allowance before any destructive reconciliation.
- Create ebook items as 'pending' so enrichment can promote them to
  'matched' (backfill migration included), and protect matched items from
  re-scan clobbering: title/year skipped, people/series fill-empty only.
- PDF metadata: scan head + tail windows (non-linearized PDFs keep the Info
  dict at the end), require proper key delimiters, head values win.
- Cap plain .fb2 reads like .fbz entries; drop .md as an ebook format.
- gofmt internal/scanner/audiobook.go (pre-existing drift).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(ebooks): make enrichment failures non-terminal with dedicated backoff state

- Provider errors now record a failure (capped retries) instead of stamping
  last_refreshed, which permanently excluded items after transient outages.
- Unconfigured metadata chains and the scan-window membership race skip the
  item without stamping or burning a retry.
- Failure tracking moves to a new ebook_enrichment_state table, decoupling
  it from media_items.refresh_failures (shared with metadata refresh debt).
- Preserve non-author people credits when persisting enrichment results.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(catalog): gate ebook progress on hidden history and centralize threshold

- Apply user_history_hidden_items gating (video semantics) to the ebook
  watched/in-progress filters, progress sort plan, and Continue Reading.
- Continue Reading pages past dismissed items via the shared collector and
  dedupes items across pages (also fixes the video path's latent exposure).
- Centralize the 0.9 finished threshold as models.EbookFinishedProgressThreshold
  with a single SQL-interpolated mirror in catalog.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(recommendations): correct watcher counting and wire ebook taste signals

- itemWatchersQuery dedupes to distinct (watcher, item) rows so one
  binge-watcher can no longer satisfy minWatchers; the eligibility floor
  now counts distinct accounts rather than profiles.
- Hidden-history gating on GetEbookReaderProgressForUser (signal reader).
- Ebook reading produces canonical implicit taste signals (weighted like
  the equivalent movie progress ratio); ebooks join taste-seed candidates.
- Stale GetRecentlyAddedItems doc comment corrected.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(api): harden ebook reader endpoints and serve a Content-Security-Policy

- Serve a CSP on all SPA HTML responses: blob/srcdoc book iframes inherit
  it, so script-src 'self' 'wasm-unsafe-eval' blocks script execution from
  malicious book content (sandbox alone is defeated by the WebKit
  allow-scripts requirement). Threat model documented on the constant.
- X-Content-Type-Options: nosniff on frontend, jellycompat, and ebook file
  responses; MIME resolution can no longer fall through to octet-stream
  for an admitted ebook file.
- Annotation PATCH: presence-aware field semantics (absent keeps, present
  sets/clears), invariant re-validation on the merged row, and an atomic
  SELECT ... FOR UPDATE read-merge-write.
- Request size caps (413) on progress/config/annotation writes;
  Content-Disposition via mime.FormatMediaType; hidden-history gating in
  the shared ebook progress lister; FK-cascade indexes for reader tables.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* feat(api): native read-state endpoints for ebooks

- POST/DELETE /watched/{id} accepts ebook content IDs: mark read upserts
  progress 1.0 preserving the reader's file/location (or picks the
  preferred reader file for never-opened books); mark unread mirrors video
  unwatch semantics and deletes the progress row.
- /history/remove accepts ebooks: hides via user_history_hidden_items
  without touching the reading position (hidden != unread; next reading
  activity resurfaces the book, mirroring video re-watch).
- Access-filter checks match the video branch; shared logic lives in
  ebook_read_state.go. Sort metrics/user-state thresholds use the shared
  constant; profile-header fallback deduplicated.

Clients: response is {type: "ebook", affected_count: 1, played: bool};
the existing watched SSE event fires.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(web): harden the ebook reader UI

- Open-flow race: cancellation checked after every await with full stale-run
  teardown (no wrong-file progress saves, no leaked views/blob URLs);
  book.destroy() on cleanup.
- Progress: monotonic stale-response guard; visibilitychange flush uses the
  refresh-capable client, pagehide uses keepalive; per-book cross-format
  progress documented as deliberate.
- Settings: side effects out of the setState updater; local edits no longer
  clobbered by late server config; pending saves flushed on unmount/pagehide.
- TTS: generation token so Stop actually stops (Chromium/Firefox synthetic
  events); Media Session uninstalled on unmount.
- External book links: http(s) only, opened with noopener,noreferrer.
- apiBlob 512 MiB guard with a user-facing error; fraction bookmarks
  navigable; search-result key collisions fixed; dead e-ink code removed;
  getLibrarySortRelevanceScope deduplicated; md format dropped.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* feat(web): mark read/unread affordances for ebooks

- Item detail gets a Mark Read/Unread button; card menus drop the ebook
  gate and share type-aware labels/toasts (also dedupes audiobook wording).
- Watched-state invalidation includes the reader progress query key so the
  Continue button and percent refresh after toggling.
- Continue Reading dismiss copy for ebooks; dismissal path now URL-encodes
  item IDs (ebook content IDs can contain reserved characters).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* docs: record the PR #124 review and hardening pass

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

---------

Co-authored-by: rxwatcher <rxwatcher@users.noreply.github.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2026-06-10 08:18:35 -04:00

556 lines
16 KiB
Go

package recommendations
import (
"context"
"fmt"
"log/slog"
"sync"
"time"
"github.com/robfig/cron/v3"
)
// JobName identifies a recommendation background job.
type JobName string
const (
JobEmbeddings JobName = "embeddings"
JobTasteProfiles JobName = "taste_profiles"
JobCowatch JobName = "cowatch"
JobRecommendations JobName = "recommendations"
)
// Worker runs scheduled recommendation jobs.
type Worker struct {
engine *Engine
cron *cron.Cron
mu sync.Mutex
running map[JobName]bool
profileRefreshCh chan profileRefreshRequest
profileRefreshPending map[string]struct{}
cancelFunc context.CancelFunc
}
const tasteProfileRefreshSubjectsQuery = `
SELECT DISTINCT user_id, profile_id FROM user_ratings
UNION
SELECT DISTINCT user_id, profile_id FROM user_taste_profiles
UNION
SELECT DISTINCT user_id, profile_id FROM user_watch_progress
UNION
SELECT DISTINCT user_id, profile_id FROM ebook_reader_progress
UNION
SELECT DISTINCT user_id, profile_id FROM user_favorites
UNION
SELECT DISTINCT user_id, profile_id FROM user_watchlist`
// NewWorker creates a new recommendation Worker.
func NewWorker(engine *Engine, embeddingsCron, tasteProfilesCron, cowatchCron, recommendationsCron string) (*Worker, error) {
w := &Worker{
engine: engine,
cron: cron.New(),
running: make(map[JobName]bool),
profileRefreshCh: make(chan profileRefreshRequest, 256),
profileRefreshPending: make(map[string]struct{}),
}
if _, err := w.cron.AddFunc(embeddingsCron, w.runEmbeddings); err != nil {
return nil, err
}
if _, err := w.cron.AddFunc(tasteProfilesCron, w.runTasteProfiles); err != nil {
return nil, err
}
if _, err := w.cron.AddFunc(cowatchCron, w.runCowatch); err != nil {
return nil, err
}
if _, err := w.cron.AddFunc(recommendationsCron, w.runRecommendations); err != nil {
return nil, err
}
return w, nil
}
// Start begins the scheduled cron jobs and the staleness refresh goroutine.
func (w *Worker) Start() {
w.cron.Start()
ctx, cancel := context.WithCancel(context.Background())
w.cancelFunc = cancel
go w.profileRefreshLoop(ctx)
go w.stalenessLoop(ctx)
slog.Info("recommendation worker started")
}
// Stop halts the scheduled cron jobs and the staleness refresh goroutine.
func (w *Worker) Stop() {
if w.cancelFunc != nil {
w.cancelFunc()
}
w.cron.Stop()
slog.Info("recommendation worker stopped")
}
// IsRunning reports whether the named job is currently executing.
func (w *Worker) IsRunning(name JobName) bool {
w.mu.Lock()
defer w.mu.Unlock()
return w.running[name]
}
// setRunning marks a job as running or not.
func (w *Worker) setRunning(name JobName, v bool) {
w.mu.Lock()
defer w.mu.Unlock()
w.running[name] = v
}
// tryStart attempts to mark a job as running. Returns false if already running.
func (w *Worker) tryStart(name JobName) bool {
w.mu.Lock()
defer w.mu.Unlock()
if w.running[name] {
return false
}
w.running[name] = true
return true
}
// TriggerEmbeddings starts an embedding job if one is not already running.
func (w *Worker) TriggerEmbeddings() error {
if !w.tryStart(JobEmbeddings) {
return fmt.Errorf("embeddings job is already running")
}
go func() {
defer w.setRunning(JobEmbeddings, false)
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Minute)
defer cancel()
slog.Info("starting embedding job (manual trigger)")
count, err := w.engine.EmbedAll(ctx)
if err != nil {
slog.Error("embedding job failed", "error", err, "embedded", count)
return
}
slog.Info("embedding job completed", "embedded", count)
}()
return nil
}
// TriggerTasteProfiles starts a taste profile refresh if one is not already running.
func (w *Worker) TriggerTasteProfiles() error {
if !w.tryStart(JobTasteProfiles) {
return fmt.Errorf("taste profiles job is already running")
}
go func() {
defer w.setRunning(JobTasteProfiles, false)
w.doTasteProfiles()
}()
return nil
}
// TriggerCowatch starts a co-watch matrix computation if one is not already running.
func (w *Worker) TriggerCowatch() error {
if !w.tryStart(JobCowatch) {
return fmt.Errorf("cowatch job is already running")
}
go func() {
defer w.setRunning(JobCowatch, false)
w.doCowatch()
}()
return nil
}
// TriggerRecommendations starts a recommendation cache refresh if one is not already running.
func (w *Worker) TriggerRecommendations() error {
if !w.tryStart(JobRecommendations) {
return fmt.Errorf("recommendations job is already running")
}
go func() {
defer w.setRunning(JobRecommendations, false)
w.doRecommendations()
}()
return nil
}
type profileRefreshRequest struct {
userID int
profileID string
}
// RequestProfileRefresh queues a profile-scoped recommendation refresh without blocking the caller.
func (w *Worker) RequestProfileRefresh(ctx context.Context, userID int, profileID string) {
if w == nil || w.engine == nil || userID <= 0 || profileID == "" {
return
}
req := profileRefreshRequest{userID: userID, profileID: profileID}
key := profileRefreshKey(userID, profileID)
w.mu.Lock()
if _, exists := w.profileRefreshPending[key]; exists {
w.mu.Unlock()
return
}
w.profileRefreshPending[key] = struct{}{}
ch := w.profileRefreshCh
w.mu.Unlock()
select {
case ch <- req:
case <-ctx.Done():
w.clearProfileRefreshPending(key)
case <-time.After(10 * time.Millisecond):
w.clearProfileRefreshPending(key)
slog.Warn("profile refresh queue full; dropping request", "user_id", userID, "profile_id", profileID)
}
}
// StatusCounts returns counts used by the admin status endpoint.
func (w *Worker) StatusCounts(ctx context.Context) (embedded, totalItems, tasteProfiles, cacheEntries, cowatchPairs int, err error) {
repo := NewRepo(w.engine.pool)
embedded, err = repo.EmbeddingCount(ctx)
if err != nil {
return
}
totalItems, err = repo.TotalMediaItemCount(ctx)
if err != nil {
return
}
tasteProfiles, err = repo.TasteProfileCount(ctx)
if err != nil {
return
}
cacheEntries, err = repo.CacheEntryCount(ctx)
if err != nil {
return
}
cowatchPairs, err = repo.CowatchPairCount(ctx)
return
}
func (w *Worker) runEmbeddings() {
if !w.tryStart(JobEmbeddings) {
slog.Warn("embedding job already running, skipping scheduled run")
return
}
defer w.setRunning(JobEmbeddings, false)
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Minute)
defer cancel()
slog.Info("starting embedding job")
count, err := w.engine.EmbedAll(ctx)
if err != nil {
slog.Error("embedding job failed", "error", err, "embedded", count)
return
}
slog.Info("embedding job completed", "embedded", count)
}
func (w *Worker) runTasteProfiles() {
if !w.tryStart(JobTasteProfiles) {
slog.Warn("taste profile job already running, skipping scheduled run")
return
}
defer w.setRunning(JobTasteProfiles, false)
w.doTasteProfiles()
}
func (w *Worker) runCowatch() {
if !w.tryStart(JobCowatch) {
slog.Warn("cowatch job already running, skipping scheduled run")
return
}
defer w.setRunning(JobCowatch, false)
w.doCowatch()
}
func (w *Worker) runRecommendations() {
if !w.tryStart(JobRecommendations) {
slog.Warn("recommendations job already running, skipping scheduled run")
return
}
defer w.setRunning(JobRecommendations, false)
w.doRecommendations()
}
func (w *Worker) doTasteProfiles() {
ctx, cancel := context.WithTimeout(context.Background(), 20*time.Minute)
defer cancel()
slog.Info("starting taste profile refresh")
rows, err := w.engine.pool.Query(ctx, tasteProfileRefreshSubjectsQuery)
if err != nil {
slog.Error("taste profile query failed", "error", err)
return
}
defer rows.Close()
var refreshed int
for rows.Next() {
var userID int
var profileID string
if err := rows.Scan(&userID, &profileID); err != nil {
continue
}
if err := w.engine.RefreshTasteProfile(ctx, userID, profileID); err != nil {
slog.Error("taste profile refresh failed", "user_id", userID, "profile_id", profileID, "error", err)
continue
}
refreshed++
}
slog.Info("taste profile refresh completed", "refreshed", refreshed)
}
func (w *Worker) doCowatch() {
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Minute)
defer cancel()
slog.Info("starting co-watch matrix computation")
repo := NewRepo(w.engine.pool)
watchers, err := repo.GetItemWatchers(ctx, 5, 500)
if err != nil {
slog.Error("co-watch: failed to get item watchers", "error", err)
return
}
if len(watchers) == 0 {
slog.Info("co-watch: no items with enough watchers, skipping")
return
}
pairs := computeCowatchMatrix(watchers, 5, 3, 50)
if len(pairs) == 0 {
slog.Info("co-watch: no pairs met threshold")
return
}
// Batch insert in chunks of 1000.
const batchSize = 1000
for i := 0; i < len(pairs); i += batchSize {
end := i + batchSize
if end > len(pairs) {
end = len(pairs)
}
if err := repo.UpsertCowatchPairs(ctx, pairs[i:end]); err != nil {
slog.Error("co-watch: failed to upsert pairs", "error", err, "batch_start", i)
return
}
}
slog.Info("co-watch matrix computation completed", "pairs", len(pairs))
}
func (w *Worker) doRecommendations() {
ctx, cancel := context.WithTimeout(context.Background(), 45*time.Minute)
defer cancel()
slog.Info("starting recommendation cache refresh")
repo := NewRepo(w.engine.pool)
cleaned, _ := repo.CleanExpiredCache(ctx)
if cleaned > 0 {
slog.Info("cleaned expired cache entries", "count", cleaned)
}
expires := time.Now().Add(24 * time.Hour).Format(time.RFC3339)
// Generate global (non-personalized) cache rows.
w.cacheGlobalRows(ctx, repo, expires)
// Generate per-user cached rows.
profiles, err := repo.GetAllUsersWithTasteProfiles(ctx)
if err != nil {
slog.Error("recommendation cache query failed", "error", err)
return
}
var cached int
for _, p := range profiles {
// Clean old V1 cache type.
if err := repo.CleanOldCacheTypes(ctx, p.UserID, p.ProfileID); err != nil {
slog.Warn("failed to cache recommendations", "error", err)
}
cached += w.cacheUserRows(ctx, repo, p.UserID, p.ProfileID, expires)
}
slog.Info("recommendation cache refresh completed", "cached_entries", cached)
}
// cacheGlobalRows generates and caches non-personalized rows.
func (w *Worker) cacheGlobalRows(ctx context.Context, repo *Repo, expires string) {
popular, _ := repo.GetPopularItems(ctx, 30, CacheCandidateLimit)
if len(popular) > 0 {
if err := repo.UpsertRecommendationCache(ctx, GlobalCacheUserID, GlobalCacheProfileID, RecTypePopular, "", popular, expires); err != nil {
slog.Warn("failed to cache recommendations", "error", err)
}
}
recentlyAdded, _ := repo.GetRecentlyAddedItems(ctx, 14, CacheCandidateLimit)
if len(recentlyAdded) > 0 {
if err := repo.UpsertRecommendationCache(ctx, GlobalCacheUserID, GlobalCacheProfileID, RecTypeRecentlyAdded, "", recentlyAdded, expires); err != nil {
slog.Warn("failed to cache recommendations", "error", err)
}
}
topRated, _ := repo.GetTopRatedItems(ctx, 5, CacheCandidateLimit)
if len(topRated) > 0 {
if err := repo.UpsertRecommendationCache(ctx, GlobalCacheUserID, GlobalCacheProfileID, RecTypeTopRated, "", topRated, expires); err != nil {
slog.Warn("failed to cache recommendations", "error", err)
}
}
topGenres, _ := repo.GetTopGenres(ctx, 8)
for _, genre := range topGenres {
items, _ := repo.GetGenreSamplerItems(ctx, genre, CacheCandidateLimit)
if len(items) > 0 {
if err := repo.UpsertRecommendationCache(ctx, GlobalCacheUserID, GlobalCacheProfileID, RecTypeGenreSamplerPrefix+genre, "", items, expires); err != nil {
slog.Warn("failed to cache recommendations", "error", err)
}
}
}
}
// cacheUserRows generates and caches personalized rows for a single user.
func (w *Worker) cacheUserRows(ctx context.Context, repo *Repo, userID int, profileID, expires string) int {
var cached int
watchedSet, err := w.engine.watchedItemIDSet(ctx, userID, profileID)
if err != nil {
slog.Warn("failed to load watched items for recommendation cache", "user_id", userID, "profile_id", profileID, "error", err)
watchedSet = nil
}
watchedIDs := scoredItemIDsFromSet(watchedSet)
accessFilter := w.engine.profileAccessFilter(ctx, userID, profileID)
if aggregatedRow, err := w.engine.buildAggregatedRow(ctx, userID, profileID, CacheCandidateLimit, watchedIDs, accessFilter); err == nil && aggregatedRow != nil && len(aggregatedRow.Items) > 0 {
if err := repo.UpsertRecommendationCache(ctx, userID, profileID, RecTypeForYouMain, "", aggregatedRow.Items, expires); err != nil {
slog.Warn("failed to cache recommendations", "error", err)
} else {
cached++
}
}
// Cache per-cluster ForYou rows.
clusterRows, err := w.engine.buildClusterRows(ctx, userID, profileID, CacheCandidateLimit, watchedIDs, accessFilter)
if err != nil {
slog.Warn("failed to build cluster recommendations for cache", "user_id", userID, "profile_id", profileID, "error", err)
}
for _, row := range clusterRows {
if len(row.Items) == 0 {
continue
}
recType := fmt.Sprintf("%s%d", RecTypeForYouClusterPrefix, row.ClusterIndex)
if err := repo.UpsertRecommendationCache(ctx, userID, profileID, recType, "", row.Items, expires); err != nil {
slog.Warn("failed to cache recommendations", "error", err)
}
cached++
}
// Cache similar users liked.
items, err := w.engine.SimilarUsersLiked(ctx, userID, profileID, CacheCandidateLimit)
if err == nil && len(items) > 0 {
if err := repo.UpsertRecommendationCache(ctx, userID, profileID, RecTypeSimilarUsersLiked, "", items, expires); err != nil {
slog.Warn("failed to cache recommendations", "error", err)
} else {
cached++
}
}
recentCompleted, err := w.engine.signalReader().RecentCompletedItemIDs(ctx, userID, profileID, 3)
if err != nil {
slog.Warn("failed to load recent completed items for recommendation cache", "user_id", userID, "profile_id", profileID, "error", err)
return cached
}
for _, sourceItemID := range recentCompleted {
items, err := w.engine.BecauseYouWatched(ctx, userID, profileID, sourceItemID, CacheCandidateLimit)
if err != nil || len(items) == 0 {
continue
}
if err := repo.UpsertRecommendationCache(ctx, userID, profileID, RecTypeBecauseWatched, sourceItemID, items, expires); err != nil {
slog.Warn("failed to cache recommendations", "error", err, "rec_type", RecTypeBecauseWatched, "source_item_id", sourceItemID)
continue
}
cached++
}
return cached
}
// stalenessLoop checks for stale taste profiles every 5 minutes and refreshes them.
func (w *Worker) stalenessLoop(ctx context.Context) {
ticker := time.NewTicker(5 * time.Minute)
defer ticker.Stop()
for {
select {
case <-ctx.Done():
return
case <-ticker.C:
w.refreshStaleProfiles(ctx)
}
}
}
// refreshStaleProfiles finds profiles marked stale and refreshes them.
func (w *Worker) refreshStaleProfiles(ctx context.Context) {
repo := NewRepo(w.engine.pool)
stale, err := repo.GetStaleProfiles(ctx, 50)
if err != nil {
slog.Error("staleness check failed", "error", err)
return
}
if len(stale) == 0 {
return
}
slog.Info("refreshing stale taste profiles", "count", len(stale))
for _, p := range stale {
w.RequestProfileRefresh(ctx, p.UserID, p.ProfileID)
}
}
// RunEmbeddingsNow triggers an immediate embedding run (for first-run setup).
func (w *Worker) RunEmbeddingsNow() {
_ = w.TriggerEmbeddings()
}
func (w *Worker) profileRefreshLoop(ctx context.Context) {
for {
select {
case <-ctx.Done():
return
case req := <-w.profileRefreshCh:
if err := w.refreshProfile(ctx, req.userID, req.profileID); err != nil {
slog.Error("profile recommendation refresh failed", "user_id", req.userID, "profile_id", req.profileID, "error", err)
}
w.clearProfileRefreshPending(profileRefreshKey(req.userID, req.profileID))
}
}
}
func (w *Worker) refreshProfile(ctx context.Context, userID int, profileID string) error {
refreshCtx, cancel := context.WithTimeout(ctx, 2*time.Minute)
defer cancel()
if err := w.engine.RefreshTasteProfile(refreshCtx, userID, profileID); err != nil {
return fmt.Errorf("refresh taste profile: %w", err)
}
repo := NewRepo(w.engine.pool)
expires := time.Now().Add(24 * time.Hour).Format(time.RFC3339)
w.cacheUserRows(refreshCtx, repo, userID, profileID, expires)
if err := repo.ClearStaleAt(refreshCtx, userID, profileID); err != nil {
slog.Warn("failed to clear stale profile marker", "user_id", userID, "profile_id", profileID, "error", err)
}
return nil
}
func (w *Worker) clearProfileRefreshPending(key string) {
w.mu.Lock()
defer w.mu.Unlock()
delete(w.profileRefreshPending, key)
}
func profileRefreshKey(userID int, profileID string) string {
return fmt.Sprintf("%d:%s", userID, profileID)
}