2023-07-04 21:27:15 +01:00
|
|
|
use std::str::Utf8Error;
|
|
|
|
|
2024-12-04 18:18:37 +00:00
|
|
|
use jid::ParseError;
|
2023-07-04 21:27:15 +01:00
|
|
|
use rsasl::mechname::MechanismNameError;
|
2024-12-04 18:18:37 +00:00
|
|
|
use stanza::client::error::Error as ClientError;
|
|
|
|
use stanza::sasl::Failure;
|
|
|
|
use stanza::stream::Error as StreamError;
|
2024-12-22 18:58:28 +00:00
|
|
|
use tokio::task::JoinError;
|
2023-07-11 21:28:42 +01:00
|
|
|
|
2023-06-19 19:23:54 +01:00
|
|
|
#[derive(Debug)]
|
2024-11-23 22:39:44 +00:00
|
|
|
pub enum Error {
|
2023-07-04 21:27:15 +01:00
|
|
|
Connection,
|
|
|
|
Utf8Decode,
|
2024-11-29 02:11:02 +00:00
|
|
|
Negotiation,
|
|
|
|
TlsRequired,
|
2024-12-03 23:57:04 +00:00
|
|
|
AlreadyTls,
|
|
|
|
Unsupported,
|
2024-12-04 02:09:07 +00:00
|
|
|
NoLocalpart,
|
|
|
|
AlreadyConnecting,
|
2024-12-06 06:31:20 +00:00
|
|
|
StreamClosed,
|
2024-12-02 21:50:15 +00:00
|
|
|
UnexpectedElement(peanuts::Element),
|
2024-11-23 22:39:44 +00:00
|
|
|
XML(peanuts::Error),
|
2024-12-04 02:09:07 +00:00
|
|
|
Deserialization(peanuts::DeserializeError),
|
2023-07-04 21:27:15 +01:00
|
|
|
SASL(SASLError),
|
2023-07-11 21:28:42 +01:00
|
|
|
JID(ParseError),
|
2024-11-29 17:07:16 +00:00
|
|
|
Authentication(Failure),
|
2024-12-02 21:50:15 +00:00
|
|
|
ClientError(ClientError),
|
2024-12-04 17:38:36 +00:00
|
|
|
StreamError(StreamError),
|
2024-12-02 21:50:15 +00:00
|
|
|
MissingError,
|
2024-12-04 17:38:36 +00:00
|
|
|
Disconnected,
|
|
|
|
Connecting,
|
2024-12-22 18:58:28 +00:00
|
|
|
JoinError(JoinError),
|
2023-07-04 21:27:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum SASLError {
|
|
|
|
SASL(rsasl::prelude::SASLError),
|
|
|
|
MechanismName(MechanismNameError),
|
|
|
|
}
|
|
|
|
|
2024-11-23 22:39:44 +00:00
|
|
|
impl From<rsasl::prelude::SASLError> for Error {
|
2023-07-04 21:27:15 +01:00
|
|
|
fn from(e: rsasl::prelude::SASLError) -> Self {
|
|
|
|
Self::SASL(SASLError::SASL(e))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-12-22 18:58:28 +00:00
|
|
|
impl From<JoinError> for Error {
|
|
|
|
fn from(e: JoinError) -> Self {
|
|
|
|
Self::JoinError(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-12-04 02:09:07 +00:00
|
|
|
impl From<peanuts::DeserializeError> for Error {
|
|
|
|
fn from(e: peanuts::DeserializeError) -> Self {
|
|
|
|
Error::Deserialization(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-23 22:39:44 +00:00
|
|
|
impl From<MechanismNameError> for Error {
|
2023-07-12 21:11:20 +01:00
|
|
|
fn from(e: MechanismNameError) -> Self {
|
|
|
|
Self::SASL(SASLError::MechanismName(e))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-23 22:39:44 +00:00
|
|
|
impl From<SASLError> for Error {
|
2023-07-12 21:11:20 +01:00
|
|
|
fn from(e: SASLError) -> Self {
|
|
|
|
Self::SASL(e)
|
2023-07-04 21:27:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-23 22:39:44 +00:00
|
|
|
impl From<Utf8Error> for Error {
|
2023-07-11 21:28:42 +01:00
|
|
|
fn from(_e: Utf8Error) -> Self {
|
2023-07-04 21:27:15 +01:00
|
|
|
Self::Utf8Decode
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-23 22:39:44 +00:00
|
|
|
impl From<peanuts::Error> for Error {
|
|
|
|
fn from(e: peanuts::Error) -> Self {
|
2023-07-04 21:27:15 +01:00
|
|
|
Self::XML(e)
|
|
|
|
}
|
2023-06-19 19:23:54 +01:00
|
|
|
}
|
2023-07-11 21:28:42 +01:00
|
|
|
|
2024-11-23 22:39:44 +00:00
|
|
|
impl From<ParseError> for Error {
|
2023-07-11 21:28:42 +01:00
|
|
|
fn from(e: ParseError) -> Self {
|
|
|
|
Self::JID(e)
|
|
|
|
}
|
|
|
|
}
|