-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwxMsThreadCurlPop3GetMessageBody.cpp
265 lines (254 loc) · 9.05 KB
/
wxMsThreadCurlPop3GetMessageBody.cpp
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
/*-----------------------------------------------------------------
* Name: wxMsThreadCurlPop3GetMessageBody.cpp
* Purpose: get the message body for previewing
* Author: A. Wiegert
*
* Copyright:
* Licence: wxWidgets licence
*---------------------------------------------------------------- */
/*----------------------------------------------------------------
* Standard wxWidgets headers
*---------------------------------------------------------------- */
// Note __VISUALC__ is defined by wxWidgets, not by MSVC IDE
// and thus won't be defined until some wxWidgets headers are included
#if defined( _MSC_VER )
# if defined ( _DEBUG )
// this statement NEEDS to go BEFORE all headers
# define _CRTDBG_MAP_ALLOC
# include <stdlib.h>
# include <crtdbg.h>
# endif
#endif
#include "wxMsPreProcDefsh.h" // MUST be first
// ------------------------------------------------------------------
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
/* For all others, include the necessary headers
* (this file is usually all you need because it
* includes almost all "standard" wxWidgets headers) */
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
// ------------------------------------------------------------------
#include "wxMsFrameh.h"
#include "curl/curl.h"
// ------------------------------------------------------------------
#if defined( _MSC_VER )
// only good for MSVC - see note above re __VISUALC__
// this block needs to AFTER all headers
# include <stdlib.h>
# include <crtdbg.h>
# ifdef _DEBUG
# ifndef DBG_NEW
# define DBG_NEW new ( _NORMAL_BLOCK , __FILE__ , __LINE__ )
# define new DBG_NEW
# endif
# endif
#endif
// ------------------------------------------------------------------
// ------------------------------------------------------------------
/**
* Handles the command to retrieve the message body for preview.
* Instead of the message sequence number, we pass in the UIDL
* and then get the UIDLS of all messages on the server to find
* the corresponding sequence number needed for the actual RETR
* command.
* Result will need to be parsed bt caller.
* The data is returned in Pop3CommandData.sm_wsResultData
*/
void MyFrame::ThreadGetCurlPop3OneMessageBody( Pop3CommandData &ar_Pop3CommandData )
{
CURL *pCurl;
CURLcode res = CURLE_OK;
struct MemoryStruct chunk;
wxString wsUidlResult; // result of UIDL command
wxASSERT( ar_Pop3CommandData.sm_wasCommands.GetCount() );
chunk.memory = (char*) malloc(1);
chunk.size = 0;
wxString wsPop3Server = _T("pop3://");
wsPop3Server += ar_Pop3CommandData.sm_wsPop3ServerUrl.mb_str(wxConvUTF8).data();
#if defined( _DEBUG )
wxString wsUser = ar_Pop3CommandData.sm_wsUserName;
wxString wsPassword = ar_Pop3CommandData.sm_wsUserPassword;
wxString wsServer = wsPop3Server;
#endif
wxString wsCommand = ar_Pop3CommandData.sm_wasCommands[0];
wxString wsUidl = wsCommand.AfterFirst( ' ' );
pCurl = curl_easy_init();
if(pCurl)
{
curl_easy_setopt( pCurl,CURLOPT_USERNAME, ar_Pop3CommandData.sm_wsUserName.mb_str(wxConvUTF8).data());
curl_easy_setopt( pCurl,CURLOPT_PASSWORD, ar_Pop3CommandData.sm_wsUserPassword.mb_str(wxConvUTF8).data() );
curl_easy_setopt( pCurl, CURLOPT_URL, wsPop3Server.mb_str(wxConvUTF8).data());
curl_easy_setopt( pCurl, CURLOPT_WRITEFUNCTION, WriteMemoryCallback);
curl_easy_setopt( pCurl, CURLOPT_WRITEDATA, (void *)&chunk);
// allow some control over connection timeout - set via INI for now
curl_easy_setopt( pCurl, CURLOPT_CONNECTTIMEOUT, g_iniPrefs.data[IE_POP3_SERVER_TIMEOUT].dataCurrent.lVal );
//some servers needs this validation
// curl_easy_setopt(curl, CURLOPT_USERAGENT, "libcurl-agent/1.0");
// else issue a UIDL command <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
wsCommand = _T("UIDL");
curl_easy_setopt( pCurl, CURLOPT_CUSTOMREQUEST, wsCommand.mb_str(wxConvUTF8).data() );
/* Perform the custom request */
res = curl_easy_perform( pCurl );
/* Check for errors */
if (CURLE_OPERATION_TIMEDOUT == res)
{
wxString wsT;
wsT.Printf( _T("Timeout for %s"), wsPop3Server );
wxLogMessage( wsT );
SetStatusText( wsT, 1 );
// clean up memory
goto cleanup;
}
else if( res != CURLE_OK )
{
wxString wsT;
wsT.Printf( _T("GetMsgBody: UIDL: curl_easy_perform() failed: %s"), curl_easy_strerror(res));
wxLogMessage( wsT );
wxLogDebug( wsT );
// clean up memory
goto cleanup;
}
// process the UIDL data
wsUidlResult = chunk.memory;
if(chunk.memory) // clean up for next command
{
free(chunk.memory);
chunk.memory = (char*) calloc(1, sizeof( char ) );
chunk.size = 0;
}
if ( g_iniPrefs.data[IE_LOG_VERBOSITY].dataCurrent.lVal > 4 )
{
wxLogMessage( _T("GetMsgBody UIDLs: %s\n"), wsUidlResult );
}
// ------Get the sequence number we need
wxArrayString wasUidlLines;
/* Parse the long string of UIDLs returned from the interaction with the
* POP3 server.
* This routine splits the UIDLs and adds them to the string array for
* further processing
*/
ThreadParseUidls( wsUidlResult, wasUidlLines, _T("GetMessageBody") );
long lSeq = GetSeqNoFromUidl( wsUidl, wasUidlLines );
#if 1
if ( lSeq <= 0 )
{
wxString wsT;
wxBell(); wxBell(); wxBell();
wxLogMessage(
_T("!!! %s %ld: GetSeqNoFromUidl failed:\n %s"), __FILE__, __LINE__, wsUidl );
}
#else
wxASSERT( lSeq ); // MUST be positive, > 0
#endif
// ------------------------------------------------------------------
// Set the command with the proper message number
wsCommand.Printf( _T("RETR %d"), lSeq );
curl_easy_setopt( pCurl, CURLOPT_CUSTOMREQUEST, wsCommand.mb_str(wxConvUTF8).data());
/* Perform the custom request */
res = curl_easy_perform( pCurl );
/* Check for errors */
if(res != CURLE_OK)
{
wxString wsT;
wxLogMessage( _T("GetMsgBody: %s: curl_easy_perform() failed: %s"),
wsCommand, curl_easy_strerror(res));
wxLogDebug( _T("GetMsgBody: %s: curl_easy_perform() failed: %s"),
wsCommand, curl_easy_strerror(res));
wsT = curl_easy_strerror(res);
ar_Pop3CommandData.sm_wsResultData = _T("Error: ") + wsT;
// clean up memory
goto cleanup;
}
else
{
// seems we need to make sure the data is copied out of chunk.memory
// to be saved before the memory is freed
wxString wsTemp = chunk.memory;
ar_Pop3CommandData.sm_wsResultData = wsTemp;
if ( g_iniPrefs.data[IE_LOG_VERBOSITY].dataCurrent.lVal > 4 )
{
wxLogMessage( wsCommand );
wxLogMessage( _T("%lu bytes retrieved"), (long)chunk.size );
wxLogMessage( _T("%s"),chunk.memory );
}
}
// clean up memory
if(chunk.memory)
{
free(chunk.memory);
chunk.memory = NULL;
}
}
cleanup:
// clean up memory
if(chunk.memory)
{
free(chunk.memory);
chunk.memory = NULL;
}
// Always cleanup
curl_easy_cleanup( pCurl );
return;
}
// ==================================================================
/**
* Parse the long string of UIDLs returned from the interaction with the
* POP3 server.
* This routine splits the UIDLs and adds them to the string array for
* further processing
*/
void MyFrame::ThreadParseUidls( wxString a_wsUidlResult, wxArrayString &ar_wasUidls, wxString a_wsWhereFrom )
{
wxString wsSeq;
int j = 0;
// extract the list of UIDLs
// wxStringTokenizer seems to have problems with these strings
// use brute force - this works
// wxStringTokenizer always seems to make line 2 a blank line
wxString wsLine;
wxString wsRest;
unsigned long ulSeqNo;
wxString wsSeqNo;
wxString wsMsg = _T("Called from: ") + a_wsWhereFrom;
// this code simply splits the lines and adds them to the
// string array
wsRest = a_wsUidlResult;
j = 1;
while ( !wsRest.IsEmpty() )
{
wsLine = wsRest.BeforeFirst( '\r' );
wsRest = wsRest.AfterFirst( '\n' );
// split off the sequence number
wsSeqNo = wsLine.BeforeFirst( ' ' );
if ( !wsSeqNo.ToULong( &ulSeqNo ) )
continue; // line does not start with a numeric char, skip it
ar_wasUidls.Add( wsLine );
#if defined( WANT_UIDL_ASSERT )
/* a typical input string looks like
UIDL
+OK 16 messages
1 41112.S1DlDulSXMPlpsZday1pZQG4GqxGXNGQEOqRS8JhJOE=
2 41165.LPg9Lya6RayiUhs,0mETUmrmmoF9pVKsA8AcIyVsSXI=
....
14 41641.NfkkM3GH5Z2tmdUhByKBGZIb9k5XeB1FTz3EYc5YWJw=
15 41642.K,I4OSGvrLlIzq,6JgCzk6+dNEhJQaxZBlXC2yZw38c=
16 41643.lPjQIdv,HVa22ln21WUCMVLTv9Y9sV5q1BV7bg2U0h8=
*
*/
// this assert checks to see if the sequential index found in the
// server reply is as expected
wxASSERT_MSG( ulSeqNo == (unsigned long)j, wsMsg );
#endif
j++;
if ( g_iniPrefs.data[IE_LOG_VERBOSITY].dataCurrent.lVal > 4 )
{
wxLogMessage( _T("ThreadParseUidls UIDL: %ld - %s"), ulSeqNo, wsLine );
}
}
}
// ------------------------------- eof ------------------------------