Made Api struct public
This commit is contained in:
parent
08cd8c8b54
commit
e9d4dc4e3a
6 changed files with 279 additions and 259 deletions
153
crates/librqbit/src/api_error.rs
Normal file
153
crates/librqbit/src/api_error.rs
Normal file
|
|
@ -0,0 +1,153 @@
|
|||
use axum::response::{IntoResponse, Response};
|
||||
use http::StatusCode;
|
||||
use serde::{Serialize, Serializer};
|
||||
|
||||
// Convenience error type.
|
||||
#[derive(Debug)]
|
||||
pub struct ApiError {
|
||||
status: Option<StatusCode>,
|
||||
kind: ApiErrorKind,
|
||||
plaintext: bool,
|
||||
}
|
||||
|
||||
impl ApiError {
|
||||
pub const fn torrent_not_found(torrent_id: usize) -> Self {
|
||||
Self {
|
||||
status: Some(StatusCode::NOT_FOUND),
|
||||
kind: ApiErrorKind::TorrentNotFound(torrent_id),
|
||||
plaintext: false,
|
||||
}
|
||||
}
|
||||
|
||||
#[allow(dead_code)]
|
||||
pub fn not_implemented(msg: &str) -> Self {
|
||||
Self {
|
||||
status: Some(StatusCode::INTERNAL_SERVER_ERROR),
|
||||
kind: ApiErrorKind::Other(anyhow::anyhow!("{}", msg)),
|
||||
plaintext: false,
|
||||
}
|
||||
}
|
||||
|
||||
pub const fn dht_disabled() -> Self {
|
||||
Self {
|
||||
status: Some(StatusCode::NOT_FOUND),
|
||||
kind: ApiErrorKind::DhtDisabled,
|
||||
plaintext: false,
|
||||
}
|
||||
}
|
||||
|
||||
pub fn status(&self) -> StatusCode {
|
||||
self.status.unwrap_or(StatusCode::INTERNAL_SERVER_ERROR)
|
||||
}
|
||||
|
||||
pub fn with_status(self, status: StatusCode) -> Self {
|
||||
Self {
|
||||
status: Some(status),
|
||||
kind: self.kind,
|
||||
plaintext: self.plaintext,
|
||||
}
|
||||
}
|
||||
|
||||
pub fn with_plaintext_error(self, value: bool) -> Self {
|
||||
Self {
|
||||
status: self.status,
|
||||
kind: self.kind,
|
||||
plaintext: value,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
enum ApiErrorKind {
|
||||
TorrentNotFound(usize),
|
||||
DhtDisabled,
|
||||
Other(anyhow::Error),
|
||||
}
|
||||
|
||||
impl Serialize for ApiError {
|
||||
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
||||
where
|
||||
S: Serializer,
|
||||
{
|
||||
#[derive(Serialize, Default)]
|
||||
struct SerializedError<'a> {
|
||||
error_kind: &'a str,
|
||||
human_readable: String,
|
||||
status: u16,
|
||||
status_text: String,
|
||||
#[serde(skip_serializing_if = "Option::is_none")]
|
||||
id: Option<usize>,
|
||||
}
|
||||
let mut serr: SerializedError = SerializedError {
|
||||
error_kind: match self.kind {
|
||||
ApiErrorKind::TorrentNotFound(_) => "torrent_not_found",
|
||||
ApiErrorKind::DhtDisabled => "dht_disabled",
|
||||
ApiErrorKind::Other(_) => "internal_error",
|
||||
},
|
||||
human_readable: format!("{self}"),
|
||||
status: self.status().as_u16(),
|
||||
status_text: self.status().to_string(),
|
||||
..Default::default()
|
||||
};
|
||||
if let ApiErrorKind::TorrentNotFound(id) = &self.kind {
|
||||
serr.id = Some(*id)
|
||||
}
|
||||
serr.serialize(serializer)
|
||||
}
|
||||
}
|
||||
|
||||
impl From<anyhow::Error> for ApiError {
|
||||
fn from(value: anyhow::Error) -> Self {
|
||||
let status = value.downcast_ref::<ApiError>().and_then(|e| e.status);
|
||||
Self {
|
||||
status,
|
||||
kind: ApiErrorKind::Other(value),
|
||||
plaintext: false,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl std::error::Error for ApiError {
|
||||
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
|
||||
match &self.kind {
|
||||
ApiErrorKind::Other(err) => err.source(),
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl std::fmt::Display for ApiError {
|
||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||
match &self.kind {
|
||||
ApiErrorKind::TorrentNotFound(idx) => write!(f, "torrent {idx} not found"),
|
||||
ApiErrorKind::Other(err) => write!(f, "{err:?}"),
|
||||
ApiErrorKind::DhtDisabled => write!(f, "DHT is disabled"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl IntoResponse for ApiError {
|
||||
fn into_response(self) -> Response {
|
||||
let mut response = axum::Json(&self).into_response();
|
||||
*response.status_mut() = self.status();
|
||||
response
|
||||
}
|
||||
}
|
||||
|
||||
pub trait ApiErrorExt<T> {
|
||||
fn with_error_status_code(self, s: StatusCode) -> Result<T, ApiError>;
|
||||
fn with_plaintext_error(self, value: bool) -> Result<T, ApiError>;
|
||||
}
|
||||
|
||||
impl<T, E> ApiErrorExt<T> for std::result::Result<T, E>
|
||||
where
|
||||
E: Into<ApiError>,
|
||||
{
|
||||
fn with_error_status_code(self, s: StatusCode) -> Result<T, ApiError> {
|
||||
self.map_err(|e| e.into().with_status(s))
|
||||
}
|
||||
|
||||
fn with_plaintext_error(self, value: bool) -> Result<T, ApiError> {
|
||||
self.map_err(|e| e.into().with_plaintext_error(value))
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue