forked from I2P_Developers/i2p.i2p
231 lines
8.4 KiB
Java
231 lines
8.4 KiB
Java
package net.i2p.router.web;
|
|
|
|
import java.io.IOException;
|
|
import net.i2p.crypto.SigType;
|
|
import net.i2p.data.DataHelper;
|
|
|
|
public class NetDbHelper extends HelperBase {
|
|
private String _routerPrefix;
|
|
private String _version;
|
|
private String _country;
|
|
private String _family, _caps, _ip, _sybil;
|
|
private int _full, _port;
|
|
private boolean _lease;
|
|
private boolean _debug;
|
|
private boolean _graphical;
|
|
private SigType _type;
|
|
|
|
private static final String titles[] =
|
|
{_x("Summary"), // 0
|
|
_x("Local Router"), // 1
|
|
_x("Router Lookup"), // 2
|
|
_x("All Routers"), // 3
|
|
_x("All Routers with Full Stats"), // 4
|
|
"LeaseSet Debug", // 5
|
|
_x("LeaseSets"), // 6
|
|
"Sybil", // 7
|
|
"Advanced Lookup" }; // 8
|
|
|
|
private static final String links[] =
|
|
{"", // 0
|
|
"?r=.", // 1
|
|
"", // 2
|
|
"?f=2", // 3
|
|
"?f=1", // 4
|
|
"?l=2", // 5
|
|
"?l=1", // 6
|
|
"?f=3", // 7
|
|
"?f=4" }; // 8
|
|
|
|
public void setRouter(String r) {
|
|
if (r != null && r.length() > 0)
|
|
_routerPrefix = DataHelper.stripHTML(r); // XSS
|
|
}
|
|
|
|
/** @since 0.9.21 */
|
|
public void setVersion(String v) {
|
|
if (v != null && v.length() > 0)
|
|
_version = DataHelper.stripHTML(v); // XSS
|
|
}
|
|
|
|
/** @since 0.9.21 */
|
|
public void setCountry(String c) {
|
|
if (c != null && c.length() > 0)
|
|
_country = DataHelper.stripHTML(c); // XSS
|
|
}
|
|
|
|
/** @since 0.9.28 */
|
|
public void setFamily(String c) {
|
|
if (c != null && c.length() > 0)
|
|
_family = DataHelper.stripHTML(c); // XSS
|
|
}
|
|
|
|
/** @since 0.9.28 */
|
|
public void setCaps(String c) {
|
|
if (c != null && c.length() > 0)
|
|
_caps = DataHelper.stripHTML(c); // XSS
|
|
}
|
|
|
|
/** @since 0.9.28 */
|
|
public void setIp(String c) {
|
|
if (c != null && c.length() > 0)
|
|
_ip = DataHelper.stripHTML(c); // XSS
|
|
}
|
|
|
|
/** @since 0.9.28 */
|
|
public void setSybil(String c) {
|
|
if (c != null)
|
|
_sybil = DataHelper.stripHTML(c); // XSS
|
|
}
|
|
|
|
/** For form, same as above but with a length check
|
|
* @since 0.9.28
|
|
*/
|
|
public void setSybil2(String c) {
|
|
if (c != null && c.length() > 0)
|
|
_sybil = DataHelper.stripHTML(c); // XSS
|
|
}
|
|
|
|
/** @since 0.9.28 */
|
|
public void setPort(String f) {
|
|
try {
|
|
_port = Integer.parseInt(f);
|
|
} catch (NumberFormatException nfe) {}
|
|
}
|
|
|
|
/** @since 0.9.28 */
|
|
public void setType(String f) {
|
|
if (f != null && f.length() > 0)
|
|
_type = SigType.parseSigType(f);
|
|
}
|
|
|
|
public void setFull(String f) {
|
|
try {
|
|
_full = Integer.parseInt(f);
|
|
} catch (NumberFormatException nfe) {}
|
|
}
|
|
|
|
public void setLease(String l) {
|
|
_debug = "2".equals(l);
|
|
_lease = _debug || "1".equals(l);
|
|
}
|
|
|
|
/**
|
|
* call for non-text-mode browsers
|
|
* @since 0.9.1
|
|
*/
|
|
public void allowGraphical() {
|
|
_graphical = true;
|
|
}
|
|
|
|
/**
|
|
* storeWriter() must be called previously
|
|
*/
|
|
public String getNetDbSummary() {
|
|
NetDbRenderer renderer = new NetDbRenderer(_context);
|
|
try {
|
|
renderNavBar();
|
|
if (_routerPrefix != null || _version != null || _country != null ||
|
|
_family != null || _caps != null || _ip != null || _sybil != null ||
|
|
_port != 0 || _type != null)
|
|
renderer.renderRouterInfoHTML(_out, _routerPrefix, _version, _country,
|
|
_family, _caps, _ip, _sybil, _port, _type);
|
|
else if (_lease)
|
|
renderer.renderLeaseSetHTML(_out, _debug);
|
|
else if (_full == 3)
|
|
(new SybilRenderer(_context)).getNetDbSummary(_out);
|
|
else if (_full == 4)
|
|
renderLookupForm();
|
|
else
|
|
renderer.renderStatusHTML(_out, _full);
|
|
} catch (IOException ioe) {
|
|
ioe.printStackTrace();
|
|
}
|
|
return "";
|
|
}
|
|
|
|
/**
|
|
* @since 0.9.1
|
|
*/
|
|
private int getTab() {
|
|
if (_debug)
|
|
return 5;
|
|
if (_lease)
|
|
return 6;
|
|
if (".".equals(_routerPrefix))
|
|
return 1;
|
|
if (_routerPrefix != null || _version != null || _country != null ||
|
|
_family != null || _caps != null || _ip != null || _sybil != null ||
|
|
_port != 0 || _type != null)
|
|
return 2;
|
|
if (_full == 2)
|
|
return 3;
|
|
if (_full == 1)
|
|
return 4;
|
|
if (_full == 3)
|
|
return 7;
|
|
if (_full == 4)
|
|
return 8;
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* @since 0.9.1
|
|
*/
|
|
private void renderNavBar() throws IOException {
|
|
StringBuilder buf = new StringBuilder(1024);
|
|
buf.append("<div class=\"confignav\" id=\"confignav\">");
|
|
// TODO fix up the non-light themes
|
|
String theme = _context.getProperty(CSSHelper.PROP_THEME_NAME);
|
|
boolean span = _graphical && (theme == null || theme.equals(CSSHelper.DEFAULT_THEME));
|
|
if (!span)
|
|
buf.append("<center>");
|
|
int tab = getTab();
|
|
for (int i = 0; i < titles.length; i++) {
|
|
if (i == 2 && tab != 2)
|
|
continue; // can't nav to lookup
|
|
if ((i == 5 || i == 7 || i == 8) && !_context.getBooleanProperty(PROP_ADVANCED))
|
|
continue;
|
|
if (i == tab) {
|
|
// we are there
|
|
if (span)
|
|
buf.append("<span class=\"tab2\">");
|
|
buf.append(_t(titles[i]));
|
|
} else {
|
|
// we are not there, make a link
|
|
if (span)
|
|
buf.append("<span class=\"tab\">");
|
|
buf.append("<a href=\"netdb").append(links[i]).append("\">").append(_t(titles[i])).append("</a>");
|
|
}
|
|
if (span)
|
|
buf.append(" </span>\n");
|
|
else if (i != titles.length - 1)
|
|
buf.append(" |\n");
|
|
}
|
|
if (!span)
|
|
buf.append("</center>");
|
|
buf.append("</div>");
|
|
_out.write(buf.toString());
|
|
}
|
|
|
|
/**
|
|
* @since 0.9.28
|
|
*/
|
|
private void renderLookupForm() throws IOException {
|
|
_out.write("<form action=\"/netdb\" method=\"GET\"><p><b>Pick One</b></p>\n" +
|
|
"Caps <input type=\"text\" name=\"caps\">e.g. f or XOfR<br>\n" +
|
|
"Country code <input type=\"text\" name=\"c\">e.g. ru<br>\n" +
|
|
"Family <input type=\"text\" name=\"fam\"><br>\n" +
|
|
"Hash prefix <input type=\"text\" name=\"r\"><br>\n" +
|
|
"IP <input type=\"text\" name=\"ip\">IPv4 or IPv6, /24,/16,/8 suffixes optional for IPv4<br>\n" +
|
|
"Port <input type=\"text\" name=\"port\"><br>\n" +
|
|
"Sig Type <input type=\"text\" name=\"type\"><br>\n" +
|
|
"Version <input type=\"text\" name=\"v\"><br>\n" +
|
|
"<p><b>Add Sybil analysis (must pick one above):</b></p>\n" +
|
|
"Sybil close to <input type=\"text\" name=\"sybil2\">Router hash, dest hash, b32, or from address book<br>\n" +
|
|
"or Sybil close to this router <input type=\"checkbox\" class=\"optbox\" value=\"1\" name=\"sybil\"><br>" +
|
|
"<p><input type=\"submit\" class=\"search\" value=\"Lookup\"></p>" +
|
|
"</form>\n");
|
|
}
|
|
}
|