Subversion Repositories Games.Chess Giants

Rev

Rev 83 | Rev 88 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

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