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
use reqwest::StatusCode;
use std::process;
use std::fmt;

#[derive(Debug)]
pub enum TinifyException {
  KeyException,
  NoFileOrDirectory,
  AccountException,
  ClientException,
  ServerException,
}

impl fmt::Display for TinifyException {
  fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
    match self {
      TinifyException::KeyException => {
        write!(
          fmt,
          "Provide an API key with set_key(key) method",
        )
      },
      TinifyException::NoFileOrDirectory => {
        write!(
          fmt,
          "No such file or directory.",
        )
      },
      TinifyException::AccountException => {
        write!(
          fmt,
          "There was a problem with your API key or with your API account.",
        )
      }
      TinifyException::ClientException => {
        write!(
          fmt,
          "The request could not be completed because of a problem with the submitted data.",
        )
      }
      TinifyException::ServerException => {
        write!(
          fmt,
          "The request could not be completed because of a temporary problem with the Tinify API.",
        )
      }
    }
  }
}

pub fn exit_error(
  type_exception: TinifyException,
  status_code: &StatusCode,
) {
  eprintln!(
    "{} status: {}",
    type_exception,
    &status_code,
  );
  process::exit(1);
}