freemarkerdor/src/main/java/cz/xelfi/quoridor/freemarkerdor/Requests.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 04 Mar 2010 19:37:58 +0100
changeset 233 ecddc9f373bb
child 264 d60370059c3c
permissions -rw-r--r--
Changing an email needs to be confirmed by receiving an email and responding to an URL send inside it
     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.WebResource;
    30 import com.sun.jersey.api.client.WebResource.Builder;
    31 import java.net.URI;
    32 import java.util.HashMap;
    33 import java.util.Map;
    34 import java.util.UUID;
    35 import javax.ws.rs.GET;
    36 import javax.ws.rs.Path;
    37 import javax.ws.rs.PathParam;
    38 import javax.ws.rs.Produces;
    39 import javax.ws.rs.core.Cookie;
    40 import javax.ws.rs.core.MediaType;
    41 import javax.ws.rs.core.Response;
    42 
    43 /** Keeps "requests". A request is UUID that maps to a URL which can
    44  * be executed later.
    45  *
    46  * @author Jaroslav Tulach <jtulach@netbeans.org>
    47  */
    48 public final class Requests extends Object {
    49     private final Map<UUID,Builder> requests = new HashMap<UUID, Builder>();
    50     private final WebResource root;
    51 
    52     Requests(WebResource path) {
    53         root = path;
    54     }
    55 
    56     @GET
    57     @Path("{id}")
    58     @Produces(MediaType.TEXT_HTML)
    59     public Response redirect(@PathParam("id") String uuid) {
    60         UUID r = UUID.fromString(uuid);
    61         Builder web = requests.get(r);
    62         if (web == null) {
    63             return Response.status(Response.Status.NOT_FOUND).build();
    64         }
    65         return Response.ok(web.get(String.class)).build();
    66     }
    67 
    68     boolean isVerified(String uuid) {
    69         return uuid != null && requests.containsKey(UUID.fromString(uuid));
    70     }
    71 
    72     URI register(String login, WebResource request) {
    73         UUID uuid = UUID.randomUUID();
    74         WebResource callback = root.path(uuid.toString());
    75         Builder builder = request.queryParam("verified", uuid.toString()).
    76             cookie(Cookie.valueOf("login=" + login));
    77         requests.put(uuid, builder);
    78         return callback.getURI();
    79     }
    80 
    81 }