use std::fmt;
use crate::auth::auth_errors::AuthError;
use super::client_error_model::BoxAPIErrorResponse;
#[derive(Debug, Clone)]
pub struct ResponseContent<T> {
pub status: reqwest::StatusCode,
pub content: String,
pub entity: Option<T>,
}
pub enum BoxAPIError {
Network(reqwest::Error),
Serde(serde_json::Error),
Io(std::io::Error),
ResponseError(BoxAPIErrorResponse),
AuthError(AuthError),
}
impl fmt::Display for BoxAPIErrorResponse {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "APIError {{ object_type: {:?}, status: {:?}, code: {:?}, message: {:?}, context_info: {:?}, help_url: {:?}, request_id: {:?} }}", self.object_type, self.status, self.code, self.message, self.context_info, self.help_url, self.request_id)
}
}
impl fmt::Display for BoxAPIError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let (module, e) = match self {
BoxAPIError::Network(e) => ("reqwest", e.to_string()),
BoxAPIError::Serde(e) => ("serde", e.to_string()),
BoxAPIError::Io(e) => ("IO", e.to_string()),
BoxAPIError::ResponseError(e) => ("Box API Error", e.to_string()),
BoxAPIError::AuthError(e) => ("Box Auth Error", e.to_string()),
};
write!(f, "error in {}: {}", module, e)
}
}
impl fmt::Debug for BoxAPIError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let (module, e) = match self {
BoxAPIError::Network(e) => ("reqwest", e.to_string()),
BoxAPIError::Serde(e) => ("serde", e.to_string()),
BoxAPIError::Io(e) => ("IO", e.to_string()),
BoxAPIError::ResponseError(e) => ("Box API Error", e.to_string()),
BoxAPIError::AuthError(e) => ("Box Auth Error", e.to_string()),
};
write!(f, "error in {}: {}", module, e)
}
}
impl From<reqwest::Error> for BoxAPIError {
fn from(e: reqwest::Error) -> Self {
BoxAPIError::Network(e)
}
}
impl From<serde_json::Error> for BoxAPIError {
fn from(e: serde_json::Error) -> Self {
BoxAPIError::Serde(e)
}
}
impl From<std::io::Error> for BoxAPIError {
fn from(e: std::io::Error) -> Self {
BoxAPIError::Io(e)
}
}
impl From<BoxAPIErrorResponse> for BoxAPIError {
fn from(e: BoxAPIErrorResponse) -> Self {
BoxAPIError::ResponseError(e)
}
}
impl From<AuthError> for BoxAPIError {
fn from(e: AuthError) -> Self {
BoxAPIError::AuthError(e)
}
}