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
65
66
67
68
69
70
71
72
73
74
use serde::{Deserialize, Serialize};
use std::io;
use thiserror::Error;
#[derive(Debug, Deserialize, Error, PartialEq, Eq, Serialize)]
pub enum Error {
#[error("Entropy error: {0}")]
EntropyError(String),
#[error("Internal error: {0}")]
InternalError(String),
#[error("Key already exists: {0}")]
KeyAlreadyExists(String),
#[error("Key not set: {0}")]
KeyNotSet(String),
#[error("Permission denied")]
PermissionDenied,
#[error("Serialization error: {0}")]
SerializationError(String),
#[error("Key version not found, key name: {0}, version: {1}")]
KeyVersionNotFound(String, String),
}
impl From<base64::DecodeError> for Error {
fn from(error: base64::DecodeError) -> Self {
Self::SerializationError(format!("{}", error))
}
}
impl From<chrono::format::ParseError> for Error {
fn from(error: chrono::format::ParseError) -> Self {
Self::SerializationError(format!("{}", error))
}
}
impl From<io::Error> for Error {
fn from(error: io::Error) -> Self {
Self::InternalError(format!("{}", error))
}
}
impl From<bcs::Error> for Error {
fn from(error: bcs::Error) -> Self {
Self::SerializationError(format!("{}", error))
}
}
impl From<serde_json::Error> for Error {
fn from(error: serde_json::Error) -> Self {
Self::SerializationError(format!("{}", error))
}
}
impl From<diem_vault_client::Error> for Error {
fn from(error: diem_vault_client::Error) -> Self {
match error {
diem_vault_client::Error::NotFound(_, key) => Self::KeyNotSet(key),
diem_vault_client::Error::HttpError(403, _, _) => Self::PermissionDenied,
_ => Self::InternalError(format!("{}", error)),
}
}
}
impl From<diem_github_client::Error> for Error {
fn from(error: diem_github_client::Error) -> Self {
match error {
diem_github_client::Error::NotFound(key) => Self::KeyNotSet(key),
diem_github_client::Error::HttpError(403, _, _) => Self::PermissionDenied,
_ => Self::InternalError(format!("{}", error)),
}
}
}