1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use actix_http::ResponseBuilder;
use actix_web::{http::StatusCode, HttpResponse, ResponseError};

use crate::PSError;
use serde::{Deserialize, Serialize};

#[derive(Deserialize, Serialize, PartialEq, Debug)]
pub struct ServerError {
    pub error: Error,
}

#[derive(Deserialize, Serialize, PartialEq, Debug)]
pub struct Error {
    pub message: String,
    pub code: String,
}

impl ResponseError for PSError {
    fn error_response(&self) -> HttpResponse {
        let message = self.to_string();
        let code = self.code().to_string();
        ResponseBuilder::new(self.status_code()).json(ServerError {
            error: Error { message, code },
        })
    }

    fn status_code(&self) -> StatusCode {
        match *self {
            PSError::PokemonNotFound => StatusCode::NOT_FOUND,
            PSError::NoPokemonEnDescription => StatusCode::NOT_FOUND,
            PSError::QuotaError => StatusCode::TOO_MANY_REQUESTS,
            PSError::ShakespeareError => StatusCode::INTERNAL_SERVER_ERROR,
            PSError::PokeApiError => StatusCode::INTERNAL_SERVER_ERROR,
        }
    }
}

impl PSError {
    fn code(&self) -> &str {
        match *self {
            PSError::PokemonNotFound => "POKEMON_NOT_FOUND",
            PSError::NoPokemonEnDescription => "NO_POKEMON_EN_DESCRIPTION",
            PSError::QuotaError => "QUOTA_ERROR",
            PSError::ShakespeareError => "SHAKESPEARE_ERROR",
            PSError::PokeApiError => "POKEAPI_ERROR",
        }
    }
}