2012-07-02 07:54:53 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<%--
|
2018-03-22 23:26:30 +00:00
|
|
|
Copyright (c) 2012-2018, Andy Janata
|
2012-07-02 07:54:53 +01:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without modification, are permitted
|
|
|
|
provided that the following conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright notice, this list of conditions
|
|
|
|
and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright notice, this list of
|
|
|
|
conditions and the following disclaimer in the documentation and/or other materials provided
|
|
|
|
with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
|
|
|
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
|
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
|
|
|
|
WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
--%>
|
|
|
|
<%--
|
|
|
|
Administration tools.
|
|
|
|
|
|
|
|
@author Andy Janata (ajanata@socialgamer.net)
|
|
|
|
--%>
|
|
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
|
2018-03-22 23:26:30 +00:00
|
|
|
<%@ page import="com.google.inject.Injector" %>
|
|
|
|
<%@ page import="com.google.inject.Key" %>
|
|
|
|
<%@ page import="com.google.inject.TypeLiteral" %>
|
|
|
|
<%@ page import="net.socialgamer.cah.CahModule.Admins" %>
|
2012-07-02 07:54:53 +01:00
|
|
|
<%@ page import="net.socialgamer.cah.HibernateUtil" %>
|
2018-03-22 23:26:30 +00:00
|
|
|
<%@ page import="net.socialgamer.cah.StartupUtils" %>
|
2014-07-20 00:19:08 +01:00
|
|
|
<%@ page import="net.socialgamer.cah.db.PyxBlackCard" %>
|
|
|
|
<%@ page import="net.socialgamer.cah.db.PyxWhiteCard" %>
|
2012-10-02 04:12:14 +01:00
|
|
|
<%@ page import="net.socialgamer.cah.RequestWrapper" %>
|
2012-07-02 07:54:53 +01:00
|
|
|
<%@ page import="org.hibernate.Session" %>
|
|
|
|
<%@ page import="org.hibernate.Transaction" %>
|
2018-03-22 23:26:30 +00:00
|
|
|
<%@ page import="java.util.Set" %>
|
2012-07-02 07:54:53 +01:00
|
|
|
<%
|
2018-03-22 23:26:30 +00:00
|
|
|
RequestWrapper wrapper = new RequestWrapper(request);
|
|
|
|
ServletContext servletContext = pageContext.getServletContext();
|
|
|
|
Injector injector = (Injector) servletContext.getAttribute(StartupUtils.INJECTOR);
|
|
|
|
Set<String> admins = injector.getInstance(Key.get(new TypeLiteral<Set<String>>(){}, Admins.class));
|
|
|
|
if (!admins.contains(wrapper.getRemoteAddr())) {
|
2012-07-02 07:54:53 +01:00
|
|
|
response.sendError(403, "Access is restricted to known hosts");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-03-27 01:06:43 +00:00
|
|
|
final String watermark = request.getParameter("watermark") != null ? request.getParameter("watermark") : "";
|
|
|
|
|
2012-07-02 07:54:53 +01:00
|
|
|
String error = "";
|
|
|
|
String status = "";
|
|
|
|
String field = "";
|
|
|
|
final String color = request.getParameter("color");
|
|
|
|
if (color != null) {
|
|
|
|
if ("black".equals(color)) {
|
|
|
|
final String text = request.getParameter("text");
|
|
|
|
final String pick_s = request.getParameter("pick");
|
|
|
|
final String draw_s = request.getParameter("draw");
|
|
|
|
|
|
|
|
if (text == null || "".equals(text) || pick_s == null || "".equals(pick_s) || draw_s == null ||
|
|
|
|
"".equals(draw_s)) {
|
|
|
|
error = "You didn't specify something.";
|
|
|
|
} else {
|
|
|
|
int pick = 0;
|
|
|
|
int draw = 0;
|
|
|
|
try {
|
|
|
|
pick = Integer.parseInt(pick_s);
|
|
|
|
draw = Integer.parseInt(draw_s);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
error = "Something isn't a number.";
|
|
|
|
}
|
|
|
|
if (0 == pick) {
|
|
|
|
error += " Pick can't be 0.";
|
|
|
|
} else {
|
2012-09-10 06:08:06 +01:00
|
|
|
final Session s = HibernateUtil.instance.sessionFactory.openSession();
|
2012-07-02 07:54:53 +01:00
|
|
|
final Transaction transaction = s.beginTransaction();
|
|
|
|
transaction.begin();
|
2014-07-20 00:19:08 +01:00
|
|
|
final PyxBlackCard card = new PyxBlackCard();
|
2012-07-02 07:54:53 +01:00
|
|
|
card.setText(text);
|
|
|
|
card.setPick(pick);
|
|
|
|
card.setDraw(draw);
|
2013-03-27 01:06:43 +00:00
|
|
|
card.setWatermark(watermark);
|
2012-07-02 07:54:53 +01:00
|
|
|
s.save(card);
|
|
|
|
transaction.commit();
|
2012-07-14 23:04:11 +01:00
|
|
|
s.close();
|
2012-07-02 07:54:53 +01:00
|
|
|
status = "Saved '" + text + "'.";
|
|
|
|
field = "black";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if ("white".equals(color)) {
|
|
|
|
final String text = request.getParameter("text");
|
|
|
|
|
|
|
|
if (text == null || "".equals(text)) {
|
|
|
|
error = "You didn't specify something.";
|
|
|
|
} else {
|
2012-09-10 06:08:06 +01:00
|
|
|
final Session s = HibernateUtil.instance.sessionFactory.openSession();
|
2012-07-02 07:54:53 +01:00
|
|
|
final Transaction transaction = s.beginTransaction();
|
|
|
|
transaction.begin();
|
2014-07-20 00:19:08 +01:00
|
|
|
final PyxWhiteCard card = new PyxWhiteCard();
|
2012-07-02 07:54:53 +01:00
|
|
|
card.setText(text);
|
2013-03-27 01:06:43 +00:00
|
|
|
card.setWatermark(watermark);
|
2012-07-02 07:54:53 +01:00
|
|
|
s.save(card);
|
|
|
|
transaction.commit();
|
2012-07-14 23:04:11 +01:00
|
|
|
s.close();
|
2012-07-02 07:54:53 +01:00
|
|
|
status = "Saved '" + text + "'.";
|
|
|
|
field = "white";
|
2014-07-20 00:19:08 +01:00
|
|
|
}
|
2012-07-02 07:54:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
%>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<title>PYX - Add Cards</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<span style="color:red"><%= error %></span>
|
|
|
|
<span style="color:blue"><%= status %></span>
|
|
|
|
<p>Convention is to use four underscores for the blanks on black cards.</p>
|
|
|
|
<h1 id="black">Black Card</h1>
|
|
|
|
<form method="post" action="addcard.jsp">
|
|
|
|
<input type="hidden" name="color" value="black" />
|
|
|
|
<label for="black_text">Card Text</label><input type="text" id="black_text" name="text" size="150" />
|
|
|
|
<br/>
|
|
|
|
<label for="pick">Pick</label><input type="text" id="pick" name="pick" size="3" value="1" />
|
|
|
|
<br/>
|
|
|
|
<label for="draw">Draw</label><input type="text" id="draw" name="draw" size="3" value="0" />
|
|
|
|
<br/>
|
2013-03-27 01:06:43 +00:00
|
|
|
<label for="watermark_b">Watermark</label>
|
|
|
|
<input type="text" id="watermark_b" name="watermark" size="3" maxlength="5" value="<%= watermark %>" />
|
|
|
|
<br/>
|
2012-07-02 07:54:53 +01:00
|
|
|
<input type="submit" value="Add card" />
|
|
|
|
</form>
|
|
|
|
<h1 id="white">White Card</h1>
|
|
|
|
<form method="post" action="addcard.jsp">
|
|
|
|
<input type="hidden" name="color" value="white" />
|
|
|
|
<label for="white_text">Card Text</label><input type="text" id="white_text" name="text" size="150" />
|
|
|
|
<br/>
|
2013-03-27 01:06:43 +00:00
|
|
|
<label for="watermark_w">Watermark</label>
|
|
|
|
<input type="text" id="watermark_w" name="watermark" size="3" maxlength="5" value="<%= watermark %>" />
|
|
|
|
<br/>
|
2012-07-02 07:54:53 +01:00
|
|
|
<input type="submit" value="Add card" />
|
|
|
|
</form>
|
|
|
|
<script type="text/javascript">
|
|
|
|
var field = '<%= field %>';
|
|
|
|
if ('' != field) {
|
|
|
|
document.getElementById(field + '_text').focus();
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|