52 lines
1.7 KiB
Plaintext
52 lines
1.7 KiB
Plaintext
<%
|
|
/*
|
|
* USE CAUTION WHEN EDITING
|
|
* Trailing whitespace OR NEWLINE on the last line will cause
|
|
* IllegalStateExceptions !!!
|
|
*
|
|
* Do not tag this file for translation.
|
|
*/
|
|
|
|
String uri = request.getRequestURI();
|
|
if (uri.endsWith(".css")) {
|
|
response.setContentType("text/css");
|
|
} else if (uri.endsWith(".png")) {
|
|
response.setContentType("image/png");
|
|
} else if (uri.endsWith(".gif")) {
|
|
response.setContentType("image/gif");
|
|
} else if (uri.endsWith(".jpg")) {
|
|
response.setContentType("image/jpeg");
|
|
} else if (uri.endsWith(".ico")) {
|
|
response.setContentType("image/x-icon");
|
|
}
|
|
response.setHeader("Cache-Control", "max-age=86400"); // cache for a day
|
|
/*
|
|
* User or plugin themes
|
|
* If the request is for /themes/console/foo/bar/baz,
|
|
* and the property routerconsole.theme.foo=/path/to/foo,
|
|
* get the file from /path/to/foo/bar/baz
|
|
*/
|
|
String themePath = null;
|
|
final String PFX = "/themes/console/";
|
|
if (uri.startsWith(PFX) && uri.length() > PFX.length() + 1) {
|
|
String theme = uri.substring(PFX.length());
|
|
int slash = theme.indexOf('/');
|
|
if (slash > 0) {
|
|
theme = theme.substring(0, slash);
|
|
themePath = net.i2p.I2PAppContext.getGlobalContext().getProperty("routerconsole.theme." + theme);
|
|
if (themePath != null)
|
|
uri = uri.substring(PFX.length() + theme.length()); // /bar/baz
|
|
}
|
|
}
|
|
String base;
|
|
if (themePath != null)
|
|
base = themePath;
|
|
else
|
|
base = net.i2p.I2PAppContext.getGlobalContext().getBaseDir().getAbsolutePath() +
|
|
java.io.File.separatorChar + "docs";
|
|
try {
|
|
net.i2p.util.FileUtil.readFile(uri, base, response.getOutputStream());
|
|
} catch (java.io.IOException ioe) {
|
|
response.sendError(403, ioe.toString());
|
|
}
|
|
%> |