2008-07-16 15:05:07 +00:00
|
|
|
package net.i2p.router.web;
|
|
|
|
|
2008-09-23 18:48:59 +00:00
|
|
|
import java.io.ByteArrayOutputStream;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.OutputStreamWriter;
|
|
|
|
|
2008-07-16 15:05:07 +00:00
|
|
|
import net.i2p.data.DataHelper;
|
|
|
|
import net.i2p.router.RouterContext;
|
|
|
|
|
|
|
|
public class ConfigPeerHelper {
|
|
|
|
private RouterContext _context;
|
|
|
|
/**
|
|
|
|
* Configure this bean to query a particular router context
|
|
|
|
*
|
|
|
|
* @param contextId begging few characters of the routerHash, or null to pick
|
|
|
|
* the first one we come across.
|
|
|
|
*/
|
|
|
|
public void setContextId(String contextId) {
|
|
|
|
try {
|
|
|
|
_context = ContextHelper.getContext(contextId);
|
|
|
|
} catch (Throwable t) {
|
|
|
|
t.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public ConfigPeerHelper() {}
|
|
|
|
|
2008-09-23 18:48:59 +00:00
|
|
|
public String getBlocklistSummary() {
|
|
|
|
ByteArrayOutputStream baos = new ByteArrayOutputStream(4*1024);
|
|
|
|
try {
|
|
|
|
_context.blocklist().renderStatusHTML(new OutputStreamWriter(baos));
|
|
|
|
} catch (IOException ioe) {
|
|
|
|
ioe.printStackTrace();
|
|
|
|
}
|
|
|
|
return new String(baos.toByteArray());
|
|
|
|
}
|
2008-07-16 15:05:07 +00:00
|
|
|
}
|