summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/mapi/mapihook/src/msgMapiMain.cpp
blob: 0e8d4cacacfdaa58bb6919ecdba8657786722c3d (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include <mapidefs.h>
#include <mapi.h>

#include "msgCore.h"
#include "nsComposeStrings.h"
#include "msgMapiMain.h"
#include "nsCOMPtr.h"

nsMAPIConfiguration* nsMAPIConfiguration::m_pSelfRef = nullptr;
uint32_t nsMAPIConfiguration::session_generator = 0;
uint32_t nsMAPIConfiguration::sessionCount = 0;

nsMAPIConfiguration* nsMAPIConfiguration::GetMAPIConfiguration() {
  if (m_pSelfRef == nullptr) m_pSelfRef = new nsMAPIConfiguration();

  return m_pSelfRef;
}

nsMAPIConfiguration::nsMAPIConfiguration() : m_nMaxSessions(MAX_SESSIONS) {
  m_Lock = PR_NewLock();
}

nsMAPIConfiguration::~nsMAPIConfiguration() {
  if (m_Lock) PR_DestroyLock(m_Lock);
}

void nsMAPIConfiguration::OpenConfiguration() {
  // No. of max. sessions is set to MAX_SESSIONS.  In future
  // if it is decided to have configuration (registry)
  // parameter, this function can be used to set the
  // max sessions;

  return;
}

int16_t nsMAPIConfiguration::RegisterSession(
    uint32_t aHwnd, const nsCString& aUserName, const nsCString& aPassword,
    bool aForceDownLoad, bool aNewSession, uint32_t* aSession,
    const char* aIdKey) {
  int16_t nResult = 0;
  uint32_t n_SessionId = 0;

  PR_Lock(m_Lock);

  // Check whether max sessions is exceeded

  if (sessionCount >= m_nMaxSessions) {
    PR_Unlock(m_Lock);
    return -1;
  }

  if (!aUserName.IsEmpty()) n_SessionId = m_ProfileMap.Get(aUserName);

  // try to share a session; if not create a session
  if (n_SessionId > 0) {
    nsMAPISession* pTemp = nullptr;
    m_SessionMap.Get(n_SessionId, &pTemp);
    if (pTemp != nullptr) {
      pTemp->IncrementSession();
      *aSession = n_SessionId;
      nResult = 1;
    }
  } else if (aNewSession ||
             n_SessionId == 0)  // checking for n_SessionId is a concession
  {
    // create a new session; if new session is specified OR there is no session
    session_generator++;

    // I don't think there will be (2 power 32) sessions alive
    // in a cycle. This is an assumption.
    if (session_generator == 0) session_generator++;
    m_SessionMap.InsertOrUpdate(
        session_generator,
        mozilla::MakeUnique<nsMAPISession>(aHwnd, aUserName, aPassword,
                                           aForceDownLoad, aIdKey));
    if (!aUserName.IsEmpty())
      m_ProfileMap.InsertOrUpdate(aUserName, session_generator);
    *aSession = session_generator;
    sessionCount++;
    nResult = 1;
  }

  PR_Unlock(m_Lock);
  return nResult;
}

bool nsMAPIConfiguration::UnRegisterSession(uint32_t aSessionID) {
  bool bResult = false;

  PR_Lock(m_Lock);

  if (aSessionID != 0) {
    nsMAPISession* pTemp = nullptr;
    m_SessionMap.Get(aSessionID, &pTemp);

    if (pTemp != nullptr) {
      if (pTemp->DecrementSession() == 0) {
        if (pTemp->m_pProfileName.get() != nullptr)
          m_ProfileMap.Remove(pTemp->m_pProfileName);
        m_SessionMap.Remove(aSessionID);
        sessionCount--;
        bResult = true;
      }
    }
  }

  PR_Unlock(m_Lock);
  return bResult;
}

bool nsMAPIConfiguration::IsSessionValid(uint32_t aSessionID) {
  if (aSessionID == 0) return false;
  bool retValue = false;
  PR_Lock(m_Lock);
  retValue = m_SessionMap.Get(aSessionID, NULL);
  PR_Unlock(m_Lock);
  return retValue;
}

char16_t* nsMAPIConfiguration::GetPassword(uint32_t aSessionID) {
  char16_t* pResult = nullptr;

  PR_Lock(m_Lock);

  if (aSessionID != 0) {
    nsMAPISession* pTemp = nullptr;
    m_SessionMap.Get(aSessionID, &pTemp);

    if (pTemp) pResult = pTemp->GetPassword();
  }
  PR_Unlock(m_Lock);
  return pResult;
}

void* nsMAPIConfiguration::GetMapiListContext(uint32_t aSessionID) {
  void* pResult = nullptr;

  PR_Lock(m_Lock);

  if (aSessionID != 0) {
    nsMAPISession* pTemp = nullptr;
    m_SessionMap.Get(aSessionID, &pTemp);
    if (pTemp) pResult = pTemp->GetMapiListContext();
  }

  PR_Unlock(m_Lock);
  return pResult;
}

void nsMAPIConfiguration::SetMapiListContext(uint32_t aSessionID,
                                             void* mapiListContext) {
  PR_Lock(m_Lock);

  if (aSessionID != 0) {
    nsMAPISession* pTemp = nullptr;
    m_SessionMap.Get(aSessionID, &pTemp);
    if (pTemp) pTemp->SetMapiListContext(mapiListContext);
  }

  PR_Unlock(m_Lock);
}

void nsMAPIConfiguration::GetIdKey(uint32_t aSessionID, nsCString& aKey) {
  PR_Lock(m_Lock);
  if (aSessionID != 0) {
    nsMAPISession* pTemp = nullptr;
    m_SessionMap.Get(aSessionID, &pTemp);
    if (pTemp) pTemp->GetIdKey(aKey);
  }
  PR_Unlock(m_Lock);
  return;
}

// util func
HRESULT nsMAPIConfiguration::GetMAPIErrorFromNSError(nsresult res) {
  HRESULT hr = SUCCESS_SUCCESS;

  if (NS_SUCCEEDED(res)) return hr;

  // if failure return the related MAPI failure code
  switch (res) {
    case NS_MSG_NO_RECIPIENTS:
      hr = MAPI_E_BAD_RECIPTYPE;
      break;
    case NS_ERROR_COULD_NOT_GET_USERS_MAIL_ADDRESS:
    case NS_ERROR_COULD_NOT_GET_SENDERS_IDENTITY:
      // Something went wrong with the sender. There's no error we can map to
      // so we use a general error, see:
      // https://msdn.microsoft.com/en-us/library/hh802867(v=vs.85).aspx
      hr = MAPI_E_FAILURE;
      break;
    case NS_ERROR_SMTP_AUTH_FAILURE:
    case NS_ERROR_SMTP_AUTH_GSSAPI:
    case NS_ERROR_SMTP_AUTH_MECH_NOT_SUPPORTED:
    case NS_ERROR_SMTP_AUTH_CHANGE_ENCRYPT_TO_PLAIN_NO_SSL:
    case NS_ERROR_SMTP_AUTH_CHANGE_ENCRYPT_TO_PLAIN_SSL:
    case NS_ERROR_SMTP_AUTH_CHANGE_PLAIN_TO_ENCRYPT:
      hr = MAPI_E_LOGIN_FAILURE;
      break;
    case NS_MSG_UNABLE_TO_OPEN_FILE:
    case NS_MSG_UNABLE_TO_OPEN_TMP_FILE:
    case NS_MSG_COULDNT_OPEN_FCC_FOLDER:
    case NS_ERROR_FILE_INVALID_PATH:
      hr = MAPI_E_ATTACHMENT_OPEN_FAILURE;
      break;
    case NS_ERROR_FILE_NOT_FOUND:
      hr = MAPI_E_ATTACHMENT_NOT_FOUND;
      break;
    case NS_MSG_ERROR_WRITING_FILE:
    case NS_MSG_UNABLE_TO_SAVE_TEMPLATE:
    case NS_MSG_UNABLE_TO_SAVE_DRAFT:
      hr = MAPI_E_ATTACHMENT_WRITE_FAILURE;
      break;
    default:
      hr = MAPI_E_FAILURE;
      break;
  }

  return hr;
}

nsMAPISession::nsMAPISession(uint32_t aHwnd, const nsCString& aUserName,
                             const nsCString& aPassword, bool aForceDownLoad,
                             const char* aKey)
    : m_nShared(1), m_pIdKey(aKey) {
  m_listContext = NULL;
  m_pProfileName = aUserName;
  m_pPassword = aPassword;
}

nsMAPISession::~nsMAPISession() {}

uint32_t nsMAPISession::IncrementSession() { return ++m_nShared; }

uint32_t nsMAPISession::DecrementSession() { return --m_nShared; }

uint32_t nsMAPISession::GetSessionCount() { return m_nShared; }

char16_t* nsMAPISession::GetPassword() { return (char16_t*)m_pPassword.get(); }

void nsMAPISession::GetIdKey(nsCString& aKey) {
  aKey = m_pIdKey;
  return;
}