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