Lines
78.95 %
Functions
25 %
Branches
100 %
use std::fmt;
use axum::{
http::StatusCode,
response::{IntoResponse, Response},
};
use serde::{Deserialize, Serialize};
use serde_json;
use sylvia_iot_corelib::http::Json;
#[derive(Debug, Deserialize, Serialize)]
pub struct OAuth2Error {
error: String,
#[serde(skip_serializing_if = "Option::is_none")]
error_description: Option<String>,
}
const INVALID_REQUEST: &'static str = "invalid_request";
impl OAuth2Error {
pub fn new(error: &str, description: Option<String>) -> Self {
OAuth2Error {
error: error.to_string(),
error_description: description,
pub fn new_request(description: Option<String>) -> Self {
error: INVALID_REQUEST.to_string(),
impl fmt::Display for OAuth2Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", serde_json::to_string(self).unwrap())
impl IntoResponse for OAuth2Error {
fn into_response(self) -> Response {
(StatusCode::BAD_REQUEST, Json(self)).into_response()