summaryrefslogtreecommitdiff
path: root/src/operator-id.cc
blob: db5b79b019c270e6f0f2e47813ba90aa11894693 (plain)
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
/**
 *  @file  operator-id.cc
 *  @brief Operator for the ID extension. Described in RFC2971 Oct 2000.
 *  @author Erwin Hoffmann
 *  @date 22.09.2023
 */

#include "depot.h"
#include "globals.h"
#include "iodevice.h"
#include "iofactory.h"
#include "operators.h"
#include "recursivedescent.h"
#include "session.h"

#include <iostream>
#include <string>

using namespace Binc;

IdOperator::IdOperator() {}

IdOperator::~IdOperator() {}

const std::string IdOperator::getName() const
{
  return "ID";
}

int IdOperator::getState() const
{
  return Session::NONAUTHENTICATED | Session::AUTHENTICATED | Session::SELECTED;
}

Operator::ProcessResult IdOperator::process(Depot &depot, Request &command)
{
  bincClient << "* ID (\"name\" \"Binc IMAP\""
             << " \"version\" \"" << BINC_VERSION "\")" << std::endl;

  return OK;
}

Operator::ParseResult IdOperator::parse(Request &c_in) const
{
  Session &session = Session::getInstance();

  if (c_in.getUidMode()) return REJECT;

  Operator::ParseResult res;
  if ((res = expectSPACE()) != ACCEPT && (res = expectCRLF()) != ACCEPT) {
    session.setLastError("Expected SPACE or CRLF");
    return res;
  }

  c_in.setName("ID");

  return ACCEPT;
}