2011-01-30 15:00:47 +01:00
|
|
|
package net.sourceforge.plantuml.servlet;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.net.URL;
|
|
|
|
import java.net.URLDecoder;
|
|
|
|
import java.util.StringTokenizer;
|
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
|
|
|
|
2011-02-16 09:18:23 +01:00
|
|
|
import javax.servlet.RequestDispatcher;
|
2011-01-30 15:00:47 +01:00
|
|
|
import javax.servlet.ServletException;
|
|
|
|
import javax.servlet.http.HttpServlet;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
|
|
import net.sourceforge.plantuml.SourceStringReader;
|
2011-02-16 09:18:23 +01:00
|
|
|
import net.sourceforge.plantuml.StringUtils;
|
2011-01-30 15:00:47 +01:00
|
|
|
import net.sourceforge.plantuml.code.Transcoder;
|
|
|
|
import net.sourceforge.plantuml.code.TranscoderUtil;
|
|
|
|
import HTTPClient.CookieModule;
|
|
|
|
import HTTPClient.HTTPConnection;
|
|
|
|
import HTTPClient.HTTPResponse;
|
|
|
|
import HTTPClient.ModuleException;
|
|
|
|
import HTTPClient.ParseException;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Original idea from Achim Abeling for Confluence macro
|
|
|
|
* See http://www.banapple.de/display/BANAPPLE/plantuml+user+macro
|
|
|
|
*
|
|
|
|
* Modified by Arnaud Roques
|
|
|
|
* Packaged by Maxime Sinclair
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public class PlantUmlServlet extends HttpServlet {
|
|
|
|
|
2011-02-16 09:18:23 +01:00
|
|
|
private static final Pattern startumlPattern = Pattern.compile("/\\w+/start/(.*)");
|
|
|
|
private static final Pattern imagePattern = Pattern.compile("/\\w+/img/(.*)");
|
|
|
|
private static final Pattern proxyPattern = Pattern.compile("/\\w+/proxy/((\\d+)/)?(http://.*)");
|
|
|
|
private static final Pattern oldStartumlPattern = Pattern.compile("/\\w+/uml/startuml/(.*)");
|
|
|
|
private static final Pattern oldImagePattern = Pattern.compile("/\\w+/uml/image/(.*)");
|
|
|
|
private static final Pattern oldProxyPattern = Pattern.compile("/\\w+/uml/proxy/((\\d+)/)?(http://.*)");
|
2011-01-30 15:23:08 +01:00
|
|
|
|
2011-02-16 09:18:23 +01:00
|
|
|
@Override
|
2011-01-30 15:23:08 +01:00
|
|
|
public void doGet(HttpServletRequest request, HttpServletResponse response)
|
|
|
|
throws IOException, ServletException {
|
|
|
|
|
|
|
|
final String uri = request.getRequestURI();
|
|
|
|
Matcher startumlMatcher = startumlPattern.matcher(uri);
|
|
|
|
Matcher imageMatcher = imagePattern.matcher(uri);
|
|
|
|
Matcher proxyMatcher = proxyPattern.matcher(uri);
|
2011-02-16 09:18:23 +01:00
|
|
|
Matcher oldStartumlMatcher = oldStartumlPattern.matcher(uri);
|
|
|
|
Matcher oldImageMatcher = oldImagePattern.matcher(uri);
|
|
|
|
Matcher oldProxyMatcher = oldProxyPattern.matcher(uri);
|
2011-01-30 15:23:08 +01:00
|
|
|
if (startumlMatcher.matches()) {
|
|
|
|
String source = startumlMatcher.group(1);
|
2011-02-20 17:05:48 +01:00
|
|
|
handleImage(response, source, uri);
|
2011-01-30 15:23:08 +01:00
|
|
|
} else if (imageMatcher.matches()) {
|
|
|
|
String source = imageMatcher.group(1);
|
2011-02-20 17:05:48 +01:00
|
|
|
handleImageDecompress(response, source, uri);
|
2011-01-30 15:23:08 +01:00
|
|
|
} else if (proxyMatcher.matches()) {
|
|
|
|
String num = proxyMatcher.group(2);
|
|
|
|
String source = proxyMatcher.group(3);
|
2011-02-20 17:05:48 +01:00
|
|
|
handleImageProxy(response, num, source, uri);
|
2011-02-16 09:18:23 +01:00
|
|
|
} else if (oldStartumlMatcher.matches()) {
|
|
|
|
String source = oldStartumlMatcher.group(1);
|
2011-02-20 17:05:48 +01:00
|
|
|
handleImage(response, source, uri);
|
2011-02-16 09:18:23 +01:00
|
|
|
} else if (oldImageMatcher.matches()) {
|
|
|
|
String source = oldImageMatcher.group(1);
|
2011-02-20 17:05:48 +01:00
|
|
|
handleImageDecompress(response, source, uri);
|
2011-02-16 09:18:23 +01:00
|
|
|
} else if (oldProxyMatcher.matches()) {
|
|
|
|
String num = oldProxyMatcher.group(2);
|
|
|
|
String source = oldProxyMatcher.group(3);
|
2011-02-20 17:05:48 +01:00
|
|
|
handleImageProxy(response, num, source, uri);
|
2011-01-30 15:23:08 +01:00
|
|
|
} else {
|
|
|
|
doPost(request, response);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-20 17:05:48 +01:00
|
|
|
|
2011-01-30 15:23:08 +01:00
|
|
|
@Override
|
2011-02-16 09:18:23 +01:00
|
|
|
protected void doPost(HttpServletRequest request, HttpServletResponse response)
|
2011-01-30 15:23:08 +01:00
|
|
|
throws ServletException, IOException {
|
|
|
|
|
2011-02-20 17:05:48 +01:00
|
|
|
request.setCharacterEncoding("UTF-8");
|
2011-01-30 15:23:08 +01:00
|
|
|
String text = request.getParameter("text");
|
|
|
|
String url = request.getParameter("url");
|
2011-02-16 09:18:23 +01:00
|
|
|
String encoded = "";
|
2011-01-30 15:23:08 +01:00
|
|
|
|
|
|
|
Transcoder transcoder = getTranscoder();
|
2011-02-16 09:18:23 +01:00
|
|
|
// the URL form has been submitted
|
|
|
|
if ((url != null) && (!url.trim().isEmpty())) {
|
|
|
|
// TODO Verify the url is correct
|
2011-01-30 15:23:08 +01:00
|
|
|
Pattern p = Pattern.compile(".*/(.*)");
|
|
|
|
Matcher m = p.matcher(url);
|
|
|
|
if (m.find()) {
|
|
|
|
url = m.group(1);
|
2011-02-16 09:18:23 +01:00
|
|
|
text = transcoder.decode(url);
|
2011-01-30 15:23:08 +01:00
|
|
|
}
|
|
|
|
}
|
2011-02-16 09:18:23 +01:00
|
|
|
// the Text form has been submitted
|
|
|
|
if ((text != null) && (!text.trim().isEmpty())) {
|
|
|
|
encoded = transcoder.encode(text);
|
2011-01-30 15:23:08 +01:00
|
|
|
}
|
2011-02-16 09:18:23 +01:00
|
|
|
|
|
|
|
request.setAttribute("net.sourceforge.plantuml.servlet.decoded", text);
|
|
|
|
request.setAttribute("net.sourceforge.plantuml.servlet.encoded", encoded);
|
|
|
|
|
|
|
|
// forward to index.jsp
|
|
|
|
RequestDispatcher dispatcher = request.getRequestDispatcher("/index.jsp");
|
|
|
|
dispatcher.forward(request, response);
|
2011-01-30 15:23:08 +01:00
|
|
|
}
|
2011-01-30 15:00:47 +01:00
|
|
|
|
|
|
|
private Transcoder getTranscoder() {
|
|
|
|
return TranscoderUtil.getDefaultTranscoder();
|
|
|
|
}
|
2011-01-30 15:23:08 +01:00
|
|
|
|
2011-02-20 17:05:48 +01:00
|
|
|
private void handleImage(HttpServletResponse response, String source, String uri)
|
2011-01-30 15:23:08 +01:00
|
|
|
throws IOException {
|
|
|
|
source = URLDecoder.decode(source, "UTF-8");
|
|
|
|
StringBuilder plantUmlSource = new StringBuilder();
|
|
|
|
|
|
|
|
StringTokenizer tokenizer = new StringTokenizer(source, "/@");
|
|
|
|
while (tokenizer.hasMoreTokens()) {
|
|
|
|
String token = tokenizer.nextToken();
|
|
|
|
plantUmlSource.append(token).append("\n");
|
|
|
|
}
|
2011-02-20 17:05:48 +01:00
|
|
|
sendImage(response, plantUmlSource.toString(), uri);
|
2011-01-30 15:23:08 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleImageDecompress(HttpServletResponse response,
|
2011-02-20 17:05:48 +01:00
|
|
|
String source, String uri) throws IOException {
|
2011-01-30 15:23:08 +01:00
|
|
|
source = URLDecoder.decode(source, "UTF-8");
|
|
|
|
Transcoder transcoder = getTranscoder();
|
|
|
|
String text2 = transcoder.decode(source);
|
2011-02-20 17:05:48 +01:00
|
|
|
sendImage(response, text2, uri);
|
2011-01-30 15:23:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private void handleImageProxy(HttpServletResponse response, String num,
|
2011-02-20 17:05:48 +01:00
|
|
|
String source, String uri) throws IOException {
|
2011-02-16 09:18:23 +01:00
|
|
|
SourceStringReader reader = new SourceStringReader( getContent(source));
|
2011-01-30 15:23:08 +01:00
|
|
|
int n = num == null ? 0 : Integer.parseInt(num);
|
|
|
|
// Write the first image to "os"
|
|
|
|
reader.generateImage(response.getOutputStream(), n);
|
|
|
|
}
|
|
|
|
|
2011-02-20 17:05:48 +01:00
|
|
|
private void sendImage(HttpServletResponse response, String text, String uri)
|
2011-01-30 15:23:08 +01:00
|
|
|
throws IOException {
|
|
|
|
StringBuilder plantUmlSource = new StringBuilder();
|
|
|
|
plantUmlSource.append("@startuml\n");
|
|
|
|
plantUmlSource.append(text);
|
2011-02-17 10:30:21 +01:00
|
|
|
if (text.endsWith("\n") == false) {
|
|
|
|
plantUmlSource.append("\n");
|
|
|
|
}
|
|
|
|
plantUmlSource.append("@enduml");
|
2011-02-16 09:18:23 +01:00
|
|
|
final String uml = plantUmlSource.toString();
|
2011-01-30 15:23:08 +01:00
|
|
|
// Write the first image to "os"
|
|
|
|
long today = System.currentTimeMillis();
|
2011-02-16 09:18:23 +01:00
|
|
|
if ( StringUtils.isDiagramCacheable( uml)) {
|
|
|
|
// Add http headers to force the browser to cache the image
|
|
|
|
response.addDateHeader("Expires", today + 31536000000L);
|
|
|
|
// today + 1 year
|
|
|
|
response.addDateHeader("Last-Modified", 1261440000000L);
|
|
|
|
// 2009 dec 22 constant date in the past
|
|
|
|
response.addHeader("Cache-Control", "public");
|
|
|
|
}
|
2011-01-30 15:23:08 +01:00
|
|
|
response.setContentType("image/png");
|
2011-02-20 17:05:48 +01:00
|
|
|
SourceStringReader reader = new SourceStringReader(uml);
|
2011-01-30 15:23:08 +01:00
|
|
|
reader.generateImage(response.getOutputStream());
|
|
|
|
response.flushBuffer();
|
|
|
|
}
|
2011-02-20 17:05:48 +01:00
|
|
|
|
2011-03-10 15:57:37 +01:00
|
|
|
private String getContent(String adress) throws IOException {
|
2011-01-30 15:23:08 +01:00
|
|
|
// HTTPConnection.setProxyServer("proxy", 8080);
|
|
|
|
CookieModule.setCookiePolicyHandler(null);
|
|
|
|
|
|
|
|
final Pattern p = Pattern.compile("http://[^/]+(/?.*)");
|
|
|
|
final Matcher m = p.matcher(adress);
|
|
|
|
if (m.find() == false) {
|
|
|
|
throw new IOException(adress);
|
|
|
|
}
|
|
|
|
final URL url = new URL(adress);
|
|
|
|
final HTTPConnection httpConnection = new HTTPConnection(url);
|
|
|
|
try {
|
|
|
|
final HTTPResponse resp = httpConnection.Get(m.group(1));
|
|
|
|
return resp.getText();
|
|
|
|
} catch (ModuleException e) {
|
|
|
|
throw new IOException(e.toString());
|
|
|
|
} catch (ParseException e) {
|
|
|
|
throw new IOException(e.toString());
|
|
|
|
}
|
|
|
|
}
|
2011-01-30 15:00:47 +01:00
|
|
|
|
2011-02-17 10:30:21 +01:00
|
|
|
}
|