mirror of
https://codeberg.org/Cyborus/forgejo-cli.git
synced 2024-11-10 12:09:33 +01:00
better api error
This commit is contained in:
parent
59a04601b6
commit
ab393f4c66
1 changed files with 11 additions and 0 deletions
|
@ -22,6 +22,8 @@ pub enum ForgejoError {
|
|||
BadStructure,
|
||||
#[error("unexpected status code {} {}", .0.as_u16(), .0.canonical_reason().unwrap_or(""))]
|
||||
UnexpectedStatusCode(StatusCode),
|
||||
#[error("{} {}: {}", .0.as_u16(), .0.canonical_reason().unwrap_or(""), .1)]
|
||||
ApiError(StatusCode, String)
|
||||
}
|
||||
|
||||
impl From<reqwest::Error> for ForgejoError {
|
||||
|
@ -101,6 +103,7 @@ impl Forgejo {
|
|||
let response = self.client.execute(dbg!(request)).await?;
|
||||
match response.status() {
|
||||
status if status.is_success() => Ok(response.json::<T>().await?),
|
||||
status if status.is_client_error() => Err(ForgejoError::ApiError(status, response.json::<ErrorMessage>().await?.message)),
|
||||
status => Err(ForgejoError::UnexpectedStatusCode(status))
|
||||
}
|
||||
}
|
||||
|
@ -111,11 +114,19 @@ impl Forgejo {
|
|||
match response.status() {
|
||||
status if status.is_success() => Ok(Some(response.json::<T>().await?)),
|
||||
StatusCode::NOT_FOUND => Ok(None),
|
||||
status if status.is_client_error() => Err(ForgejoError::ApiError(status, response.json::<ErrorMessage>().await?.message)),
|
||||
status => Err(ForgejoError::UnexpectedStatusCode(status))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(serde::Deserialize)]
|
||||
struct ErrorMessage {
|
||||
message: String,
|
||||
// intentionally ignored, no need for now
|
||||
// url: Url
|
||||
}
|
||||
|
||||
|
||||
#[derive(serde::Deserialize, Debug, PartialEq)]
|
||||
pub struct Repo {
|
||||
|
|
Loading…
Reference in a new issue