Merge pull request #100 from uecasm/admins
Since we already have a handy list of Admins, why not use it?
This commit is contained in:
commit
4dcf39f5b7
|
@ -30,15 +30,13 @@ Administration tools.
|
|||
<%@ page import="net.socialgamer.cah.HibernateUtil" %>
|
||||
<%@ page import="net.socialgamer.cah.db.BlackCard" %>
|
||||
<%@ page import="net.socialgamer.cah.db.WhiteCard" %>
|
||||
<%@ page import="net.socialgamer.cah.Constants" %>
|
||||
<%@ page import="net.socialgamer.cah.RequestWrapper" %>
|
||||
<%@ page import="org.hibernate.Session" %>
|
||||
<%@ page import="org.hibernate.Transaction" %>
|
||||
<%
|
||||
RequestWrapper wrapper = new RequestWrapper(request);
|
||||
String remoteAddr = wrapper.getRemoteAddr();
|
||||
// TODO better access control than hard-coding IP addresses.
|
||||
if (!(remoteAddr.equals("0:0:0:0:0:0:0:1") || remoteAddr.equals("127.0.0.1") ||
|
||||
remoteAddr.equals("98.248.33.90") || remoteAddr.equals("207.161.39.198"))) {
|
||||
if (!Constants.ADMIN_IP_ADDRESSES.contains(wrapper.getRemoteAddr())) {
|
||||
response.sendError(403, "Access is restricted to known hosts");
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -33,6 +33,7 @@ Administration tools.
|
|||
<%@ page import="net.socialgamer.cah.RequestWrapper" %>
|
||||
<%@ page import="net.socialgamer.cah.StartupUtils" %>
|
||||
<%@ page import="net.socialgamer.cah.CahModule.BanList" %>
|
||||
<%@ page import="net.socialgamer.cah.Constants" %>
|
||||
<%@ page import="net.socialgamer.cah.Constants.DisconnectReason" %>
|
||||
<%@ page import="net.socialgamer.cah.Constants.LongPollEvent" %>
|
||||
<%@ page import="net.socialgamer.cah.Constants.LongPollResponse" %>
|
||||
|
@ -49,10 +50,7 @@ Administration tools.
|
|||
|
||||
<%
|
||||
RequestWrapper wrapper = new RequestWrapper(request);
|
||||
String remoteAddr = wrapper.getRemoteAddr();
|
||||
// TODO better access control than hard-coding IP addresses.
|
||||
if (!(remoteAddr.equals("0:0:0:0:0:0:0:1") || remoteAddr.equals("127.0.0.1") ||
|
||||
remoteAddr.equals("98.248.33.90") || remoteAddr.equals("207.161.39.198"))) {
|
||||
if (!Constants.ADMIN_IP_ADDRESSES.contains(wrapper.getRemoteAddr())) {
|
||||
response.sendError(403, "Access is restricted to known hosts");
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -33,16 +33,14 @@ Administration tools.
|
|||
<%@ page import="net.socialgamer.cah.db.BlackCard" %>
|
||||
<%@ page import="net.socialgamer.cah.db.CardSet" %>
|
||||
<%@ page import="net.socialgamer.cah.db.WhiteCard" %>
|
||||
<%@ page import="net.socialgamer.cah.Constants" %>
|
||||
<%@ page import="net.socialgamer.cah.RequestWrapper" %>
|
||||
<%@ page import="org.apache.commons.lang3.StringEscapeUtils" %>
|
||||
<%@ page import="org.hibernate.Session" %>
|
||||
<%@ page import="org.hibernate.Transaction" %>
|
||||
<%
|
||||
RequestWrapper wrapper = new RequestWrapper(request);
|
||||
String remoteAddr = wrapper.getRemoteAddr();
|
||||
//TODO better access control than hard-coding IP addresses.
|
||||
if (!(remoteAddr.equals("0:0:0:0:0:0:0:1") || remoteAddr.equals("127.0.0.1") ||
|
||||
remoteAddr.equals("98.248.33.90") || remoteAddr.equals("207.161.39.198"))) {
|
||||
if (!Constants.ADMIN_IP_ADDRESSES.contains(wrapper.getRemoteAddr())) {
|
||||
response.sendError(403, "Access is restricted to known hosts");
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -27,6 +27,7 @@ import java.util.Map;
|
|||
|
||||
import javax.servlet.http.HttpSession;
|
||||
|
||||
import net.socialgamer.cah.Constants;
|
||||
import net.socialgamer.cah.Constants.ErrorCode;
|
||||
import net.socialgamer.cah.Constants.ReturnableData;
|
||||
import net.socialgamer.cah.RequestWrapper;
|
||||
|
@ -42,8 +43,7 @@ public abstract class AdminHandler extends Handler {
|
|||
|
||||
@Override
|
||||
public Map<ReturnableData, Object> handle(final RequestWrapper request, final HttpSession session) {
|
||||
final String remoteAddr = request.getRemoteAddr();
|
||||
if (!(remoteAddr.equals("0:0:0:0:0:0:0:1") || remoteAddr.equals("127.0.0.1"))) {
|
||||
if (!Constants.ADMIN_IP_ADDRESSES.contains(request.getRemoteAddr())) {
|
||||
return error(ErrorCode.ACCESS_DENIED);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue