log request info in a file accessible outstide the container
[pnews.git] / war / src / main / java / pnews / servlet / Pnews.java
1 package pnews.servlet;
2
3 import java.io.IOException;
4 import java.io.InputStream;
5 import java.io.InputStreamReader;
6 import java.io.Reader;
7 import java.io.UnsupportedEncodingException;
8 import java.io.Writer;
9 import java.net.URLDecoder;
10 import java.util.ArrayList;
11 import java.util.List;
12 import java.util.logging.Level;
13 import java.util.logging.Logger;
14
15 import javax.servlet.ServletConfig;
16 import javax.servlet.ServletException;
17 import javax.servlet.http.HttpServlet;
18 import javax.servlet.http.HttpServletRequest;
19 import javax.servlet.http.HttpServletResponse;
20
21 import com.rometools.rome.io.FeedException;
22
23 import pnews.Article;
24 import pnews.Category;
25 import pnews.HTML;
26
27 public class Pnews extends HttpServlet {
28         private static final Logger LOG = Logger.getLogger(Pnews.class.getName());
29         private static final long serialVersionUID = 1L;
30         private static final ArticleProvider provider = ArticleProvider.singleton;
31
32         private static String getQueryParameter(HttpServletRequest rq, String key)
33                         throws UnsupportedEncodingException {
34                 String[] params;
35                 int idx;
36                 String q;
37
38                 q = rq.getQueryString();
39
40                 if (q == null)
41                         return null;
42
43                 params = URLDecoder.decode(q, "UTF-8").split("&");
44
45                 for (String p: params) {
46                         idx = p.indexOf('=');
47
48                         if (idx > 1 && p.substring(0, idx).equals(key))
49                                 return p.substring(idx + 1);
50                 }
51
52                 return null;
53         }
54
55         private static void redirect(HttpServletRequest rq, HttpServletResponse rp) {
56                 String redirectURL;
57
58                 LOG.entering(Pnews.class.getName(), "redirect");
59
60                 try {
61                         redirectURL = getQueryParameter(rq, "url");
62
63                         LOG.info("Request redirection to " + redirectURL);
64
65                         if (redirectURL != null) {
66                                 rp.setHeader("Location", redirectURL);
67                                 rp.setStatus(HttpServletResponse.SC_TEMPORARY_REDIRECT);
68                         } else {
69                                 LOG.severe("No redirection URL");
70                                 rp.setStatus(HttpServletResponse.SC_NOT_FOUND);
71                         }
72
73                 } catch (UnsupportedEncodingException e) {
74                         e.printStackTrace();
75                         LOG.log(Level.SEVERE, "redirect failure", e);
76                         rp.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
77                 }
78
79                 LOG.exiting(Pnews.class.getName(), "redirect");
80         }
81
82         private void writeArticles(Category cat, HttpServletResponse rp) {
83                 String html;
84                 List<Article> articles;
85
86                 try {
87                         articles = provider.getArticles(cat);
88                         if (articles != null) {
89                                 html = HTML.toHTML(articles, cat);
90                                 rp.setContentType("text/html");
91                                 rp.getWriter().write(html);
92                         } else {
93                                 LOG.severe("writeArticles cannot retrieve any articles");
94                                 html = HTML.toHTML(new ArrayList<Article>(), cat);
95                                 rp.setContentType("text/html");
96                                 rp.getWriter().write(html);
97                         }
98                 } catch (IOException | IllegalArgumentException | FeedException e) {
99                         LOG.log(Level.SEVERE, "writeArticles failure", e);
100                         rp.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
101                 }
102         }
103
104         private void copy(InputStream in, Writer writer) throws IOException {
105                 Reader r;
106                 char[] buf;
107                 int n;
108
109                 buf = new char[1024];
110                 r = new InputStreamReader(in);
111                 while ( (n = r.read(buf, 0, buf.length)) != -1)
112                         writer.write(buf, 0, n);
113         }
114
115         @Override
116         protected void doGet(HttpServletRequest req, HttpServletResponse resp) {
117                 String path;
118                 InputStream in;
119
120                 RequesterLog.singleton.writeRequest(req);
121               
122                 LOG.info("doGet " + req.getRemoteAddr().toString() + " " + req.getRequestURI() + " " + req.getQueryString());
123                                 
124                 path = req.getPathInfo();
125
126                 if (path.equals("/redirect")) {
127                         redirect(req, resp);
128                         return ;
129                 }
130
131                 if (path.equals("/style.css")) {
132                         try {
133                                 in = HTML.class.getClassLoader().getResourceAsStream("style.css");
134                                 copy(in, resp.getWriter());
135                                 resp.setContentType("text/css");
136
137                                 return ;
138                         } catch (IOException e) {
139                                 LOG.log(Level.SEVERE, "doGet failure", e);
140                                 resp.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
141
142                                 return ;
143                         }
144                 }
145
146                 if (path.equals("/")) {
147                         writeArticles(Category.TOP, resp);
148                         return ;
149                 }
150
151                 for (Category cat: Category.values()) {
152                         if (path.equals('/' + cat.getId())) {
153                                 writeArticles(cat, resp);
154                                 return ;
155                         }
156                 }
157
158                 try {
159                         resp.getWriter().write("Not found " + req.getPathInfo());
160                         resp.setStatus(HttpServletResponse.SC_NOT_FOUND);
161                 } catch (IOException e) {
162                         LOG.log(Level.SEVERE, "doGet failure", e);
163                         resp.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
164                 }
165         }
166
167         @Override
168         public void init(ServletConfig config) throws ServletException {
169                 LOG.info("Pnews servlet init " + config.getServletContext().getContextPath());
170
171         }
172 }