komga_sdk/apis/
tasks_api.rs1use reqwest;
13use serde::{Deserialize, Serialize, de::Error as _};
14use crate::{apis::ResponseContent, models};
15use super::{Error, configuration, ContentType};
16
17
18#[derive(Debug, Clone, Serialize, Deserialize)]
20#[serde(untagged)]
21pub enum EmptyTaskQueueError {
22 Status400(models::ValidationErrorResponse),
23 UnknownValue(serde_json::Value),
24}
25
26
27pub async fn empty_task_queue(configuration: &configuration::Configuration, ) -> Result<i32, Error<EmptyTaskQueueError>> {
29
30 let uri_str = format!("{}/api/v1/tasks", configuration.base_path);
31 let mut req_builder = configuration.client.request(reqwest::Method::DELETE, &uri_str);
32
33 if let Some(ref user_agent) = configuration.user_agent {
34 req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
35 }
36 if let Some(ref apikey) = configuration.api_key {
37 let key = apikey.key.clone();
38 let value = match apikey.prefix {
39 Some(ref prefix) => format!("{} {}", prefix, key),
40 None => key,
41 };
42 req_builder = req_builder.header("X-API-Key", value);
43 };
44 if let Some(ref auth_conf) = configuration.basic_auth {
45 req_builder = req_builder.basic_auth(auth_conf.0.to_owned(), auth_conf.1.to_owned());
46 };
47
48 let req = req_builder.build()?;
49 let resp = configuration.client.execute(req).await?;
50
51 let status = resp.status();
52 let content_type = resp
53 .headers()
54 .get("content-type")
55 .and_then(|v| v.to_str().ok())
56 .unwrap_or("application/octet-stream");
57 let content_type = super::ContentType::from(content_type);
58
59 if !status.is_client_error() && !status.is_server_error() {
60 let content = resp.text().await?;
61 match content_type {
62 ContentType::Json => serde_json::from_str(&content).map_err(Error::from),
63 ContentType::Text => return Err(Error::from(serde_json::Error::custom("Received `text/plain` content type response that cannot be converted to `i32`"))),
64 ContentType::Unsupported(unknown_type) => return Err(Error::from(serde_json::Error::custom(format!("Received `{unknown_type}` content type response that cannot be converted to `i32`")))),
65 }
66 } else {
67 let content = resp.text().await?;
68 let entity: Option<EmptyTaskQueueError> = serde_json::from_str(&content).ok();
69 Err(Error::ResponseError(ResponseContent { status, content, entity }))
70 }
71}
72