87 lines
3.8 KiB
SQL
87 lines
3.8 KiB
SQL
-- request_integrations: one-row-per-kind -> many instances keyed by id.
|
|||
|
|
ALTER TABLE public.request_integrations
|
||
|
|
ADD COLUMN IF NOT EXISTS id text,
|
||
|
|
ADD COLUMN IF NOT EXISTS name text NOT NULL DEFAULT '',
|
||
|
|
ADD COLUMN IF NOT EXISTS is_4k boolean NOT NULL DEFAULT false,
|
||
|
|
ADD COLUMN IF NOT EXISTS is_default boolean NOT NULL DEFAULT false,
|
||
|
|
ADD COLUMN IF NOT EXISTS is_default_4k boolean NOT NULL DEFAULT false,
|
||
|
|
ADD COLUMN IF NOT EXISTS anime_enabled boolean NOT NULL DEFAULT false,
|
||
|
|
ADD COLUMN IF NOT EXISTS anime_quality_profile_id integer,
|
||
|
|
ADD COLUMN IF NOT EXISTS anime_root_folder text NOT NULL DEFAULT '',
|
||
|
|
ADD COLUMN IF NOT EXISTS anime_tags integer[] NOT NULL DEFAULT '{}';
|
||
|
|
|
||
|
|
-- Backfill: the lone existing row per kind becomes that kind's HD default.
|
||
|
|
UPDATE public.request_integrations
|
||
|
|
SET id = gen_random_uuid()::text,
|
||
|
|
name = initcap(kind),
|
||
|
|
is_default = enabled
|
||
|
|
WHERE id IS NULL;
|
||
|
|
|
||
|
|
-- Swap the primary key from kind to id; keep kind as a plain column.
|
||
|
|
ALTER TABLE public.request_integrations
|
||
|
|
DROP CONSTRAINT request_integrations_pkey;
|
||
|
|
ALTER TABLE public.request_integrations
|
||
|
|
ALTER COLUMN id SET NOT NULL,
|
||
|
|
ADD PRIMARY KEY (id);
|
||
|
|
|
||
|
|
-- Quality-role invariants: at most one default / one 4K-default per kind.
|
||
|
|
CREATE UNIQUE INDEX IF NOT EXISTS idx_request_integrations_default_per_kind
|
||
|
|
ON public.request_integrations (kind) WHERE is_default;
|
||
|
|
CREATE UNIQUE INDEX IF NOT EXISTS idx_request_integrations_default4k_per_kind
|
||
|
|
ON public.request_integrations (kind) WHERE is_default_4k;
|
||
|
|
|
||
|
|
-- Targets: one request -> N fulfillment targets.
|
||
|
|
CREATE TABLE IF NOT EXISTS public.media_request_targets (
|
||
|
|
id bigint GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
|
||
|
|
request_id text NOT NULL REFERENCES public.media_requests(id) ON DELETE CASCADE,
|
||
|
|
integration_id text REFERENCES public.request_integrations(id) ON DELETE SET NULL,
|
||
|
|
integration_kind text NOT NULL DEFAULT '',
|
||
|
|
quality text NOT NULL,
|
||
|
|
is_anime boolean NOT NULL DEFAULT false,
|
||
|
|
external_id text NOT NULL DEFAULT '',
|
||
|
|
external_status text NOT NULL DEFAULT '',
|
||
|
|
status text NOT NULL DEFAULT 'queued',
|
||
|
|
last_error text NOT NULL DEFAULT '',
|
||
|
|
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
|
|
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
|
|
CONSTRAINT media_request_targets_quality_check CHECK (quality IN ('1080p', '2160p')),
|
||
|
|
CONSTRAINT media_request_targets_status_check
|
||
|
|
CHECK (status IN ('queued', 'downloading', 'completed', 'failed'))
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE UNIQUE INDEX IF NOT EXISTS idx_media_request_targets_request_quality
|
||
|
|
ON public.media_request_targets (request_id, quality);
|
||
|
|
CREATE INDEX IF NOT EXISTS idx_media_request_targets_request
|
||
|
|
ON public.media_request_targets (request_id);
|
||
|
|
|
||
|
|
-- Backfill targets from already-submitted requests (those with an external id).
|
||
|
|
INSERT INTO public.media_request_targets
|
||
|
|
(request_id, integration_id, integration_kind, quality, is_anime,
|
||
|
|
external_id, external_status, status, created_at, updated_at)
|
||
|
|
SELECT mr.id,
|
||
|
|
ri.id,
|
||
|
|
mr.integration_kind,
|
||
|
|
'1080p',
|
||
|
|
false,
|
||
|
|
mr.external_id,
|
||
|
|
mr.external_status,
|
||
|
|
CASE
|
||
|
|
WHEN mr.status = 'completed' THEN 'completed'
|
||
|
|
WHEN mr.status = 'downloading' THEN 'downloading'
|
||
|
|
WHEN mr.outcome = 'failed' THEN 'failed'
|
||
|
|
ELSE 'queued'
|
||
|
|
END,
|
||
|
|
mr.created_at,
|
||
|
|
mr.updated_at
|
||
|
|
FROM public.media_requests mr
|
||
|
|
LEFT JOIN public.request_integrations ri ON ri.kind = mr.integration_kind
|
||
|
|
WHERE mr.external_id <> '';
|
||
|
|
|
||
|
|
-- media_requests: add is_anime, move per-fulfillment columns out to targets.
|
||
|
|
ALTER TABLE public.media_requests
|
||
|
|
ADD COLUMN IF NOT EXISTS is_anime boolean NOT NULL DEFAULT false;
|
||
|
|
ALTER TABLE public.media_requests
|
||
|
|
DROP COLUMN IF EXISTS integration_kind,
|
||
|
|
DROP COLUMN IF EXISTS external_id,
|
||
|
|
DROP COLUMN IF EXISTS external_status;
|