9ceac5c639
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
86 lines
2.5 KiB
SQL
86 lines
2.5 KiB
SQL
-- name: CreateLidarrRequest :one
|
|
INSERT INTO lidarr_requests (
|
|
user_id, kind,
|
|
lidarr_artist_mbid, lidarr_album_mbid, lidarr_track_mbid,
|
|
artist_name, album_title, track_title
|
|
) VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
|
|
RETURNING *;
|
|
|
|
-- name: GetLidarrRequestByID :one
|
|
SELECT * FROM lidarr_requests WHERE id = $1;
|
|
|
|
-- name: ListLidarrRequestsForUser :many
|
|
SELECT * FROM lidarr_requests
|
|
WHERE user_id = $1
|
|
ORDER BY requested_at DESC
|
|
LIMIT $2;
|
|
|
|
-- name: ListLidarrRequestsByStatus :many
|
|
SELECT * FROM lidarr_requests
|
|
WHERE status = $1
|
|
ORDER BY requested_at DESC
|
|
LIMIT $2;
|
|
|
|
-- name: ListApprovedLidarrRequestsForReconcile :many
|
|
SELECT * FROM lidarr_requests
|
|
WHERE status = 'approved'
|
|
ORDER BY decided_at ASC
|
|
LIMIT $1;
|
|
|
|
-- name: ApproveLidarrRequest :one
|
|
UPDATE lidarr_requests
|
|
SET status = 'approved',
|
|
quality_profile_id = $2,
|
|
root_folder_path = $3,
|
|
decided_at = now(),
|
|
decided_by = $4,
|
|
updated_at = now()
|
|
WHERE id = $1 AND status = 'pending'
|
|
RETURNING *;
|
|
|
|
-- name: RejectLidarrRequest :one
|
|
UPDATE lidarr_requests
|
|
SET status = 'rejected',
|
|
notes = $2,
|
|
decided_at = now(),
|
|
decided_by = $3,
|
|
updated_at = now()
|
|
WHERE id = $1 AND status = 'pending'
|
|
RETURNING *;
|
|
|
|
-- name: CancelLidarrRequest :one
|
|
UPDATE lidarr_requests
|
|
SET status = 'rejected',
|
|
notes = 'cancelled by user',
|
|
decided_at = now(),
|
|
decided_by = $2,
|
|
updated_at = now()
|
|
WHERE id = $1 AND user_id = $2 AND status = 'pending'
|
|
RETURNING *;
|
|
|
|
-- name: CompleteLidarrRequest :one
|
|
-- Reconciler transitions an approved request to completed when its
|
|
-- target track/album/artist has appeared in the library.
|
|
UPDATE lidarr_requests
|
|
SET status = 'completed',
|
|
matched_track_id = $2,
|
|
matched_album_id = $3,
|
|
matched_artist_id = $4,
|
|
completed_at = now(),
|
|
updated_at = now()
|
|
WHERE id = $1 AND status = 'approved'
|
|
RETURNING *;
|
|
|
|
-- name: HasNonTerminalRequestForMBID :one
|
|
-- Returns true if any user has a pending/approved/completed request
|
|
-- whose MBID matches at the given level. Used to set the `requested`
|
|
-- flag on /api/lidarr/search responses. Terminal-status (rejected,
|
|
-- failed) rows do not count.
|
|
SELECT EXISTS (
|
|
SELECT 1 FROM lidarr_requests
|
|
WHERE status IN ('pending', 'approved', 'completed')
|
|
AND ((kind = 'artist' AND lidarr_artist_mbid = $1)
|
|
OR (kind = 'album' AND lidarr_album_mbid = $1)
|
|
OR (kind = 'track' AND lidarr_track_mbid = $1))
|
|
);
|