feat(network): Support for marking a Sonarr history item as failed

This commit is contained in:
2024-11-22 16:13:35 -07:00
parent df3cf70682
commit 9476caa392
3 changed files with 52 additions and 2 deletions
+25
View File
@@ -62,6 +62,7 @@ pub enum SonarrEvent {
GetTags,
HealthCheck,
ListSeries,
MarkHistoryItemAsFailed(i64),
}
impl NetworkResource for SonarrEvent {
@@ -89,6 +90,7 @@ impl NetworkResource for SonarrEvent {
SonarrEvent::GetStatus => "/system/status",
SonarrEvent::HealthCheck => "/health",
SonarrEvent::ListSeries | SonarrEvent::GetSeriesDetails(_) => "/series",
SonarrEvent::MarkHistoryItemAsFailed(_) => "/history/failed",
}
}
}
@@ -205,6 +207,10 @@ impl<'a, 'b> Network<'a, 'b> {
.await
.map(SonarrSerdeable::from),
SonarrEvent::ListSeries => self.list_series().await.map(SonarrSerdeable::from),
SonarrEvent::MarkHistoryItemAsFailed(history_item_id) => self
.mark_sonarr_history_item_as_failed(history_item_id)
.await
.map(SonarrSerdeable::from),
}
}
@@ -1150,6 +1156,25 @@ impl<'a, 'b> Network<'a, 'b> {
.await
}
async fn mark_sonarr_history_item_as_failed(&mut self, history_item_id: i64) -> Result<Value> {
info!("Marking the Sonarr history item with ID: {history_item_id} as 'failed'");
let event = SonarrEvent::MarkHistoryItemAsFailed(history_item_id);
let request_props = self
.request_props_from(
event,
RequestMethod::Post,
None,
Some(format!("/{history_item_id}")),
None,
)
.await;
self
.handle_request::<(), Value>(request_props, |_, _| ())
.await
}
async fn extract_series_id(&mut self, series_id: Option<i64>) -> (i64, String) {
let series_id = if let Some(id) = series_id {
id