freemarkerdor/src/main/java/cz/xelfi/quoridor/freemarkerdor/UI.java
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 10 Sep 2009 23:19:40 +0200
changeset 75 6802034b7a6f
parent 73 b3165f3a9ad7
child 78 5ea4172dcf8b
permissions -rw-r--r--
Support for giving up the game
     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * The contents of this file are subject to the terms of either the GNU
     5  * General Public License Version 2 only ("GPL") or the Common
     6  * Development and Distribution License("CDDL") (collectively, the
     7  * "License"). You may not use this file except in compliance with the
     8  * License. You can obtain a copy of the License at
     9  * http://www.netbeans.org/cddl-gplv2.html
    10  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    11  * specific language governing permissions and limitations under the
    12  * License.  When distributing the software, include this License Header
    13  * Notice in each file and include the License file at
    14  * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
    15  * particular file as subject to the "Classpath" exception as provided
    16  * by Sun in the GPL Version 2 section of the License file that
    17  * accompanied this code. If applicable, add the following below the
    18  * License Header, with the fields enclosed by brackets [] replaced by
    19  * your own identifying information:
    20  * "Portions Copyrighted [year] [name of copyright owner]"
    21  *
    22  * Contributor(s):
    23  *
    24  * Portions Copyrighted 2009 Jaroslav Tulach
    25  */
    26 
    27 package cz.xelfi.quoridor.freemarkerdor;
    28 
    29 import com.sun.jersey.api.client.Client;
    30 import com.sun.jersey.api.client.UniformInterfaceException;
    31 import com.sun.jersey.api.client.WebResource;
    32 import com.sun.jersey.api.container.httpserver.HttpServerFactory;
    33 import com.sun.jersey.api.core.PackagesResourceConfig;
    34 import com.sun.jersey.api.core.ResourceConfig;
    35 import com.sun.jersey.api.view.Viewable;
    36 import com.sun.net.httpserver.HttpServer;
    37 import cz.xelfi.quoridor.webidor.resources.Quoridor;
    38 import java.io.File;
    39 import java.io.FileInputStream;
    40 import java.io.IOException;
    41 import java.net.URI;
    42 import java.util.HashMap;
    43 import java.util.Locale;
    44 import java.util.Map;
    45 import java.util.MissingResourceException;
    46 import java.util.Properties;
    47 import java.util.ResourceBundle;
    48 import java.util.concurrent.Callable;
    49 import javax.ws.rs.DefaultValue;
    50 import javax.ws.rs.FormParam;
    51 import javax.ws.rs.GET;
    52 import javax.ws.rs.POST;
    53 import javax.ws.rs.Path;
    54 import javax.ws.rs.PathParam;
    55 import javax.ws.rs.Produces;
    56 import javax.ws.rs.QueryParam;
    57 import javax.ws.rs.core.Context;
    58 import javax.ws.rs.core.HttpHeaders;
    59 import javax.ws.rs.core.MediaType;
    60 import javax.ws.rs.core.NewCookie;
    61 import javax.ws.rs.core.Response;
    62 import org.w3c.dom.Document;
    63 
    64 /**
    65  *
    66  * @author Jaroslav Tulach <jtulach@netbeans.org>
    67  */
    68 @Path("/")
    69 public final class UI {
    70     private static WebResource base;
    71 
    72     @Context
    73     private HttpHeaders headers;
    74     private String user;
    75 
    76     public UI() {
    77     }
    78 
    79     private Viewable checkLogin() {
    80         if (headers.getCookies().containsKey("login")) {
    81             user = headers.getCookies().get("login").getValue();
    82             return null;
    83         }
    84         return viewable("login.fmt", null);
    85     }
    86 
    87     @POST
    88     @Path("login")
    89     @Produces(MediaType.TEXT_HTML)
    90     public Response login(
    91         @FormParam("name") String name, @FormParam("password") String password
    92     ) throws Exception {
    93         File f = new File(new File(System.getProperty("quoridor.dir")), "passwd");
    94         Properties p = new Properties();
    95         try {
    96             p.load(new FileInputStream(f));
    97         } catch (IOException ex) {
    98             ex.printStackTrace();
    99         }
   100         if (name != null && password.equals(p.getProperty(name))) {
   101             user = name;
   102             return Response.ok().cookie(new NewCookie("login", name)).entity(viewable("login.fmt", null)).build();
   103         } else {
   104             Viewable v = viewable("login.fmt", null, "message", "Invalid name or password: " + name);
   105             return Response.status(1).entity(v).build();
   106         }
   107     }
   108 
   109     @GET
   110     @Produces(MediaType.TEXT_HTML)
   111     public Viewable welcome() {
   112         Viewable v = checkLogin();
   113         if (v != null) {
   114             return v;
   115         }
   116         return welcomeImpl();
   117     }
   118 
   119     @GET
   120     @Path("games/{id}/")
   121     @Produces(MediaType.TEXT_HTML)
   122     public Viewable board(@PathParam("id") String id) {
   123         return board(id, null);
   124     }
   125     private Viewable board(@PathParam("id") String id, String msg) {
   126         Viewable v = checkLogin();
   127         if (v != null) {
   128             return v;
   129         }
   130         Document doc = base.path("games").path(id).accept(MediaType.TEXT_XML).get(Document.class);
   131         return viewable("game.fmt", doc, "message", msg);
   132     }
   133 
   134     @GET
   135     @Path("games/{id}/move")
   136     @Produces(MediaType.TEXT_HTML)
   137     public Viewable move(
   138         @PathParam("id") String id,
   139         @QueryParam("type") String type,
   140         @QueryParam("direction") String direction,
   141         @QueryParam("direction-next") @DefaultValue("") String directionNext,
   142         @QueryParam("column") @DefaultValue("") String column,
   143         @QueryParam("row") @DefaultValue("") String row
   144     ) {
   145         Viewable v = checkLogin();
   146         if (v != null) {
   147             return v;
   148         }
   149         WebResource wr = base.path("games").path(id).queryParam("player", user);
   150         try {
   151             if (type.equals("resign")) {
   152                 wr.queryParam("move", "RESIGN").put();
   153                 return board(id);
   154             }
   155             if (type.equals("fence")) {
   156                 wr.queryParam("move", direction.charAt(0) + column + row).put();
   157                 return board(id);
   158             }
   159             if (type.equals("move")) {
   160                 wr.queryParam("move", direction + directionNext).put();
   161                 return board(id);
   162             }
   163         } catch (UniformInterfaceException ex) {
   164             return board(id, "WRONG_MOVE");
   165         }
   166         return board(id);
   167     }
   168 
   169     @GET
   170     @Path("games/create")
   171     @Produces(MediaType.TEXT_HTML)
   172     public Response create(
   173         @QueryParam("white") String white,
   174         @QueryParam("black") String black
   175     ) {
   176         Viewable v = checkLogin();
   177         if (v != null) {
   178             return Response.status(Response.Status.FORBIDDEN).entity(v).build();
   179         }
   180 
   181         if (user.equals(white) || user.equals(black)) {
   182             Object obj =
   183                 base.path("games").queryParam("white", white).
   184                 queryParam("black", black).accept(MediaType.TEXT_XML).post(Document.class);
   185             return Response.ok(welcomeImpl()).build();
   186         } else {
   187             return Response.status(Response.Status.NOT_FOUND).
   188                 entity(welcomeImpl("message", "You (" + user + ") must be white or black!")).build();
   189         }
   190     }
   191 
   192     private Viewable welcomeImpl(Object... args) {
   193         final Document got = base.path("games").accept(MediaType.TEXT_XML).get(Document.class);
   194         return viewable("index.fmt", got, args);
   195     }
   196 
   197     //
   198     // start the server
   199     //
   200 
   201     public static void main(String[] args) throws Exception {
   202         int port = 9998;
   203         if (args.length > 1) {
   204             port = Integer.parseInt(args[0]);
   205         }
   206 
   207 
   208         Callable<Void> r = startServers(port);
   209 
   210         if (args.length > 2 && args[1].equals("--kill")) {
   211             System.out.println("Hit enter to stop it...");
   212             System.in.read();
   213         } else {
   214             synchronized (UI.class) {
   215                 UI.class.wait();
   216             }
   217         }
   218         r.call();
   219         System.exit(0);
   220     }
   221 
   222     static Callable<Void> startServers(int port) throws Exception {
   223 
   224         if (System.getProperty("quoridor.dir") == null) {
   225             File home = new File(System.getProperty("user.home"));
   226             File quoridor = new File(home, ".quoridor");
   227             System.setProperty("quoridor.dir", quoridor.getPath());
   228         }
   229 
   230         ResourceConfig rc = new PackagesResourceConfig(
   231             "cz.xelfi.quoridor.webidor",
   232             "cz.xelfi.quoridor.freemarkerdor"
   233         );
   234 
   235         Client client = new Client();
   236         base = client.resource(new URI("http://localhost:" + port + "/api/"));
   237 
   238         final String baseUri = "http://localhost:" + port + "/";
   239         final HttpServer server = HttpServerFactory.create(baseUri, rc);
   240         server.start();
   241         System.out.println("Quoridor started at port " + port);
   242 
   243         return new Callable<Void>() {
   244             public Void call() throws Exception {
   245                 server.stop(0);
   246                 return null;
   247             }
   248         };
   249     }
   250 
   251     private Viewable viewable(String page, Document doc, Object... more) {
   252         String bundle = page.split("\\.")[0];
   253 
   254         ResourceBundle rb = null;
   255         for (Locale l : headers.getAcceptableLanguages()) {
   256             try {
   257                 rb = ResourceBundle.getBundle("cz.xelfi.quoridor.freemarkerdor.UI." + bundle, l);
   258             } catch (MissingResourceException e) {
   259                 // OK
   260             }
   261         }
   262         if (rb == null) {
   263             rb = ResourceBundle.getBundle("cz.xelfi.quoridor.freemarkerdor.UI." + bundle, Locale.ENGLISH);
   264         }
   265 
   266         Map<String,Object> map = new HashMap<String,Object>();
   267         map.put("doc", doc);
   268         map.put("user", user);
   269         map.put("bundle", rb);
   270         for (int i = 0; i < more.length; i += 2) {
   271             map.put((String)more[i],more[i + 1]);
   272         }
   273         return new Viewable(page, map);
   274     }
   275 
   276 }