mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 04:32:32 +00:00
39 lines
1.2 KiB
Dart
39 lines
1.2 KiB
Dart
part of sonarr_commands;
|
|
|
|
/// Facilitates, encapsulates, and manages individual calls related to wanted/missing episodes within Sonarr.
|
|
///
|
|
/// [SonarrControllerWanted] internally handles routing the HTTP client to the API calls.
|
|
class SonarrControllerWanted {
|
|
final Dio _client;
|
|
|
|
/// Create a series command handler using an initialized [Dio] client.
|
|
SonarrControllerWanted(this._client);
|
|
|
|
/// Handler for [wanted/missing](https://github.com/Sonarr/Sonarr/wiki/Wanted-Missing#get).
|
|
///
|
|
/// Returns a list of missing episode (episodes without files).
|
|
///
|
|
/// Optional Parameters:
|
|
/// - `sortDir`: Sorting direction of the results
|
|
/// - `sortKey`: The key used for sorting the results
|
|
/// - `page`: Page of results to fetch
|
|
/// - `pageSize`: Size of the page to fetch
|
|
Future<SonarrMissing> getMissing({
|
|
SonarrSortDirection? sortDir,
|
|
SonarrWantedMissingSortKey? sortKey,
|
|
int? page,
|
|
int? pageSize,
|
|
bool? includeSeries,
|
|
bool? includeImages,
|
|
}) async =>
|
|
_commandGetMissing(
|
|
_client,
|
|
sortDir: sortDir,
|
|
sortKey: sortKey,
|
|
page: page,
|
|
pageSize: pageSize,
|
|
includeSeries: includeSeries,
|
|
includeImages: includeImages,
|
|
);
|
|
}
|