aboutsummaryrefslogtreecommitdiff
path: root/src/imap/command/selected.rs
blob: fb6a75dc09326d12b914004c6b84462c60f4f7d7 (plain) (blame)
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
use anyhow::{Error, Result};
use boitalettres::proto::Response;
use imap_codec::types::command::CommandBody;
use imap_codec::types::core::Tag;
use imap_codec::types::fetch_attributes::MacroOrFetchAttributes;
use imap_codec::types::response::{Response as ImapRes, Status};
use imap_codec::types::sequence::SequenceSet;

use crate::imap::command::authenticated;
use crate::imap::flow;
use crate::imap::session::InnerContext;
use crate::mailbox::Mailbox;

pub async fn dispatch<'a>(
    inner: InnerContext<'a>,
    user: &'a flow::User,
    mailbox: &'a Mailbox,
) -> Result<(Response, flow::Transition)> {
    let ctx = StateContext {
        tag: &inner.req.tag,
        inner,
        user,
        mailbox,
    };

    match &ctx.inner.req.body {
        CommandBody::Fetch {
            sequence_set,
            attributes,
            uid,
        } => ctx.fetch(sequence_set, attributes, uid).await,
        _ => authenticated::dispatch(ctx.inner, user).await,
    }
}

// --- PRIVATE ---

struct StateContext<'a> {
    inner: InnerContext<'a>,
    user: &'a flow::User,
    mailbox: &'a Mailbox,
    tag: &'a Tag,
}

impl<'a> StateContext<'a> {
    pub async fn fetch(
        &self,
        sequence_set: &SequenceSet,
        attributes: &MacroOrFetchAttributes,
        uid: &bool,
    ) -> Result<(Response, flow::Transition)> {
        Ok((
            vec![ImapRes::Status(
                Status::bad(Some(self.tag.clone()), None, "Not implemented").map_err(Error::msg)?,
            )],
            flow::Transition::No,
        ))
    }
}