imap_client/tasks/tasks/
id.rs

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
use imap_next::imap_types::{
    command::CommandBody,
    core::{IString, NString},
    response::{Data, StatusBody, StatusKind},
};

use super::TaskError;
use crate::tasks::Task;

#[derive(Clone, Debug, Default)]
pub struct IdTask {
    client: Option<Vec<(IString<'static>, NString<'static>)>>,
    server: Option<Vec<(IString<'static>, NString<'static>)>>,
}

impl IdTask {
    pub fn new(parameters: Option<Vec<(IString<'static>, NString<'static>)>>) -> Self {
        Self {
            client: parameters,
            server: None,
        }
    }
}

impl Task for IdTask {
    type Output = Result<Option<Vec<(IString<'static>, NString<'static>)>>, TaskError>;

    fn command_body(&self) -> CommandBody<'static> {
        CommandBody::Id {
            parameters: self.client.clone(),
        }
    }

    fn process_data(&mut self, data: Data<'static>) -> Option<Data<'static>> {
        if let Data::Id { parameters } = data {
            self.server = parameters;
            None
        } else {
            Some(data)
        }
    }

    fn process_tagged(self, status_body: StatusBody<'static>) -> Self::Output {
        match status_body.kind {
            StatusKind::Ok => Ok(self.server),
            StatusKind::No => Err(TaskError::UnexpectedNoResponse(status_body)),
            StatusKind::Bad => Err(TaskError::UnexpectedBadResponse(status_body)),
        }
    }
}