X-Git-Url: https://git.wpitchoune.net/gitweb/?p=pnews.git;a=blobdiff_plain;f=war%2Fsrc%2Fmain%2Fjava%2Fpnews%2Fservlet%2FPnews.java;h=fc08d136ab112fff271ac878c8d0459e20ccefc4;hp=2e49a7a4b62f584ccfa830b9b71e9318b484510e;hb=892111b2ecf385bd28bbe93ff6113cbc1e04409e;hpb=27591c1933180a43423c78cc8cda28a3da1bfccf diff --git a/war/src/main/java/pnews/servlet/Pnews.java b/war/src/main/java/pnews/servlet/Pnews.java index 2e49a7a..fc08d13 100644 --- a/war/src/main/java/pnews/servlet/Pnews.java +++ b/war/src/main/java/pnews/servlet/Pnews.java @@ -27,7 +27,8 @@ public class Pnews extends HttpServlet { private static final String CLASS_NAME = Pnews.class.getName(); private static final Logger LOG = Logger.getLogger(Pnews.class.getName()); private static final long serialVersionUID = 1L; - private static final ArticleProvider provider = ArticleProvider.singleton; + private ArticleProvider provider; + private Config config; private static String getQueryParameter(HttpServletRequest rq, String key) throws UnsupportedEncodingException { @@ -89,12 +90,17 @@ public class Pnews extends HttpServlet { LOG.exiting(Pnews.class.getName(), "redirect"); } + + private static void doTemporaryRedirect(String newURL, HttpServletResponse rp) { + rp.setHeader("Location", newURL); + rp.setStatus(HttpServletResponse.SC_TEMPORARY_REDIRECT); + } private void writeStats(HttpServletResponse rp) throws IOException { rp.setContentType("application/json;charset=utf-8"); rp.setCharacterEncoding("utf-8"); - rp.getWriter().write(JSON.getStats()); + rp.getWriter().write(JSON.getStats(config.getCategories())); } @@ -105,13 +111,13 @@ public class Pnews extends HttpServlet { try { articles = provider.getArticles(cat); if (articles != null) { - html = HTML.toHTML(articles, cat); + html = HTML.toHTML(articles, cat, config.getCategories()); rp.setContentType("text/html;charset=utf-8"); rp.getWriter().write(html); rp.setCharacterEncoding("utf-8"); } else { LOG.severe("writeArticles cannot retrieve any articles"); - html = HTML.toHTML(new ArrayList
(), cat); + html = HTML.toHTML(new ArrayList
(), cat, config.getCategories()); rp.setContentType("text/html"); rp.getWriter().write(html); } @@ -167,23 +173,29 @@ public class Pnews extends HttpServlet { } if (path.equals("/")) { - writeArticles(Category.ACTUALITE, resp); + writeArticles(config.getDefaultCategory(), resp); return ; } try { - if (path.equals("/stats")) { writeStats(resp); return ; } - for (Category cat: Category.values()) { - if (path.equals('/' + cat.getId())) { + for (Category cat: config.getCategories()) { + if (path.equals(cat.getURL())) { writeArticles(cat, resp); return ; } } + + for (String l: config.getLanguages()) { + if (path.equals("/" + l) || path.equals("/" + l + "/")) { + doTemporaryRedirect(config.getDefaultCategory().getURL(), resp); + return ; + } + } resp.getWriter().write("Not found " + req.getPathInfo()); resp.setStatus(HttpServletResponse.SC_NOT_FOUND); @@ -194,8 +206,16 @@ public class Pnews extends HttpServlet { } @Override - public void init(ServletConfig config) throws ServletException { - LOG.info("Pnews servlet init " + config.getServletContext().getContextPath()); - + public void init(ServletConfig cfg) throws ServletException { + LOG.info("Pnews servlet init " + cfg.getServletContext().getContextPath()); + + config = new Config(); + try { + config.loadConfig(); + } catch (UnsupportedEncodingException e) { + throw new ServletException(e); + } + + provider = new ArticleProvider(config); } }