package io.vertx.ext.web.handler.sockjs.impl;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
import io.vertx.core.Vertx;
import io.vertx.core.buffer.Buffer;
import io.vertx.core.http.HttpHeaders;
import io.vertx.core.http.HttpServerRequest;
import io.vertx.core.impl.logging.Logger;
import io.vertx.core.impl.logging.LoggerFactory;
import io.vertx.core.shareddata.LocalMap;
import io.vertx.ext.web.Router;
import io.vertx.ext.web.RoutingContext;
import io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions;
import io.vertx.ext.web.handler.sockjs.SockJSSocket;
import java.util.regex.Pattern;
import static io.vertx.core.buffer.Buffer.buffer;
class HtmlFileTransport extends BaseTransport {
private static final Logger log = LoggerFactory.getLogger(HtmlFileTransport.class);
private static final Pattern CALLBACK_VALIDATION = Pattern.compile("[^a-zA-Z0-9-_.]");
private static final String HTML_FILE_TEMPLATE;
static {
String str =
"<!doctype html>\n" +
"<html><head>\n" +
" <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\n" +
" <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n" +
"</head><body><h2>Don't panic!</h2>\n" +
" <script>\n" +
" document.domain = document.domain;\n" +
" var c = parent.{{ callback }};\n" +
" c.start();\n" +
" function p(d) {c.message(d);};\n" +
" window.onload = function() {c.stop();};\n" +
" </script>";
String str2 = str.replace("{{ callback }}", "");
StringBuilder sb = new StringBuilder(str);
int extra = 1024 - str2.length();
for (int i = 0; i < extra; i++) {
sb.append(' ');
}
sb.append("\r\n");
HTML_FILE_TEMPLATE = sb.toString();
}
HtmlFileTransport(Vertx vertx, Router router, LocalMap<String, SockJSSession> sessions, SockJSHandlerOptions options,
Handler<SockJSSocket> sockHandler) {
super(vertx, sessions, options);
String htmlFileRE = COMMON_PATH_ELEMENT_RE + "htmlfile.*";
router.getWithRegex(htmlFileRE).handler(rc -> {
if (log.isTraceEnabled()) log.trace("HtmlFile, get: " + rc.request().uri());
String callback = rc.request().getParam("callback");
if (callback == null) {
callback = rc.request().getParam("c");
if (callback == null) {
rc.response().setStatusCode(500).end("\"callback\" parameter required\n");
return;
}
}
if (CALLBACK_VALIDATION.matcher(callback).find()) {
rc.response().setStatusCode(500);
rc.response().end("invalid \"callback\" parameter\n");
return;
}
HttpServerRequest req = rc.request();
String sessionID = req.params().get("param0");
SockJSSession session = getSession(rc, options, sessionID, sockHandler);
session.register(req, new HtmlFileListener(options.getMaxBytesStreaming(), rc, callback, session));
});
}
private class HtmlFileListener extends BaseListener {
final int maxBytesStreaming;
final String callback;
boolean headersWritten;
int bytesSent;
boolean closed;
HtmlFileListener(int maxBytesStreaming, RoutingContext rc, String callback, SockJSSession session) {
super(rc, session);
this.maxBytesStreaming = maxBytesStreaming;
this.callback = callback;
addCloseHandler(rc.response(), session);
}
@Override
public void sendFrame(String body, Handler<AsyncResult<Void>> handler) {
if (log.isTraceEnabled()) log.trace("HtmlFile, sending frame");
if (!headersWritten) {
String htmlFile = HTML_FILE_TEMPLATE.replace("{{ callback }}", callback);
rc.response().putHeader(HttpHeaders.CONTENT_TYPE, "text/html; charset=UTF-8");
setNoCacheHeaders(rc);
rc.response().setChunked(true);
setJSESSIONID(options, rc);
rc.response().write(htmlFile);
headersWritten = true;
}
body = escapeForJavaScript(body);
String sb = "<script>\np(\"" +
body +
"\");\n</script>\r\n";
Buffer buff = buffer(sb);
rc.response().write(buff, handler);
bytesSent += buff.length();
if (bytesSent >= maxBytesStreaming) {
if (log.isTraceEnabled()) log.trace("More than maxBytes sent so closing connection");
close();
}
}
public void close() {
if (!closed) {
try {
session.resetListener();
rc.response().end();
rc.response().close();
closed = true;
} catch (IllegalStateException e) {
}
}
}
}
}