2004-07-24 02:06:07 +00:00
|
|
|
package net.i2p.router.web;
|
|
|
|
|
|
|
|
import java.io.ByteArrayOutputStream;
|
|
|
|
import java.io.IOException;
|
2004-09-29 22:49:19 +00:00
|
|
|
import java.io.OutputStreamWriter;
|
2004-07-24 02:06:07 +00:00
|
|
|
|
|
|
|
import net.i2p.router.RouterContext;
|
|
|
|
|
|
|
|
public class ProfilesHelper {
|
|
|
|
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 ProfilesHelper() {}
|
|
|
|
|
|
|
|
public String getProfileSummary() {
|
|
|
|
ByteArrayOutputStream baos = new ByteArrayOutputStream(16*1024);
|
|
|
|
try {
|
2004-09-29 22:49:19 +00:00
|
|
|
_context.profileOrganizer().renderStatusHTML(new OutputStreamWriter(baos));
|
2004-07-24 02:06:07 +00:00
|
|
|
} catch (IOException ioe) {
|
|
|
|
ioe.printStackTrace();
|
|
|
|
}
|
|
|
|
return new String(baos.toByteArray());
|
|
|
|
}
|
2004-08-12 03:22:27 +00:00
|
|
|
|
|
|
|
public String getShitlistSummary() {
|
|
|
|
ByteArrayOutputStream baos = new ByteArrayOutputStream(4*1024);
|
|
|
|
try {
|
2004-09-29 22:49:19 +00:00
|
|
|
_context.shitlist().renderStatusHTML(new OutputStreamWriter(baos));
|
2004-08-12 03:22:27 +00:00
|
|
|
} catch (IOException ioe) {
|
|
|
|
ioe.printStackTrace();
|
|
|
|
}
|
|
|
|
return new String(baos.toByteArray());
|
|
|
|
}
|
2004-07-24 02:06:07 +00:00
|
|
|
}
|