freemarkerdor/src/main/java/cz/xelfi/quoridor/freemarkerdor/UI.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 30 Aug 2009 14:44:49 +0200
changeset 49 75074e02f345
parent 48 69e897fe8140
child 50 1cce50d16bb5
permissions -rw-r--r--
At least we are able to generate the index page
     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.WebResource;
    31 import com.sun.jersey.api.container.httpserver.HttpServerFactory;
    32 import com.sun.jersey.api.core.PackagesResourceConfig;
    33 import com.sun.jersey.api.core.ResourceConfig;
    34 import com.sun.jersey.api.view.Viewable;
    35 import com.sun.net.httpserver.HttpServer;
    36 import cz.xelfi.quoridor.webidor.resources.Quoridor;
    37 import java.io.File;
    38 import java.io.FileInputStream;
    39 import java.io.IOException;
    40 import java.net.URI;
    41 import java.util.ArrayList;
    42 import java.util.HashMap;
    43 import java.util.Iterator;
    44 import java.util.List;
    45 import java.util.Map;
    46 import java.util.Properties;
    47 import javax.ws.rs.DefaultValue;
    48 import javax.ws.rs.FormParam;
    49 import javax.ws.rs.GET;
    50 import javax.ws.rs.POST;
    51 import javax.ws.rs.Path;
    52 import javax.ws.rs.PathParam;
    53 import javax.ws.rs.Produces;
    54 import javax.ws.rs.QueryParam;
    55 import javax.ws.rs.core.Context;
    56 import javax.ws.rs.core.HttpHeaders;
    57 import javax.ws.rs.core.MediaType;
    58 import javax.ws.rs.core.NewCookie;
    59 import javax.ws.rs.core.Response;
    60 import org.codehaus.jettison.json.JSONArray;
    61 import org.codehaus.jettison.json.JSONException;
    62 import org.codehaus.jettison.json.JSONObject;
    63 import org.w3c.dom.Document;
    64 
    65 /**
    66  *
    67  * @author Jaroslav Tulach <jtulach@netbeans.org>
    68  */
    69 @Path("/")
    70 public final class UI {
    71     private static WebResource base;
    72 
    73     @Context
    74     private HttpHeaders headers;
    75     private String user;
    76 
    77     public UI() {
    78     }
    79 
    80     private Viewable checkLogin() {
    81         if (headers.getCookies().containsKey("login")) {
    82             user = headers.getCookies().get("login").getValue();
    83             return null;
    84         }
    85         return new Viewable("login.fmt", null);
    86     }
    87 
    88     @POST
    89     @Path("login")
    90     @Produces(MediaType.TEXT_HTML)
    91     public Response login(
    92         @FormParam("name") String name, @FormParam("password") String password
    93     ) throws Exception {
    94         File f = new File(new File(new File(System.getProperty("user.home")), ".quoridor"), "passwd");
    95         Properties p = new Properties();
    96         p.load(new FileInputStream(f));
    97         if (name != null && password.equals(p.getProperty(name))) {
    98             return Response.seeOther(new URI("/")).cookie(new NewCookie("login", name)).entity(welcomeImpl()).build();
    99         } else {
   100             Viewable v = new Viewable("login.fmt", "Invalid name or password: " + name);
   101             return Response.status(1).entity(v).build();
   102         }
   103     }
   104 
   105     @GET
   106     @Produces(MediaType.TEXT_HTML)
   107     public Viewable welcome() throws JSONException {
   108         Viewable v = checkLogin();
   109         if (v != null) {
   110             return v;
   111         }
   112         return welcomeImpl();
   113     }
   114 
   115     @GET
   116     @Path("games/{id}/")
   117     @Produces(MediaType.TEXT_HTML)
   118     public Viewable board(@PathParam("id") String id) throws JSONException {
   119         Viewable v = checkLogin();
   120         if (v != null) {
   121             return v;
   122         }
   123         Map<?,?> obj = (Map<?,?>)convert(base.path("games").path(id).accept(MediaType.APPLICATION_JSON_TYPE).get(JSONObject.class));
   124 
   125 
   126         return new Viewable("game.fmt", obj);
   127     }
   128 
   129     @GET
   130     @Path("games/{id}/move")
   131     @Produces(MediaType.TEXT_HTML)
   132     public Viewable move(
   133         @PathParam("id") String id,
   134         @QueryParam("type") String type,
   135         @QueryParam("direction") String direction,
   136         @QueryParam("direction-next") @DefaultValue("") String directionNext,
   137         @QueryParam("column") @DefaultValue("") String column,
   138         @QueryParam("row") @DefaultValue("") String row
   139     ) throws JSONException {
   140         Viewable v = checkLogin();
   141         if (v != null) {
   142             return v;
   143         }
   144         WebResource wr = base.path("games").path(id).queryParam("player", user);
   145         if (type.equals("fence")) {
   146             wr.queryParam("move", direction.charAt(0) + column + row).put();
   147             return board(id);
   148         }
   149         if (type.equals("move")) {
   150             wr.queryParam("move", direction + directionNext).put();
   151             return board(id);
   152         }
   153         return board(id);
   154     }
   155 
   156     @GET
   157     @Path("games/create")
   158     @Produces(MediaType.TEXT_HTML)
   159     public Viewable create(
   160         @QueryParam("white") String white,
   161         @QueryParam("black") String black
   162     ) throws JSONException {
   163         Viewable v = checkLogin();
   164         if (v != null) {
   165             return v;
   166         }
   167         Object obj = convert(
   168             base.path("games").queryParam("white", white).
   169             queryParam("black", black).post(JSONObject.class)
   170         );
   171         Map<?,?> map = (Map<?,?>)obj;
   172         String id = (String)map.get("id");
   173         return board(id);
   174     }
   175 
   176 
   177     private static Object convert(Object obj) throws JSONException {
   178         if (obj instanceof JSONArray) {
   179             JSONArray arr = (JSONArray)obj;
   180             final int length = arr.length();
   181             List<Object> res = new ArrayList<Object>(length);
   182             for (int i = 0; i < length; i++) {
   183                 res.add(convert(arr.get(i)));
   184             }
   185             return res;
   186         } else if (obj instanceof JSONObject) {
   187             JSONObject json = (JSONObject)obj;
   188             Map<Object,Object> map = new HashMap<Object,Object>(json.length() * 2 / 3);
   189             for (Iterator it = json.keys(); it.hasNext();) {
   190                 String key = (String)it.next();
   191                 map.put(key, convert(json.get(key)));
   192             }
   193             return map;
   194         } else {
   195             return obj;
   196         }
   197     }
   198 
   199     //
   200     // start the server
   201     //
   202 
   203     public static void main(String[] args) throws Exception {
   204         HttpServer api = Quoridor.start(9998);
   205         Client client = new Client();
   206         base = client.resource(new URI("http://localhost:9998/api/"));
   207 
   208         HttpServer s = start(9997);
   209         System.out.println(
   210             "Quoridor started at port 9997\n" + "Hit enter to stop it..."
   211         );
   212         System.in.read();
   213         s.stop(0);
   214         System.exit(0);
   215     }
   216 
   217     static HttpServer start(int port) throws IOException {
   218         final String baseUri = "http://localhost:" + port + "/";
   219         ResourceConfig rc = new PackagesResourceConfig("cz.xelfi.quoridor.freemarkerdor");
   220         HttpServer server = HttpServerFactory.create(baseUri, rc);
   221         server.start();
   222         return server;
   223     }
   224 
   225     private Viewable welcomeImpl() throws JSONException {
   226         final Object got = base.path("games").accept(MediaType.APPLICATION_JSON_TYPE).get(JSONArray.class);
   227         List<?> obj = (List<?>)convert(got);
   228         return new Viewable("index.fmt", obj);
   229     }
   230 
   231 }