WebBox Klassenbibliothek
ulrich@undisclosed
2020-04-21 a22ef629b3f53e99d00784451b3a3cadc8ad599d
commit | author | age
1385d2 1 /*
U 2     WebBox - Dein Server.
3     Copyright (C) 2020 Ulrich Hilger, http://uhilger.de
4
5     This program is free software: you can redistribute it and/or modify
6     it under the terms of the GNU Affero General Public License as
7     published by the Free Software Foundation, either version 3 of the
8     License, or (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU Affero General Public License for more details.
14
15     You should have received a copy of the GNU Affero General Public License
16     along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 package de.uhilger.wbx.web;
20
21 import java.io.BufferedReader;
22 import java.io.File;
23 import java.io.FileInputStream;
24 import java.io.IOException;
25 import java.io.InputStreamReader;
26 import java.io.PrintWriter;
3bbfbc 27 import java.util.HashMap;
1385d2 28 import javax.servlet.ServletException;
U 29 import javax.servlet.http.HttpServlet;
30 import javax.servlet.http.HttpServletRequest;
31 import javax.servlet.http.HttpServletResponse;
32 import java.util.Map;
33
34 import static org.asciidoctor.Asciidoctor.Factory.create;
35 import org.asciidoctor.Asciidoctor;
36
37
38
39 /**
40  * Das AdocServlet wandelt AsciiDoc-Inhalte (*.adoc) 
70be19 41  * zu HTML-Seiten und PDF-Dokumenten
d8a1ab 42  * 
U 43  * ?pdf=true im URL fuegt PDF-Ausgabe hinzu
1385d2 44  */
U 45 public class AdocServlet extends HttpServlet  {
46   
47   private static final String DOT = ".";
3bbfbc 48   private static final String HTML = "html";
70be19 49   private static final String PDF = "pdf";
U 50   private static final String SERVLET_NAME = "AdocServlet";
1385d2 51   
U 52   /**
53    * Processes requests for both HTTP <code>GET</code> and <code>POST</code>
54    * methods.
55    *
56    * @param request servlet request
57    * @param response servlet response
58    * @throws ServletException if a servlet-specific error occurs
59    * @throws IOException if an I/O error occurs
60    */
61   protected void processRequest(HttpServletRequest request, HttpServletResponse response)
62           throws ServletException, IOException 
63   {
64
a22ef6 65     // Asciidoc-Quelldatei aus HTTP-Request ermitteln
U 66     String vPath = request.getServletPath();
67     String absname = getServletContext().getRealPath(vPath);
68     File adocfile = new File(absname);
69
70     // HTML-Datei ermitteln
71     String nameext = adocfile.getName();
72     String fname = nameext.substring(0, nameext.lastIndexOf(DOT));
73     File htmlfile = new File(adocfile.getParentFile(), fname + DOT + HTML);
74     File outfile = htmlfile; // Standardmaessig wird HTML zurueckgegeben
75     response.setContentType("text/html;charset=UTF-8");
76
77     /*
78       nach HTML transformieren, wenn die Quelle sich geandert hat oder 
79       die HTML-Datei noch nicht existiert
80     */
81     if(!htmlfile.exists() || adocfile.lastModified() > htmlfile.lastModified()) {
82       transform(absname);
83     }
84
85     /*
86       nach PDF transformieren, wenn der Parameter pdf=true existiert und 
87       wenn die Quelle sich geandert hat oder 
88       die PDF-Datei noch nicht existiert
89     */
90     String pdf = request.getParameter(PDF);
91     if(null != pdf && pdf.equalsIgnoreCase(Boolean.TRUE.toString())) {
92       File pdffile = new File(adocfile.getParentFile(), fname + DOT + PDF);
93       outfile = pdffile; // PDF soll zurueckgegeben werden
94       response.setContentType("application/pdf;charset=UTF-8");
95       if(!pdffile.exists() || adocfile.lastModified() > pdffile.lastModified()) {
96         transform(absname, PDF);
70be19 97       }
a22ef6 98     }
1385d2 99       
a22ef6 100     try (PrintWriter out = response.getWriter()) {
U 101       // abhaengig vom Parameter pdf HTML- oder PDF-Datei ausgeben
102       FileInputStream in = new FileInputStream(outfile);
1385d2 103       BufferedReader reader = new BufferedReader(new InputStreamReader(in));
U 104       String line;
105       while ((line = reader.readLine()) != null) {
106         out.println(line);
107       }
108     }
109   }
110   
3bbfbc 111   private void transform(String fileName) {
U 112     transform(fileName, null);
1385d2 113   }  
3bbfbc 114   
U 115   private void transform(String fileName, String backend) {    
116     Map<String, Object> attributes = new HashMap<>();
117     attributes.put("no_footer", false);
118     attributes.put("source_highlighter", "highlightjs");
119
120     Map<String, Object> options = new HashMap<>();
121     options.put("attributes", attributes); 
122     options.put("in_place", false); 
123     if(null != backend) {
124       options.put("backend", backend);
125     }
126     
127     Asciidoctor asciidoctor = create();    
128     asciidoctor.convertFile(new File(fileName), options);    
129   }
1385d2 130
U 131   /**
132    * Handles the HTTP <code>GET</code> method.
133    *
134    * @param request servlet request
135    * @param response servlet response
136    * @throws ServletException if a servlet-specific error occurs
137    * @throws IOException if an I/O error occurs
138    */
139   @Override
140   protected void doGet(HttpServletRequest request, HttpServletResponse response)
141           throws ServletException, IOException {
142     processRequest(request, response);
143   }
144
145   /**
146    * Handles the HTTP <code>POST</code> method.
147    *
148    * @param request servlet request
149    * @param response servlet response
150    * @throws ServletException if a servlet-specific error occurs
151    * @throws IOException if an I/O error occurs
152    */
153   @Override
154   protected void doPost(HttpServletRequest request, HttpServletResponse response)
155           throws ServletException, IOException {
156     processRequest(request, response);
157   }
158
159   /**
160    * Returns a short description of the servlet.
161    *
162    * @return a String containing servlet description
163    */
164   @Override
165   public String getServletInfo() {
70be19 166     return SERVLET_NAME;
U 167   }
1385d2 168
U 169 }