1 |
/* wptProxySettingsDlg.cpp - Dialog for the proxy settings |
2 |
* Copyright (C) 2002-2005 Timo Schulz |
3 |
* |
4 |
* This file is part of WinPT. |
5 |
* |
6 |
* WinPT is free software; you can redistribute it and/or modify |
7 |
* it under the terms of the GNU General Public License as published by |
8 |
* the Free Software Foundation; either version 2 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* WinPT is distributed in the hope that it will be useful, |
12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU General Public License |
17 |
* along with WinPT; if not, write to the Free Software Foundation, |
18 |
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
19 |
*/ |
20 |
#ifdef HAVE_CONFIG_H |
21 |
#include <config.h> |
22 |
#endif |
23 |
|
24 |
#include <windows.h> |
25 |
#include <ctype.h> |
26 |
|
27 |
#include "resource.h" |
28 |
#include "wptTypes.h" |
29 |
#include "wptKeyserver.h" |
30 |
#include "wptW32API.h" |
31 |
#include "wptErrors.h" |
32 |
#include "wptNLS.h" |
33 |
#include "wptKeyserver.h" |
34 |
#include "wptRegistry.h" |
35 |
|
36 |
|
37 |
static int |
38 |
check_number (HWND dlg, int id) |
39 |
{ |
40 |
char buf[32]; |
41 |
size_t i; |
42 |
|
43 |
GetDlgItemText (dlg, id, buf, 31); |
44 |
for (i=0; i < strlen (buf); i++) { |
45 |
if (!isdigit ((unsigned int)buf[i])) |
46 |
return -1; |
47 |
} |
48 |
return 0; |
49 |
} |
50 |
|
51 |
|
52 |
static int |
53 |
read_proxy (HWND dlg, keyserver_proxy_t ctx) |
54 |
{ |
55 |
char t[512]; |
56 |
int ncount = 0, pos = 0; |
57 |
|
58 |
ncount = GetDlgItemText (dlg, IDC_PROXY_PWD, t, DIM (t)-1); |
59 |
if (ncount > 0) |
60 |
ctx->pass = strdup (t); |
61 |
ncount = GetDlgItemText (dlg, IDC_PROXY_USER, t, DIM (t)-1); |
62 |
if (ncount > 0) |
63 |
ctx->user = strdup (t); |
64 |
ncount = GetDlgItemText (dlg, IDC_PROXY_HOST, t, DIM (t)-1); |
65 |
if (ncount > 0) { |
66 |
if (check_IP_or_hostname (t)) { |
67 |
msg_box (dlg, _("Invalid host/IP address."), _("Proxy Settings"), MB_ERR); |
68 |
return -1; |
69 |
} |
70 |
/* XXX: check prefix */ |
71 |
if (!strncmp (t, "http://", 7)) |
72 |
pos = 7; |
73 |
ctx->host = strdup (t + pos); |
74 |
} |
75 |
if (check_number (dlg, IDC_PROXY_PORT)) { |
76 |
msg_box (dlg, _("Invalid port number."), _("Proxy Settings"), MB_ERR); |
77 |
return -1; |
78 |
} |
79 |
|
80 |
ctx->port = GetDlgItemInt (dlg, IDC_PROXY_PORT, NULL, FALSE); |
81 |
if (ctx->port < 0 || ctx->port > 65535) { |
82 |
msg_box (dlg, _("Please select a value from 0-65535 for the port"), |
83 |
_("Proxy Settings"), MB_INFO); |
84 |
return -1; |
85 |
} |
86 |
if (ctx->user && !ctx->pass || !ctx->user && ctx->pass) { |
87 |
msg_box (dlg, _("When you want to use authentication, " |
88 |
"please fill out both fields."), _("Proxy Settings"), MB_ERR); |
89 |
return -1; |
90 |
} |
91 |
if (ctx->host && !ctx->port || !ctx->host && ctx->port) { |
92 |
msg_box (dlg, _("Please enter a host name and a port."), |
93 |
_("Proxy Settings"), MB_INFO); |
94 |
return -1; |
95 |
} |
96 |
return 0; |
97 |
} |
98 |
|
99 |
|
100 |
static void |
101 |
enable_proxy_auth (HWND dlg, int val) |
102 |
{ |
103 |
int mode = val? TRUE : FALSE; |
104 |
EnableWindow (GetDlgItem (dlg, IDC_PROXY_PWD), mode); |
105 |
EnableWindow (GetDlgItem (dlg, IDC_PROXY_USER), mode); |
106 |
} |
107 |
|
108 |
|
109 |
static void |
110 |
init_proxy_protocols (HWND dlg) |
111 |
{ |
112 |
HWND cb = GetDlgItem (dlg, IDC_PROXY_PROTO); |
113 |
combox_add_string (cb, (char *)"HTTP"); |
114 |
/*combox_add_string (cb, (char *)"SOCKS5");*/ |
115 |
SendMessage (cb, CB_SETCURSEL, (WPARAM)0, 0); |
116 |
} |
117 |
|
118 |
|
119 |
/* Dialog box procedure for proxy authentication. */ |
120 |
BOOL CALLBACK |
121 |
keyserver_proxy_dlg_proc (HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam) |
122 |
{ |
123 |
int auth = 0; |
124 |
|
125 |
switch (msg) { |
126 |
case WM_INITDIALOG: |
127 |
if (proxy.host != NULL) { |
128 |
SetDlgItemText (dlg, IDC_PROXY_HOST, proxy.host); |
129 |
SetDlgItemInt( dlg, IDC_PROXY_PORT, proxy.port, FALSE ); |
130 |
if (proxy.user != NULL) { |
131 |
SetDlgItemText (dlg, IDC_PROXY_USER, proxy.user); |
132 |
CheckDlgButton (dlg, IDC_PROXY_AUTH, BST_CHECKED); |
133 |
auth++; |
134 |
} |
135 |
if (proxy.pass != NULL) { |
136 |
SetDlgItemText (dlg, IDC_PROXY_PWD, proxy.pass); |
137 |
auth++; |
138 |
} |
139 |
} |
140 |
enable_proxy_auth (dlg, auth); |
141 |
SetDlgItemText (dlg, IDC_PROXY_HOSTINF, _("Proxy host name or IP address")); |
142 |
SetDlgItemText (dlg, IDC_PROXY_AUTH, _("Server requires &authentication")); |
143 |
SetDlgItemText (dlg, IDC_PROXY_USERINF, _("User name")); |
144 |
SetDlgItemText (dlg, IDC_PROXY_PWDINF, _("Password")); |
145 |
SetDlgItemText (dlg, IDC_PROXY_PROTOINF, _("Proxy type")); |
146 |
SetDlgItemText (dlg, IDC_PROXY_AUTHINF, _("Authentication")); |
147 |
SetWindowText (dlg, _("Proxy Settings")); |
148 |
init_proxy_protocols (dlg); |
149 |
center_window (dlg, NULL); |
150 |
SetForegroundWindow (dlg); |
151 |
break; |
152 |
|
153 |
case WM_SYSCOMMAND: |
154 |
if (LOWORD (wparam) == SC_CLOSE) |
155 |
EndDialog (dlg, TRUE); |
156 |
return FALSE; |
157 |
|
158 |
case WM_COMMAND: |
159 |
switch (HIWORD (wparam)) { |
160 |
case BN_CLICKED: |
161 |
switch ((int)LOWORD (wparam)) { |
162 |
case IDC_PROXY_AUTH: |
163 |
if (IsDlgButtonChecked (dlg, IDC_PROXY_AUTH)) |
164 |
enable_proxy_auth (dlg, 1); |
165 |
else |
166 |
enable_proxy_auth (dlg, 0); |
167 |
break; |
168 |
} |
169 |
break; |
170 |
} |
171 |
|
172 |
switch (LOWORD (wparam)) { |
173 |
case IDOK: |
174 |
if (IsDlgButtonChecked (dlg, IDC_PROXY_AUTH) && |
175 |
item_get_text_length (dlg, IDC_PROXY_HOST) == 0 && |
176 |
item_get_text_length (dlg, IDC_PROXY_USER) == 0 && |
177 |
item_get_text_length (dlg, IDC_PROXY_PWD) == 0) { |
178 |
msg_box (dlg, _("Please fill out all required fields for authentication."), |
179 |
_("Proxy Settings"), MB_WARN); |
180 |
return TRUE; |
181 |
} |
182 |
kserver_proxy_release (&proxy); |
183 |
if (read_proxy (dlg, &proxy)) |
184 |
return FALSE; |
185 |
set_reg_proxy_prefs (&proxy); |
186 |
EndDialog (dlg, TRUE); |
187 |
return TRUE; |
188 |
|
189 |
case IDCANCEL: |
190 |
EndDialog (dlg, FALSE); |
191 |
return FALSE; |
192 |
} |
193 |
break; |
194 |
} |
195 |
|
196 |
return FALSE; |
197 |
} |