using DeepDrftModels.DTOs;
using DeepDrftModels.Enums;
using Models.Common;
using NetBlocks.Models;
namespace DeepDrftManager.Services;
///
/// CMS-side track operations for the Manager host. Every read and write goes over HTTP to the
/// DeepDrftAPI API, which is the single authority over both the SQL metadata store and the
/// binary audio vault. DeepDrftManager holds no in-process data layer.
///
public interface ICmsTrackService
{
///
/// Proxy a WAV upload to DeepDrftAPI. The Content API owns the dual-database write and
/// returns the persisted track carrying the SQL-assigned Id. A vault-without-SQL
/// orphan is handled and logged server-side; here it surfaces as a failed result.
/// is the browser's filename, captured at upload time and
/// stored as metadata; it is not user-editable afterwards.
/// sets the parent release's when this upload
/// creates the release. The medium is authoritative only on creation — adding a track to an existing
/// release never changes its medium (that is the edit path, ).
///
Task> UploadTrackAsync(
Stream wavStream,
string fileName,
string contentType,
string trackName,
string artist,
string? album,
string? genre,
string? releaseDate,
string? originalFileName,
long createdByUserId,
ReleaseType releaseType,
int trackNumber,
ReleaseMedium medium = ReleaseMedium.Cut,
CancellationToken ct = default);
///
/// Delete a track via the Content API, which removes the SQL row then the vault entry.
/// Maps a 404 to a "Track not found." failure.
///
Task DeleteTrackAsync(long id, CancellationToken ct = default);
///
/// Soft-delete a release record via DELETE api/track/release/{id}. Use when a release
/// has no live tracks and needs to be removed from the albums browser.
///
Task DeleteReleaseAsync(long releaseId, CancellationToken ct = default);
///
/// Fetch a page of track metadata from the Content API's GET api/track/page. Optional
/// and filters narrow the result to a single
/// release title or genre; null leaves the dimension unfiltered.
///
Task>> GetPagedAsync(
int page, int pageSize, string? sortColumn, bool sortDescending,
string? album = null, string? genre = null,
CancellationToken ct = default);
///
/// Fetch a single track's metadata from GET api/track/meta/{id}. A 404 returns a
/// passing result with a null value.
///
Task> GetByIdAsync(long id, CancellationToken ct = default);
///
/// Upload a cover-art image to the images vault via POST api/image/upload.
/// Returns the generated entry key on success. Maps a 400 to a validation failure message.
///
Task> UploadImageAsync(
Stream imageStream,
string fileName,
string contentType,
CancellationToken ct = default);
///
/// Update a track's metadata via PUT api/track/meta/{id}. EntryKey is immutable and
/// not part of the update. is tri-state: null leaves the
/// cover art unchanged, "" clears it, and any other value sets it.
/// is null = no change; a non-null, non-Cut value resets the release's ReleaseType to its default
/// server-side, since ReleaseType is meaningful only for Cut.
///
Task UpdateAsync(
long id, string trackName, string artist,
string? album, string? genre, DateOnly? releaseDate,
string? imagePath = null,
ReleaseType? releaseType = null,
ReleaseMedium? medium = null,
int? trackNumber = null,
CancellationToken ct = default);
///
/// Fetch per-track waveform profile status from GET api/track/waveform-status for the
/// CMS PreProcessing panel. Unpaged — the admin catalogue is small.
///
Task> GetWaveformStatusAsync(CancellationToken ct = default);
///
/// Trigger waveform profile generation for a single track via
/// POST api/track/{entryKey}/waveform. Maps a 404 to a "Track audio not found." failure.
///
Task GenerateWaveformProfileAsync(string entryKey, CancellationToken ct = default);
/// Returns all releases with track counts from GET api/track/albums.
Task>> GetReleasesAsync(CancellationToken ct = default);
/// Returns all distinct genres with track counts from GET api/track/genres.
Task>> GetGenreSummariesAsync(CancellationToken ct = default);
///
/// Returns the total track count by calling GET api/track/page with pageSize=1 and reading TotalCount.
///
Task> GetTrackCountAsync(CancellationToken ct = default);
}