]> WPIA git - gigi.git/blob - src/org/cacert/gigi/pages/account/domain/PingConfigForm.java
add: Allow specific self-signed certs for ssl-tests
[gigi.git] / src / org / cacert / gigi / pages / account / domain / PingConfigForm.java
1 package org.cacert.gigi.pages.account.domain;
2
3 import java.io.PrintWriter;
4 import java.util.Arrays;
5 import java.util.List;
6 import java.util.Map;
7
8 import javax.servlet.http.HttpServletRequest;
9
10 import org.cacert.gigi.Gigi;
11 import org.cacert.gigi.GigiApiException;
12 import org.cacert.gigi.dbObjects.Domain;
13 import org.cacert.gigi.dbObjects.DomainPingConfiguration;
14 import org.cacert.gigi.dbObjects.DomainPingType;
15 import org.cacert.gigi.localisation.Language;
16 import org.cacert.gigi.output.template.Form;
17 import org.cacert.gigi.output.template.IterableDataset;
18 import org.cacert.gigi.output.template.Template;
19 import org.cacert.gigi.ping.SSLPinger;
20 import org.cacert.gigi.util.RandomToken;
21
22 public class PingConfigForm extends Form {
23
24     public enum SSLType {
25         DIRECT, XMPP, XMPP_SERVER, SMTP, IMAP;
26
27         @Override
28         public String toString() {
29             return super.toString().toLowerCase();
30         }
31     }
32
33     private Domain target;
34
35     private String tokenName = RandomToken.generateToken(8);
36
37     private String tokenValue = RandomToken.generateToken(16);
38
39     private static final int MAX_SSL_TESTS = 4;
40
41     public static final String[] AUTHORATIVE_EMAILS = new String[] {
42             "root", "hostmaster", "postmaster", "admin", "webmaster"
43     };
44
45     private int selectedMail = -1;
46
47     private boolean doMail, doDNS, doHTTP, doSSL;
48
49     private int[] ports = new int[MAX_SSL_TESTS];
50
51     private SSLType[] sslTypes = new SSLType[MAX_SSL_TESTS];
52
53     private final Template t = new Template(PingConfigForm.class.getResource("PingConfigForm.templ"));
54
55     public PingConfigForm(HttpServletRequest hsr, Domain target) throws GigiApiException {
56         super(hsr);
57         this.target = target;
58         if (target == null) {
59             return;
60         }
61         List<DomainPingConfiguration> configs = target.getConfiguredPings();
62         int portpos = 0;
63         for (DomainPingConfiguration dpc : configs) {
64             switch (dpc.getType()) {
65             case EMAIL:
66                 doMail = true;
67                 for (int i = 0; i < AUTHORATIVE_EMAILS.length; i++) {
68                     if (AUTHORATIVE_EMAILS[i].equals(dpc.getInfo())) {
69                         selectedMail = i;
70                     }
71                 }
72                 break;
73             case DNS: {
74                 doDNS = true;
75                 String[] parts = dpc.getInfo().split(":");
76                 tokenName = parts[0];
77                 tokenValue = parts[1];
78                 break;
79             }
80             case HTTP: {
81                 doHTTP = true;
82                 String[] parts = dpc.getInfo().split(":");
83                 tokenName = parts[0];
84                 tokenValue = parts[1];
85                 break;
86             }
87             case SSL: {
88                 doSSL = true;
89                 String[] parts = dpc.getInfo().split(":");
90                 tokenName = parts[0];
91                 tokenValue = parts[1];
92                 ports[portpos] = Integer.parseInt(parts[2]);
93                 if (parts.length == 4) {
94                     sslTypes[portpos] = SSLType.valueOf(parts[3].toUpperCase());
95                 } else {
96                     sslTypes[portpos] = SSLType.DIRECT;
97                 }
98                 portpos++;
99                 break;
100             }
101             }
102         }
103     }
104
105     public void setTarget(Domain target) {
106         this.target = target;
107     }
108
109     @Override
110     public boolean submit(PrintWriter out, HttpServletRequest req) throws GigiApiException {
111         if (req.getParameter("emailType") != null && req.getParameter("email") != null) {
112             try {
113                 String mail = AUTHORATIVE_EMAILS[Integer.parseInt(req.getParameter("email"))];
114                 target.addPing(DomainPingType.EMAIL, mail);
115             } catch (NumberFormatException e) {
116                 throw new GigiApiException("A email address is required");
117             }
118         }
119         if (req.getParameter("DNSType") != null) {
120             target.addPing(DomainPingType.DNS, tokenName + ":" + tokenValue);
121         }
122         if (req.getParameter("HTTPType") != null) {
123             target.addPing(DomainPingType.HTTP, tokenName + ":" + tokenValue);
124         }
125         if (req.getParameter("SSLType") != null) {
126             List<String> types = Arrays.asList(SSLPinger.TYPES);
127             for (int i = 0; i < MAX_SSL_TESTS; i++) {
128                 String type = req.getParameter("ssl-type-" + i);
129                 String port = req.getParameter("ssl-port-" + i);
130                 if (type == null || port == null || port.equals("")) {
131                     continue;
132                 }
133                 int portInt = Integer.parseInt(port);
134                 if ("direct".equals(type)) {
135                     target.addPing(DomainPingType.SSL, tokenName + ":" + tokenValue + ":" + port);
136                 } else if (types.contains(type)) {
137                     target.addPing(DomainPingType.SSL, tokenName + ":" + tokenValue + ":" + portInt + ":" + type);
138                 }
139
140             }
141         }
142         Gigi.notifyPinger(null);
143         return false;
144     }
145
146     @Override
147     protected void outputContent(PrintWriter out, Language l, Map<String, Object> vars) {
148         out.print("<table class=\"wrapper dataTable\"><tbody>");
149         outputEmbeddableContent(out, l, vars);
150         out.print("<tr><td></td><td><input type=\"submit\" value=\"Update\"/></td></tbody></table>");
151     }
152
153     protected void outputEmbeddableContent(PrintWriter out, Language l, Map<String, Object> vars) {
154         vars.put("tokenName", tokenName);
155         vars.put("tokenValue", tokenValue);
156         vars.put("authEmails", new IterableDataset() {
157
158             int i = 0;
159
160             @Override
161             public boolean next(Language l, Map<String, Object> vars) {
162                 if (i >= AUTHORATIVE_EMAILS.length) {
163                     return false;
164                 }
165                 vars.put("i", i);
166                 vars.put("email", AUTHORATIVE_EMAILS[i]);
167                 if (i == selectedMail) {
168                     vars.put("checked", " checked=\"checked\"");
169                 } else {
170                     vars.put("checked", "");
171                 }
172
173                 i++;
174                 return true;
175             }
176         });
177         vars.put("mail", doMail ? " checked=\"checked\"" : "");
178         vars.put("dns", doDNS ? " checked=\"checked\"" : "");
179         vars.put("http", doHTTP ? " checked=\"checked\"" : "");
180         vars.put("ssl", doSSL ? " checked=\"checked\"" : "");
181         vars.put("ssl-services", new IterableDataset() {
182
183             int counter = 0;
184
185             @Override
186             public boolean next(Language l, Map<String, Object> vars) {
187                 if (counter >= MAX_SSL_TESTS) {
188                     return false;
189                 }
190                 vars.put("i", counter);
191                 vars.put("port", ports[counter] == 0 ? "" : Integer.toString(ports[counter]));
192                 final SSLType selectedType = sslTypes[counter];
193                 vars.put("ssl-types", new IterableDataset() {
194
195                     int i = 0;
196
197                     SSLType[] type = SSLType.values();
198
199                     @Override
200                     public boolean next(Language l, Map<String, Object> vars) {
201                         if (i >= type.length) {
202                             return false;
203                         }
204                         vars.put("name", type[i].toString());
205                         if (selectedType == type[i]) {
206                             vars.put("selected", " selected=\"selected\"");
207                         } else {
208                             vars.put("selected", "");
209                         }
210                         i++;
211                         return true;
212                     }
213                 });
214                 counter++;
215                 return true;
216             }
217         });
218         t.output(out, l, vars);
219     }
220 }