Statistics
| Revision:

root / trunk / libraries / libCorePlugin / src / com / iver / core / preferences / network / FirewallPage.java @ 30182

History | View | Annotate | Download (10.9 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2005 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41

    
42
/* CVS MESSAGES:
43
*
44
* $Id$
45
* $Log$
46
* Revision 1.9  2006/11/21 10:59:45  fjp
47
* Fallo proxy con usuario y contrase?a
48
*
49
* Revision 1.8  2006/11/20 17:29:43  fjp
50
* Fallo proxy con usuario y contrase?a
51
*
52
* Revision 1.7  2006/10/18 07:55:43  jaume
53
* *** empty log message ***
54
*
55
* Revision 1.6  2006/08/22 12:23:05  jaume
56
* improved perfomance when saving changes
57
*
58
* Revision 1.5  2006/08/22 07:37:17  jaume
59
* *** empty log message ***
60
*
61
* Revision 1.4  2006/08/04 11:45:12  caballero
62
* lanzo una excepci?n cuando falla el m?todo storeValues
63
*
64
* Revision 1.3  2006/07/31 10:02:31  jaume
65
* *** empty log message ***
66
*
67
* Revision 1.2  2006/06/13 07:43:08  fjp
68
* Ajustes sobre los cuadros de dialogos de preferencias
69
*
70
* Revision 1.1  2006/06/12 16:04:28  caballero
71
* Preferencias
72
*
73
* Revision 1.11  2006/06/06 10:26:31  jaume
74
* *** empty log message ***
75
*
76
* Revision 1.10  2006/06/05 17:07:17  jaume
77
* *** empty log message ***
78
*
79
* Revision 1.9  2006/06/05 17:00:44  jaume
80
* *** empty log message ***
81
*
82
* Revision 1.8  2006/06/05 16:57:59  jaume
83
* *** empty log message ***
84
*
85
* Revision 1.7  2006/06/05 14:45:06  jaume
86
* *** empty log message ***
87
*
88
* Revision 1.6  2006/06/05 11:00:09  jaume
89
* *** empty log message ***
90
*
91
* Revision 1.5  2006/06/05 10:39:02  jaume
92
* *** empty log message ***
93
*
94
* Revision 1.4  2006/06/05 10:13:40  jaume
95
* *** empty log message ***
96
*
97
* Revision 1.3  2006/06/05 10:06:08  jaume
98
* *** empty log message ***
99
*
100
* Revision 1.2  2006/06/05 09:51:56  jaume
101
* *** empty log message ***
102
*
103
* Revision 1.1  2006/06/02 10:50:18  jaume
104
* *** empty log message ***
105
*
106
*
107
*/
108
package com.iver.core.preferences.network;
109

    
110
import java.awt.event.ActionEvent;
111
import java.awt.event.ActionListener;
112
import java.net.Authenticator;
113
import java.net.MalformedURLException;
114
import java.net.PasswordAuthentication;
115
import java.net.URL;
116
import java.util.Properties;
117
import java.util.prefs.Preferences;
118

    
119
import javax.swing.ImageIcon;
120
import javax.swing.JCheckBox;
121
import javax.swing.JPanel;
122
import javax.swing.JPasswordField;
123
import javax.swing.JTextField;
124

    
125
import com.iver.andami.PluginServices;
126
import com.iver.andami.preferences.AbstractPreferencePage;
127
import com.iver.andami.preferences.StoreException;
128

    
129
public class FirewallPage extends AbstractPreferencePage {
130

    
131
        // Quiz? en vez de usar un prefs cada vez deber?amos de tener una clase gvSIG.java
132
        // donde se guarden todas las preferencias, queda m?s limpio y m?s claro si se hace
133
        // un: gvSIG.getProperty("gvsig.connection") que lo de abajo.
134
        private static Preferences prefs = Preferences.userRoot().node( "gvsig.connection" );
135
        private JCheckBox httpEnabled;
136
        private JTextField httpHost;
137
        private JTextField httpPort;
138
        private JTextField httpUser;
139
        private JPasswordField httpPass;
140
        private JTextField httpNonProxy;
141
        private JCheckBox socksEnabled;
142
        private JTextField socksHost;
143
        private JTextField socksPort;
144
        protected static String id = FirewallPage.class.getName();
145
        private ImageIcon icon;
146

    
147
        private static final class ProxyAuth extends Authenticator {
148
                private PasswordAuthentication auth;
149

    
150
                private ProxyAuth(String user, String pass) {
151
                        auth = new PasswordAuthentication(user, pass.toCharArray());
152
                }
153

    
154
                protected PasswordAuthentication getPasswordAuthentication() {
155
                        return auth;
156
                }
157
        }
158

    
159
        public FirewallPage() {
160
                super();
161
                //icon = new ImageIcon(this.getClass().getClassLoader().getResource("images/shield.png"));
162
                icon=PluginServices.getIconTheme().get("aplication-preferences-firewall");
163
                setParentID(NetworkPage.id);
164
//                 checkbox
165
                addComponent(httpEnabled = new JCheckBox(PluginServices.getText(this,
166
                        "options.firewall.http.enabled")));
167
                // proxy host
168
                addComponent(PluginServices.getText(this, "options.firewall.http.host") + ":",
169
                        httpHost = new JTextField("", 15));
170
                // proxy port
171
                addComponent(PluginServices.getText(this, "options.firewall.http.port") + ":",
172
                        httpPort = new JTextField("", 15));
173
                // proxy username
174
                addComponent(PluginServices.getText(this, "options.firewall.http.user") + ":",
175
                        httpUser = new JTextField("", 15));
176
                // proxy password
177
                addComponent(PluginServices.getText(this, "options.firewall.http.password") + ":",
178
                        httpPass = new JPasswordField("", 15));
179
                // no proxy for
180
                addComponent(PluginServices.getText(this, "options.firewall.http.nonProxy") + ":",
181
                        httpNonProxy = new JTextField("", 15));
182

    
183
//                 checkbox
184
                addComponent(socksEnabled = new JCheckBox(PluginServices.getText(this,
185
                        "options.firewall.socks.enabled")));
186
                // proxy host
187
                addComponent(PluginServices.getText(this, "options.firewall.socks.host") + ":",
188
                        socksHost = new JTextField("", 15));
189
                // proxy port
190
                addComponent(PluginServices.getText(this, "options.firewall.socks.port") + ":",
191
                        socksPort = new JTextField("", 15));
192

    
193
        }
194

    
195
        public void initializeValues() {
196

    
197
                boolean enabled = prefs.getBoolean("firewall.http.enabled", false);
198
                httpEnabled.setSelected(enabled);
199
                httpHost.setEnabled(enabled);
200
                httpHost.setText(prefs.get("firewall.http.host",""));
201
                httpPort.setEnabled(enabled);
202
                httpPort.setText(prefs.get("firewall.http.port",""));
203
                httpUser.setEnabled(enabled);
204
                httpUser.setText(prefs.get("firewall.http.user",""));
205
                httpPass.setEnabled(enabled);
206
                httpPass.setText(prefs.get("firewall.http.password",""));
207
                httpNonProxy.setEnabled(enabled);
208
                httpNonProxy.setText(prefs.get("firewall.http.nonProxyHosts",""));
209

    
210

    
211
                httpEnabled.addActionListener(new ActionHandler());
212

    
213

    
214
                enabled = prefs.getBoolean("firewall.socks.enabled", false);
215
                socksEnabled.setSelected(enabled);
216
                socksHost.setEnabled(enabled);
217
                socksHost.setText(prefs.get("firewall.socks.host",""));
218
                socksPort.setEnabled(enabled);
219
                socksPort.setText(prefs.get("firewall.socks.port",""));
220

    
221
                socksEnabled.addActionListener(new ActionHandler());
222

    
223
        }
224

    
225
        public String getID() {
226
                return id;
227
        }
228

    
229
        public String getTitle() {
230
                return PluginServices.getText(this, "pref.network.firewall");
231
        }
232

    
233
        public JPanel getPanel() {
234
                return this;
235
        }
236

    
237
        public String createURL(String host, String port){
238
                StringBuffer strUrl = new StringBuffer();
239
                // add "http://" prefix if it wasn't included.
240
                strUrl.append(host.toLowerCase().startsWith("http://")
241
                                ? host.toLowerCase() : "http://"+ host.toLowerCase());
242

    
243
                // add port
244
                strUrl.append(!port.equals("")
245
                                ? ":" + port : "");
246
                return strUrl.toString();
247
        }
248
        
249
        public void storeValues() throws StoreException{
250
                Properties systemSettings = System.getProperties();
251
                URL httpURL, socksURL;
252

    
253
                try {
254
                        
255
                        httpURL = new URL(createURL(httpHost.getText(), httpPort.getText()));
256
                        prefs.putBoolean("firewall.http.enabled", httpEnabled.isSelected());
257
                        prefs.put("firewall.http.host", httpHost.getText());
258
                        prefs.put("firewall.http.port", httpPort.getText());
259
                        String proxyUser = httpUser.getText();
260
                        String proxyPassword = new String(httpPass.getPassword());
261
                        prefs.put("firewall.http.user", proxyUser);
262
                        prefs.put("firewall.http.password", proxyPassword);
263
                        prefs.put("firewall.http.nonProxyHosts", httpNonProxy.getText());
264

    
265
                        if (httpEnabled.isSelected()) {
266
                                systemSettings.put("http.proxySet", "true");
267
                                systemSettings.put("http.proxyHost", httpURL.getHost());
268
                                systemSettings.put("http.proxyPort", httpURL.getPort()+"");
269
                                systemSettings.put("http.proxyUserName", proxyUser);
270
                                systemSettings.put("http.proxyPassword", proxyPassword);
271
                        } else {
272
                                systemSettings.put("http.proxySet", "false");
273
                                systemSettings.remove("http.proxyHost");
274
                                systemSettings.remove("http.proxyPort");
275
                                systemSettings.remove("http.proxyUserName");
276
                                systemSettings.remove("http.proxyPassword");
277
                                prefs.remove("firewall.http.host");
278
                                prefs.remove("firewall.http.port");
279
                                prefs.remove("firewall.http.user");
280
                                prefs.remove("firewall.http.password");
281
                                prefs.remove("firewall.http.nonProxyHosts");
282

    
283
                        }
284

    
285
                        System.setProperties(systemSettings);
286
                        if (proxyUser != null )
287
                        {
288
                                Authenticator.setDefault(new ProxyAuth(proxyUser,
289
                                                                proxyPassword));
290
                        } else {
291
                                Authenticator.setDefault(new ProxyAuth("", ""));
292
                        }
293

    
294
                } catch (MalformedURLException e) {
295
                        if (httpEnabled.isSelected()) {
296
                                throw new StoreException(PluginServices.getText(this, "options.firewall.http.incorrect_host"),e);
297
                        }
298
                }
299

    
300
                try {
301
                        socksURL = new URL(createURL(socksHost.getText(), socksPort.getText()));
302

    
303
                        prefs.putBoolean("firewall.socks.enabled", socksEnabled.isSelected());
304
                        prefs.put("firewall.socks.host", socksHost.getText());
305
                        prefs.put("firewall.socks.port", socksPort.getText());
306

    
307
                        if (socksEnabled.isSelected()) {
308
                                systemSettings.put("socksProxyHost", socksURL.getHost());
309
                                systemSettings.put("socksProxyPort", socksURL.getPort()+"");
310
                        } else {
311
                                systemSettings.remove("socksProxyHost");
312
                                systemSettings.remove("socksProxyPort");
313
                        }
314

    
315
                        System.setProperties(systemSettings);
316

    
317
                } catch (MalformedURLException e) {
318
                        if (socksEnabled.isSelected()) {
319
                                throw new StoreException(PluginServices.getText(this, "options.firewall.socks.incorrect_host"),e);
320
                        }
321
                }
322
        }
323

    
324
        public void initializeDefaults() {
325
                httpEnabled.setSelected(false);
326
                httpHost.setText("");
327
                httpPort.setText("");
328
                httpUser.setText("");
329
                httpPass.setText("");
330
                httpNonProxy.setText("");
331
                socksEnabled.setSelected(false);
332
                socksHost.setText("");
333
                socksPort.setText("");
334

    
335
        }
336

    
337
        private class ActionHandler implements ActionListener {
338
                public void actionPerformed(ActionEvent evt) {
339
                        httpHost.setEnabled(httpEnabled.isSelected());
340
                        httpPort.setEnabled(httpEnabled.isSelected());
341
                        httpUser.setEnabled(httpEnabled.isSelected());
342
                        httpPass.setEnabled(httpEnabled.isSelected());
343
                        httpNonProxy.setEnabled(httpEnabled.isSelected());
344
                        socksHost.setEnabled(socksEnabled.isSelected());
345
                        socksPort.setEnabled(socksEnabled.isSelected());
346
                }
347
        }
348

    
349
        public ImageIcon getIcon() {
350
                return icon;
351
        }
352

    
353
        public boolean isValueChanged() {
354
                return hasChanged();
355
        }
356

    
357
        public void setChangesApplied() {
358
                setChanged(false);
359
        }
360

    
361

    
362
}