freemarkerdor/src/main/java/cz/xelfi/quoridor/freemarkerdor/UI.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 07 Sep 2009 22:27:39 +0200
changeset 70 3c9966fc0352
parent 68 33cf89760fab
child 72 5f081edc8502
permissions -rw-r--r--
More reliable way to login
     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(new File(System.getProperty("user.home")), ".quoridor"), "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("fence")) {
   152                 wr.queryParam("move", direction.charAt(0) + column + row).put();
   153                 return board(id);
   154             }
   155             if (type.equals("move")) {
   156                 wr.queryParam("move", direction + directionNext).put();
   157                 return board(id);
   158             }
   159         } catch (UniformInterfaceException ex) {
   160             return board(id, "WRONG_MOVE");
   161         }
   162         return board(id);
   163     }
   164 
   165     @GET
   166     @Path("games/create")
   167     @Produces(MediaType.TEXT_HTML)
   168     public Viewable create(
   169         @QueryParam("white") String white,
   170         @QueryParam("black") String black
   171     ) {
   172         Viewable v = checkLogin();
   173         if (v != null) {
   174             return v;
   175         }
   176 
   177         if (user.equals(white) || user.equals(black)) {
   178             Object obj =
   179                 base.path("games").queryParam("white", white).
   180                 queryParam("black", black).post(Document.class);
   181             return welcomeImpl();
   182         } else {
   183             return welcomeImpl("message", "You (" + user + ") must be white or black!");
   184         }
   185     }
   186 
   187     private Viewable welcomeImpl(Object... args) {
   188         final Document got = base.path("games").accept(MediaType.TEXT_XML).get(Document.class);
   189         return viewable("index.fmt", got, args);
   190     }
   191 
   192     //
   193     // start the server
   194     //
   195 
   196     public static void main(String[] args) throws Exception {
   197         int port = 9998;
   198         if (args.length > 1) {
   199             port = Integer.parseInt(args[0]);
   200         }
   201 
   202 
   203         Callable<Void> r = startServers(port);
   204 
   205         if (args.length > 2 && args[1].equals("--kill")) {
   206             System.out.println("Hit enter to stop it...");
   207             System.in.read();
   208         } else {
   209             synchronized (UI.class) {
   210                 UI.class.wait();
   211             }
   212         }
   213         r.call();
   214         System.exit(0);
   215     }
   216 
   217     static Callable<Void> startServers(int port) throws Exception {
   218         final HttpServer api = Quoridor.start(port + 1);
   219         Client client = new Client();
   220         base = client.resource(new URI("http://localhost:" + (port + 1) + "/api/"));
   221 
   222         final HttpServer s = start(port);
   223         System.out.println("Quoridor started at port " + port);
   224 
   225         return new Callable<Void>() {
   226             public Void call() throws Exception {
   227                 s.stop(0);
   228                 api.stop(0);
   229                 return null;
   230             }
   231         };
   232     }
   233 
   234     static HttpServer start(int port) throws IOException {
   235         final String baseUri = "http://localhost:" + port + "/";
   236         ResourceConfig rc = new PackagesResourceConfig("cz.xelfi.quoridor.freemarkerdor");
   237         HttpServer server = HttpServerFactory.create(baseUri, rc);
   238         server.start();
   239         return server;
   240     }
   241 
   242     private Viewable viewable(String page, Document doc, Object... more) {
   243         String bundle = page.split("\\.")[0];
   244 
   245         ResourceBundle rb = null;
   246         for (Locale l : headers.getAcceptableLanguages()) {
   247             try {
   248                 rb = ResourceBundle.getBundle("cz.xelfi.quoridor.freemarkerdor.UI." + bundle, l);
   249             } catch (MissingResourceException e) {
   250                 // OK
   251             }
   252         }
   253         if (rb == null) {
   254             rb = ResourceBundle.getBundle("cz.xelfi.quoridor.freemarkerdor.UI." + bundle, Locale.ENGLISH);
   255         }
   256 
   257         Map<String,Object> map = new HashMap<String,Object>();
   258         map.put("doc", doc);
   259         map.put("user", user);
   260         map.put("bundle", rb);
   261         for (int i = 0; i < more.length; i += 2) {
   262             map.put((String)more[i],more[i + 1]);
   263         }
   264         return new Viewable(page, map);
   265     }
   266 
   267 }