webidor/src/main/java/cz/xelfi/quoridor/webidor/resources/Users.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 07 Nov 2009 18:31:47 +0100
changeset 144 cc04ede4cb5e
parent 143 4eb88f05c207
child 145 ac9bd9be5263
permissions -rw-r--r--
API for changing own properties
     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.webidor.resources;
    28 
    29 import cz.xelfi.quoridor.webidor.*;
    30 import java.io.File;
    31 import java.io.FileInputStream;
    32 import java.io.FileNotFoundException;
    33 import java.io.FileOutputStream;
    34 import java.io.IOException;
    35 import java.util.ArrayList;
    36 import java.util.Collections;
    37 import java.util.List;
    38 import java.util.Properties;
    39 import java.util.logging.Logger;
    40 import javax.ws.rs.DefaultValue;
    41 import javax.ws.rs.GET;
    42 import javax.ws.rs.POST;
    43 import javax.ws.rs.Path;
    44 import javax.ws.rs.PathParam;
    45 import javax.ws.rs.Produces;
    46 import javax.ws.rs.QueryParam;
    47 import javax.ws.rs.core.MediaType;
    48 import javax.ws.rs.core.Response;
    49 
    50 /**
    51  *
    52  * @author Jaroslav Tulach <jtulach@netbeans.org>
    53  */
    54 public final class Users {
    55     private final Quoridor quoridor;
    56     private final File dir;
    57     private static final Logger LOG = Logger.getLogger(Users.class.getName());
    58 
    59     Users(File dir, Quoridor quoridor) {
    60         this.dir = dir;
    61         this.quoridor = quoridor;
    62         dir.mkdirs();
    63     }
    64 
    65     @GET
    66     @Path("{id}")
    67     @Produces({ MediaType.APPLICATION_JSON, MediaType.TEXT_XML })
    68     public User getUserInfo(
    69         @QueryParam("loginID") String loginId,
    70         @PathParam("id") String id
    71     ) throws IOException {
    72         String  myid = quoridor.isLoggedIn(loginId);
    73         Properties myp = getProp(myid);
    74         Properties p = getProp(id);
    75         User user = new User(id);
    76         for (String n : p.stringPropertyNames()) {
    77             if (n.startsWith("permission.")) {
    78                 continue;
    79             }
    80             if (!id.equals(myid) && !"true".equals(myp.getProperty("permission." + n))) {
    81                 continue;
    82             }
    83             user.addProperty(n, p.getProperty(n));
    84         }
    85         return user;
    86     }
    87 
    88     @POST
    89     @Path("{id}")
    90     @Produces({ MediaType.APPLICATION_JSON, MediaType.TEXT_XML })
    91     public synchronized Response changeProperty(
    92         @QueryParam("loginID") String loginId,
    93         @PathParam("id") String id,
    94         @QueryParam("name") String name,
    95         @QueryParam("value") String value
    96     ) throws IOException {
    97         String myid = quoridor.isLoggedIn(loginId);
    98         if (!id.equals(myid) || name.startsWith("permission.")) {
    99             return Response.status(Response.Status.UNAUTHORIZED).build();
   100         }
   101 
   102         Properties p = getProp(myid);
   103         p.setProperty(name, value);
   104 
   105         File f = new File(dir, id);
   106         FileOutputStream os = new FileOutputStream(f);
   107         p.store(os, "");
   108         os.close();
   109         
   110         return Response.ok().entity(getUserInfo(loginId, id)).build();
   111     }
   112 
   113     private synchronized Properties getProp(String id) throws FileNotFoundException, IOException {
   114         Properties p = new Properties();
   115         if (id != null && id.length() > 0) {
   116             File f = new File(dir, id);
   117             FileInputStream is = new FileInputStream(f);
   118             p.load(is);
   119             is.close();
   120         }
   121         return p;
   122     }
   123 }