use actix_web::{http::StatusCode, HttpResponse, ResponseError};
use derive_more::{Display, Error};
#[derive(Debug, Clone, Display, Error)]
#[non_exhaustive]
pub enum CorsError {
#[display(fmt = "`allowed_origin` argument must not be wildcard (`*`).")]
WildcardOrigin,
#[display(fmt = "Request header `Origin` is required but was not provided.")]
MissingOrigin,
#[display(
fmt = "Request header `Access-Control-Request-Method` is required but is missing."
)]
MissingRequestMethod,
#[display(
fmt = "Request header `Access-Control-Request-Method` has an invalid value."
)]
BadRequestMethod,
#[display(
fmt = "Request header `Access-Control-Request-Headers` has an invalid value."
)]
BadRequestHeaders,
#[display(fmt = "Origin is not allowed to make this request.")]
OriginNotAllowed,
#[display(fmt = "Requested method is not allowed.")]
MethodNotAllowed,
#[display(fmt = "One or more request headers are not allowed.")]
HeadersNotAllowed,
}
impl ResponseError for CorsError {
fn status_code(&self) -> StatusCode {
StatusCode::BAD_REQUEST
}
fn error_response(&self) -> HttpResponse {
HttpResponse::with_body(StatusCode::BAD_REQUEST, self.to_string().into())
}
}