summaryrefslogtreecommitdiff
path: root/src/errors.rs
blob: d9893ba98d93a8cf19893ed328624ac3146efcfc (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
use rocket::http::ContentType;
use rocket::request::Request;
use rocket::response::{self, Responder, Response};
use rspotify::spotify::client::ApiError;
use rspotify::spotify::oauth2::SpotifyOAuth;
use std::io::Cursor;
use std::sync::{MutexGuard, PoisonError};
use tokio_postgres::error::Error as DbError;

#[derive(Debug)]
pub enum Error {
    Postgres(DbError),
    Spotify(ApiError),
    Misc(String),
}
impl From<DbError> for Error {
    fn from(error: DbError) -> Self {
        Error::Postgres(error)
    }
}
impl From<ApiError> for Error {
    fn from(error: ApiError) -> Self {
        Error::Spotify(error)
    }
}
impl From<&str> for Error {
    fn from(error: &str) -> Self {
        Error::Misc(error.to_owned())
    }
}
impl From<String> for Error {
    fn from(error: String) -> Self {
        Error::Misc(error)
    }
}
impl<'a> From<PoisonError<MutexGuard<'a, HashMap<String, SpotifyOAuth>>>> for Error {
    fn from(error: PoisonError<MutexGuard<'a, HashMap<String, SpotifyOAuth>>>) -> Self {
        Error::Misc(format!("failed to lock the client mutex: {:?}", error))
    }
}
impl<'a> From<PoisonError<MutexGuard<'a, postgres::Client>>> for Error {
    fn from(error: PoisonError<MutexGuard<'a, postgres::Client>>) -> Self {
        Error::Misc(format!("failed to lock the client mutex: {:?}", error))
    }
}
impl<'a> From<std::option::NoneError> for Error {
    fn from(error: std::option::NoneError) -> Self {
        Error::Misc(format!("tried to unwrap none at: {:?}", error))
    }
}
impl<'a> Responder<'a> for Error {
    fn respond_to(self, _: &Request) -> response::Result<'a> {
        let response = match self {
            Error::Postgres(e) => format!("DB Error: {:?}", e),
            Error::Spotify(e) => format!("Spotify Error: {:?}", e),
            Error::Misc(e) => format!("Error: {}", e),
        };
        Response::build()
            .header(ContentType::Plain)
            .status(rocket::http::Status::raw(500))
            .sized_body(Cursor::new(response))
            .ok()
    }
}