Memby v0.1.53: Android TV client plus gateway

Android TV client for Emby (Kotlin, Compose for TV) and the Memby gateway
(Go, Postgres, Redis) that fronts it.

Client:
- Setup, profiles, home rows, Media3 playback, system screensaver (Dream)
- Backend chosen at build time: gateway when memby.gatewayUrl is set,
  otherwise direct to Emby. Both paths stay working.
- Server-composed home rows, rendered verbatim so new row types ship
  without an app release
- Full-screen animated maintenance state, row engagement telemetry

Gateway:
- One request per TV screen; auth, caching, search and row shaping
- Library import from Emby into Postgres (manual, then hourly incremental)
- Recommendations from viewing history (recency-weighted genre affinity)
- Admin page for imports, an offline switch, and per-row analytics
- Video always direct-plays from Emby; only metadata passes through

Identity is com.ponzischeme89.memby throughout, replacing
com.mattcohen.embyclientsname. A changed applicationId installs as a new
app: TVs need a fresh sign-in and the old package uninstalled.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
ponzischeme89
2026-07-27 08:16:20 +12:00
co-authored by Claude Opus 5
commit 2ce405c540
99 changed files with 14433 additions and 0 deletions
+101
View File
@@ -0,0 +1,101 @@
package store
import (
"context"
"errors"
"fmt"
"time"
"github.com/jackc/pgx/v5"
)
// SyncRun records one library import.
type SyncRun struct {
ID int64 `json:"id"`
Kind string `json:"kind"`
Trigger string `json:"trigger"`
Status string `json:"status"`
StartedAt time.Time `json:"startedAt"`
FinishedAt *time.Time `json:"finishedAt"`
ItemsSeen int `json:"itemsSeen"`
ItemsUpserted int `json:"itemsUpserted"`
ItemsRemoved int `json:"itemsRemoved"`
Error string `json:"error"`
}
const (
SyncStatusRunning = "running"
SyncStatusSuccess = "success"
SyncStatusFailed = "failed"
)
func (s *Store) StartSyncRun(ctx context.Context, kind, trigger string) (int64, error) {
var id int64
err := s.pool.QueryRow(ctx,
`INSERT INTO sync_runs (kind, trigger, status) VALUES ($1, $2, $3) RETURNING id`,
kind, trigger, SyncStatusRunning).Scan(&id)
if err != nil {
return 0, fmt.Errorf("store: start sync run: %w", err)
}
return id, nil
}
func (s *Store) FinishSyncRun(ctx context.Context, id int64, run SyncRun) error {
_, err := s.pool.Exec(ctx, `
UPDATE sync_runs
SET status = $2, finished_at = now(), items_seen = $3,
items_upserted = $4, items_removed = $5, error = $6
WHERE id = $1`,
id, run.Status, run.ItemsSeen, run.ItemsUpserted, run.ItemsRemoved, run.Error)
if err != nil {
return fmt.Errorf("store: finish sync run: %w", err)
}
return nil
}
func (s *Store) RecentSyncRuns(ctx context.Context, limit int) ([]SyncRun, error) {
rows, err := s.pool.Query(ctx, `
SELECT id, kind, trigger, status, started_at, finished_at,
items_seen, items_upserted, items_removed, error
FROM sync_runs ORDER BY started_at DESC LIMIT $1`, limit)
if err != nil {
return nil, fmt.Errorf("store: recent sync runs: %w", err)
}
defer rows.Close()
runs := []SyncRun{}
for rows.Next() {
var run SyncRun
if err := rows.Scan(&run.ID, &run.Kind, &run.Trigger, &run.Status, &run.StartedAt,
&run.FinishedAt, &run.ItemsSeen, &run.ItemsUpserted, &run.ItemsRemoved, &run.Error); err != nil {
return nil, err
}
runs = append(runs, run)
}
return runs, rows.Err()
}
// LastSuccessfulSyncAt is the watermark an incremental import asks Emby about: "what has
// changed since?" Nil means nothing has ever completed, so a full import is required.
func (s *Store) LastSuccessfulSyncAt(ctx context.Context) (*time.Time, error) {
var at *time.Time
err := s.pool.QueryRow(ctx,
`SELECT max(started_at) FROM sync_runs WHERE status = $1`, SyncStatusSuccess).Scan(&at)
if errors.Is(err, pgx.ErrNoRows) {
return nil, nil
}
if err != nil {
return nil, fmt.Errorf("store: last successful sync: %w", err)
}
return at, nil
}
// MarkStaleRunsFailed cleans up runs left "running" by a crash or a restart mid-import.
func (s *Store) MarkStaleRunsFailed(ctx context.Context) error {
_, err := s.pool.Exec(ctx, `
UPDATE sync_runs
SET status = $1, finished_at = now(),
error = 'interrupted — the gateway restarted while this import was running'
WHERE status = $2`, SyncStatusFailed, SyncStatusRunning)
return err
}