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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
use std::str::Utf8Error;
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, thiserror::Error)]
#[non_exhaustive]
pub enum Error {
#[error("client secret is empty")]
EmptyClientSecret,
#[error("room name is empty")]
EmptyRoomName,
#[error("room version ID is empty")]
EmptyRoomVersionId,
#[error("localpart contains invalid characters")]
InvalidCharacters,
#[error("invalid key algorithm specified")]
InvalidKeyAlgorithm,
#[error("key ID version contains invalid characters")]
InvalidKeyVersion,
#[error("invalid matrix ID: {0}")]
InvalidMatrixId(#[from] MatrixIdError),
#[error("invalid matrix.to URI: {0}")]
InvalidMatrixToRef(#[from] MatrixToError),
#[error("invalid Matrix Content URI: {0}")]
InvalidMxcUri(#[from] MxcUriError),
#[error("server name is not a valid IP address or domain name")]
InvalidServerName,
#[error("invalid URI")]
InvalidUri,
#[error("invalid UTF-8")]
InvalidUtf8,
#[error("ID exceeds 255 bytes")]
MaximumLengthExceeded,
#[error("required colon is missing")]
MissingDelimiter,
#[error("leading sigil is incorrect or missing")]
MissingLeadingSigil,
}
impl From<Utf8Error> for Error {
fn from(_: Utf8Error) -> Self {
Self::InvalidUtf8
}
}
impl From<url::ParseError> for Error {
fn from(_: url::ParseError) -> Self {
Self::InvalidUri
}
}
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, thiserror::Error)]
#[non_exhaustive]
pub enum MxcUriError {
#[error("MXC URI schema was not mxc://")]
WrongSchema,
#[error("MXC URI does not have first slash")]
MissingSlash,
#[error("Media Identifier malformed, invalid characters")]
MediaIdMalformed,
#[error("invalid Server Name")]
ServerNameMalformed,
}
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, thiserror::Error)]
#[non_exhaustive]
pub enum MatrixIdError {
#[error("missing room ID or alias")]
MissingRoom,
#[error("no identifier")]
NoIdentifier,
#[error("too many identifiers")]
TooManyIdentifiers,
#[error("unknown identifier")]
UnknownIdentifier,
#[error("unknown identifier pair")]
UnknownIdentifierPair,
}
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, thiserror::Error)]
#[non_exhaustive]
pub enum MatrixToError {
#[error("base URL is not https://matrix.to/#/")]
WrongBaseUrl,
#[error("unknown additional argument")]
UnknownArgument,
}