1//! Error conditions.
23use std::str::Utf8Error;
45/// An error encountered when trying to parse an invalid ID string.
6#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, thiserror::Error)]
7#[non_exhaustive]
8pub enum Error {
9/// The identifier or a required part of it is empty.
10#[error("identifier or required part of it is empty")]
11Empty,
1213/// The identifier contains invalid characters.
14#[error("identifier contains invalid characters")]
15InvalidCharacters,
1617/// The string isn't a valid Matrix ID.
18#[error("invalid matrix ID: {0}")]
19InvalidMatrixId(#[from] MatrixIdError),
2021/// The string isn't a valid Matrix.to URI.
22#[error("invalid matrix.to URI: {0}")]
23InvalidMatrixToUri(#[from] MatrixToError),
2425/// The string isn't a valid Matrix URI.
26#[error("invalid matrix URI: {0}")]
27InvalidMatrixUri(#[from] MatrixUriError),
2829/// The mxc:// isn't a valid Matrix Content URI.
30#[error("invalid Matrix Content URI: {0}")]
31InvalidMxcUri(#[from] MxcUriError),
3233/// The value isn't a valid VoIP version Id.
34#[error("invalid VoIP version ID: {0}")]
35InvalidVoipVersionId(#[from] VoipVersionIdError),
3637/// The server name part of the the ID string is not a valid server name.
38#[error("server name is not a valid IP address or domain name")]
39InvalidServerName,
4041/// The string isn't valid UTF-8.
42#[error("invalid UTF-8")]
43InvalidUtf8,
4445/// The ID exceeds 255 bytes (or 32 codepoints for a room version ID).
46#[error("ID exceeds 255 bytes")]
47MaximumLengthExceeded,
4849/// The ID is missing the colon delimiter between localpart and server name, or between key
50 /// algorithm and key name / version.
51#[error("required colon is missing")]
52MissingColon,
5354/// The ID is missing the correct leading sigil.
55#[error("leading sigil is incorrect or missing")]
56MissingLeadingSigil,
57}
5859impl From<Utf8Error> for Error {
60fn from(_: Utf8Error) -> Self {
61Self::InvalidUtf8
62 }
63}
6465/// An error occurred while validating an MXC URI.
66#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, thiserror::Error)]
67#[non_exhaustive]
68pub enum MxcUriError {
69/// MXC URI did not start with `mxc://`.
70#[error("MXC URI schema was not mxc://")]
71WrongSchema,
7273/// MXC URI did not have first slash, required for `server.name/media_id`.
74#[error("MXC URI does not have first slash")]
75MissingSlash,
7677/// Media identifier malformed due to invalid characters detected.
78 ///
79 /// Valid characters are (in regex notation) `[A-Za-z0-9_-]+`.
80 /// See [here](https://spec.matrix.org/v1.14/client-server-api/#security-considerations-5) for more details.
81#[error("Media Identifier malformed, invalid characters")]
82MediaIdMalformed,
8384/// Server identifier malformed: invalid IP or domain name.
85#[error("invalid Server Name")]
86ServerNameMalformed,
87}
8889/// An error occurred while validating a `MatrixId`.
90#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, thiserror::Error)]
91#[non_exhaustive]
92pub enum MatrixIdError {
93/// The string contains an invalid number of parts.
94#[error("invalid number of parts")]
95InvalidPartsNumber,
9697/// The string is missing a room ID or alias.
98#[error("missing room ID or alias")]
99MissingRoom,
100101/// The string contains no identifier.
102#[error("no identifier")]
103NoIdentifier,
104105/// The string contains too many identifiers.
106#[error("too many identifiers")]
107TooManyIdentifiers,
108109/// The string contains an unknown identifier.
110#[error("unknown identifier")]
111UnknownIdentifier,
112113/// The string contains two identifiers that cannot be paired.
114#[error("unknown identifier pair")]
115UnknownIdentifierPair,
116117/// The string contains an unknown identifier type.
118#[error("unknown identifier type")]
119UnknownType,
120}
121122/// An error occurred while validating a `matrix.to` URI.
123#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, thiserror::Error)]
124#[non_exhaustive]
125pub enum MatrixToError {
126/// String is not a valid URI.
127#[error("given string is not a valid URL")]
128InvalidUrl,
129130/// String did not start with `https://matrix.to/#/`.
131#[error("base URL is not https://matrix.to/#/")]
132WrongBaseUrl,
133134/// String has an unknown additional argument.
135#[error("unknown additional argument")]
136UnknownArgument,
137}
138139/// An error occurred while validating a `MatrixURI`.
140#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, thiserror::Error)]
141#[non_exhaustive]
142pub enum MatrixUriError {
143/// The string does not start with `matrix:`.
144#[error("scheme is not 'matrix:'")]
145WrongScheme,
146147/// The string contains too many actions.
148#[error("too many actions")]
149TooManyActions,
150151/// The string contains an unknown query item.
152#[error("unknown query item")]
153UnknownQueryItem,
154}
155156/// An error occurred while validating a `VoipVersionId`.
157#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, thiserror::Error)]
158#[non_exhaustive]
159pub enum VoipVersionIdError {
160/// The value of the `UInt` is not 0.
161#[error("UInt value is not 0")]
162WrongUintValue,
163}
164165#[cfg(test)]
166mod tests {
167use std::mem::size_of;
168169use super::Error;
170171#[test]
172fn small_error_type() {
173assert!(size_of::<Error>() <= 8);
174 }
175}