Rev 89 | Rev 147 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
14 | pmbaty | 1 | // dialog_registration.cpp |
2 | |||
3 | #include "../common.h" |
||
4 | |||
5 | |||
6 | // dialog template |
||
7 | #define THIS_DIALOG DIALOG_REGISTER |
||
8 | |||
9 | |||
83 | pmbaty | 10 | // global variables used in this module only |
11 | static wchar_t candidate_email[128] = L""; |
||
12 | static unsigned __int32 candidate_code = 0; // 32 bits |
||
13 | |||
14 | |||
14 | pmbaty | 15 | // prototypes of local functions |
16 | static int CALLBACK DialogProc_ThisDialog (HWND hWnd, unsigned int message, WPARAM wParam, LPARAM lParam); |
||
83 | pmbaty | 17 | static unsigned __int32 RetrieveActivationCode (wchar_t *candidate_email, wchar_t **failure_reason); |
88 | pmbaty | 18 | static int recv_with_timeout (int socket_id, float timeout_in_seconds, char *outbuf, size_t outbuf_size, int flags); |
14 | pmbaty | 19 | |
20 | |||
21 | void DialogBox_Registration (void) |
||
22 | { |
||
23 | // helper function to fire up the modal dialog box |
||
24 | |||
25 | // display the dialog box (set the parent to be the desktop) |
||
26 | DialogBox (hAppInstance, MAKEINTRESOURCE (THIS_DIALOG), NULL, DialogProc_ThisDialog); |
||
27 | |||
28 | return; // finished processing this dialog |
||
29 | } |
||
30 | |||
31 | |||
32 | static int CALLBACK DialogProc_ThisDialog (HWND hWnd, unsigned int message, WPARAM wParam, LPARAM lParam) |
||
33 | { |
||
34 | // message handler for the dialog box |
||
35 | |||
83 | pmbaty | 36 | static wchar_t temp_string[1024]; |
14 | pmbaty | 37 | |
38 | unsigned short wParam_hiword; |
||
39 | unsigned short wParam_loword; |
||
83 | pmbaty | 40 | wchar_t *failure_reason; |
41 | int write_index; |
||
14 | pmbaty | 42 | int read_index; |
43 | int length; |
||
44 | |||
45 | // filter out the commonly used message values |
||
46 | wParam_hiword = HIWORD (wParam); |
||
47 | wParam_loword = LOWORD (wParam); |
||
48 | |||
49 | // have we just fired up this window ? |
||
50 | if (message == WM_INITDIALOG) |
||
51 | { |
||
52 | // center the window |
||
53 | CenterWindow (hWnd, hMainWnd); |
||
54 | |||
55 | // set dialog icons (small one for title bar & big one for task manager) |
||
56 | SendMessage (hWnd, WM_SETICON, ICON_SMALL, (LPARAM) LoadIcon (hAppInstance, MAKEINTRESOURCE (ICON_MAIN))); |
||
57 | SendMessage (hWnd, WM_SETICON, ICON_BIG, (LPARAM) LoadIcon (hAppInstance, MAKEINTRESOURCE (ICON_MAIN))); |
||
58 | |||
59 | // set window title and control texts |
||
60 | SetWindowText (hWnd, LOCALIZE (L"Registration_Title")); |
||
61 | |||
62 | // set the static texts |
||
63 | Static_SetText (GetDlgItem (hWnd, STATICTEXT_REGISTRATION_QUESTION), LOCALIZE (L"Registration_Question")); |
||
64 | SetWindowText (GetDlgItem (hWnd, BUTTON_DONATE), LOCALIZE (L"Registration_Donate")); |
||
65 | Static_SetText (GetDlgItem (hWnd, STATICTEXT_REGISTRATION_NOPAYPAL), LOCALIZE (L"Registration_NoPayPal")); |
||
66 | Static_SetText (GetDlgItem (hWnd, STATICTEXT_REGISTRATION_INSTRUCTIONS), LOCALIZE (L"Registration_Instructions")); |
||
67 | Static_SetText (GetDlgItem (hWnd, STATICTEXT_REGISTRATION_EMAILADDRESS), LOCALIZE (L"Registration_EmailAddress")); |
||
83 | pmbaty | 68 | if (options.registration.user_email[0] != 0) |
69 | SetDlgItemText (hWnd, EDITBOX_REGISTRATION_EMAILADDRESS, options.registration.user_email); |
||
70 | else |
||
71 | SetDlgItemText (hWnd, EDITBOX_REGISTRATION_EMAILADDRESS, L"your@email.here"); |
||
14 | pmbaty | 72 | SetWindowText (GetDlgItem (hWnd, BUTTON_VALIDATECODE), LOCALIZE (L"Registration_ValidateCode")); |
73 | Static_SetText (GetDlgItem (hWnd, STATICTEXT_REGISTRATION_STATUSBAR), LOCALIZE (L"Registration_StatusBar")); |
||
74 | |||
75 | // set focus to the first settable item |
||
76 | SendMessage (GetDlgItem (hWnd, EDITBOX_REGISTRATION_EMAILADDRESS), EM_SETSEL, 0, -1); // select all text |
||
77 | SetFocus (GetDlgItem (hWnd, EDITBOX_REGISTRATION_EMAILADDRESS)); |
||
78 | |||
79 | // convert the "no paypal" and the status bar message to hyperlinks |
||
80 | ConvertStaticToHyperlink (GetDlgItem (hWnd, STATICTEXT_REGISTRATION_NOPAYPAL)); |
||
81 | ConvertStaticToHyperlink (GetDlgItem (hWnd, STATICTEXT_REGISTRATION_STATUSBAR)); |
||
82 | } |
||
83 | |||
84 | // else did we click the close button on the title bar ? |
||
85 | else if (message == WM_CLOSE) |
||
86 | EndDialog (hWnd, 0); // close the dialog box |
||
87 | |||
88 | // else did we take action on one of the controls ? |
||
89 | else if (message == WM_COMMAND) |
||
90 | { |
||
91 | // did we cancel the dialog box ? (IDCANCEL is a system-wide dialog box handler value, that catches the ESC key) |
||
92 | if (wParam_loword == IDCANCEL) |
||
93 | EndDialog (hWnd, 0); // close the dialog box |
||
94 | |||
21 | pmbaty | 95 | // else did the user enter something in the edit boxes ? |
96 | else if (wParam_hiword == EN_CHANGE) |
||
97 | { |
||
83 | pmbaty | 98 | // enable the validation button only if the PayPal email field has data |
21 | pmbaty | 99 | GetDlgItemText (hWnd, EDITBOX_REGISTRATION_EMAILADDRESS, candidate_email, WCHAR_SIZEOF (candidate_email)); |
100 | |||
83 | pmbaty | 101 | // strip spaces and unprintable characters from candidate email, and bring it lowercase |
14 | pmbaty | 102 | length = wcslen (candidate_email); |
103 | write_index = 0; |
||
104 | for (read_index = 0; read_index < length; read_index++) |
||
19 | pmbaty | 105 | if (!iswspace (candidate_email[read_index])) |
14 | pmbaty | 106 | { |
83 | pmbaty | 107 | candidate_email[write_index] = tolower (candidate_email[read_index]); // force lowercase |
108 | write_index++; // keep only valid signs and discard spaces |
||
14 | pmbaty | 109 | } |
110 | candidate_email[write_index] = 0; // ensure string is correctly terminated |
||
111 | |||
83 | pmbaty | 112 | EnableWindow (GetDlgItem (hWnd, BUTTON_VALIDATECODE), ((candidate_email[0] != 0) && (wcslen (candidate_email) > 5) && (wcsncmp (candidate_email, L"your@email.", 11) != 0) |
113 | && (wcschr (candidate_email, L'@') != NULL) && (wcschr (candidate_email, L'.') != NULL))); |
||
114 | } |
||
14 | pmbaty | 115 | |
83 | pmbaty | 116 | // else was it the validation button ? |
117 | else if (wParam_loword == BUTTON_VALIDATECODE) |
||
118 | { |
||
119 | // query the remote server for the code associated with this email. If it fails, ask why. |
||
120 | candidate_code = RetrieveActivationCode (candidate_email, &failure_reason); |
||
14 | pmbaty | 121 | |
83 | pmbaty | 122 | // was there a problem retrieving the code ? |
123 | if ((failure_reason != NULL) && (failure_reason[0] != 0)) |
||
124 | MessageBox (hWnd, failure_reason, PROGRAM_NAME, MB_ICONERROR | MB_OK); // registration failed. Display an error and DON'T exit the program |
||
125 | |||
126 | // else is the retrieved data correct ? |
||
14 | pmbaty | 127 | else if (IsRegistrationCorrect (candidate_email, candidate_code)) |
128 | { |
||
83 | pmbaty | 129 | // if so, save activation email and activation code |
130 | wcscpy_s (options.registration.user_email, WCHAR_SIZEOF (options.registration.user_email), candidate_email); |
||
14 | pmbaty | 131 | options.registration.activation_code = candidate_code; |
132 | MessageBox (hWnd, LOCALIZE (L"Registration_ThankYou"), PROGRAM_NAME, MB_ICONINFORMATION | MB_OK); |
||
133 | EndDialog (hWnd, 0); // then display a thank you dialog box and exit the program |
||
134 | } |
||
135 | |||
136 | // else the supplied data is wrong |
||
137 | else |
||
138 | { |
||
83 | pmbaty | 139 | swprintf_s (temp_string, WCHAR_SIZEOF (temp_string), LOCALIZE (L"Registration_Error"), AUTHOR_EMAIL); |
140 | MessageBox (hWnd, temp_string, PROGRAM_NAME, MB_ICONERROR | MB_OK); // wrong activation. Display an error and DON'T exit the program |
||
14 | pmbaty | 141 | } |
142 | } |
||
143 | |||
144 | // else was it the PayPal button ? |
||
145 | else if (wParam_loword == BUTTON_DONATE) |
||
89 | pmbaty | 146 | { |
147 | if (wcscmp (languages[language_id].name, L"French") == 0) |
||
148 | ShellExecute (NULL, L"open", PAYPAL_URL_FR, NULL, NULL, SW_MAXIMIZE); // open PayPal in French in the default browser, maximized |
||
149 | else |
||
150 | ShellExecute (NULL, L"open", PAYPAL_URL_XX, NULL, NULL, SW_MAXIMIZE); // open PayPal in English (default) the default browser, maximized |
||
151 | } |
||
14 | pmbaty | 152 | |
153 | // else was it the "no PayPal" hyperlink ? |
||
154 | else if (wParam_loword == STATICTEXT_REGISTRATION_NOPAYPAL) |
||
23 | pmbaty | 155 | ShellExecute (NULL, L"open", NOPAYPAL_URL, NULL, NULL, SW_MAXIMIZE); // open the bank account page in the default browser, maximized |
14 | pmbaty | 156 | |
157 | // else was it the status bar hyperlink ? |
||
158 | else if (wParam_loword == STATICTEXT_REGISTRATION_STATUSBAR) |
||
23 | pmbaty | 159 | ShellExecute (NULL, L"open", PROGRAM_URL, NULL, NULL, SW_MAXIMIZE); // open the main page in the default browser, maximized |
14 | pmbaty | 160 | } |
161 | |||
162 | // call the default dialog message processing function to keep things going |
||
163 | return (false); |
||
164 | } |
||
83 | pmbaty | 165 | |
166 | |||
167 | static unsigned __int32 RetrieveActivationCode (wchar_t *candidate_email, wchar_t **failure_reason) |
||
168 | { |
||
169 | // this function queries the remote server for registration status. If OK, the received code is returned. |
||
170 | // On error, 0 is returned and error_string points to the cause of the error (as reported by the server) |
||
171 | // which is stored in a static buffer in this very function. |
||
172 | |||
173 | static char http_buffer[1024]; // used both for request and reply |
||
174 | static char ascii_email[128]; |
||
175 | |||
176 | struct sockaddr_in service; |
||
177 | struct hostent *hostinfo; |
||
178 | char *data_start; |
||
179 | WSADATA wsa_data; |
||
180 | int write_index; |
||
181 | int read_index; |
||
182 | int length; |
||
183 | SOCKET s; |
||
184 | |||
185 | // initialize WinSock |
||
186 | if (WSAStartup (MAKEWORD (2, 2), &wsa_data) != 0) |
||
187 | { |
||
188 | *failure_reason = LOCALIZE (L"Registration_NetworkFailure"); |
||
189 | return (0); // couldn't initialize WinSock, return an error condition |
||
190 | } |
||
191 | |||
192 | // get our distribution server's IP address from the host name |
||
193 | hostinfo = gethostbyname ("pmbaty.com"); |
||
194 | if (hostinfo == NULL) |
||
195 | { |
||
196 | *failure_reason = LOCALIZE (L"Registration_NetworkFailure"); |
||
197 | return (0); // couldn't resolve hostname, return an error condition |
||
198 | } |
||
199 | |||
200 | // fill in the sockaddr server structure with the server hostinfo data |
||
201 | service.sin_family = AF_INET; |
||
202 | service.sin_addr.s_addr = inet_addr (inet_ntoa (*(struct in_addr *) hostinfo->h_addr_list[0])); |
||
203 | service.sin_port = htons (80); // connect to webserver there (port 80) |
||
204 | |||
205 | // create our socket |
||
206 | if ((s = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP)) == INVALID_SOCKET) |
||
207 | { |
||
208 | *failure_reason = LOCALIZE (L"Registration_NetworkFailure"); |
||
209 | return (0); // couldn't create socket, return an error condition |
||
210 | } |
||
211 | |||
212 | // connect to the distributor's webserver using that socket |
||
213 | if (connect (s, (struct sockaddr *) &service, sizeof (service)) == -1) |
||
214 | { |
||
215 | *failure_reason = LOCALIZE (L"Registration_NetworkFailure"); |
||
216 | return (0); // unable to connect to webserver, return an error condition |
||
217 | } |
||
218 | |||
219 | // build the HTTP query and send it |
||
220 | ConvertTo7BitASCII (ascii_email, sizeof (ascii_email), candidate_email); |
||
221 | sprintf_s (http_buffer, sizeof (http_buffer), |
||
222 | "GET /chess/whatsmycode.php?email=%s HTTP/1.1\r\n" |
||
223 | "Host: pmbaty.com\r\n" |
||
224 | "Connection: close\r\n" |
||
225 | "\r\n", ascii_email); |
||
226 | length = strlen (http_buffer); |
||
227 | write_index = send (s, http_buffer, length, 0); // send the HTTP query |
||
228 | if (write_index != length) |
||
229 | { |
||
230 | *failure_reason = LOCALIZE (L"Registration_NetworkFailure"); |
||
231 | return (0); // unable to send HTTP query, return an error condition |
||
232 | } |
||
233 | |||
88 | pmbaty | 234 | // read the reply (10 seconds timeout) |
235 | http_buffer[0] = 0; |
||
236 | read_index = recv_with_timeout (s, 10.0f, http_buffer, sizeof (http_buffer), 0); |
||
83 | pmbaty | 237 | if (read_index < 1) |
238 | { |
||
239 | *failure_reason = LOCALIZE (L"Registration_NetworkFailure"); |
||
240 | return (0); // empty or erroneous HTTP reply, return an error condition |
||
241 | } |
||
242 | |||
243 | closesocket (s); // finished communicating, close TCP socket |
||
244 | WSACleanup (); // and clean up WinSock |
||
245 | |||
246 | // terminate recv buffer and see where the useful data starts |
||
247 | http_buffer[read_index] = 0; |
||
248 | //MessageBoxA (NULL, http_buffer, "HTTP response", MB_OK); |
||
249 | if ((data_start = strstr (http_buffer, "Success=")) != NULL) |
||
250 | { |
||
251 | *failure_reason = L""; // no error, set an empty string as the failure reason |
||
252 | return ((unsigned __int32) atoll (&data_start[strlen ("Success=")])); // and return the candidate code we got |
||
253 | } |
||
254 | else if ((data_start = strstr (http_buffer, "Error=")) != NULL) |
||
255 | { |
||
256 | data_start += strlen ("Error="); |
||
257 | if (strchr (data_start, '\r') != NULL) *strchr (data_start, '\r') = 0; |
||
258 | if (strchr (data_start, '\n') != NULL) *strchr (data_start, '\n') = 0; |
||
259 | if (_stricmp (data_start, "WrongEmail") == 0) *failure_reason = LOCALIZE (L"Registration_WrongEmail"); |
||
260 | else if (_stricmp (data_start, "UnknownEmail") == 0) *failure_reason = LOCALIZE (L"Registration_UnknownEmail"); |
||
261 | else if (_stricmp (data_start, "TooManyActivations") == 0) *failure_reason = LOCALIZE (L"Registration_TooManyActivations");; |
||
88 | pmbaty | 262 | return (0); // server returned an error, return an error condition |
83 | pmbaty | 263 | } |
264 | |||
88 | pmbaty | 265 | *failure_reason = LOCALIZE (L"Registration_NetworkFailure"); // this should never happen |
83 | pmbaty | 266 | return (0); // server returned an error, return an error condition |
267 | } |
||
88 | pmbaty | 268 | |
269 | |||
270 | static int recv_with_timeout (int socket_id, float timeout_in_seconds, char *outbuf, size_t outbuf_size, int flags) |
||
271 | { |
||
272 | unsigned long nonblocking_mode; |
||
273 | unsigned long msec_start; |
||
274 | float timediff; |
||
275 | int total_size; |
||
276 | int recv_size; |
||
277 | |||
278 | // make socket non blocking |
||
279 | nonblocking_mode = 1; |
||
280 | ioctlsocket (socket_id, FIONBIO, &nonblocking_mode); |
||
281 | |||
282 | // loop endlessly, noting the time at which we start |
||
283 | msec_start = GetTickCount (); |
||
284 | total_size = 0; |
||
285 | for (;;) |
||
286 | { |
||
287 | // see how much time elapsed since the last time we received data |
||
288 | timediff = (GetTickCount () - msec_start) / 1000.0f; |
||
289 | if (timediff > timeout_in_seconds) |
||
290 | break; // if we've waited long enough, give up |
||
291 | |||
292 | // see if we have something to read from the socket |
||
293 | recv_size = recv (socket_id, &outbuf[total_size], outbuf_size - total_size, flags); |
||
294 | if (recv_size == 0) |
||
295 | break; // on TCP disconnection, give up too |
||
296 | else if (recv_size < 0) |
||
297 | { |
||
298 | Sleep (100); // if nothing was received then we want to wait a little before trying again, 0.1 seconds |
||
299 | continue; |
||
300 | } |
||
301 | |||
302 | total_size += recv_size; // increase the received bytes count |
||
303 | outbuf[total_size] = 0; // terminate outbuf ourselves |
||
304 | if (total_size == outbuf_size) |
||
305 | break; // if the output buffer is full, give up |
||
306 | msec_start = GetTickCount (); // and remember when we last received data (i.e. now) |
||
307 | } |
||
308 | |||
309 | return (total_size); // and return the number of bytes received |
||
310 | } |