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 std::error::Error;
use std::fmt;
use crate::error::{ConstraintViolationType, InvalidStateError};
use crate::rest_api::auth::authorization::rbac::store::RoleBasedAuthorizationStoreError;
#[derive(Debug)]
pub(crate) enum SendableRoleBasedAuthorizationStoreError {
ConstraintViolation(String),
InternalError(String),
InvalidState(InvalidStateError),
NotFound(String),
}
impl Error for SendableRoleBasedAuthorizationStoreError {
fn source(&self) -> Option<&(dyn Error + 'static)> {
match self {
SendableRoleBasedAuthorizationStoreError::ConstraintViolation(_) => None,
SendableRoleBasedAuthorizationStoreError::InternalError(_) => None,
SendableRoleBasedAuthorizationStoreError::InvalidState(err) => err.source(),
SendableRoleBasedAuthorizationStoreError::NotFound(_) => None,
}
}
}
impl fmt::Display for SendableRoleBasedAuthorizationStoreError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
SendableRoleBasedAuthorizationStoreError::ConstraintViolation(err) => f.write_str(err),
SendableRoleBasedAuthorizationStoreError::InternalError(err) => f.write_str(err),
SendableRoleBasedAuthorizationStoreError::InvalidState(err) => {
f.write_str(&err.to_string())
}
SendableRoleBasedAuthorizationStoreError::NotFound(msg) => f.write_str(msg),
}
}
}
impl From<RoleBasedAuthorizationStoreError> for SendableRoleBasedAuthorizationStoreError {
fn from(err: RoleBasedAuthorizationStoreError) -> Self {
match err {
RoleBasedAuthorizationStoreError::ConstraintViolation(err)
if err.violation_type() == &ConstraintViolationType::NotFound =>
{
SendableRoleBasedAuthorizationStoreError::NotFound(err.to_string())
}
RoleBasedAuthorizationStoreError::ConstraintViolation(err) => {
SendableRoleBasedAuthorizationStoreError::ConstraintViolation(err.to_string())
}
RoleBasedAuthorizationStoreError::InvalidState(err) => {
SendableRoleBasedAuthorizationStoreError::InvalidState(err)
}
RoleBasedAuthorizationStoreError::InternalError(err) => {
SendableRoleBasedAuthorizationStoreError::InternalError(err.reduce_to_string())
}
}
}
}