Fix of Revision: ec7b8d0b2c after code review. Added a check condition before remov...
[pithos] / src / gr / ebs / gss / server / rest / SearchHandler.java
1 /*
2  * Copyright 2008, 2009 Electronic Business Systems Ltd.
3  *
4  * This file is part of GSS.
5  *
6  * GSS is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * GSS is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with GSS.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 package gr.ebs.gss.server.rest;
20
21 import gr.ebs.gss.client.exceptions.ObjectNotFoundException;
22 import gr.ebs.gss.client.exceptions.RpcException;
23 import gr.ebs.gss.server.domain.User;
24 import gr.ebs.gss.server.domain.dto.FileHeaderDTO;
25
26 import java.io.IOException;
27 import java.net.URLDecoder;
28 import java.net.URLEncoder;
29 import java.util.List;
30
31 import javax.servlet.http.HttpServletRequest;
32 import javax.servlet.http.HttpServletResponse;
33
34 import org.apache.commons.logging.Log;
35 import org.apache.commons.logging.LogFactory;
36 import org.json.JSONArray;
37 import org.json.JSONException;
38 import org.json.JSONObject;
39
40
41 /**
42  * A class that handles operations on the 'search' namespace.
43  *
44  * @author past
45  */
46 public class SearchHandler extends RequestHandler {
47         /**
48          * The logger.
49          */
50         private static Log logger = LogFactory.getLog(SearchHandler.class);
51
52         /**
53      * Serve the 'search' namespace that contains results in queries to find files.
54      *
55      * @param req The servlet request we are processing
56      * @param resp The servlet response we are processing
57      * @throws IOException if an input/output error occurs
58          */
59         void serveSearchResults(HttpServletRequest req, HttpServletResponse resp) throws IOException {
60         String path = getInnerPath(req, PATH_SEARCH);
61
62                 if(path.indexOf("/") == 0 && path.lastIndexOf("/") == path.length()-1){
63                         path = path.substring(1);
64                         path = path.substring(0,path.length()-1);
65                 }
66                 if (!isValidResourceName(path)) {
67                 resp.sendError(HttpServletResponse.SC_BAD_REQUEST);
68                 return;
69
70                 }
71                 if (path.equals(""))
72                         path = "/";
73         if (!path.equals("/"))
74                         try {
75                         User user = getUser(req);
76                         JSONArray json = new JSONArray();
77
78                                 List<FileHeaderDTO> fileHeaders = getService().searchFiles(user.getId(), URLDecoder.decode(path,"UTF-8"));
79                 for (FileHeaderDTO f: fileHeaders) {
80                         JSONObject j = new JSONObject();
81                                 j.put("name", f.getName()).
82                                         put("owner", f.getOwner().getUsername()).
83                                         put("deleted", f.isDeleted()).
84                                         put("version", f.getVersion()).
85                                         put("size", f.getFileSize()).
86                                         put("path", f.getFolder().getPath()).
87                                                 put("content", f.getMimeType()).
88                                         put("creationDate", f.getAuditInfo().getCreationDate().getTime()).
89                                         put("modificationDate", f.getAuditInfo().getModificationDate().getTime()).
90                                         put("uri", getApiRoot() + f.getURI());
91                                 JSONObject jf = new JSONObject();
92                                 jf.put("uri", getApiRoot() + f.getFolder().getURI()).
93                                                 put("name", URLEncoder.encode(f.getFolder().getName(),"UTF-8"));
94                                 j.put("folder", jf);
95                                 json.put(j);
96                 }
97                 sendJson(req, resp, json.toString());
98                 } catch (ObjectNotFoundException e) {
99                         logger.error("User not found or search query not specified", e);
100                         resp.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
101                         return;
102                 } catch (RpcException e) {
103                         logger.error("", e);
104                         resp.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
105                         return;
106                         } catch (JSONException e) {
107                                 logger.error("", e);
108                                 resp.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
109                         }
110                 else {
111                         resp.sendError(HttpServletResponse.SC_NOT_FOUND, "No search query found");
112                         return;
113         }
114         }
115
116 }