Files
i2p.i2p/apps/routerconsole/java/src/net/i2p/router/web/ConfigPeerHandler.java

78 lines
2.8 KiB
Java
Raw Normal View History

2008-07-16 15:05:07 +00:00
package net.i2p.router.web;
import net.i2p.data.Hash;
import net.i2p.data.Base64;
import net.i2p.router.peermanager.PeerProfile;
/**
*
*/
public class ConfigPeerHandler extends FormHandler {
private String _peer;
private String _speed;
private String _capacity;
2009-08-15 16:08:33 +00:00
@Override
2008-07-16 15:05:07 +00:00
protected void processForm() {
if ("Save Configuration".equals(_action)) {
_context.router().saveConfig();
addFormNotice("Settings saved - not really!!!!!");
2009-08-08 17:14:30 +00:00
} else if (_action.startsWith("Ban")) {
2008-07-16 15:05:07 +00:00
Hash h = getHash();
if (h != null) {
2009-08-08 17:14:30 +00:00
_context.shitlist().shitlistRouterForever(h, "Manually banned via <a href=\"configpeer.jsp\">configpeer.jsp</a>");
addFormNotice("Peer " + _peer + " banned until restart");
2008-07-16 15:05:07 +00:00
return;
}
addFormError("Invalid peer");
2009-08-08 17:14:30 +00:00
} else if (_action.startsWith("Unban")) {
2008-07-16 15:05:07 +00:00
Hash h = getHash();
if (h != null) {
if (_context.shitlist().isShitlisted(h)) {
_context.shitlist().unshitlistRouter(h);
2009-08-08 17:14:30 +00:00
addFormNotice("Peer " + _peer + " unbanned");
2008-07-16 15:05:07 +00:00
} else
2009-08-08 17:14:30 +00:00
addFormNotice("Peer " + _peer + " is not currently banned");
2008-07-16 15:05:07 +00:00
return;
}
addFormError("Invalid peer");
} else if (_action.startsWith("Adjust")) {
Hash h = getHash();
if (h != null) {
PeerProfile prof = _context.profileOrganizer().getProfile(h);
if (prof != null) {
try {
prof.setSpeedBonus(Long.parseLong(_speed));
} catch (NumberFormatException nfe) {
addFormError("Bad speed value");
}
try {
prof.setCapacityBonus(Long.parseLong(_capacity));
} catch (NumberFormatException nfe) {
addFormError("Bad capacity value");
}
addFormNotice("Bonuses adjusted for " + _peer);
} else
addFormError("No profile exists for " + _peer);
return;
}
addFormError("Invalid peer");
} else if (_action.startsWith("Check")) {
addFormError("Unsupported");
}
}
private Hash getHash() {
if (_peer != null && _peer.length() == 44) {
byte[] b = Base64.decode(_peer);
if (b != null)
return new Hash(b);
}
return null;
}
public void setPeer(String peer) { _peer = peer; }
public void setSpeed(String bonus) { _speed = bonus; }
public void setCapacity(String bonus) { _capacity = bonus; }
}