-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvs.rs
More file actions
69 lines (60 loc) · 1.7 KB
/
envs.rs
File metadata and controls
69 lines (60 loc) · 1.7 KB
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
use std::{env, str::FromStr};
use crate::b64::b64u_decode;
pub fn get_env(name: &'static str) -> Result<String> {
env::var(name).map_err(|source| Error::MissingEnv { name, source })
}
pub fn get_env_parse<T: FromStr>(name: &'static str) -> Result<T>
where
T::Err: core::fmt::Display,
{
let val = get_env(name)?;
val.parse::<T>().map_err(|source| Error::WrongFormat {
name,
reason: source.to_string(),
})
}
pub fn get_env_b64u_as_u8s(name: &'static str) -> Result<Vec<u8>> {
b64u_decode(&get_env(name)?).map_err(|source| Error::WrongFormat {
name,
reason: source.to_string(),
})
}
// region: --- Error
pub type Result<T> = core::result::Result<T, Error>;
#[derive(Debug)]
pub enum Error {
MissingEnv {
name: &'static str,
source: env::VarError,
},
WrongFormat {
name: &'static str,
reason: String,
},
}
// region: --- Error Boilerplate
impl core::fmt::Display for Error {
fn fmt(
&self,
fmt: &mut core::fmt::Formatter,
) -> core::result::Result<(), core::fmt::Error> {
match self {
Error::MissingEnv { name, .. } => {
write!(fmt, "missing required environment variable `{name}`")
}
Error::WrongFormat { name, reason } => {
write!(fmt, "invalid value for `{name}`: {reason}")
}
}
}
}
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Error::MissingEnv { source, .. } => Some(source),
Error::WrongFormat { .. } => None,
}
}
}
// endregion: --- Error Boilerplate
// endregion: --- Error