summaryrefslogtreecommitdiff
path: root/src/operator-namespace.cc
blob: a3314207d4bf533c4fa4b6bc6cc07a95435ddd50 (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
59
60
61
62
63
64
65
66
67
/**
 *  @file  operator-namespace.cc
 *  @brief  Operator for the NAMESPACE command.
 *  @author Andreas Aardal Hanssen
 *  @date 2002-2005
 */

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

#include <iostream>
#include <string>

using namespace Binc;

NamespaceOperator::NamespaceOperator() {}

NamespaceOperator::~NamespaceOperator() {}

const std::string NamespaceOperator::getName() const
{
  return "NAMESPACE";
}

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

Operator::ProcessResult NamespaceOperator::process(Depot &depot, Request &command)
{
  bincClient << "* NAMESPACE ";

  bincClient << "((";  // personal namespace
  bincClient << toImapString(depot.getPersonalNamespace());
  bincClient << " ";
  char c = depot.getDelimiter();
  bincClient << toImapString(std::string(&c, 1));
  bincClient << "))";

  bincClient << " NIL";  // others' namespaces
  bincClient << " NIL";  // shared namespaces
  bincClient << std::endl;

  return OK;
}

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

  if (c_in.getUidMode()) return REJECT;

  Operator::ParseResult res;
  if ((res = expectCRLF()) != ACCEPT) {
    session.setLastError("Expected CRLF after NAMESPACE");
    return res;
  }

  c_in.setName("NAMESPACE");

  return ACCEPT;
}