2022-06-22 12:58:57 +00:00
|
|
|
use std::fmt;
|
|
|
|
use std::error::Error as StdError;
|
2022-06-20 16:09:20 +00:00
|
|
|
|
|
|
|
use crate::login::Credentials;
|
2022-06-17 16:39:36 +00:00
|
|
|
use crate::mailbox::Mailbox;
|
|
|
|
|
|
|
|
pub struct User {
|
|
|
|
pub name: String,
|
|
|
|
pub creds: Credentials,
|
|
|
|
}
|
|
|
|
|
2022-06-22 12:58:57 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum Error {
|
|
|
|
ForbiddenTransition,
|
|
|
|
}
|
|
|
|
impl fmt::Display for Error {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
write!(f, "Forbidden Transition")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl StdError for Error { }
|
|
|
|
|
|
|
|
|
2022-06-17 16:39:36 +00:00
|
|
|
pub enum State {
|
|
|
|
NotAuthenticated,
|
|
|
|
Authenticated(User),
|
|
|
|
Selected(User, Mailbox),
|
|
|
|
Logout
|
|
|
|
}
|
2022-06-22 12:58:57 +00:00
|
|
|
|
|
|
|
pub enum Transition {
|
|
|
|
No,
|
|
|
|
Authenticate(User),
|
|
|
|
Select(Mailbox),
|
|
|
|
Unselect,
|
|
|
|
Logout,
|
2022-06-17 16:39:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// See RFC3501 section 3.
|
|
|
|
// https://datatracker.ietf.org/doc/html/rfc3501#page-13
|
|
|
|
impl State {
|
2022-06-22 12:58:57 +00:00
|
|
|
pub fn apply(self, tr: Transition) -> Result<Self, Error> {
|
|
|
|
match (self, tr) {
|
|
|
|
(s, Transition::No) => Ok(s),
|
|
|
|
(State::NotAuthenticated, Transition::Authenticate(u)) => Ok(State::Authenticated(u)),
|
|
|
|
(State::Authenticated(u), Transition::Select(m)) => Ok(State::Selected(u, m)),
|
|
|
|
(State::Selected(u, _), Transition::Unselect) => Ok(State::Authenticated(u)),
|
|
|
|
(_, Transition::Logout) => Ok(State::Logout),
|
|
|
|
_ => Err(Error::ForbiddenTransition),
|
|
|
|
}
|
2022-06-17 16:39:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|